DBA Data[Home] [Help]

APPS.GMD_CONC_REPLACE_PKG dependencies on FND_GLOBAL

Line 135: v_p1 := instr(l_short_text, fnd_global.newline, 1, 1); --get position of the end of the line

131: length(l_text) - v_start_pos + 3);
132: l_short_text := trim(l_short_text);
133:
134: FOR i IN 1 .. bind_count LOOP
135: v_p1 := instr(l_short_text, fnd_global.newline, 1, 1); --get position of the end of the line
136:
137: v_line := trim(substr(l_short_text, 1, v_p1 - 1)); --get one line
138: g_bind_ttbl(i) := substr(v_line, 1, 1); --get the value type: 'C','D','N'
139: v_p2 := instr(v_line, '=', 1, 1); -- get the position of '='

Line 395: l_user_id NUMBER := FND_GLOBAL.USER_ID;

391: l_organization_id GMD_RECIPES_B.owner_organization_id%TYPE;
392: l_recipe_id GMD_RECIPES_B.recipe_id%TYPE;
393: l_recipe_type GMD_RECIPES_B.recipe_type%TYPE;
394:
395: l_user_id NUMBER := FND_GLOBAL.USER_ID;
396:
397: l_dummy_cnt NUMBER;
398: l_error_text VARCHAR2(2000);
399: l_rowcount NUMBER := 0;