DBA Data[Home] [Help]

APPS.GMF_PERIODCLOSE_PVT dependencies on FND_PROFILE

Line 183: FND_PROFILE.GET('CST_ALLOW_EARLY_PERIOD_CLOSE',l_allow_close);

179: THEN
180:
181: /* Bug 12575563. allowing period to be closed on the last day of the period */
182: /* Get the profile value */
183: FND_PROFILE.GET('CST_ALLOW_EARLY_PERIOD_CLOSE',l_allow_close);
184:
185: IF ((l_allow_close = '1') AND (trunc(SYSDATE) = trunc(l_schedule_close_date))) THEN
186: NULL;
187: ELSE

Line 875: l_user_id := FND_PROFILE.VALUE('USER_ID');

871: Log_Msg(C_LOG_FILE, l_return_msg);
872: RAISE_APPLICATION_ERROR(-20101, l_return_msg);
873: END IF;
874:
875: l_user_id := FND_PROFILE.VALUE('USER_ID');
876:
877: SELECT user_name INTO l_user
878: FROM fnd_user
879: WHERE user_id = l_user_id;

Line 1122: FND_PROFILE.GET('CST_ALLOW_EARLY_PERIOD_CLOSE',l_allow_close);

1118: IF( SYSDATE <= l_server_close_date ) THEN
1119:
1120: /* Bug 12575563. */
1121: /* Get the profile value */
1122: FND_PROFILE.GET('CST_ALLOW_EARLY_PERIOD_CLOSE',l_allow_close);
1123:
1124: IF ((l_allow_close = '1') AND (trunc(SYSDATE) = trunc(l_server_close_date))) THEN
1125: NULL;
1126: ELSE