I'm really new to Dynamix AX 2009.
I was browsing the demo image from Microsoft to better understand how the application works. I checked a random method called updateRFIDTagging()
in the form SalesQuotationTable
Now this last block of code really confuse me:
salesQuotationLine_ds.object(fieldnum(SalesQuotationLine, ItemTagging)).skip (!itemTagging);
salesQuotationLine_ds.object(fieldnum(SalesQuotationLine, CaseTagging)).allowEdit ( caseTagging);
salesQuotationLine_ds.object(fieldnum(SalesQuotationLine, CaseTagging)).skip (!caseTagging);
salesQuotationLine_ds.object(fieldnum(SalesQuotationLine, PalletTagging)).allowEdit ( palletTagging);
salesQuotationLine_ds.object(fieldnum(SalesQuotationLine, PalletTagging)).skip
I cannot find where the "salesQuotationLine_ds" is declared (and the code compile fine!). So my questions are:
- Where is it declared?
- Is there a shortcut/menu item that I can use to go to the declaration?