Looking for help with AGS Call

Sort:
You are not authorized to post a reply.
Author
Messages
LauraP
Advanced Member
Posts: 28
Advanced Member
    We are still on release 8.0.3/Unix/Oracle.

    We have several Visual Basic programs that do AGS calls to various Lawson forms (OE10, RQ10 for example).

    In some cases, when passing the FC value (for a change for example) - the VB app passes a "C" and in other cases it passes the whole word "CHANGE".

    We have an issue now where VB apps that used to pass the whole word 'CHANGE' via the AGS call are no longer working - they have to be changed to pass just the "C".

    We are trying to figure out 2 things (because this was done back in 2004 by a developer who is no longer here):

    1.  What is the difference between passing "C" or "CHANGE"?
    2.  What would cause the requirement to change from "CHANGE" to "C" (possibly answering the first question will, by default, answer the second one)?

    We have a major upgrade going on to our WMS system which interfaces with our Lawson system.

    Thanks in advance - this is a high priority issue for us and I can't find anything on the KB about this.

    - Laura
    Kwane McNeal
    Veteran Member
    Posts: 479
    Veteran Member
      Laura,
      The requirement never changed. Lawson *did* tighten up their code. FC and _PFC have *always* been PIC X(1). The issue is that Lawson didn't bounds check the input values.

      Previously, they effectively did a LEFT(1) on the input. That left them open to buffer overruns. Now they reject the value.

      This was also an issue with things like COMPANY.

      Historically if you passed in more than four digits, I had seen it treated as a LEFT(4), now they reject the value fully (as they should).

      Your VB programmers got lucky that they could pass the same value to FC as they passed to _EVT, and in some cases _PFC.

      Today, the rules are hardened, and they are
      FC PIC X(1)
      _PFC = same as FC
      _EVT = CHANGE or ADD (I think you can pass INQUIRE, but I can't recall)

      Kwane
      Phil Romov
      Veteran Member
      Posts: 44
      Veteran Member
        _EVT is actually ADD/CHG

        CHANGE just seems like a gross error to me, to be supported only by mistake on lawson's part.

        Extra note: the FC is program defined, it can be A, C, I, X, Y, Z, etc. But the _EVT affects how lawson interfaces with the program - on ADD there's just a basic one-way interaction, on CHG lawson first automatically inquires, then continues as if it was an "ADD".

        All of this can be reviewed in lawson's "Doc for Developers: IOS Application Program Interfaces" for reference
        shreekant
        New Member
        Posts: 1
        New Member
          shreekant can u explain me what is AGS calls Do?and actual what it dose?Or any link which help me to understand AGS calls?or if possible send me data mail id-:wagh.shreekant@gmail.com

          Shane Jones
          Veteran Member
          Posts: 460
          Veteran Member
            Shreekant,
            Can you tell me .... Are you just looking to learn what an AGS call is compared to say... a DME?
            Shane Jones
            Tools: HR, Payroll, Benefits, PFI, Smart Office, BSI, Portal and Self-Service
            Systems: Lawson, Open Hire, Kronos, Crystal Reporting, SumTotal Learning
            ** Teach others to fish...
            You are not authorized to post a reply.