DBA Data[Home] [Help]

APPS.AR_BILLS_MAIN dependencies on FND_API

Line 8: RETURN FND_API.G_TRUE;

4: PG_DEBUG varchar2(1) := NVL(FND_PROFILE.value('AFLOG_ENABLED'), 'N');
5:
6: Function GTRUE RETURN VARCHAR2 IS
7: BEGIN
8: RETURN FND_API.G_TRUE;
9: END;
10:
11:
12: Function GFALSE RETURN VARCHAR2 IS

Line 14: RETURN FND_API.G_FALSE;

10:
11:
12: Function GFALSE RETURN VARCHAR2 IS
13: BEGIN
14: RETURN FND_API.G_FALSE;
15: END;
16:
17: /*===========================================================================+
18: | FUNCTION get_fnd_api_constants_rec |

Line 18: | FUNCTION get_fnd_api_constants_rec |

14: RETURN FND_API.G_FALSE;
15: END;
16:
17: /*===========================================================================+
18: | FUNCTION get_fnd_api_constants_rec |
19: | |
20: | DESCRIPTION |
21: | Forms and libraries cannot directly refer to PL/SQL package global |
22: | variables, this function is relays FND_API constants to client side |

Line 22: | variables, this function is relays FND_API constants to client side |

18: | FUNCTION get_fnd_api_constants_rec |
19: | |
20: | DESCRIPTION |
21: | Forms and libraries cannot directly refer to PL/SQL package global |
22: | variables, this function is relays FND_API constants to client side |
23: | |
24: | SCOPE - PUBLIC |
25: | |
26: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |

Line 30: | RETURNS : fnd_api_constants_rec |

26: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |
27: | |
28: | ARGUMENTS : IN: None |
29: | |
30: | RETURNS : fnd_api_constants_rec |
31: | |
32: | MODIFICATION HISTORY |
33: | 12-AUG-2000 Jani Rautiainen Created |
34: | |

Line 36: FUNCTION get_fnd_api_constants_rec RETURN fnd_api_constants_type IS

32: | MODIFICATION HISTORY |
33: | 12-AUG-2000 Jani Rautiainen Created |
34: | |
35: +===========================================================================*/
36: FUNCTION get_fnd_api_constants_rec RETURN fnd_api_constants_type IS
37:
38: fnd_api_constants_rec fnd_api_constants_type;
39:
40: BEGIN

Line 38: fnd_api_constants_rec fnd_api_constants_type;

34: | |
35: +===========================================================================*/
36: FUNCTION get_fnd_api_constants_rec RETURN fnd_api_constants_type IS
37:
38: fnd_api_constants_rec fnd_api_constants_type;
39:
40: BEGIN
41:
42: RETURN fnd_api_constants_rec;

Line 42: RETURN fnd_api_constants_rec;

38: fnd_api_constants_rec fnd_api_constants_type;
39:
40: BEGIN
41:
42: RETURN fnd_api_constants_rec;
43:
44: END get_fnd_api_constants_rec;
45:
46: /*===========================================================================+

Line 44: END get_fnd_api_constants_rec;

40: BEGIN
41:
42: RETURN fnd_api_constants_rec;
43:
44: END get_fnd_api_constants_rec;
45:
46: /*===========================================================================+
47: | FUNCTION get_fnd_api_constants_rec |
48: | |

Line 47: | FUNCTION get_fnd_api_constants_rec |

43:
44: END get_fnd_api_constants_rec;
45:
46: /*===========================================================================+
47: | FUNCTION get_fnd_api_constants_rec |
48: | |
49: | DESCRIPTION |
50: | Forms and libraries cannot directly refer to PL/SQL package global |
51: | variables, this function is relays FND_MSG_PUB constants to client side |

Line 59: | RETURNS : fnd_api_constants_rec |

55: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |
56: | |
57: | ARGUMENTS : IN: None |
58: | |
59: | RETURNS : fnd_api_constants_rec |
60: | |
61: | MODIFICATION HISTORY |
62: | 12-AUG-2000 Jani Rautiainen Created |
63: | |