DBA Data[Home] [Help]

APPS.FEM_PL_PKG dependencies on FND_MSG_PUB

Line 71: -- 2. Initialize FND_MSG_PUB message queue if necessary.

67: BEGIN
68: -- ==========================================================================
69: -- Performs the common steps that all standard API's need to perform:
70: -- 1. Check API version compatibility.
71: -- 2. Initialize FND_MSG_PUB message queue if necessary.
72: -- ==========================================================================
73:
74: -- Check for call compatibility.
75: IF NOT FND_API.Compatible_API_Call (

Line 92: FND_MSG_PUB.Initialize;

88: END IF;
89:
90: -- Initialize FND message queue
91: IF p_init_msg_list = FND_API.G_TRUE then
92: FND_MSG_PUB.Initialize;
93: END IF;
94:
95: END Perform_Standard_API_Steps;
96:

Line 296: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,

292: p_msg_text => 'End. X_DATE_INCL_RSLT_DATA:'||
293: x_date_incl_rslt_data);
294: END IF;
295:
296: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,
297: p_count => x_msg_count,
298: p_data => x_msg_data);
299:
300: -- Returning error if this API is putting an error message

Line 321: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,

317: p_severity => FND_LOG.level_statement,
318: p_module => C_MODULE,
319: p_msg_text => SQLERRM);
320: END IF;
321: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,
322: p_count => x_msg_count,
323: p_data => x_msg_data);
324: x_date_incl_rslt_data := 'F';
325: x_return_status := g_ret_sts_unexp_error;

Line 557: FND_MSG_PUB.Count_And_Get

553: END IF;
554:
555: x_can_delete_obj_def := 'T';
556:
557: FND_MSG_PUB.Count_And_Get
558: (p_encoded => p_encoded,
559: p_count => x_msg_count,
560: p_data => x_msg_data);
561:

Line 584: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,

580: p_app_name => 'FEM',
581: p_msg_name => 'FEM_PL_CANNOT_DEL_SEEDED_DEF',
582: p_token1 => 'OBJECT_DEF_NAME',
583: p_value1 => v_obj_def_name);
584: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,
585: p_count => x_msg_count,
586: p_data => x_msg_data);
587: x_can_delete_obj_def := 'F';
588: -- Returning error so OAF code will detect error

Line 604: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,

600: p_app_name => 'FEM',
601: p_msg_name =>'FEM_PL_DATA_LOCKED_DEF_ERR',
602: p_token1 => 'OBJECT_DEF_NAME',
603: p_value1 => v_obj_def_name);
604: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,
605: p_count => x_msg_count,
606: p_data => x_msg_data);
607: x_can_delete_obj_def := 'F';
608: x_return_status := g_ret_sts_error;

Line 630: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,

626: p_token1 => 'OBJECT_DEF_NAME',
627: p_value1 => v_obj_def_name,
628: p_token2 => 'OBJECT_NAME',
629: p_value2 => v_obj_name);
630: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,
631: p_count => x_msg_count,
632: p_data => x_msg_data);
633: x_can_delete_obj_def := 'F';
634: x_return_status := g_ret_sts_error;

Line 648: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,

644: p_app_name => 'FEM',
645: p_msg_name =>'FEM_PL_SUBMITTED_DEF_ERR',
646: p_token1 => 'OBJECT_DEF_NAME',
647: p_value1 => v_obj_def_name);
648: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,
649: p_count => x_msg_count,
650: p_data => x_msg_data);
651: x_can_delete_obj_def := 'F';
652: x_return_status := g_ret_sts_error;

Line 665: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,

661: p_severity => FND_LOG.level_statement,
662: p_module => C_MODULE,
663: p_msg_text => SQLERRM);
664: END IF;
665: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,
666: p_count => x_msg_count,
667: p_data => x_msg_data);
668: x_can_delete_obj_def := 'F';
669: x_return_status := g_ret_sts_unexp_error;

Line 816: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,

812: IF (v_obj_def_id IS NOT NULL) THEN
813: RAISE e_dependencies_exist;
814: END IF;
815:
816: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,
817: p_count => x_msg_count,
818: p_data => x_msg_data);
819:
820: x_can_delete_obj := 'T';

Line 851: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,

