DBA Data[Home] [Help]

APPS.XDP_PROCEDURE_BUILDER_UTIL dependencies on XDP_PROCEDURE_BUILDER

Line 1: PACKAGE BODY XDP_PROCEDURE_BUILDER_UTIL AS

1: PACKAGE BODY XDP_PROCEDURE_BUILDER_UTIL AS
2: /* $Header: XDPPRBUB.pls 120.1 2005/06/24 17:29:13 appldev ship $ */
3:
4: g_new_line CONSTANT VARCHAR2(10) := convert(FND_GLOBAL.LOCAL_CHR(10),
5: substr(userenv('LANGUAGE'), instr(userenv('LANGUAGE'),'.') +1),

Line 707: xdp_procedure_builder.pv_ParamFADisp);

703: x_ErrorCode := -1;
704: FND_MESSAGE.SET_NAME('XDP', 'XDP_INVALID_PARAMETER');
705: FND_MESSAGE.SET_TOKEN('PARAMETER_NAME', g_ParamLocations(i).ParamName);
706: FND_MESSAGE.SET_TOKEN('PARAMETER_TYPE',
707: xdp_procedure_builder.pv_ParamFADisp);
708: x_ErrorString := FND_MESSAGE.GET;
709: exit;
710: end if;
711:

Line 744: xdp_procedure_builder.pv_ParamWIDisp);

740: x_ErrorCode := -1;
741: FND_MESSAGE.SET_NAME('XDP', 'XDP_INVALID_PARAMETER');
742: FND_MESSAGE.SET_TOKEN('PARAMETER_NAME', g_ParamLocations(i).ParamName);
743: FND_MESSAGE.SET_TOKEN('PARAMETER_TYPE',
744: xdp_procedure_builder.pv_ParamWIDisp);
745: x_ErrorString := FND_MESSAGE.GET;
746: exit;
747: end if;
748: end loop;

Line 780: xdp_procedure_builder.pv_ParamFEDisp);

776: x_ErrorCode := -1;
777: FND_MESSAGE.SET_NAME('XDP', 'XDP_INVALID_PARAMETER');
778: FND_MESSAGE.SET_TOKEN('PARAMETER_NAME', g_ParamLocations(i).ParamName);
779: FND_MESSAGE.SET_TOKEN('PARAMETER_TYPE',
780: xdp_procedure_builder.pv_ParamFEDisp);
781: x_ErrorString := FND_MESSAGE.GET;
782: exit;
783: end if;
784:

Line 1043: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroSendHttp,'SFM_HTTP');

1039: l_replace_clash_str1 := '##XEND##';
1040:
1041:
1042: -- These are to Replacing the Clashing strings with the macros...
1043: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroSendHttp,'SFM_HTTP');
1044: l_temp_str := REPLACE(l_temp_str, l_clash_str1, l_replace_clash_str1);
1045:
1046: -- Translate the Users macro calls into the actual calls
1047: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroSend,

Line 1047: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroSend,

1043: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroSendHttp,'SFM_HTTP');
1044: l_temp_str := REPLACE(l_temp_str, l_clash_str1, l_replace_clash_str1);
1045:
1046: -- Translate the Users macro calls into the actual calls
1047: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroSend,
1048: g_replace_send_str);
1049: l_temp_str := REPLACE(l_temp_str, 'SFM_HTTP', g_replace_send_http_str);
1050: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroResponseContains,
1051: g_replace_resp_str);

Line 1050: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroResponseContains,

1046: -- Translate the Users macro calls into the actual calls
1047: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroSend,
1048: g_replace_send_str);
1049: l_temp_str := REPLACE(l_temp_str, 'SFM_HTTP', g_replace_send_http_str);
1050: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroResponseContains,
1051: g_replace_resp_str);
1052: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroNotifError,
1053: g_replace_notify_str);
1054: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroGetResp,

Line 1052: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroNotifError,

1048: g_replace_send_str);
1049: l_temp_str := REPLACE(l_temp_str, 'SFM_HTTP', g_replace_send_http_str);
1050: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroResponseContains,
1051: g_replace_resp_str);
1052: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroNotifError,
1053: g_replace_notify_str);
1054: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroGetResp,
1055: g_replace_get_response_str);
1056: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroGetParam,

Line 1054: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroGetResp,

1050: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroResponseContains,
1051: g_replace_resp_str);
1052: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroNotifError,
1053: g_replace_notify_str);
1054: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroGetResp,
1055: g_replace_get_response_str);
1056: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroGetParam,
1057: g_replace_get_param_str);
1058: -- New for 11.5.6++

Line 1056: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroGetParam,

1052: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroNotifError,
1053: g_replace_notify_str);
1054: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroGetResp,
1055: g_replace_get_response_str);
1056: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroGetParam,
1057: g_replace_get_param_str);
1058: -- New for 11.5.6++
1059: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroGetLongResp,
1060: g_replace_get_longresp_str);

Line 1059: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroGetLongResp,

1055: g_replace_get_response_str);
1056: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroGetParam,
1057: g_replace_get_param_str);
1058: -- New for 11.5.6++
1059: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroGetLongResp,
1060: g_replace_get_longresp_str);
1061: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroAudit,
1062: g_replace_audit_str);
1063:

Line 1061: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroAudit,

1057: g_replace_get_param_str);
1058: -- New for 11.5.6++
1059: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroGetLongResp,
1060: g_replace_get_longresp_str);
1061: l_temp_str := REPLACE(l_temp_str, xdp_procedure_builder.g_MacroAudit,
1062: g_replace_audit_str);
1063:
1064: l_temp_str := REPLACE(l_temp_str, l_replace_clash_str1, l_clash_str1);
1065:

Line 1214: end XDP_PROCEDURE_BUILDER_UTIL;

1210:
1211: begin
1212: g_ParamLocations.delete;
1213:
1214: end XDP_PROCEDURE_BUILDER_UTIL;