DBA Data[Home] [Help]

APPS.GMF_ALLOCATIONDEFINITION_PUB dependencies on STANDARD

Line 37: --| The pre-defined levels correspond to standard API |

33: --| |
34: --| Valid values for message levels are from 1-50. |
35: --| 1 being least severe and 50 highest. |
36: --| |
37: --| The pre-defined levels correspond to standard API |
38: --| return status. Debug levels are used to control the amount of |
39: --| debug information a program writes to the PL/SQL message table. |
40: --| |
41: --| G_MSG_LVL_UNEXP_ERROR CONSTANT NUMBER := 60; |

Line 73: -- The pre-defined levels correspond to standard API

69: --
70: -- Valid values for message levels are from 1-50.
71: -- 1 being least severe and 50 highest.
72: --
73: -- The pre-defined levels correspond to standard API
74: -- return status. Debug levels are used to control the amount of
75: -- debug information a program writes to the PL/SQL message table.
76:
77: -- G_MSG_LVL_UNEXP_ERROR CONSTANT NUMBER := 60;

Line 196: -- Standard Start of API savepoint

192:
193: BEGIN
194:
195:
196: -- Standard Start of API savepoint
197: SAVEPOINT Create_Alloc_Definition_PUB;
198:
199: -- Initialize message list if p_init_msg_list is set to TRUE.
200: IF FND_API.to_Boolean( p_init_msg_list ) THEN

Line 204: -- Standard call to check for call compatibility.

200: IF FND_API.to_Boolean( p_init_msg_list ) THEN
201: FND_MSG_PUB.initialize;
202: END IF;
203:
204: -- Standard call to check for call compatibility.
205: IF NOT FND_API.Compatible_API_Call ( l_api_version ,
206: p_api_version ,
207: l_api_name ,
208: G_PKG_NAME )

Line 293: -- Standard check of p_commit.

289: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN -- Bug 2659435
290: log_msg('1 row inserted');
291: END IF;
292:
293: -- Standard check of p_commit.
294: IF FND_API.To_Boolean( p_commit ) THEN
295: COMMIT WORK;
296: END IF;
297:

Line 298: -- Standard call to get message count and if count is 1, get message info.

294: IF FND_API.To_Boolean( p_commit ) THEN
295: COMMIT WORK;
296: END IF;
297:
298: -- Standard call to get message count and if count is 1, get message info.
299: FND_MSG_PUB.Count_And_Get
300: ( p_count => x_msg_count ,
301: p_data => x_msg_data
302: );

Line 394: -- Standard Start of API savepoint

390: l_cnt NUMBER(10) ; -- used for validate basis account
391: l_data VARCHAR2(2000) ;
392:
393: BEGIN
394: -- Standard Start of API savepoint
395: SAVEPOINT Update_Alloc_Definition_PUB;
396:
397: -- Initialize message list if p_init_msg_list is set to TRUE.
398: IF FND_API.to_Boolean( p_init_msg_list ) THEN

Line 402: -- Standard call to check for call compatibility.

398: IF FND_API.to_Boolean( p_init_msg_list ) THEN
399: FND_MSG_PUB.initialize;
400: END IF;
401:
402: -- Standard call to check for call compatibility.
403: IF NOT FND_API.Compatible_API_Call ( l_api_version ,
404: p_api_version ,
405: l_api_name ,
406: G_PKG_NAME )

Line 541: -- Standard check of p_commit.

537: FND_MSG_PUB.Add;
538:
539: --log_msg( l_no_rows_upd || ' rows updated.');
540:
541: -- Standard check of p_commit.
542: IF FND_API.To_Boolean( p_commit ) THEN
543: COMMIT WORK;
544: END IF;
545:

Line 546: -- Standard call to get message count and if count is 1, get message info.

542: IF FND_API.To_Boolean( p_commit ) THEN
543: COMMIT WORK;
544: END IF;
545:
546: -- Standard call to get message count and if count is 1, get message info.
547: FND_MSG_PUB.Count_And_Get
548: ( p_count => x_msg_count ,
549: p_data => x_msg_data
550: );

Line 645: -- Standard Start of API savepoint

641: l_data VARCHAR2(2000) ;
642:
643: BEGIN
644:
645: -- Standard Start of API savepoint
646: SAVEPOINT Delete_Alloc_Definition_PUB;
647:
648: -- Initialize message list if p_init_msg_list is set to TRUE.
649: IF FND_API.to_Boolean( p_init_msg_list ) THEN

Line 653: -- Standard call to check for call compatibility.

649: IF FND_API.to_Boolean( p_init_msg_list ) THEN
650: FND_MSG_PUB.initialize;
651: END IF;
652:
653: -- Standard call to check for call compatibility.
654: IF NOT FND_API.Compatible_API_Call ( l_api_version ,
655: p_api_version ,
656: l_api_name ,
657: G_PKG_NAME )

Line 878: -- Standard check of p_commit.

874: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN -- Bug 2659435
875: log_msg(l_no_rows_del || ' rows deleted.');
876: END IF;
877:
878: -- Standard check of p_commit.
879: IF FND_API.To_Boolean( p_commit ) THEN
880: COMMIT WORK;
881: END IF;
882:

Line 883: -- Standard call to get message count and if count is 1, get message info.

879: IF FND_API.To_Boolean( p_commit ) THEN
880: COMMIT WORK;
881: END IF;
882:
883: -- Standard call to get message count and if count is 1, get message info.
884: FND_MSG_PUB.Count_And_Get
885: ( p_count => x_msg_count ,
886: p_data => x_msg_data
887: );