847: p_token1 => 'OBJECT_NAME',
848: p_value1 => v_obj_name,
849: p_token2 => 'OBJECT_DEF_NAME',
850: p_value2 => v_obj_def_name);
851: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,
852: p_count => x_msg_count,
853: p_data => x_msg_data);
854: x_can_delete_obj := 'F';
855: -- Returning error so OAF code will detect error

Line 872: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,

868: p_msg_name => 'FEM_PL_CANNOT_DEL_SEEDED_OBJ',
869: p_token1 => 'OBJECT_NAME',
870: p_value1 => v_obj_name,
871: p_trans1 => 'N');
872: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,
873: p_count => x_msg_count,
874: p_data => x_msg_data);
875: x_can_delete_obj := 'F';
876: x_return_status := g_ret_sts_error;

Line 907: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,

903: p_token2 => 'DEP_OBJECT_NAME',
904: p_value2 => v_dep_obj_name,
905: p_token3 => 'DEP_OBJECT_DEF_NAME',
906: p_value3 => v_obj_def_name);
907: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,
908: p_count => x_msg_count,
909: p_data => x_msg_data);
910: x_can_delete_obj := 'F';
911: x_return_status := g_ret_sts_error;

Line 924: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,

920: p_severity => FND_LOG.level_statement,
921: p_module => C_MODULE,
922: p_msg_text => SQLERRM);
923: END IF;
924: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded,
925: p_count => x_msg_count,
926: p_data => x_msg_data);
927: x_can_delete_obj := 'd';
928: x_return_status := g_ret_sts_unexp_error;

Line 1204: FND_MSG_PUB.Count_And_Get

1200: p_msg_text => 'End. Object execution lock exists:'||x_exec_lock_exists||
1201: '; Execution state:'||x_exec_state||' X_PREV_REQUEST_ID:'||x_prev_request_id);
1202:
1203: -- Standard call to get message count and if count is 1, get message info.
1204: FND_MSG_PUB.Count_And_Get
1205: (p_count => x_msg_count,
1206: p_data => x_msg_data);
1207:
1208: END obj_execution_lock_exists;

Line 1463: FND_MSG_PUB.Count_And_Get

1459:
1460: END IF;
1461:
1462: -- Standard call to get message count and if count is 1, get message info.
1463: FND_MSG_PUB.Count_And_Get
1464: (p_count => x_msg_count,
1465: p_data => x_msg_data);
1466:
1467: fem_engines_pkg.tech_message(p_severity => c_log_level_1,

Line 1495: FND_MSG_PUB.Count_And_Get

1491: p_module => 'fem.plsql.'||g_pkg_name||'.'||l_api_name,
1492: p_msg_text => 'Incompatible API call made to '||g_pkg_name||'.'||
1493: l_api_name||' version: '||l_api_version);
1494:
1495: FND_MSG_PUB.Count_And_Get
1496: (p_count => x_msg_count,
1497: p_data => x_msg_data);
1498:
1499: WHEN OTHERS THEN

Line 1527: FND_MSG_PUB.Count_And_Get

1523: p_msg_name => 'FEM_UNEXPECTED_ERROR',
1524: P_TOKEN1 => 'ERR_MSG',
1525: P_VALUE1 => SQLERRM);
1526:
1527: FND_MSG_PUB.Count_And_Get
1528: (p_count => x_msg_count,
1529: p_data => x_msg_data);
1530:
1531: END register_object_execution;

Line 1624: FND_MSG_PUB.Count_And_Get

1620: p_module => 'fem.plsql.'||g_pkg_name||'.'||l_api_name,
1621: p_msg_text => 'End. Registered request. X_RETURN_STATUS:'||x_return_status);
1622:
1623: -- Standard call to get message count and if count is 1, get message info.
1624: FND_MSG_PUB.Count_And_Get
1625: (p_count => x_msg_count,
1626: p_data => x_msg_data);
1627:
1628: EXCEPTION

Line 1651: FND_MSG_PUB.Count_And_Get

1647: p_module => 'fem.plsql.'||g_pkg_name||'.'||l_api_name,
1648: p_msg_text => 'Incompatible API call made to '||g_pkg_name||'.'||
1649: l_api_name||' version: '||l_api_version);
1650:
1651: FND_MSG_PUB.Count_And_Get
1652: (p_count => x_msg_count,
1653: p_data => x_msg_data);
1654:
1655: END register_request;

