3.2.2.3 Sample

In this scenario, Tuxedo local services defined in DMCONFIG are configured as follows. OUTBUFTYPE here defines the message format of the incoming call.

Listing Scenario: Tuxedo Local Services Defined in DMCONFIG

[RECVIEW]
CONV=N
RNAME="RECVIEW"
INBUFTYPE="VIEW32:flat1"
OUTBUFTYPE="VIEW32:nest"

And nested VIEW is defined in bufview.v as follows.

Listing Scenario: Nested VIEW Defined in bufview.v

#type    cname     fbname   count   flag   size   null
VIEW     ECvw
carray   Eca       ECA        1      -      20     -
END

VIEW     EDvw
string   EDCstr    EDCSTR     1      -      -      -
END

VIEW     Evw
string   ECstr     ECSTR      1      -      -      -
short    EBsh      EBSH       1      -      -      -
struct   ECvw      ECVW       1      -      -      -
struct   EDvw      EDVW       1      -      -      -
END

VIEW nest
char     Ach       ACH        1      -      -      -
short    Bsh       BSH        1      -      -      -
string   Cstr      CSTR       1      -     41      -
long     Dlo       DLO        1      -      -      -
struct   Evw       EVW        1      -      -      -

END

Then you must set environment variable as follows.

export   CALLID_FIELDS_CFG=/APPDIR/callid.ini

And define configuration file as follows.

[RECVIEW]
CALLFLDS= nest: Cstr:0-2, Evw: ECstr :3-7, EDvw: EDCstr:8-15, ECvw: 
Eca:16-63