DBA Data[Home] [Help]

APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on FND_GLOBAL

Line 151: x_user_id := FND_GLOBAL.user_id;

147: x_login_id OUT NOCOPY NUMBER
148: ) IS
149: BEGIN
150: x_sysdate := SYSDATE;
151: x_user_id := FND_GLOBAL.user_id;
152: x_login_id := FND_GLOBAL.login_id;
153: END Get_Who;
154:
155: --

Line 152: x_login_id := FND_GLOBAL.login_id;

148: ) IS
149: BEGIN
150: x_sysdate := SYSDATE;
151: x_user_id := FND_GLOBAL.user_id;
152: x_login_id := FND_GLOBAL.login_id;
153: END Get_Who;
154:
155: --
156: -- Check set_type - element_type IS valid

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

4213: -- Use a Loop to validate each 32K chunk of the Statement
4214: LOOP
4215: -- Find the position of the new Line (line break) character working
4216: -- backwards from the end of the stmt 32K chunk
4217: l_Num := instr(substr(StmtCheck.stmt,l_Start, l_Limit) , FND_GLOBAL.newline, -1, 1);
4218: -- Reset the start position to be the previous line break identified in the chunk
4219: l_Start := l_Start + l_Num;
4220:
4221: -- If l_Num = 0 Then NO new line characters were found in the chunk