If you want to get Get current User Full name in Ax 2012 the you can try below code through job in x++.
static void getcurrentUserFullname(Args _args)
{
;
info(UserInfoHelp::userName(curuserid()));
}