DBA Data[Home] [Help]

APPS.IEX_STRATEGY_WF dependencies on IEX_UTILITIES

Line 582: l_resource_tab iex_utilities.resource_tab_type;

578: x_resource_id OUT NOCOPY NUMBER) IS
579:
580: l_api_version NUMBER ;
581: l_init_msg_list VARCHAR2(1) ;
582: l_resource_tab iex_utilities.resource_tab_type;
583:
584: l_commit VARCHAR2(1) ;
585: l_return_status VARCHAR2(1);
586: l_msg_count NUMBER;

Line 623: /*iex_utilities.get_assign_resources(p_api_version => l_api_version,

619: -- get resource id table of reords for the given party id
620: -- the record has resource id and person id along with the user name
621: --Begin bug#5373412 schekuri 10-Jul-2006
622: --Call new consolidated procedure get_assigned_collector
623: /*iex_utilities.get_assign_resources(p_api_version => l_api_version,
624: p_init_msg_list => FND_API.G_TRUE,
625: p_commit => FND_API.G_FALSE,
626: p_validation_level => l_validation_level,
627: x_msg_count => l_msg_count,

Line 633: iex_utilities.get_assigned_collector(p_api_version => l_api_version,

629: x_return_status => l_return_status,
630: p_party_id => p_party_id,
631: x_resource_tab => l_resource_tab);*/
632:
633: iex_utilities.get_assigned_collector(p_api_version => l_api_version,
634: p_init_msg_list => FND_API.G_TRUE,
635: p_commit => FND_API.G_FALSE,
636: p_validation_level => l_validation_level,
637: p_level => 'PARTY',

Line 649: iex_debug_pub.logmessage('in get resource and l_return_status from iex_utilities.get_access_resources = '||l_return_status);

645:
646: --IF PG_DEBUG < 10 THEN
647: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
648: iex_debug_pub.logmessage('populate_schedule_times: ' || 'in get resource and l_return_status = '||l_return_status);
649: iex_debug_pub.logmessage('in get resource and l_return_status from iex_utilities.get_access_resources = '||l_return_status);
650: iex_debug_pub.logmessage('resource count from iex_utilities.get_access_resources = '||l_resource_tab.count);
651: END IF;
652:
653: -- if COMPETENCE id exists for the given work template Id,

Line 650: iex_debug_pub.logmessage('resource count from iex_utilities.get_access_resources = '||l_resource_tab.count);

646: --IF PG_DEBUG < 10 THEN
647: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
648: iex_debug_pub.logmessage('populate_schedule_times: ' || 'in get resource and l_return_status = '||l_return_status);
649: iex_debug_pub.logmessage('in get resource and l_return_status from iex_utilities.get_access_resources = '||l_return_status);
650: iex_debug_pub.logmessage('resource count from iex_utilities.get_access_resources = '||l_resource_tab.count);
651: END IF;
652:
653: -- if COMPETENCE id exists for the given work template Id,
654: -- see if the person id from the

Line 3873: l_resource_tab iex_utilities.resource_tab_type;

3869: l_vTest varchar2(20) ;
3870:
3871: l_api_version NUMBER := 1.0;
3872: l_init_msg_list VARCHAR2(1) ;
3873: l_resource_tab iex_utilities.resource_tab_type;
3874:
3875: l_commit VARCHAR2(1) ;
3876: l_return_status VARCHAR2(1);
3877: l_msg_count NUMBER;

Line 3916: /*iex_utilities.get_billto_resources(p_api_version => l_api_version,

3912: -- get resource id table of reords for the given site use id
3913: -- the record has resource id and person id along with the user name
3914: --Begin bug#5373412 schekuri 10-Jul-2006
3915: --Call new consolidated procedure get_assigned_collector
3916: /*iex_utilities.get_billto_resources(p_api_version => l_api_version,
3917: p_init_msg_list => FND_API.G_TRUE,
3918: p_commit => FND_API.G_FALSE,
3919: p_validation_level => l_validation_level,
3920: x_msg_count => l_msg_count,

Line 3926: iex_utilities.get_assigned_collector(p_api_version => l_api_version,

3922: x_return_status => l_return_status,
3923: p_site_use_id => p_siteuse_id,
3924: x_resource_tab => l_resource_tab);*/
3925:
3926: iex_utilities.get_assigned_collector(p_api_version => l_api_version,
3927: p_init_msg_list => FND_API.G_TRUE,
3928: p_commit => FND_API.G_FALSE,
3929: p_validation_level => l_validation_level,
3930: p_level => 'BILLTO',

Line 3941: iex_debug_pub.logmessage('in get resource and l_return_status from iex_utilities.get_billto_resources = '||l_return_status);

3937: --End bug#5373412 schekuri 10-Jul-2006
3938: --IF PG_DEBUG < 10 THEN
3939: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
3940: iex_debug_pub.logmessage('get_billto_resource: ' || 'in get resource and l_return_status = '||l_return_status);
3941: iex_debug_pub.logmessage('in get resource and l_return_status from iex_utilities.get_billto_resources = '||l_return_status);
3942: iex_debug_pub.logmessage('resource count from iex_utilities.get_billto_resources = '||l_resource_tab.count);
3943: END IF;
3944:
3945: if l_resource_tab.count > 0 then

Line 3942: iex_debug_pub.logmessage('resource count from iex_utilities.get_billto_resources = '||l_resource_tab.count);

3938: --IF PG_DEBUG < 10 THEN
3939: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
3940: iex_debug_pub.logmessage('get_billto_resource: ' || 'in get resource and l_return_status = '||l_return_status);
3941: iex_debug_pub.logmessage('in get resource and l_return_status from iex_utilities.get_billto_resources = '||l_return_status);
3942: iex_debug_pub.logmessage('resource count from iex_utilities.get_billto_resources = '||l_resource_tab.count);
3943: END IF;
3944:
3945: if l_resource_tab.count > 0 then
3946: l_bReturn := true;

Line 4068: l_resource_tab iex_utilities.resource_tab_type;

4064: l_vTest varchar2(20) ;
4065:
4066: l_api_version NUMBER := 1.0;
4067: l_init_msg_list VARCHAR2(1) ;
4068: l_resource_tab iex_utilities.resource_tab_type;
4069:
4070: l_commit VARCHAR2(1) ;
4071: l_return_status VARCHAR2(1);
4072: l_msg_count NUMBER;

Line 4112: iex_utilities.get_assigned_collector(p_api_version => l_api_version,

4108: -- get resource id table of reords for the given site use id
4109: -- the record has resource id and person id along with the user name
4110: --Begin bug#5373412 schekuri 10-Jul-2006
4111: --Call new consolidated procedure get_assigned_collector
4112: iex_utilities.get_assigned_collector(p_api_version => l_api_version,
4113: p_init_msg_list => FND_API.G_TRUE,
4114: p_commit => FND_API.G_FALSE,
4115: p_validation_level => l_validation_level,
4116: p_level => 'ACCOUNT',

Line 4122: /*iex_utilities.get_assign_account_resources(p_api_version => l_api_version,

4118: x_msg_count => l_msg_count,
4119: x_msg_data => l_msg_data,
4120: x_return_status => l_return_status,
4121: x_resource_tab => l_resource_tab);
4122: /*iex_utilities.get_assign_account_resources(p_api_version => l_api_version,
4123: p_init_msg_list => FND_API.G_TRUE,
4124: p_commit => FND_API.G_FALSE,
4125: p_validation_level => l_validation_level,
4126: x_msg_count => l_msg_count,

Line 4134: iex_debug_pub.logmessage('in get resource and l_return_status from iex_utilities.get_assign_account_resources = '||l_return_status);

4130: x_resource_tab => l_resource_tab);*/
4131: --End bug#5373412 schekuri 10-Jul-2006
4132: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
4133: iex_debug_pub.logmessage('get_billto_resource: ' || 'in get resource and l_return_status = '||l_return_status);
4134: iex_debug_pub.logmessage('in get resource and l_return_status from iex_utilities.get_assign_account_resources = '||l_return_status);
4135: iex_debug_pub.logmessage('resource count from iex_utilities.get_assign_account_resources = '||l_resource_tab.count);
4136: END IF;
4137:
4138: if l_resource_tab.count > 0 then

Line 4135: iex_debug_pub.logmessage('resource count from iex_utilities.get_assign_account_resources = '||l_resource_tab.count);

4131: --End bug#5373412 schekuri 10-Jul-2006
4132: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
4133: iex_debug_pub.logmessage('get_billto_resource: ' || 'in get resource and l_return_status = '||l_return_status);
4134: iex_debug_pub.logmessage('in get resource and l_return_status from iex_utilities.get_assign_account_resources = '||l_return_status);
4135: iex_debug_pub.logmessage('resource count from iex_utilities.get_assign_account_resources = '||l_resource_tab.count);
4136: END IF;
4137:
4138: if l_resource_tab.count > 0 then
4139: l_bReturn := true;