DBA Data[Home] [Help]

APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on FND_GLOBAL

Line 160: x_user_id := FND_GLOBAL.user_id;

156: x_login_id OUT NOCOPY NUMBER
157: ) IS
158: BEGIN
159: x_sysdate := SYSDATE;
160: x_user_id := FND_GLOBAL.user_id;
161: x_login_id := FND_GLOBAL.login_id;
162: END Get_Who;
163:
164: --

Line 161: x_login_id := FND_GLOBAL.login_id;

157: ) IS
158: BEGIN
159: x_sysdate := SYSDATE;
160: x_user_id := FND_GLOBAL.user_id;
161: x_login_id := FND_GLOBAL.login_id;
162: END Get_Who;
163:
164: --
165: -- Check set_type - element_type IS valid

Line 4227: l_Num := instr(substr(StmtCheck.stmt,l_Start, l_Limit) , FND_GLOBAL.newline, -1, 1);

4223: -- Use a Loop to validate each 32K chunk of the Statement
4224: LOOP
4225: -- Find the position of the new Line (line break) character working
4226: -- backwards from the end of the stmt 32K chunk
4227: l_Num := instr(substr(StmtCheck.stmt,l_Start, l_Limit) , FND_GLOBAL.newline, -1, 1);
4228: -- Reset the start position to be the previous line break identified in the chunk
4229: l_Start := l_Start + l_Num;
4230:
4231: -- If l_Num = 0 Then NO new line characters were found in the chunk