一、File OPEN-ID in CL

Ü    OPNID in DCLF

 ·        Open id is an identifier forany opened file in the CL program.

 

DCLF      FILE(AMIT/ACCOUNT) OPNID(ID1)

QUALIFIED FILE NAME - AMIT/ACCOUNT

RECORD FORMAT NAME - REC1

Whenwe compile the program, we can see in the spool file that the fields getpre-fixed with the ID name. Hence, each file’s that we declare in CL isrecognized by the unique open-id.

4、CL programming (一)


二、CAT BCAT TCAT

Ü   *CAT/*BCAT/*TCAT

 

*CAT or || Joins two strings "as is"

*BCAT or |> Joins two strings with a single blankspace between

*TCAT or |< Joins two strings trimming firststring

'String One ' *CAT 'StringTwo ' Yields 'String One String Two '

'String One ' *BCAT 'StringTwo ' Yields 'String One String Two '

'String One ' *TCAT 'StringTwo ' Yields 'String OneString Two '


三、Handling Indicator in CL

Ü   CHANGING INDCATOR VALUE IN CL

4、CL programming (一)

四、Multiple file read operation

Ü   Multiplefile read operation in CL

 If we want to use multiple files in the CLprogram, we need to use OPEN ID for this.

4、CL programming (一)

OUTPUT

4、CL programming (一)

Now we press ENTER to get the OUTPUT below:

4、CL programming (一)


相关文章:

  • 2022-01-21
  • 2021-07-13
  • 2022-12-23
  • 2022-12-23
  • 2021-10-24
  • 2021-05-16
  • 2021-07-15
  • 2021-11-16
猜你喜欢
  • 2021-09-01
  • 2021-12-28
  • 2021-12-23
  • 2021-10-01
相关资源
相似解决方案