DBA Data[Home] [Help]

APPS.FEM_RULE_SET_MANAGER dependencies on FND_MSG_PUB

Line 3002: FND_MSG_PUB.Initialize;

2998: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2999: END IF;
3000:
3001: IF FND_API.to_Boolean(p_init_msg_list) THEN
3002: FND_MSG_PUB.Initialize;
3003: END IF;
3004:
3005: Validate_Rule_Public(l_Err_Code
3006: ,l_Err_Msg

Line 3014: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded, p_count => x_msg_count,

3010: ,p_Reference_Period_ID
3011: ,p_Ledger_ID);
3012:
3013: -- any errors in Validate_Rule_Public should be on the message stack
3014: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded, p_count => x_msg_count,
3015: p_data => x_msg_data);
3016:
3017: IF (l_Err_Code > 0) THEN
3018: x_return_status := FND_API.G_RET_STS_ERROR;

Line 3030: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded, p_count => x_msg_count, p_data => x_msg_data);

3026:
3027: EXCEPTION
3028: WHEN OTHERS THEN
3029: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3030: FND_MSG_PUB.Count_And_Get(p_encoded => p_encoded, p_count => x_msg_count, p_data => x_msg_data);
3031:
3032: End Validate_Rule_Public;
3033:
3034:

Line 3252: -- FND_API.G_TRUE - Initialize FND_MSG_PUB

3248: -- p_api_version IN NUMBER
3249: -- Current version of this API
3250: -- p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE
3251: -- If set to:
3252: -- FND_API.G_TRUE - Initialize FND_MSG_PUB
3253: -- FND_API.G_FALSE - DO NOT Initialize FND_MSG_PUB
3254: -- p_commit IN VARCHAR2 := FND_API.G_FALSE
3255: -- If set to:
3256: -- FND_API.G_TRUE - Commit data at exit of this routine

Line 3253: -- FND_API.G_FALSE - DO NOT Initialize FND_MSG_PUB

3249: -- Current version of this API
3250: -- p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE
3251: -- If set to:
3252: -- FND_API.G_TRUE - Initialize FND_MSG_PUB
3253: -- FND_API.G_FALSE - DO NOT Initialize FND_MSG_PUB
3254: -- p_commit IN VARCHAR2 := FND_API.G_FALSE
3255: -- If set to:
3256: -- FND_API.G_TRUE - Commit data at exit of this routine
3257: -- FND_API.G_FALSE - DO NOT commit data at exit of this routine

Line 3274: -- in x_msg_data. If x_msg_count > 1, then messages are returned via FND_MSG_PUB.

3270: -- unrecoverable (check x_msg_count)
3271: --
3272: -- x_msg_count OUT NUMBER
3273: -- Count of messages returned. If x_msg_count = 1, then the message is returned
3274: -- in x_msg_data. If x_msg_count > 1, then messages are returned via FND_MSG_PUB.
3275: --
3276: -- x_msg_data OUT VARCHAR2
3277: -- Error message returned.
3278: --

Line 3313: fnd_msg_pub.initialize;

