DBA Data[Home] [Help]

APPS.CS_SERVICEREQUEST_PUB dependencies on CS_SERVICEREQUEST_PVT

Line 758: l_request_rec cs_servicerequest_pvt.service_request_rec_type;

754: l_inventory_item_segments_tbl FND_FLEX_EXT.SegmentArray;
755: i NUMBER := 0; -- counter
756: l_key_flex_code VARCHAR2(30);
757: l_inventory_item_id NUMBER;
758: l_request_rec cs_servicerequest_pvt.service_request_rec_type;
759: l_note_index BINARY_INTEGER;
760: l_contact_index BINARY_INTEGER;
761: l_notes cs_servicerequest_pvt.notes_table;
762: l_contacts cs_servicerequest_pvt.contacts_table;

Line 761: l_notes cs_servicerequest_pvt.notes_table;

757: l_inventory_item_id NUMBER;
758: l_request_rec cs_servicerequest_pvt.service_request_rec_type;
759: l_note_index BINARY_INTEGER;
760: l_contact_index BINARY_INTEGER;
761: l_notes cs_servicerequest_pvt.notes_table;
762: l_contacts cs_servicerequest_pvt.contacts_table;
763: l_service_request_rec service_request_rec_type DEFAULT p_service_request_rec;
764: l_dummy VARCHAR2(2000);
765: p_passed_value VARCHAR2(3); -- 2757488

Line 762: l_contacts cs_servicerequest_pvt.contacts_table;

758: l_request_rec cs_servicerequest_pvt.service_request_rec_type;
759: l_note_index BINARY_INTEGER;
760: l_contact_index BINARY_INTEGER;
761: l_notes cs_servicerequest_pvt.notes_table;
762: l_contacts cs_servicerequest_pvt.contacts_table;
763: l_service_request_rec service_request_rec_type DEFAULT p_service_request_rec;
764: l_dummy VARCHAR2(2000);
765: p_passed_value VARCHAR2(3); -- 2757488
766:

Line 768: l_sr_create_out_rec CS_ServiceRequest_PVT.sr_create_out_rec_type;

764: l_dummy VARCHAR2(2000);
765: p_passed_value VARCHAR2(3); -- 2757488
766:
767: -- Added for making call to private Create API which uses the private rec type -- anmukher -- 08/13/03
768: l_sr_create_out_rec CS_ServiceRequest_PVT.sr_create_out_rec_type;
769:
770: --------------------------------------------------------------------------
771: -- Local Procedure Default_Request_Attributes
772: -- Description:

Line 793: x_request_rec IN OUT NOCOPY cs_servicerequest_pvt.service_request_rec_type

789: PROCEDURE Default_Request_Attributes
790: ( p_resp_appl_id IN NUMBER := NULL,
791: p_resp_id IN NUMBER := NULL,
792: p_user_id IN NUMBER := NULL,
793: x_request_rec IN OUT NOCOPY cs_servicerequest_pvt.service_request_rec_type
794: )
795: IS
796: BEGIN
797: IF (x_request_rec.request_date = FND_API.G_MISS_DATE) THEN

Line 998: p_request_rec IN cs_servicerequest_pvt.service_request_rec_type

994: -- be handled by the API body.
995: --------------------------------------------------------------------------
996: PROCEDURE Validate_Request_Attributes
997: ( p_api_name IN VARCHAR2,
998: p_request_rec IN cs_servicerequest_pvt.service_request_rec_type
999: )
1000: IS
1001: --for cmro_eam
1002: l_maintenance_flag VARCHAR2(3);

Line 1680: CS_ServiceRequest_PVT.initialize_rec(l_request_rec);

1676:
1677: -- -----------------------------------------
1678: -- Populate the l_request_rec record fields.
1679: -- -----------------------------------------
1680: CS_ServiceRequest_PVT.initialize_rec(l_request_rec);
1681: l_request_rec.request_date := l_service_request_rec.request_date;
1682: l_request_rec.type_id := l_request_conv_rec.type_id;
1683: l_request_rec.status_id := l_request_conv_rec.status_id;
1684: l_request_rec.severity_id := l_request_conv_rec.severity_id;

Line 2039: CS_ServiceRequest_PVT.Create_ServiceRequest

