DBA Data[Home] [Help]

APPS.AME_TEST_UTILITY_PKG dependencies on FND_GLOBAL

Line 258: conditionsList := conditionsList || fnd_global.local_chr(ascii_chr => 13);

254: into conditionIdList;
255: close getCondtitionsCursor;
256: for x in 1 .. conditionIdList.count loop
257: if x > 1 then
258: conditionsList := conditionsList || fnd_global.local_chr(ascii_chr => 13);
259: end if;
260: conditionsList := conditionsList
261: || ame_utility_pkg.get_condition_description(p_condition_id => conditionIdList(x));
262: end loop;

Line 334: actionsList := actionsList || fnd_global.local_chr(ascii_chr => 13);

330: into actionIdList;
331: close getActionsCursor;
332: for x in 1 .. actionIdList.count loop
333: if x <> 1 then
334: actionsList := actionsList || fnd_global.local_chr(ascii_chr => 13);
335: end if;
336: actionsList := actionsList
337: || ame_utility_pkg.get_action_description(p_action_id => actionIdList(x));
338: end loop;

Line 380: sourceDesc := sourceDesc || fnd_global.local_chr(ascii_chr => 13);

376: ,sourceDescriptionOut => sourceDescription
377: ,ruleIdListOut => ruleIdList);
378: for x in 1 .. ruleIdList.count loop
379: if x > 1 then
380: sourceDesc := sourceDesc || fnd_global.local_chr(ascii_chr => 13);
381: end if;
382: sourceDesc := sourceDesc || getRuleDescription(ruleIdList(x),effectiveRuleDate);
383: end loop;
384: return sourceDesc;

Line 1144: productionsList := productionsList || fnd_global.local_chr(ascii_chr => 13);

1140: for j in 1 .. productionIndexes.count
1141: loop
1142: if(productionIndexes(j) = i) then
1143: if (j <> 1) then
1144: productionsList := productionsList || fnd_global.local_chr(ascii_chr => 13);
1145: end if;
1146: productionsList := productionsList ||
1147: variableNames(j)|| ' : ' ||
1148: variableValues(j);