Get PurchaseOrder and Lineitems

SOLVED

How to get PurchaseOrderNo using PurchaseOrder Details & LineItems data from Sage 100 desktop application using C#?

I have using DispatchObject and done login and select company functionality.

Can you please help me to get PO detail using C#?

Parents Reply Children
  • 0 in reply to rajeshkannanait

    How to get an Invoice and Line Item details? 

    Can you please share the code or share the line item keywords?

    I did get the Invoice No, Date and Shipping Address but I can not fetch the Line Items details?

    One more thing, I have also got the PO & SO detail and Line Items details, but I am struggling in Invoice Line Items.

    Can you please help me?

     oSS.InvokeMethod("nSetDate", "S/O", DateTime.Now.ToString("yyyyMMdd"));
                oSS.InvokeMethod("nSetModule", "S/O");
    
                int TaskID = (int)oSS.InvokeMethod("nLookupTask", "SO_Invoice_ui");
                int setProgramTest = (int)oSS.InvokeMethod("nSetProgram", TaskID);
    
                //we create two lists to store the line keys and quantities in.
                List<Invoice> invoiceList = new List<Invoice>();
    
                using (DispatchObject soObject = new DispatchObject(pvx.InvokeMethod("NewObject", "SO_Invoice_bus", oSS.GetObject())))
                {
                    soObject.InvokeMethod("nMoveFirst");
                    int sEOF = (int)soObject.GetProperty("nEOF");
                    do
                    {
                        var invoiceNo = soObject.GetDataObject("InvoiceNo$");
    
                        var invoice = new Invoice();
                        invoice.InvoiceNo = invoiceNo;
                        invoice.ShipToAddress1 = soObject.GetDataObject("ShipToAddress1$");
                        invoice.OrderDate = TextUtilities.ConvertDate(soObject.GetDataObject("InvoiceDate$"));
    
                        using (DispatchObject so_line = new DispatchObject(soObject.GetProperty("oLines")))
                        {
                            so_line.InvokeMethod("nMoveFirst");
                            int EOF = (int)so_line.GetProperty("nEOF");
                            do
                            {
                                var ItemCode = so_line.GetDataObject("ItemCode$");