2035: --the PVT API.
2036:
2037: -- hardcoded the version 3.0 shijain nov 27 2002
2038:
2039: CS_ServiceRequest_PVT.Create_ServiceRequest
2040: ( p_api_version => 4.0,
2041: p_init_msg_list => FND_API.G_FALSE,
2042: p_commit => p_commit,
2043: p_validation_level => FND_API.G_VALID_LEVEL_FULL,

Line 2351: l_notes cs_servicerequest_pvt.notes_table;

2347: l_return_status VARCHAR2(1);
2348: l_msg_count NUMBER;
2349: l_msg_data VARCHAR2(2000);
2350:
2351: l_notes cs_servicerequest_pvt.notes_table;
2352: l_contacts cs_servicerequest_pvt.contacts_table;
2353:
2354:
2355: l_note_index BINARY_INTEGER;

Line 2352: l_contacts cs_servicerequest_pvt.contacts_table;

2348: l_msg_count NUMBER;
2349: l_msg_data VARCHAR2(2000);
2350:
2351: l_notes cs_servicerequest_pvt.notes_table;
2352: l_contacts cs_servicerequest_pvt.contacts_table;
2353:
2354:
2355: l_note_index BINARY_INTEGER;
2356: l_contact_index BINARY_INTEGER;

Line 2359: l_request_rec cs_servicerequest_pvt.service_request_rec_type;

2355: l_note_index BINARY_INTEGER;
2356: l_contact_index BINARY_INTEGER;
2357:
2358: l_service_request_rec service_request_rec_type DEFAULT p_service_request_rec;
2359: l_request_rec cs_servicerequest_pvt.service_request_rec_type;
2360:
2361: l_resp_appl_id NUMBER := p_resp_appl_id;
2362: l_resp_id NUMBER := p_resp_id;
2363: l_user_id NUMBER := p_last_updated_by;

Line 2378: l_sr_update_out_rec CS_ServiceRequest_PVT.sr_update_out_rec_type;

2374: i NUMBER := 0; -- counter
2375: l_key_flex_code VARCHAR2(30);
2376:
2377: -- Added for making call to private Update API which uses the private rec type -- anmukher -- 08/13/03
2378: l_sr_update_out_rec CS_ServiceRequest_PVT.sr_update_out_rec_type;
2379:
2380: BEGIN
2381:
2382: -- Standard start of API savepoint

Line 2597: --cs_servicerequest_pvt.initialize_rec(l_request_rec);

2593: END LOOP;
2594:
2595:
2596: --
2597: --cs_servicerequest_pvt.initialize_rec(l_request_rec);
2598: --
2599:
2600: --
2601: -- Make sure the caller does not set the required fields

Line 2977: CS_ServiceRequest_PVT.initialize_rec(l_request_rec);

2973:
2974: -- -----------------------------------------
2975: -- Populate the l_request_rec record fields.
2976: -- -----------------------------------------
2977: CS_ServiceRequest_PVT.initialize_rec(l_request_rec);
2978: l_request_rec.request_date := l_service_request_rec.request_date;
2979: l_request_rec.type_id := l_request_conv_rec.type_id;
2980: l_request_rec.status_id := l_request_conv_rec.status_id;
2981: l_request_rec.severity_id := l_request_conv_rec.severity_id;

Line 3228: CS_ServiceRequest_PVT.Update_ServiceRequest

3224: -- hardcoded the version 4.0 anmukher aug 11 2003
3225:
3226: -- For bug 3474365 - passed l_resp_id
3227:
3228: CS_ServiceRequest_PVT.Update_ServiceRequest
3229: ( p_api_version => 4.0,
3230: p_init_msg_list => FND_API.G_FALSE,
3231: p_commit => p_commit,
3232: p_validation_level => FND_API.G_VALID_LEVEL_FULL,

Line 3550: CS_ServiceRequest_PVT.Update_Status (

3546:
3547: -- -------------------------------------------
3548: -- Call the private API to update the status
3549: -- -------------------------------------------
3550: CS_ServiceRequest_PVT.Update_Status (
3551: p_api_version => 2.0,
3552: p_init_msg_list => FND_API.G_FALSE,
3553: p_commit => FND_API.G_FALSE,
3554: p_resp_id => p_resp_id,

Line 3880: CS_ServiceRequest_PVT.Update_Owner (

3876:
3877: -- -------------------------------------------
3878: -- Call the private API to update the owner
3879: -- -------------------------------------------
3880: CS_ServiceRequest_PVT.Update_Owner (
3881: p_api_version => 2.0,
3882: p_init_msg_list => FND_API.G_FALSE,
3883: p_commit => FND_API.G_FALSE,
3884: p_validation_level => FND_API.G_VALID_LEVEL_FULL,

Line 5178: -- cs_servicerequest_pvt.process_sr_ext_attrs

5174: -- IN :
5175: -- OUT :
5176: --
5177: -- Description : This is a wrapper for procedure
5178: -- cs_servicerequest_pvt.process_sr_ext_attrs
5179: --
5180: -- Modification History:
5181: -- Date Name Desc
5182: -- -------- -------- -----------------------------------------------------------

Line 5201: CS_SERVICEREQUEST_PVT.process_sr_ext_attrs

5197: , x_msg_count OUT NOCOPY NUMBER
5198: , x_msg_data OUT NOCOPY VARCHAR2
5199: ) IS
5200: BEGIN
5201: CS_SERVICEREQUEST_PVT.process_sr_ext_attrs
5202: ( p_api_version => p_api_version
5203: , p_init_msg_list => p_init_msg_list
5204: , p_commit => p_commit
5205: , p_incident_id => p_incident_id