Quantcast
Channel: Visual COBOL - Forum - Recent Threads
Viewing all articles
Browse latest Browse all 4356

Passing a record from native to managed

$
0
0

I'm passing this ISAM file record from native to managed, using com-interop:

          03  RHS-REF-TRANS-HIST.
           05  RHS-REF-TRANS-HIST-KEY.
             10  RHS-TYPE-REC-ID       PIC X.
               88  RHS-TYPE-REC        VALUE "R".
             10  RHS-ENTY-CODE         PIC XX.
             10  RHS-FSCL-YR           PIC XX.
             10  RHS-REF-INFO.
               15  RHS-FNCL-ACCT       PIC XX.
               15  RHS-DEP-WTD-IND     PIC X.
               15  RHS-REF-SEQ-NO      PIC X(5).
             10  RHS-AREA-ACCT-INFO.
               15  RHS-AREA-CODE       PIC X.
               15  RHS-ACCT-NAME       PIC X(15).
             10  RHS-SUBSID-ACCT       PIC X(10).
             10  RHS-ITEM-NO           PIC S9(3)  COMP-3.
             10  RHS-FSCL-MO           PIC XX.
             10  FILLER                PIC X(7).
           05  RHS-REF-TRANS-HIST-DATA.
             10  RHS-ENTRY-TYPE        PIC X.
             10  RHS-TRANS-DATE        PIC S9(7)  COMP-3.
             10  RHS-TRANS-ID          PIC X(3).
             10  RHS-ENTP-INFO.
               15  RHS-ENTP-YR         PIC XX.
               15  RHS-ENTP-LVL1       PIC X(8).
               15  RHS-ENTP-LVL2       PIC X(8).
             10  FILLER                PIC X(3).
             10  RHS-EXCL-CASH-FLOW    PIC X.
             10  RHS-DB-CR-IND         PIC X.
             10  RHS-TAX-CODE          PIC X(7).
             10  RHS-PAYEE-CODE        PIC X(4).
             10  RHS-ITEM-AMT          PIC S9(9)V99 COMP-3.
             10  RHS-QUANT-INFO.
               15  RHS-UNIT-QUANT1     PIC S9(9)V99 COMP-3.
               15  RHS-UNIT-ABV1       PIC X(3).
               15  RHS-UNIT-QUANT2     PIC S9(9)V99 COMP-3.
               15  RHS-UNIT-ABV2       PIC X(3).
             10  RHS-TO-FROM-DESC      PIC X(17).
             10  RHS-ADDL-INFO         PIC X(17).

I am using the method from this link for passing a a record as a string:

http://community.microfocus.com/microfocus/cobol/visual_cobol/f/18/t/11760.aspx.


I receive it as a string in my managed class and then set RHS-REF-TRANS-HIST to it.  So far it has worked ok.

Could the string ever get terminated by certain characters, such as null values  in the COMP-3 or  PIC X fields?


Viewing all articles
Browse latest Browse all 4356

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>