12.43 Delete Account Web Service(DELETE)

Below mentioned are the custom fields. These fields will be part of both request and response.

Table 12-36 Delete Account Web Service

Element name Sub element Data type
StringData KeyName String
  KeyValue String
NumberData KeyName String
  KeyValue Number (Decimal)
DateData KeyName String
  KeyValue Date(YYYY-MM-DDTHH:MM:SS)
Sample XML
<Custom>
    < StringData>
        <KeyName>StringName</KeyName>
        <KeyValue>StringValue</KeyValue>
    </ StringData>
    < NumberData>
        <KeyName>NumberName</KeyName>
        <KeyValue>NumberValue</KeyValue>
    </ NumberData>
    <DateData>
        <KeyName>DateName</KeyName>
        <KeyValue>DateValue</KeyValue>
    </DateData>
</Custom>
Sample JSON
"Custom": {
    "StringData": [
    {
     "KeyName": "StringName",
     "KeyValue": "StringValue"
    }
 ],
    "NumberData": [
    {
     "KeyName": "NumberName",
     "KeyValue": NumberValue
    }
 ],
    "DateData": [
    {
     "KeyName": "DateName",
     "KeyValue": "DateValue"
    }
 ]
}

Below are the package details for delete account web service

Wrapper Engine packages :-
xcsdac_ew_100_01. xcsdac_ew_100_01 (iv_xcs_dac_rec IN OUT xcs_dac_req_rec_t)
Main Engine package:-
xcsdac_em_100_01.xcsdac_em_100_01(iv_xcs_dac_rec IN OUT xcs_dac_req_rec_t));

Below are the Exit point package details for xcsdac_em_100_01. xcsdac_em_100_01 ();

BEFORE:-
IF xcsdac_ex_100_01.cv_xcsdac_em_100_01_bfr =cmncon_cl_000_01.CUSTOMIZED THEN
    xcsdac_ex_100_01.xcsdac_em_100_01_bfr(iv_xcs_dac_rec);
REPLACE:-
IF xcsdac_ex_100_01.cv_xcsdac_em_100_01_rep =cmncon_cl_000_01.CUSTOMIZED THEN
    xcsdac_ex_100_01.xcsdac_em_100_01_rep(iv_xcs_dac_rec);
AFTER:-
IF xcsdac_ex_100_01.cv_xcsdac_em_100_01_afr =cmncon_cl_000_01.CUSTOMIZED THEN
    xcsdac_ex_100_01.xcsdac_em_100_01_afr(iv_xcs_dac_rec);
Extensible parameters are Tab Type object
CREATE OR REPLACE TYPE xws_att_str_rec_t AS OBJECT (
    ATT_NAME     VARCHAR2(30),
    ATT_VALUE    VARCHAR2(4000));
CREATE OR REPLACE TYPE xws_att_num_rec_t AS OBJECT (
    ATT_NAME     VARCHAR2(30),
    ATT_VALUE    NUMBER);
CREATE OR REPLACE TYPE xws_att_date_rec_t AS OBJECT (
    ATT_NAME     VARCHAR2(30),
    ATT_VALUE    DATE);