TaxTrans Table Data Can be sorted by Tax Codes static void Tax_1016(Args _args) { TaxTrans taxTrans_In; VendInvoiceJour vendInvoiceJour; DLSTax_1016 dlsTax_1016; //real BED_EX_KA,Cess_EX_KA,EC_EX_KA,SHE_EX_KAR; //INMF-110000059 delete_from dlsTax_1016; { while select ledgervoucher from VendInvoiceJour { while select * from taxTrans_In where taxTrans_In.Voucher == vendInvoiceJour.LedgerVoucher { dlsTax_1016.Voucher = taxTrans_In.Voucher; switch (taxTrans_In.TaxCode )...
Popular posts from this blog
How to use "Like" operator in the QueryBuildRange.Value To make something as the "LIKE" operator in a query, you should just assign a value to the queryRange including a wildcard. The query framework will then change the statement into a LIKE statement. If the value does not contain a wildchard the query framework will change the statement to ==. .here qbr.valu("!P*,C*"); will come letter not start with C,P letters if we use qbr.value("P*,C*") will get particular values start with P,c letter.. Using NOT LIKE in X++ select statements and query ranges source: http://basicax.blogspot.com/2014/08/using-not-like-in-x-select-statements.html
Contract Class: Microsoft Dynamics AX 2012 introduces the concept of attributes. Attributes provide a way to specify metadata about classes and methods. Two of these attributes are used when creating data contracts: the DataContractAttribute and DataMemberAttribute attributes. The DataContractAttribute attribute is used to define that a class is a data contract. The DataMemberAttribute attribute is added to methods of data contracts that represent data members that have to be exposed. Contracts are used to define what can be communicated. A data contract are used for defining parameters to the SSRS report. We can define any number of parameters using X++ statements of any data type, which can be passed on to the RDP class. A data contract class is an X++ class which contains parm methods with the DataMemberAttribute defined at the beginning of the method. RDP Class: The RDP class is a data provider that allows you to add business logic for the data that is di...

Comments
Post a Comment