Archive recovery note: the supplied Blogspot backup did not contain a separate saved page for this older entry. The text available in its archive/listing capture has been preserved and flagged for a later completeness check.
Came across a requirement to attach documents and create notes for a sales order after reading files from directories. Documents can be attached to a sales order manually from the following button. Code snippet to create notes or attach documents DocuRef docuRef; DocuActionArchive docuArchive; SalesTable salesTable = SalesTable ::find( "SO00001" ); Filename fileName = @"C\Temp\SalesOrder.docx" ; ttsbegin ; // Code to create notes docuRef.TypeId = 'Note' ; docuRef.Name = "Sales order notes" ; docuRef.Notes = "Checked Postcode: 2000, Select resident type" ; docuRef.Restriction = DocuRestriction ::External; docuRef.RefTableId = tableNum ( SalesTable ); docuRef.Ref...
Ask a question or leave feedback
This is a review interaction. The WordPress version will store, thread and moderate comments.