RE: Problem with Inbound HTTP adapter port.
You need to check if all the WCF service not working or just the ones created by AIF. If all the WCF service don't work, it must be something wrong with your WCF configuration in IIS. And you can...
View ArticleRE: FormDataSource - AllowEdit()
Your method will disable the field. "allowEdit" is quite a generic name, I would rename it to "allowEditFIrstName". You have to override active() method and call your method there, AX will call...
View ArticleHow I can get packslipid from the SalesFormLetter class?
I like change the packingslip status, but i need the packingslipid.I hope you can help me.Thanks in advance!
View ArticleRE: FormDataSource - AllowEdit()
You need to call your code to disable editing during form's built-in methods. You can check the inheritance of FormRun to get more details.
View ArticleRE: FormDataSource - AllowEdit()
For now I am lacking in the Code. I want to overwrite my active() ad call allowEditFirstName, but I am lacking. I can't call it with this.allowEditFirstName.´I have to do more. I Need a Connection to...
View ArticleRE: How I can get packslipid from the SalesFormLetter class?
If you mean how to get packing slip id, you can refer to: community.dynamics.com/.../265873
View ArticleRE: PO Header reason comment field
Hi Ludwig,I am attaching couple of screenshots. I still can't see the field 'reason comment'. ThanksSam
View ArticleRE: FormDataSource - AllowEdit()
I'm not quite sure why do you have a problem here. Just type element.allowEditFirstName(); after super() in active method of form data source, something like:public int active(){ int ret = super();...
View ArticleRE: Convert string to real value with specific number of decimal digits
Hi maram fraij,str2num does not round value to 2 decimals and should return you all decimals. However, it could be rounded later, could you please share code you using and explain why you think that it...
View ArticleRE: Consuming AIF Document Sales Order Service - Update Sales Order w/...
Hi Rodney Rau Jr,This question is not AX specific and actually you are asking how to set value of the property in the runtime in c sharp. And it could be done using reflection, please read for details...
View ArticleConsuming AIF Document Sales Order Service - Update Sales Order w/ multiple...
Service consumed in c# application. Would like to find a way using c# to dynamically assign updated values to one or many sales lines. Is something like the psuedo code below possible to do with the...
View ArticleRE: Convert string to real value with specific number of decimal digits
I try to do test before writing the required code to handle the scenario I haveThe is the codereal RealValue=99.3421111111; str strValue= num2str ( RealValue, -1, // Minimum...
View ArticleRE: Convert string to real value with specific number of decimal digits
I try to create new EDT with display no of digit 6 but the info gives me the same result
View ArticleRE: Convert string to real value with specific number of decimal digits
So that's exactly what I said. strFmt shows you only 2 decimals, but if you use debugger to check value of yy variable you will see all decimals. Another options is to use info(queryValue(yy)); to...
View ArticleRE: Convert string to real value with specific number of decimal digits
When I use info(queryValue(yy)) all digits appearThank you.
View ArticleRE: Convert string to real value with specific number of decimal digits
Don't use it in your code instead of strFmt, I used it as an example. If you want to show more decimals use strFmt + num2str.
View ArticleRE: PO Header reason comment field
Gday Sam,I think this is caused by the same reason that not all fields were available on the listpage in AX 2012. As Ludwig suggests, the field "Reason comment" can be added from the PO line form, but...
View ArticleRE: Convert string to real value with specific number of decimal digits
Ok Thank you again it is only used for testing purposes .
View ArticleConvert string to real value with specific number of decimal digits
I have a string variable contain a real value , I need to convert string to real value with specific number of decimal digits i.e. not necessary 2 digits when I use str2num I cannot determine number of...
View Article