startup - Is there a backdoor to AX? AX 2012 R2 Class Application startupPost method customized code error abort AX client -


ax 2012 r2 class application startuppost method customized code error abort ax client.

how enter ax again? can't login again correct wrong coding because of fatal error.

"microsoft dynamics ax client has stopped working.

a problem caused program stop working correctly. windows close program , notify if solution available."

i cannot enter ax anymore! why? because put wrong code in class application startuppost method

// no sys code must exist in method // if need startup command, in class sysstartupcmd void startuppost() {     // <gth>     args args = new args();     #isocountryregioncodes      if (hasgui()         && isrunningmode()         && !sysmodelstore::isinstallmode()         && syscountryregioncode::islegalentityincountryregion([#isoth])         && isconfigurationkeyenabled(configurationkeynum(taxthailandgovcertification)))     {         taxthaigovcertificationhelper::promptsysaboutform(false);     }     // </gth>      new menufunction(menuitemdisplaystr(rbmt_main),menuitemtype::display).run(args); } 

my problem code *new menufunction(menuitemdisplaystr(rbmt_main),menuitemtype::display).run(args);*

yeah should have put in 'if (curuserid() == "me")' yeah should have ... should have never been there.

i modified in usr layer. tried login again ax client can't enter ax can't modify anything. tried login in lower layer still can't come in.

tried use visual studio 2010 application explorer save class xpp , open notepad modify , reload application explorer, still can't login.

i unwelcome.

is there way in ax without going through class application startuppost method?

it's can't enter home if got keys.

more problem have 2 other developer mates can't login they're pissed, need codes too.

please knows how overpass class application startuppost method?

i can't in ax!

thanks much.

elang.

its solved using configuration command run @ kernal startup: -noauto

1.) open microsoft dynamics ax configuration utility.
2.) in tab [general], entry field "configuration command run @ kernel startup"
3.) type command -noauto
4.) run ms dynacmics ax

thanks.

:)


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -