How can i access to any Collection from C# code?

i can access to my Forms primary collection with: ThisForm.primarycollection...

But, how can i access to another collection from C# code.

For example.

I am on Customers Form design, i need to know how to generate XML file with a tag for a every Sales Order that have my customer, so i need to load the SLPos Collection on my code to assign the OrderNum to my XML tag.

 

Sorry for my english.

Regards!

Parents Reply
  • Infor has broken functionality like this into different classes:

    • LoadCollection(Request/Response)Data - Read data out of an IDO
    • UpdateCollection(Request/Response)Data - Perform some kind of modification to a collection (insert, delete)
    • Invoke(Request/Response)Data - Execute IDO Methods. If an IDO Method is mapped to an SP, the SP gets called

    In the IDOClient, you simply call the appropriate method:

    • LoadCollection
    • Updatecollection
    • Invoke

    This PDF explains how to do the development in an IDO Extension Class. It's for Mongoose 9.03, so just be aware.

    6180.IDO DevelopmentGuide - Mongoose 9.03.pdf

Children