DBA Data[Home] [Help]

APPS.AR_CREDIT_MEMO_API_PUB dependencies on STANDARD

Line 15: -- standard API parameters

11: PG_DEBUG varchar2(1) := NVL(FND_PROFILE.value('AFLOG_ENABLED'), 'N');
12:
13: /*Bg 7367350 Added new parameter for internal comment handling*/
14: PROCEDURE create_request (
15: -- standard API parameters
16: p_api_version IN NUMBER,
17: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
18: p_commit IN VARCHAR2 := FND_API.G_FALSE,
19: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,

Line 91: | Standard start of API savepoint |

87: arp_util.debug ('create_request: ' || 'p_dispute_date :'||p_dispute_date); -- Bug 6358930
88: END IF;
89:
90: /*------------------------------------+
91: | Standard start of API savepoint |
92: +------------------------------------*/
93:
94: SAVEPOINT Create_request_pvt;
95:

Line 97: | Standard call to check for call compatibility |

93:
94: SAVEPOINT Create_request_pvt;
95:
96: /*--------------------------------------------------+
97: | Standard call to check for call compatibility |
98: +--------------------------------------------------*/
99: IF PG_DEBUG in ('Y', 'C') THEN
100: arp_util.debug('create_request: ' || 'Checking call compatibility');
101: END IF;

Line 244: | Standard check of p_commit |

240: END IF;
241: END IF;
242:
243: /*--------------------------------+
244: | Standard check of p_commit |
245: +--------------------------------*/
246:
247: IF FND_API.To_Boolean( p_commit ) THEN
248: IF PG_DEBUG in ('Y', 'C') THEN

Line 670: -- standard API parameters

666: END IF;
667: END validate_request_parameters;
668:
669: PROCEDURE get_request_status (
670: -- standard API parameters
671: p_api_version IN NUMBER,
672: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
673: x_msg_count OUT NOCOPY NUMBER,
674: x_msg_data OUT NOCOPY VARCHAR2,

Line 772: | Standard call to check for call compatibility |

768: arp_util.debug ('get_request_status: ' || 'p_request_id :'||p_request_id);
769: END IF;
770:
771: /*--------------------------------------------------+
772: | Standard call to check for call compatibility |
773: +--------------------------------------------------*/
774: IF PG_DEBUG in ('Y', 'C') THEN
775: arp_util.debug ('get_request_status: ' || 'Standard call to check for call compatibility');
776: END IF;

Line 775: arp_util.debug ('get_request_status: ' || 'Standard call to check for call compatibility');

771: /*--------------------------------------------------+
772: | Standard call to check for call compatibility |
773: +--------------------------------------------------*/
774: IF PG_DEBUG in ('Y', 'C') THEN
775: arp_util.debug ('get_request_status: ' || 'Standard call to check for call compatibility');
776: END IF;
777: IF NOT FND_API.Compatible_API_Call( l_api_version,
778: p_api_version,
779: l_api_name,