This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Severity Code Description Project File Line Suppression State | |
| Error \n\nException message: System.Data.SqlClient.SqlException (0x80131904): Column name or number of supplied values does not match table definition. 0 | |
| Error at Microsoft.Dynamics.AX.Framework.Database.Synchronize.InitialSchemaSync.RunSync() 0 | |
| Error WHEN JMAP.SKUNAME = 'Retail' AND RL.MAINTAINLICENSE = 4 THEN 10 0 | |
| Error RL.VIEWLICENSE 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// <summary> | |
| /// Set string lenght required by PTX file format and upper case | |
| /// </summary> | |
| /// <param name = "_input"> Input string value</param> | |
| /// <param name = "_desireLenght"> Required string lenght</param> | |
| /// <returns></returns> | |
| public String255 setStringLength(String255 _input, int _desireLenght) | |
| { | |
| String255 outputString; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| System.IO.Stream stream; | |
| TextStreamIo io; | |
| System.IO.StreamReader reader; | |
| XML fileContent; | |
| io = TextStreamIo::constructForWrite(); | |
| io.writeExp(str2con(<String value/record>))); | |
| stream = io.getStream(); | |
| stream.Position = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public void lookup() | |
| { | |
| Query query = new Query(); | |
| QueryBuildDataSource qbdsPurchTable,QbdsInvntQO, qbdsInventDim; | |
| QueryBuildRange qbrVendId,qbrPurchStatus,qbrPurchType; | |
| QueryBuildLink qblink1, QbLink2; | |
| SysTableLookup sysTableLookup = sysTableLookup::newParameters(tableNum(PurchTable), this); | |
| ;//breakpoint; | |
| qbdsPurchTable = query.addDataSource(tableNum(PurchTable)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public void createPostalAddress(VendorRequestCreate _vendorRequestCreate) | |
| { | |
| VendorRequestAddress vendorRequestAddress; | |
| DirPartyPostalAddressView dirPartyPostalAddressView; | |
| ; | |
| select Addressing, | |
| LogisticsAddressCity, | |
| LogisticsAddressCountryRegionId, | |
| LogisticsAddressStateId, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private void createContact(VendorRequestCreate _vendorRequestCreate, RefRecId _partyId) | |
| { | |
| ContactPerson contactPerson; | |
| DirPersonName lDirPersonName; | |
| DirPerson lDirPerson; | |
| DirParty lDirParty; | |
| LogisticsLocation lLogisticsLocation; | |
| DirPartyContactInfoView lDirPartyContactInfoView; | |
| ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| WorkflowUser submitUser = DirPersonUserEx::worker2UserId(purchReqTable.Originator); | |
| container parm = [workFlowTypeStr(PurchReqReview), purchReqTable.RecId, wfComment, NoYes::No, submitUser]; | |
| RunAs(submitUser, classNum(myClass), staticMethodStr(myClass, SubmitToWorkflow), parm); | |
| CodeAccessPermission::revertAssert(); | |
| //While in myClass method SubmitToWorkflow will contain below code. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| static void OutputLicenseToText(Args _args) | |
| { | |
| #define.licenseVersion(2) | |
| #define.KeywordLen(20) | |
| #define.keywordLicense('License') | |
| #define.keywordProperties('Properties') | |
| #define.keywordCodes('Codes') | |
| #define.keywordCodeLine('CodeLine') | |
| #define.keywordDate('Date') | |
| #define.keywordSerial('Serial') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ImageImport extends RunBase | |
| { | |
| ItemIdEANExternalItemIdRadio itemIdEANExternalItemIdRadio; | |
| // Packed variables | |
| FilePath filePath; | |
| NoYesId setDefault; | |
| VendAccount vendAccount; | |
| // Dialog fields |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| static void TheAxapta_ItemImageUpload(Args _args) | |
| { | |
| System.String[] fileNames; | |
| DocuActionArchive docuActionArchive; | |
| EcoResProductImageManagement productImageManagement; | |
| EcoResProductImageThumbnail ecoResProductImageThumbnail; | |
| DocuRef docuRef; | |
| DocuValue docuValue, dv; | |
| EcoResProductImage ecoResProductImage; |