DBA Data[Home] [Help]

APPS.AME_CONDITION_PKG dependencies on AME_APPROVER_TYPE_PKG

Line 265: ame_approver_type_pkg.getApproverDescription(nameIn => approverName);

261: ame_condition_pkg.getParameterOne(conditionIdIn => conditionIdIn);
262: approverName :=
263: ame_condition_pkg.getParameterTwo(conditionIdIn => conditionIdIn);
264: approverDescription :=
265: ame_approver_type_pkg.getApproverDescription(nameIn => approverName);
266: if(approverType = ame_util.finalApprover) then
267: return(ame_util.getLabel(ame_util.perFndAppId,'AME_FINAL_APPROVER_IS') ||' '|| approverDescription);
268: else
269: return(ame_util.getLabel(ame_util.perFndAppId,'AME_ANY_APPROVER_IS') ||' '|| approverDescription);

Line 329: ame_approver_type_pkg.getApproverTypeOrigSystem(approverTypeIdIn => approverTypeId);

325: /* Check if attribute within the condition is associated with an
326: approver type. */
327: if(approverTypeId is not null) then
328: origSystem :=
329: ame_approver_type_pkg.getApproverTypeOrigSystem(approverTypeIdIn => approverTypeId);
330: wfRolesName :=
331: ame_approver_type_pkg.getWfRolesName(origSystemIn => origSystem,
332: origSystemIdIn => to_number(parameterTwo),
333: raiseNoDataFoundIn => 'false');

Line 331: ame_approver_type_pkg.getWfRolesName(origSystemIn => origSystem,

327: if(approverTypeId is not null) then
328: origSystem :=
329: ame_approver_type_pkg.getApproverTypeOrigSystem(approverTypeIdIn => approverTypeId);
330: wfRolesName :=
331: ame_approver_type_pkg.getWfRolesName(origSystemIn => origSystem,
332: origSystemIdIn => to_number(parameterTwo),
333: raiseNoDataFoundIn => 'false');
334: if wfRolesName is null then
335: description := attributeName || ' = ' || 'Invalid :' || origSystem || ':' || parameterTwo;

Line 338: ame_approver_type_pkg.getApproverDescription(nameIn => wfRolesName);

334: if wfRolesName is null then
335: description := attributeName || ' = ' || 'Invalid :' || origSystem || ':' || parameterTwo;
336: else
337: approverDescription :=
338: ame_approver_type_pkg.getApproverDescription(nameIn => wfRolesName);
339: if(origSystem = ame_util.perOrigSystem) then
340: if(attributeName = ame_util.firstStartingPointAttribute) then
341: attributeName := ame_util.getLabel(ame_util.perFndAppId,'AME_FIRST_START_POINT_COLON');
342: elsif(attributeName = ame_util.jobLevelStartingPointAttribute) then

Line 2108: ame_approver_type_pkg.getApproverDescAndValidity(

2104: approverValid boolean;
2105: begin
2106: tempIndex := 1;
2107: for LMConditionRec in LMConditionCursor loop
2108: ame_approver_type_pkg.getApproverDescAndValidity(
2109: nameIn => lMConditionRec.parameter_two,
2110: descriptionOut => approverDesc,
2111: validityOut => approverValid);
2112: if(approverValid) then

Line 2152: ame_approver_type_pkg.getApproverDescAndValidity(

2148: tempIndex integer;
2149: begin
2150: tempIndex := 1;
2151: for LMConditionRec in LMConditionCursor loop
2152: ame_approver_type_pkg.getApproverDescAndValidity(
2153: nameIn => lMConditionRec.parameter_two,
2154: descriptionOut => tempDescription,
2155: validityOut => isApproverValid);
2156: if(isApproverValid and

Line 2157: ame_approver_type_pkg.getApproverOrigSystem(nameIn => LMConditionRec.parameter_two)

2153: nameIn => lMConditionRec.parameter_two,
2154: descriptionOut => tempDescription,
2155: validityOut => isApproverValid);
2156: if(isApproverValid and
2157: ame_approver_type_pkg.getApproverOrigSystem(nameIn => LMConditionRec.parameter_two)
2158: = ame_util.perOrigSystem) then
2159: conditionIdsOut(tempIndex) := to_char(LMConditionRec.condition_id);
2160: if(LMConditionRec.parameter_one = ame_util.anyApprover) then
2161: descriptionsOut(tempIndex) := (ame_util.getLabel(ame_util.perFndAppId,'AME_ANY_APPROVER_IS') || ' ' || tempDescription);

Line 2199: ame_approver_type_pkg.getApproverDescAndValidity(

2195: tempIndex integer;
2196: begin
2197: tempIndex := 1;
2198: for LMConditionRec in LMConditionCursor(lmApproverTypeIn => lmApproverTypeIn) loop
2199: ame_approver_type_pkg.getApproverDescAndValidity(
2200: nameIn => lMConditionRec.parameter_two,
2201: descriptionOut => tempDescription,
2202: validityOut => isApproverValid);
2203: if(isApproverValid and

Line 2204: ame_approver_type_pkg.getApproverOrigSystem(nameIn => LMConditionRec.parameter_two)

2200: nameIn => lMConditionRec.parameter_two,
2201: descriptionOut => tempDescription,
2202: validityOut => isApproverValid);
2203: if(isApproverValid and
2204: ame_approver_type_pkg.getApproverOrigSystem(nameIn => LMConditionRec.parameter_two)
2205: = ame_util.perOrigSystem) then
2206: conditionIdsOut(tempIndex) := to_char(LMConditionRec.condition_id);
2207: if(lmApproverTypeIn = ame_util.finalApprover) then
2208: descriptionsOut(tempIndex) := (ame_util.getLabel(ame_util.perFndAppId,'AME_FINAL_APPROVER_IS') || ' ' || tempDescription);