DBA Data[Home] [Help]

APPS.GMF_BURDENDETAILS_PUB dependencies on STANDARD

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

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

Line 181: -- Standard Start of API savepoint

177: l_data VARCHAR2(2000) ;
178:
179: BEGIN
180:
181: -- Standard Start of API savepoint
182: SAVEPOINT Create_Burden_Details_PUB ;
183:
184: -- Initialize message list if p_init_msg_list is set to TRUE.
185: IF FND_API.to_Boolean( p_init_msg_list ) THEN

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

185: IF FND_API.to_Boolean( p_init_msg_list ) THEN
186: FND_MSG_PUB.initialize;
187: END IF;
188:
189: -- Standard call to check for call compatibility.
190: IF NOT FND_API.Compatible_API_Call ( l_api_version ,
191: p_api_version ,
192: l_api_name ,
193: G_PKG_NAME )

Line 293: -- Standard check of p_commit.

289: FND_MESSAGE.SET_NAME('GMF','GMF_API_NO_ROWS_INS');
290: FND_MSG_PUB.Add;
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 397: -- Standard Start of API savepoint

393: l_data VARCHAR2(2000) ;
394: l_no_rows_upd NUMBER(10) ;
395:
396: BEGIN
397: -- Standard Start of API savepoint
398: SAVEPOINT Update_Burden_Details_PUB;
399:
400: -- Initialize message list if p_init_msg_list is set to TRUE.
401: IF FND_API.to_Boolean( p_init_msg_list ) THEN

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

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

Line 508: -- Standard check of p_commit.

504: END IF ;
505: --log_msg( l_no_rows_upd || ' rows updated.');
506:
507:
508: -- Standard check of p_commit.
509: IF FND_API.To_Boolean( p_commit ) THEN
510: COMMIT WORK;
511: END IF;
512:

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

509: IF FND_API.To_Boolean( p_commit ) THEN
510: COMMIT WORK;
511: END IF;
512:
513: -- Standard call to get message count and if count is 1, get message info.
514: FND_MSG_PUB.Count_And_Get
515: ( p_count => x_msg_count ,
516: p_data => x_msg_data
517: );

Line 613: -- Standard Start of API savepoint

609: -- l_user_name fnd_user.user_name%TYPE := FND_API.G_MISS_CHAR ; Bug 2659435
610:
611: BEGIN
612:
613: -- Standard Start of API savepoint
614: SAVEPOINT Delete_Burden_Details_PUB;
615:
616: -- Initialize message list if p_init_msg_list is set to TRUE.
617: IF FND_API.to_Boolean( p_init_msg_list ) THEN

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

617: IF FND_API.to_Boolean( p_init_msg_list ) THEN
618: FND_MSG_PUB.initialize;
619: END IF;
620:
621: -- Standard call to check for call compatibility.
622: IF NOT FND_API.Compatible_API_Call ( l_api_version ,
623: p_api_version ,
624: l_api_name ,
625: G_PKG_NAME )

Line 726: -- Standard check of p_commit.

722: END IF ;
723:
724: --log_msg(l_no_rows_del || ' rows deleted.');
725:
726: -- Standard check of p_commit.
727: IF FND_API.To_Boolean( p_commit ) THEN
728: COMMIT WORK;
729: END IF;
730:

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

727: IF FND_API.To_Boolean( p_commit ) THEN
728: COMMIT WORK;
729: END IF;
730:
731: -- Standard call to get message count and if count is 1, get message info.
732: FND_MSG_PUB.Count_And_Get
733: ( p_count => x_msg_count ,
734: p_data => x_msg_data
735: );

Line 831: -- Standard Start of API savepoint

827: l_lc_cost_type_id cm_mthd_mst.cost_type_id%TYPE;
828:
829: BEGIN
830:
831: -- Standard Start of API savepoint
832: SAVEPOINT Get_Burden_Details_PUB;
833:
834: -- Initialize message list if p_init_msg_list is set to TRUE.
835: IF FND_API.to_Boolean( p_init_msg_list ) THEN

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

