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 2111: ame_approver_type_pkg.getApproverDescAndValidity(

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

Line 2155: ame_approver_type_pkg.getApproverDescAndValidity(

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

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

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

Line 2202: ame_approver_type_pkg.getApproverDescAndValidity(

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

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

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