3309: SAVEPOINT FEM_DeleteFlatRuleList_SvPt;
3310:
3311: -- initialize msg stack?
3312: IF fnd_api.to_Boolean(p_init_msg_list) THEN
3313: fnd_msg_pub.initialize;
3314: END IF;
3315:
3316: -- check API version...
3317: IF NOT fnd_api.Compatible_API_Call (l_api_version,

Line 3339: FND_MSG_PUB.Count_And_Get ( p_encoded,

3335: fem_engines_pkg.tech_message(p_severity=>G_LOG_PROCEDURE ,
3336: p_module=> l_module_name,
3337: p_msg_text=> 'EXIT');
3338:
3339: FND_MSG_PUB.Count_And_Get ( p_encoded,
3340: x_msg_count,
3341: x_msg_data );
3342:
3343: EXCEPTION

Line 3357: FND_MSG_PUB.Count_And_Get ( p_encoded,

3353: SQLERRM);
3354:
3355: ROLLBACK TO FEM_DeleteFlatRuleList_SvPt;
3356:
3357: FND_MSG_PUB.Count_And_Get ( p_encoded,
3358: x_msg_count,
3359: x_msg_data );
3360:
3361: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 3381: -- FND_API.G_TRUE - Initialize FND_MSG_PUB

3377: -- p_api_version IN NUMBER
3378: -- Current version of this API
3379: -- p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE
3380: -- If set to:
3381: -- FND_API.G_TRUE - Initialize FND_MSG_PUB
3382: -- FND_API.G_FALSE - DO NOT Initialize FND_MSG_PUB
3383: -- p_commit IN VARCHAR2 := FND_API.G_FALSE
3384: -- If set to:
3385: -- FND_API.G_TRUE - Commit data at exit of this routine

Line 3382: -- FND_API.G_FALSE - DO NOT Initialize FND_MSG_PUB

3378: -- Current version of this API
3379: -- p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE
3380: -- If set to:
3381: -- FND_API.G_TRUE - Initialize FND_MSG_PUB
3382: -- FND_API.G_FALSE - DO NOT Initialize FND_MSG_PUB
3383: -- p_commit IN VARCHAR2 := FND_API.G_FALSE
3384: -- If set to:
3385: -- FND_API.G_TRUE - Commit data at exit of this routine
3386: -- FND_API.G_FALSE - DO NOT commit data at exit of this routine

Line 3427: -- in x_msg_data. If x_msg_count > 1, then messages are returned via FND_MSG_PUB.

3423: -- unrecoverable (check x_msg_count)
3424: --
3425: -- x_msg_count OUT NUMBER
3426: -- Count of messages returned. If x_msg_count = 1, then the message is returned
3427: -- in x_msg_data. If x_msg_count > 1, then messages are returned via FND_MSG_PUB.
3428: --
3429: -- x_msg_data OUT VARCHAR2
3430: -- Error message returned.
3431: --

Line 3546: fnd_msg_pub.initialize;

3542:
3543:
3544: -- initialize msg stack?
3545: IF fnd_api.to_Boolean(p_init_msg_list) THEN
3546: fnd_msg_pub.initialize;
3547: END IF;
3548:
3549: -- since this interface is PVT, this use is trusted and error capture
3550: -- is minimal..

Line 3703: FND_MSG_PUB.Count_And_Get ( p_encoded,

3699: fem_engines_pkg.tech_message(p_severity=>G_LOG_PROCEDURE ,
3700: p_module=> l_module_name,
3701: p_msg_text=> 'EXIT');
3702:
3703: FND_MSG_PUB.Count_And_Get ( p_encoded,
3704: x_msg_count,
3705: x_msg_data );
3706:
3707: EXCEPTION

Line 3710: FND_MSG_PUB.Count_And_Get ( p_encoded,

3706:
3707: EXCEPTION
3708: WHEN FND_API.G_EXC_ERROR THEN
3709: ROLLBACK TO FEM_Preprocess_RuleSet_SvPt;
3710: FND_MSG_PUB.Count_And_Get ( p_encoded,
3711: x_msg_count,
3712: x_msg_data );
3713: x_return_status := FND_API.G_RET_STS_ERROR;
3714:

Line 3718: FND_MSG_PUB.Count_And_Get ( p_encoded,

3714:
3715:
3716: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
3717: ROLLBACK TO FEM_Preprocess_RuleSet_SvPt;
3718: FND_MSG_PUB.Count_And_Get ( p_encoded,
3719: x_msg_count,
3720: x_msg_data );
3721:
3722: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 3737: FND_MSG_PUB.Count_And_Get ( p_encoded,

3733: SQLERRM);
3734:
3735: ROLLBACK TO FEM_Preprocess_RuleSet_SvPt;
3736:
3737: FND_MSG_PUB.Count_And_Get ( p_encoded,
3738: x_msg_count,
3739: x_msg_data );
3740:
3741: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;