835: IF FND_API.to_Boolean( p_init_msg_list ) THEN
836: FND_MSG_PUB.initialize;
837: END IF;
838:
839: -- Standard call to check for call compatibility.
840:
841: IF NOT FND_API.Compatible_API_Call ( l_api_version ,
842: p_api_version ,
843: l_api_name ,

Line 989: -- cost type id should be standard or actual cost type because this API is for Standard and actual cost

985: IF (FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level)
986: THEN
987: log_msg('Validating Cost type Id : ' || p_header_rec.cost_type_id);
988: END IF;
989: -- cost type id should be standard or actual cost type because this API is for Standard and actual cost
990: -- overheads only. So Call Validate_Lot_Cost_type_id to verify the cost type is lot cost type or not.
991: -- If it is lot cost type id then log error message as invalid cost type
992: IF GMF_VALIDATIONS_PVT.Validate_Lot_Cost_type_id(p_header_rec.cost_type_id) THEN
993: add_header_to_error_stack(p_header_rec);

Line 1018: -- because overheads will be created for actual and standard costs

1014: END IF;
1015: -- call validate lot cost type
1016: l_header_rec.cost_Type_id := GMF_VALIDATIONS_PVT.Validate_Cost_type_Code(p_header_rec.cost_mthd_code);
1017: -- Call validate lot cost type to check lot cost type, if it is lot cost type then log error
1018: -- because overheads will be created for actual and standard costs
1019: l_lc_cost_type_id := GMF_VALIDATIONS_PVT.Validate_Lot_Cost_Type(p_header_rec.cost_mthd_code);
1020: --If cost type id is null or cost type is lot cost type then log invalid cost type message
1021: IF (l_header_rec.cost_Type_id IS NULL)
1022: OR (l_lc_cost_type_id IS NOT NULL ) THEN

Line 1185: -- Standard check of p_commit.

1181: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1182: END IF;
1183:
1184: /*
1185: -- Standard check of p_commit.
1186: IF FND_API.To_Boolean( p_commit ) THEN
1187: COMMIT WORK;
1188: END IF;
1189: */

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

1187: COMMIT WORK;
1188: END IF;
1189: */
1190:
1191: -- Standard call to get message count and if count is 1, get message info.
1192: FND_MSG_PUB.Count_And_Get
1193: ( p_count => x_msg_count ,
1194: p_data => x_msg_data
1195: );

Line 1460: -- cost type id should be standard or actual cost type because this API is for Standard and actual cost

1456: IF (FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level) THEN
1457: log_msg('Validating Cost type Id : ' || p_header_rec.cost_type_id);
1458: END IF;
1459: --validate cost type id
1460: -- cost type id should be standard or actual cost type because this API is for Standard and actual cost
1461: -- overheads only. So Call Validate_Lot_Cost_type_id to verify the cost type is lot cost type or not.
1462: -- If it is lot cost type id then log error message as invalid cost type
1463: IF GMF_VALIDATIONS_PVT.Validate_Lot_Cost_type_id(p_header_rec.cost_type_id) THEN
1464: add_header_to_error_stack(p_header_rec);

Line 1489: -- because overheads will be created for actual and standard costs

1485: END IF;
1486: -- Call validate cost type
1487: x_header_rec.cost_Type_id := GMF_VALIDATIONS_PVT.Validate_Cost_type_Code(p_header_rec.cost_mthd_code);
1488: -- call validate lot cost type.. if it is lot cost type then log an error
1489: -- because overheads will be created for actual and standard costs
1490: l_lc_cost_type_id := GMF_VALIDATIONS_PVT.Validate_Lot_Cost_Type(p_header_rec.cost_mthd_code);
1491: --If cost type id is null or cost type is lot cost type then log invalid cost type message
1492: IF (x_header_rec.cost_Type_id IS NULL)
1493: OR (l_lc_cost_type_id IS NOT NULL ) THEN