CREATE REQUESTMODEL

Define a request model in the local CICS region.

Read syntax diagramSkip visual syntax diagramCREATE REQUESTMODEL
 
>>-CREATE REQUESTMODEL(data-value)--ATTRIBUTES(data-value)------>
 
>--ATTRLEN(data-value)--LOGMESSAGE(cvda)-----------------------><
 
CREATE REQUESTMODEL attribute values:
 
                            .-TRANSID(CIRP)--.
|--+---------------------+--+----------------+------------------>
   '-DESCRIPTION(char58)-'  '-TRANSID(char4)-'
 
                       .-TYPE(GENERIC)-.
>--CORBASERVER(char4)--+---------------+------------------------>
                       +-TYPE(EJB)-----+
                       '-TYPE(CORBA)---'
 
>--+--------------------------------------------+--------------->
   '-BEANNAME(char240)--+-INTFACETYPE(BOTH)---+-'
                        +-INTFACETYPE(HOME)---+
                        '-INTFACETYPE(REMOTE)-'
 
>--+-----------------------------------------+------------------>
   '-+-----------------+--INTERFACE(char255)-'
     '-MODULE(char255)-'
 
>--OPERATION(char255)-------------------------------------------|
 

Conditions: ILLOGIC, INVREQ, LENGERR, NOTAUTH

Note to COBOL programmers:

In the syntax above, you must use
     --- ATTRIBUTES ( data-area )---  instead of
     --- ATTRIBUTES ( data-value)---

Description

The CREATE REQUESTMODEL command installs a REQUESTMODEL definition with the attribute specified on the command. It does not use a resource definition stored in the CSD. . If there is already a request model with the name you specify in the local CICS region, the new definition replaces the old one; it not, the new definition is added.

A syncpoint is implicit in CREATE REQUESTMODEL processing, except when an exception condition is detected early in processing the command. Uncommitted changes to recoverable resources made up to that point in the task are committed if the CREATE executes successfully, and rolled back if not. See Creating resource definitions for other general rules governing CREATE commands.

Options

ATTRIBUTES(data-value)
specifies the attributes of the REQUESTMODEL being added. The list of attributes must be coded as a single character string using the syntax shown in REQUESTMODEL attributes. See ATTRIBUTES option for general rules for specifying attributes, and the REQUESTMODEL section in the CICS® Resource Definition Guide for details about specific attributes.
ATTRLEN(data-value)
specifies the length in bytes of the character string supplied in the ATTRIBUTES option, as a halfword binary value. The length can be from 0 to 32767.
LOGMESSAGE
specifies whether CICS logs the attributes used for the resource being created to the CSDL transient data queue. CVDA values are:
LOG
The resources attributes are logged to the CSDL transient data queue.
NOLOG
The resources attributes are not logged to the CSDL transient data queue.
REQUESTMODEL(data-value)
specifies the 8-character name of the REQUESTMODEL definition to be added to the CICS region.

Conditions

ILLOGIC
RESP2 values:
2
The command cannot be executed because an earlier CONNECTION or TERMINAL pool definition has not yet been completed.
INVREQ
RESP2 values:
n
There is a syntax error in the ATTRIBUTES string, or an error occurred during either the discard or resource definition phase of the processing. See Appendix C. EXEC CICS CREATE RESP2 values for information on RESP2 values.
7
The LOGMESSAGE cvda value is not valid.
200
The command was executed in a program defined with an EXECUTIONSET value of DPLSUBSET or a program invoked from a remote system by a distributed program link without the SYNCONRETURN option.
611
Installation of the REQUESTMODEL definitiuon r1 failed because a duplicate pattern already exists in r2.
618
Installation of the REQUESTMODEL definition r1 failed because it is not a valid REQUESTMODEL for this level of CICS.
LENGERR
RESP2 values:
1
The length you have specified in ATTRLEN is negative.
NOTAUTH
RESP2 values:
100
The user associated with the issuing task is not authorized to use this command.
[[ Contents Previous Page | Next Page Index ]]