DBA Data[Home] [Help]

APPS.FA_UTIL_PVT dependencies on FND_API

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

2255: BEGIN
2256:
2257: if (p_char_adj is null) then
2258: x_char_new := p_char_old;
2259: elsif (p_char_adj = FND_API.G_MISS_CHAR)then
2260: x_char_new := NULL;
2261: else
2262: x_char_new := p_char_adj;
2263: end if;

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

2273: BEGIN
2274:
2275: if (p_date_adj is null) then
2276: x_date_new := p_date_old;
2277: elsif (p_date_adj = FND_API.G_MISS_DATE) then
2278: x_date_new := NULL;
2279: else
2280: x_date_new := p_date_adj;
2281: end if;

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

2291: BEGIN
2292:
2293: if (p_num_adj is null) then
2294: x_num_new := p_num_old;
2295: elsif (p_num_adj = FND_API.G_MISS_NUM) then
2296: x_num_new := NULL;
2297: else
2298: x_num_new := p_num_adj;
2299: end if;