DBA Data[Home] [Help]

APPS.ECX_TRADING_PARTNER_PVT dependencies on STANDARD

Line 427: i_message_standard OUT NOCOPY varchar2,

423: procedure getEnvelopeInformation
424: (
425: i_internal_control_number in pls_integer,
426: i_message_type OUT NOCOPY varchar2,
427: i_message_standard OUT NOCOPY varchar2,
428: i_transaction_type OUT NOCOPY varchar2,
429: i_transaction_subtype OUT NOCOPY varchar2,
430: i_document_number OUT NOCOPY varchar2,
431: i_party_id OUT NOCOPY varchar2,

Line 450: message_standard,

446:
447: cursor get_msg_attributes(p_icn in pls_integer)
448: is
449: select message_type,
450: message_standard,
451: transaction_type,
452: transaction_subtype,
453: document_number,
454: partyid,

Line 474: i_message_standard := i_get_msg_attributes.message_standard;

470: open get_msg_attributes(p_icn => i_internal_control_number);
471: fetch get_msg_attributes into i_get_msg_attributes;
472:
473: i_message_type := i_get_msg_attributes.message_type;
474: i_message_standard := i_get_msg_attributes.message_standard;
475: i_transaction_type := i_get_msg_attributes.transaction_type;
476: i_transaction_subtype := i_get_msg_attributes.transaction_subtype;
477: i_document_number := i_get_msg_attributes.document_number;
478: i_party_id := i_get_msg_attributes.partyid;

Line 600: p_standard_code IN VARCHAR2,

596:
597: function validateTPUser (
598: p_transaction_type IN VARCHAR2,
599: p_transaction_subtype IN VARCHAR2,
600: p_standard_code IN VARCHAR2,
601: p_standard_type IN VARCHAR2,
602: p_party_site_id IN VARCHAR2,
603: p_user_name IN VARCHAR2,
604: x_tp_header_id OUT NOCOPY NUMBER,

Line 601: p_standard_type IN VARCHAR2,

597: function validateTPUser (
598: p_transaction_type IN VARCHAR2,
599: p_transaction_subtype IN VARCHAR2,
600: p_standard_code IN VARCHAR2,
601: p_standard_type IN VARCHAR2,
602: p_party_site_id IN VARCHAR2,
603: p_user_name IN VARCHAR2,
604: x_tp_header_id OUT NOCOPY NUMBER,
605: retcode OUT NOCOPY VARCHAR2,

Line 621: p_standard_code,

617: end if;
618:
619: p_tp_flag := ecx_rule.isTPEnabled ( p_transaction_type,
620: p_transaction_subtype,
621: p_standard_code,
622: p_standard_type,
623: p_party_site_id,
624: x_queue_name,
625: x_tp_header_id);

Line 622: p_standard_type,

618:
619: p_tp_flag := ecx_rule.isTPEnabled ( p_transaction_type,
620: p_transaction_subtype,
621: p_standard_code,
622: p_standard_type,
623: p_party_site_id,
624: x_queue_name,
625: x_tp_header_id);
626:

Line 632: 'p_standard_code', p_standard_code,'p_transaction_type',p_transaction_type,

628: retcode := 0;
629: else
630: retcode := 1;
631: errmsg := ecx_debug.getTranslatedMessage('ECX_RULE_INVALID_TP_SETUP',
632: 'p_standard_code', p_standard_code,'p_transaction_type',p_transaction_type,
633: 'p_transaction_subtype',p_transaction_subtype,'p_party_site_id',p_party_site_id);
634:
635: ecx_debug.setErrorInfo(2,30,
636: 'ECX_RULE_INVALID_TP_SETUP', 'p_standard_code', p_standard_code,'p_transaction_type',p_transaction_type,

Line 636: 'ECX_RULE_INVALID_TP_SETUP', 'p_standard_code', p_standard_code,'p_transaction_type',p_transaction_type,

632: 'p_standard_code', p_standard_code,'p_transaction_type',p_transaction_type,
633: 'p_transaction_subtype',p_transaction_subtype,'p_party_site_id',p_party_site_id);
634:
635: ecx_debug.setErrorInfo(2,30,
636: 'ECX_RULE_INVALID_TP_SETUP', 'p_standard_code', p_standard_code,'p_transaction_type',p_transaction_type,
637: 'p_transaction_subtype',p_transaction_subtype,'p_party_site_id',p_party_site_id);
638:
639: return 'N';
640: end if;