Skip to main content

Posts

AX 7 Certification MB6-890 Sample Question for Manage user navigation,security

MB6-890 Sample Question for Manage user navigation Please note Its not necessary that all question will match but some can match. Its help you to understand format of exam. 1. Which menu item type is NOT available in AX? 10/10 Display Web Action Output Action  2. Menu item property 'FormViewOpen' speciƸes whether 10/10 the form will open in view only mode or in editable mode. True or False? True False 3. Which is NOT an option in menu item property  'OpenMode'? 10/10 View Edit New Delete  4. The use of 'Extended data security' property is to display 10/10 a menu item in a speciƸc AX company based upon XDS query/settings. True or False? True False Manage security in the development environment 5. 'Needed access level' property of form button degin 10/10 Minimum permission level required to access the button Maximum permission level required to access the button Exact permission level required

AX 7 Certification MB6-890 Sample Question for Manage user interface

MB6-890 Sample Question for Manage user interface Please note Its not necessary that this same all question will match but some can match. Its help you to understand format of exam. 1. Which of the following is/are NOT a form pattern(s) in AX? 10/10 HeaderListPage Dialog - Tabs Hub Part Grid List Page 2. Which of the following controls allow sub-pattern? Button group Grid Group Tab page 3. Pattern on form can be applied from which of the below 10/10 methods Right click form and apply pattern Right click 'Design' node in form designer and apply pattern Select Design node and Ƹll pattern in property window No need to apply pattern. System automatically recognizes it. 4. Which of the below are type of tile? 10/10 Link KPI FactBox Count 5. Which of the form control is NOT available in AX? 10/10 Availability View Desktop Calendar Timer Business Card 6. Identify the style(s) of tab in AX. 10/10 Panorama Button

AX 7 Modules Architecture and development environment

How to restrict auto filter due to dynamic link in axapta form

If you have created a Form and it is automatically filtering your Datasource because of the Dynalinks which is created automatically and dynamically,To solve that issue you can use below code. Test_DS.query().dataSourceNo(1).clearDynalinks(); You can call code on init method of form. Other way you can use below. QueryBuildDatasource qbds; ; qbds = this.query().dataSourceTable(tablenum(MyTableName)); qbds.clearDynalinks();

AX 7 Certification exam list

Following are Microsoft dynamics AX 7 or rainier Certification exam list. 1.Trade & Logistics Certification Exam MB6-892 2.Financials Certification Exam MB6-893 3.Development Certification Exam MB6-890 If you want to get training center then you can search on google for  karROX Technologies Limited You can get details.

Failed to create session in Axapta 2012 for user client

If you are getting following error on client opening " Failed to create a session; confirm that the user has the proper privileges to log on to Microsoft Dynamics " The solution  of above error is to uncheck a checkbox in Options at Go to on file menu item -->Tools --> Options-- > Development --> General --> Execute business operations in CIL Also check whether user is enable in ax or added if not then you need to import user from domain.

Business connector error On EP page Deployment in Axapta

Error Description: While deploying EP page form Ax AOT getting business connector error. Error  “The Web Part page  was not created correctly on the site. No .NET Business Connector session could be found.” Session Release for Microsoft Dynamics failed. No .NET Business Connector session could be found. Microsoft.Dynamics.Framework.BusinessConnector.Session.Exceptions.NoKernelSessionException at Microsoft.Dynamics.Framework.BusinessConnector.Session.DynamicsSession.get_AxaptaAdapter() at Microsoft.Dynamics.Framework.Portal.AxWebSession.WebSessionClientRemove() at Microsoft.Dynamics.Framework.BusinessConnector.Session.DynamicsSession.Release(ICacheContext context) Session log on for Microsoft Dynamics failed. Dynamics Adapter LogonAs failed. Microsoft.Dynamics.Framework.BusinessConnector.Session.Exceptions.FatalSessionException at Microsoft.Dynamics.Framework.BusinessConnector.Session.DynamicsSession.HandleException(String message, Exception ex

Split Email by delimiter in axapta

To Split Email by delimiter in axapta you can try below code #define.EmailDelimiter(",") List list; str _emailIdList; container sendList; ListIterator iterator; boolean valid; ; _emailIdList = "test@gmail.com,test1@gmail.com,test2@gmail.com,test3@gmail.com,test4@gmail.com"; valid = true; list = new List(Types::String); list = Global::strSplit(_emailIdList, #EmailDelimiter); iterator = new ListIterator(list); while(iterator.more()) { info(strfmt("%1",iterator.value())); sendList += iterator.value(); iterator.next(); } Strsplit used to split the email list you can try and special character to check it.

split datetime in hour minutes second in different timezone in ax 2012

This is the example to  split datetime in hour minutes second in different timezone in ax 2012. TransDateTime myDateTime=DateTimeUtil::applyTimeZoneOffset(DateTimeUtil::getSystemDateTime(),Timezone::GMTPLUS0300KUWAIT_RIYADH); int hours; int minutes; int seconds; ; info(datetime2str(myDateTime)); hours=DateTimeUtil::hour(myDateTime); minutes=DateTimeUtil::minute(myDateTime); seconds=DateTimeUtil::second(myDateTime); info(strfmt('Hours %1 - Minutes %2 - Seconds %3',int2str(hours),int2str(minutes),int2str(seconds))); To get different timezone like GMT,India etc you can get from below screen.

How to get Enum value in String for Query base view in Axapta

To get Enum value in String for Query base view in Axapta 2012 you can try below code sample for your method. Here example will return label enum value you can use for name also. public static server str ItemType() { tableName viewName = identifierStr(ViewName); DictEnum dictEnum = new DictEnum(enumNum(ItemType)); Map enumValues = new Map(Types::String, Types::String); int n; for (n = 0; n < dictEnum.values(); n++) { enumValues.insert(int2str(dictEnum.index2Value(n)),SysComputedColumn::returnLiteral(dictEnum.index2Label(n))); } return SysComputedColumn::switch( SysComputedColumn::returnField(viewName, identifierStr(InventTable_1), fieldStr(InventTable, ItemType)), enumValues, SysComputedColumn::returnLiteral(dictEnum.index2Symbol(n))); }