01 INPUT-MSG.
02 COUNTRY.
03 CODE pic 999.
02 ACTION.
03 CODE pic 9.
as follows: INPUT-MSG.COUNTRY.CODE if you want to exclude that
item and INPUT-MSG.ACTION.CODE if you want to exclude that item. An error
message will be issued if this rule is not followed. | Fields | Description |
|---|---|
Attribute: itemName |
Specifies the name of the data item to be selected. |
For the following COBOL language structure
01 INPUT-MSG.
02 IN-LL PICTURE S9(3) COMP.
02 IN-ZZ PICTURE S9(3) COMP.
02 IN-TRCD PICTURE X(10).
02 IN-CMD PICTURE X(8).
02 IN-NAME PICTURE X(10).
02 IN-EXTN PICTURE X(10).
you can use the following settings to prevent IN-LL, IN-ZZ and IN-EXTN data items from becoming elements in the generated XML message:
<ItemExclusionArray>
<ItemExclude itemName="IN-LL"/>
<ItemExclude itemName="IN-ZZ"/>
<ItemExclude itemName="IN-EXTN"/>
</ItemInclusionArray>