DBA Data[Home] [Help]

APPS.XDP_PROC_CTL dependencies on XDP_ENGINE

Line 439: XDP_ENGINE.GET_WORKITEM_PARAM_VALUE(WIInstanceID,

435: begin
436:
437:
438: if ParamType = 'WORKITEM' then
439: XDP_ENGINE.GET_WORKITEM_PARAM_VALUE(WIInstanceID,
440: ParamName,
441: ParamValue,
442: l_ParamRefValue,
443: LogFlag,

Line 459: XDP_ENGINE.GET_FA_PARAM(FAInstanceID,

455: end if;
456:
457: elsif ParamType = 'FA' then
458:
459: XDP_ENGINE.GET_FA_PARAM(FAInstanceID,
460: ParamName,
461: ParamValue,
462: l_ParamRefValue,
463: LogFlag,

Line 482: ParamValue := XDP_ENGINE.GET_ORDER_PARAM_VALUE (OrderID,

478: ParamLogValue := ParamValue;
479: end if;
480:
481: elsif ParamType = 'ORDER' then
482: ParamValue := XDP_ENGINE.GET_ORDER_PARAM_VALUE (OrderID,
483: ParamName);
484: elsif ParamType = 'LINE' then
485: ParamValue := XDP_ENGINE.GET_LINE_PARAM_VALUE(LineItemID,
486: ParamName);

Line 485: ParamValue := XDP_ENGINE.GET_LINE_PARAM_VALUE(LineItemID,

481: elsif ParamType = 'ORDER' then
482: ParamValue := XDP_ENGINE.GET_ORDER_PARAM_VALUE (OrderID,
483: ParamName);
484: elsif ParamType = 'LINE' then
485: ParamValue := XDP_ENGINE.GET_LINE_PARAM_VALUE(LineItemID,
486: ParamName);
487: else
488: RAISE e_InvalidParamTypeException;
489: end if;

Line 1338: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(NeID, pv_attrFeCmdTimeout);

1334:
1335: Timeout := 0;
1336:
1337: begin
1338: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(NeID, pv_attrFeCmdTimeout);
1339: if l_FeValue is null then
1340: l_CmdTimeout := 120;
1341: else
1342: l_CmdTimeout := to_number(l_FeValue);

Line 1352: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(NeID, pv_attrFeRetryCount);

1348: RAISE e_ParamValueException;
1349: end;
1350:
1351: begin
1352: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(NeID, pv_attrFeRetryCount);
1353: if l_FeValue is null then
1354: l_Retries := 0;
1355: else
1356: l_Retries := to_number(l_FeValue);

Line 1366: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(NeID, pv_attrFeCmdRetryWait);

1362: RAISE e_ParamValueException;
1363: end;
1364:
1365: begin
1366: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(NeID, pv_attrFeCmdRetryWait);
1367: if l_FeValue is null then
1368: l_RetryWait := 0;
1369: else
1370: l_RetryWait := to_number(l_FeValue);

Line 2524: XDP_ENGINE.GET_FE_CONFIGINFO ( FEName,

2520: p_CleanReturn => 'Y');
2521:
2522: XDP_ADAPTER_CORE.SendSync(p_ChannelName => l_ApplChannelName);
2523:
2524: XDP_ENGINE.GET_FE_CONFIGINFO ( FEName,
2525: pv_FeID,
2526: pv_FeTypeID,
2527: pv_FeType,
2528: pv_SwGeneric,

Line 2960: l_param_value := XDP_ENGINE.Get_FE_ATTRIBUTEVAL(FeName, l_param_wo_dollar);

2956:
2957: /*
2958: * Get the Connect parameter value at run time
2959: */
2960: l_param_value := XDP_ENGINE.Get_FE_ATTRIBUTEVAL(FeName, l_param_wo_dollar);
2961: IF ErrCode < 0 OR ErrCode = 100 THEN
2962: RAISE e_ParamValueException;
2963: ActualStr := ConnectStr;
2964: end IF;

Line 3001: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(FeName, pv_attrFeCmdTimeout);

2997: ErrCode := 0;
2998: ErrStr := NULL;
2999:
3000: begin
3001: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(FeName, pv_attrFeCmdTimeout);
3002: if l_FeValue is null then
3003: CmdTimeout := 120;
3004: else
3005: CmdTimeout := to_number(l_FeValue);

Line 3015: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(FeName, pv_attrFeRetryCount);

3011: RAISE e_ParamValueException;
3012: end;
3013:
3014: begin
3015: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(FeName, pv_attrFeRetryCount);
3016: if l_FeValue is null then
3017: CmdRetryCount := 0;
3018: else
3019: CmdRetryCount := to_number(l_FeValue);

Line 3029: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(FeName, pv_attrFeCmdRetryWait);

3025: RAISE e_ParamValueException;
3026: end;
3027:
3028: begin
3029: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(FeName, pv_attrFeCmdRetryWait);
3030: if l_FeValue is null then
3031: CmdWait := 0;
3032: else
3033: CmdWait := to_number(l_FeValue);

Line 3043: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(FeName, pv_attrFeNoActTimeout);

3039: RAISE e_ParamValueException;
3040: end;
3041:
3042: begin
3043: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(FeName, pv_attrFeNoActTimeout);
3044: if l_FeValue is null then
3045: NoActTimeout := 0;
3046: else
3047: NoActTimeout := to_number(l_FeValue);

Line 3058: DummyCmd := XDP_ENGINE.Get_FE_AttributeVal(FeName, pv_attrFeCmdKeepAlive);

3054: end;
3055:
3056:
3057: begin
3058: DummyCmd := XDP_ENGINE.Get_FE_AttributeVal(FeName, pv_attrFeCmdKeepAlive);
3059: if DummyCmd is null then
3060: DummyCmd := ' ';
3061: end if;
3062: exception

Line 3070: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(FeName, pv_attrFeConnRetryCount);

3066: RAISE e_ParamValueException;
3067: end;
3068:
3069: begin
3070: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(FeName, pv_attrFeConnRetryCount);
3071: if l_FeValue is null then
3072: ConnectRetryCount := 0;
3073: else
3074: ConnectRetryCount := to_number(l_FeValue);

Line 3085: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(FeName, pv_attrFeConnRetryWait);

3081: end;
3082:
3083:
3084: begin
3085: l_FeValue := XDP_ENGINE.Get_FE_AttributeVal(FeName, pv_attrFeConnRetryWait);
3086: if l_FeValue is null then
3087: ConnectRetryWait := 0;
3088: else
3089: ConnectRetryWait := to_number(l_FeValue);