DBA Data[Home] [Help]

APPS.FA_UTIL_PVT dependencies on FND_API

Line 2316: elsif (p_char_adj = FND_API.G_MISS_CHAR)then

2312: BEGIN
2313:
2314: if (p_char_adj is null) then
2315: x_char_new := p_char_old;
2316: elsif (p_char_adj = FND_API.G_MISS_CHAR)then
2317: x_char_new := NULL;
2318: else
2319: x_char_new := p_char_adj;
2320: end if;

Line 2333: elsif (p_date_adj = FND_API.G_MISS_DATE) then

2329: BEGIN
2330:
2331: if (p_date_adj is null) then
2332: x_date_new := p_date_old;
2333: elsif (p_date_adj = FND_API.G_MISS_DATE) then
2334: x_date_new := NULL;
2335: else
2336: x_date_new := p_date_adj;
2337: end if;

Line 2350: elsif (p_num_adj = FND_API.G_MISS_NUM) then

2346: BEGIN
2347:
2348: if (p_num_adj is null) then
2349: x_num_new := p_num_old;
2350: elsif (p_num_adj = FND_API.G_MISS_NUM) then
2351: x_num_new := NULL;
2352: else
2353: x_num_new := p_num_adj;
2354: end if;