Line 2117: FND_MSG_PUB.Count_And_Get

2113: p_token1 => 'OBJECT_ID',
2114: p_value1 => p_object_id,
2115: p_trans1 => 'N');
2116:
2117: FND_MSG_PUB.Count_And_Get
2118: (p_count => x_msg_count,
2119: p_data => x_msg_data);
2120:
2121: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

Line 3230: FND_MSG_PUB.Count_And_Get

3226: 'Execution state:'||x_exec_state||
3227: ' V_NORMAL_RUN:'||v_normal_run||' V_RESTART:'||v_restart||
3228: ' V_RERUN:'||v_rerun||' X_PREV_REQUEST_ID:'||x_prev_request_id);
3229:
3230: FND_MSG_PUB.Count_And_Get
3231: (p_count => x_msg_count,
3232: p_data => x_msg_data);
3233:
3234: END mapping_exec_lock_exists;

Line 3383: FND_MSG_PUB.Count_And_Get

3379: 'Execution state:'||x_exec_state||
3380: ' V_NORMAL_RUN:'||v_normal_run||' V_RESTART:'||v_restart||
3381: ' V_RERUN:'||v_rerun||' X_PREV_REQUEST_ID:'||x_prev_request_id);
3382:
3383: FND_MSG_PUB.Count_And_Get
3384: (p_count => x_msg_count,
3385: p_data => x_msg_data);
3386:
3387: END dim_mbr_ldr_exec_lock_exists;

Line 3568: FND_MSG_PUB.Count_And_Get

3564: 'Execution state:'||x_exec_state||
3565: ' V_NORMAL_RUN:'||v_normal_run||' V_RESTART:'||v_restart||
3566: ' V_RERUN:'||v_rerun||' X_PREV_REQUEST_ID:'||x_prev_request_id);
3567:
3568: FND_MSG_PUB.Count_And_Get
3569: (p_count => x_msg_count,
3570: p_data => x_msg_data);
3571:
3572: END datax_ldr_exec_lock_exists;

Line 3727: FND_MSG_PUB.Count_And_Get

3723: 'Execution state:'||x_exec_state||
3724: ' V_NORMAL_RUN:'||v_normal_run||' V_RESTART:'||v_restart||
3725: ' V_RERUN:'||v_rerun||' X_PREV_REQUEST_ID:'||x_prev_request_id);
3726:
3727: FND_MSG_PUB.Count_And_Get
3728: (p_count => x_msg_count,
3729: p_data => x_msg_data);
3730:
3731: END hier_ldr_exec_lock_exists;

Line 3901: FND_MSG_PUB.Count_And_Get

3897: 'Execution state:'||x_exec_state||
3898: ' V_NORMAL_RUN:'||v_normal_run||' V_RESTART:'||v_restart||
3899: ' V_RERUN:'||v_rerun||' X_PREV_REQUEST_ID:'||x_prev_request_id);
3900:
3901: FND_MSG_PUB.Count_And_Get
3902: (p_count => x_msg_count,
3903: p_data => x_msg_data);
3904:
3905: END rcm_proc_exec_lock_exists;

Line 4015: FND_MSG_PUB.Count_And_Get

4011: ||'; V_NORMAL_RUN:'||v_normal_run
4012: ||'; V_RESTART:'||v_restart
4013: ||'; X_PREV_REQUEST_ID:'||x_prev_request_id);
4014:
4015: FND_MSG_PUB.Count_And_Get
4016: (p_count => x_msg_count,
4017: p_data => x_msg_data);
4018:
4019: END preview_exec_lock_exists;

Line 4104: FND_MSG_PUB.Initialize;

4100: END IF;
4101:
4102: -- Initialize FND message queue
4103: IF p_init_msg_list = FND_API.G_TRUE then
4104: FND_MSG_PUB.Initialize;
4105: END IF;
4106:
4107: -- Check to see this request has been chanined to another process.
4108: OPEN c_chains(p_request_id, p_object_id);

Line 4227: FND_MSG_PUB.Initialize;

4223: END IF;
4224:
4225: -- Initialize FND message queue
4226: IF p_init_msg_list = FND_API.G_TRUE then
4227: FND_MSG_PUB.Initialize;
4228: END IF;
4229:
4230: -- Standard Start of API savepoint
4231: SAVEPOINT get_exec_status_pub;