Wrtitting the Comments.

Sort:
You are not authorized to post a reply.
Author
Messages
Srini Rao
Veteran Member
Posts: 149
Veteran Member
    Hello I'm trying to add comments to existing requisition and my program fails on the compile it self :-)

    Here is my code and I copied it from RQ500...

    323697               INITIALIZE             WS-CMTRQH.
     64911                PERFORM 900-CREATE-CMT-REQHEADER.
     64913                MOVE "P"            TO CMTRQH-TYPE.
     64917                MOVE "TEST COMMENT"    TO CMTRQH-NAME.
     64919                MOVE 205                 TO CMTRQH-SIZE.
     64920                MOVE "Testing"  TO CMTRQH-EXT-TEXT.
     64921                PERFORM 900-STORE-CMT-REQHEADER.


    Compile Listing/Error message....
    * 250-S*******************                                                   **
    **    STATUS field WS-WORK-FILE-STATUS missing or illegal
    * Checking complete - errors found
    Errors encountered-c



    Please advise me.

    Thanks
    ---Srini

    Woozy
    Veteran Member
    Posts: 709
    Veteran Member
      Hi Srini Rao - My company is not licensed for the requisition module, so I can't look at the RQ500 on my system for reference, so it's difficult to guess the issue with the information you provided. However, it looks like it's expecting a value to be in your *WS file (or maybe in your work file configuration) that it's not finding in your code.

      Here are some questions that may help us point you in the right direction:
      - Did you include the entire compile error in your post, or is there more to it?  If there is more, please or attach the entire .err file.
      - Are you modifying the RQ500, or is this a custom program?
      - If you comment out the lines of code you posted, does the program compile?  I'm wondering if the issue is related to these lines or if it might live elsewhere.

      Maybe someone with RQ experience will chime in too...
      Kelly Meade
      J. R. Simplot Company
      Boise, ID
      Srini Rao
      Veteran Member
      Posts: 149
      Veteran Member
        Hello Kelly Meade, Thanks for quick response.

        I think, i might be missing some thing. I did looked the lawson API documentation and it does not adding any WS* or work file variables.

        1. I'm attaching the full compile list.
        2. It's custom program. I cloned the RQ500 and try to change add same lines in RQ500 and it worked.
        3. If I comment the lines I mentioned it does get compile and works as it's designed.

        Thanks
        ---Srini


        Compiled on DA1LWXXXXX

        Building COBOL Shell

        Processing PgmInfo Request ...
        bismark TEST Z3 ZR503
        Processing K:\linte\apps/test/z3src/ZR503.rpt
        Created RptMap: ZR503 and Archive RptMap: ZR503.1351186461.rmp
        Created rd File: K:\linte\apps/test/z3src/ZR503.rd
        Syntax Check K:\linte\apps/test/z3src/ZR503WS
        Syntax Check K:\linte\apps/test/z3src/ZR503PD
        Building Int From ZR503PD, ZR503WS, ZR503SD, ZR503.rd, wslibs & workfiles
        Building K:\linte\apps/test/sdlib/ZR503SD
        Build Of Int Complete For ZR503
        Editing PGM: ZR503
        Building K:\linte\apps/test/z3src/ZR503.cbl

        Shell has been built.

        Compiling K:\linte\apps\test\z3src\ZR503.cbl with cobol K:\linte\apps\test\z3src\ZR503.cbl /case /outdd"stdout" /fixopt /initcall"lacobrts.dll" /gnt ;
        Micro Focus Net Express V5
        Version 5.103.0043 Copyright (C) 1984-2009 Micro Focus (IP) Limited.
        URN AXCGG/AA0/00000
        * 250-S******************* **
        ** STATUS field WS-WORK-FILE-STATUS missing or illegal
        * Checking complete - errors found
        Errors encountered-c

        Woozy
        Veteran Member
        Posts: 709
        Veteran Member
          Is there a chance you can dump the definition for the REQHEADER workfile for your custom program, and add it as an attachment?

          From the command line:  "metadumpwrk {prodline} {programcode} REQHEADER"
          Kelly Meade
          J. R. Simplot Company
          Boise, ID
          Woozy
          Veteran Member
          Posts: 709
          Veteran Member
            Oops - sorry. I was thinking work file rather than database file.   Never mind...
            Kelly Meade
            J. R. Simplot Company
            Boise, ID
            John Henley
            Senior Member
            Posts: 3349
            Senior Member
              Did it compile before you added those lines?
              Thanks for using the LawsonGuru.com forums!
              John
              Woozy
              Veteran Member
              Posts: 709
              Veteran Member
                I noticed one thing - I think you need to put the "CMTRQH-TYPE" assignment before the 900-CREATE call.  This may or may not be your immediate problem, but I think it is a problem.

                Do you happen to have a copy of the "Doc for Developers: Lawson 4GL Application Program Interfaces" document?  It has a nice section relating to comment attachment processing.  If you don't have it, I'd suggest you get a copy from the Infor Documentation Library.  It is very helpful for this.

                Also, you might check to see if RQ500WS includes "WS-WORK-FILE-STATUS", and if it does, make sure you include it (and any redefines, etc) in your program.

                Kelly Meade
                J. R. Simplot Company
                Boise, ID
                David Cron
                Basic Member
                Posts: 13
                Basic Member
                  Hi Srini,

                  When you cloned the RQ500, did you go into workdef and change the names of the workfiles that RQ500 uses natively. The cloning changes the workfile name in the COBOL code but not in workdef. There is an executable that can be used to globally change the workdef names but at the moment I can't remember it.

                  However you can manually change them to reference the new program name and that should(hopefully) solve your problem.

                  David Cron
                  DR Technology Corporation.
                  John Henley
                  Senior Member
                  Posts: 3349
                  Senior Member
                    WS-WORK-FILE-STATUS is a variable in the COMMON wslib.
                    Since the COMMON library isn't being inserted by the pre-compiler, I think the program didn't compile before the changes were made.
                    Comment out or remove the lines you added for the comments and see if it compiles.
                    Thanks for using the LawsonGuru.com forums!
                    John
                    Srini Rao
                    Veteran Member
                    Posts: 149
                    Veteran Member
                      I did API guide was not so use full.

                      I added the 840-FIND-RQHSET1 before comments section. At least I got it compiled.

                      You are not authorized to post a reply.