DBA Data[Home] [Help]

APPS.IBE_QUOTE_CHECKOUT_PVT dependencies on IBE_WORKFLOW_PVT

Line 594: -- Call ibe_workflow_pvt.get_name_details.

590: close c_get_party_id;
591: END IF;
592:
593: -- Get the First Name and Last Name for the derived party id.
594: -- Call ibe_workflow_pvt.get_name_details.
595: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
596: IBE_Util.Debug('Before calling get_name_details, partyId = '||l_party_id);
597: END IF;
598:

Line 600: IBE_WORKFLOW_PVT.get_name_details(

596: IBE_Util.Debug('Before calling get_name_details, partyId = '||l_party_id);
597: END IF;
598:
599: IF (l_party_id is not null) THEN
600: IBE_WORKFLOW_PVT.get_name_details(
601: p_party_id => l_party_id,
602: p_user_type => FND_API.G_MISS_CHAR,
603: x_contact_first_name => l_person_first_name,
604: x_contact_last_name => l_person_last_name,

Line 837: IBE_Util.Debug('IBE_Workflow_Pvt.NotifyForSalesAssistance() starts');

833:
834: IF p_reason_code <> FND_API.G_MISS_CHAR
835: AND p_reason_code IS NOT NULL THEN
836: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
837: IBE_Util.Debug('IBE_Workflow_Pvt.NotifyForSalesAssistance() starts');
838: END IF;
839:
840: IBE_Workflow_Pvt.NotifyForSalesAssistance(
841: p_api_version => p_api_version_number

Line 840: IBE_Workflow_Pvt.NotifyForSalesAssistance(

836: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
837: IBE_Util.Debug('IBE_Workflow_Pvt.NotifyForSalesAssistance() starts');
838: END IF;
839:
840: IBE_Workflow_Pvt.NotifyForSalesAssistance(
841: p_api_version => p_api_version_number
842: ,p_init_msg_list => FND_API.G_TRUE
843: ,p_quote_id => l_qte_header_rec.quote_header_id
844: ,p_customer_comments => p_customer_comments

Line 852: IBE_Util.Debug('IBE_Workflow_Pvt.NotifyForSalesAssistance() finishes');

848: ,x_msg_count => x_msg_count
849: ,x_msg_data => x_msg_data);
850:
851: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
852: IBE_Util.Debug('IBE_Workflow_Pvt.NotifyForSalesAssistance() finishes');
853: END IF;
854: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
855: RAISE FND_API.G_EXC_ERROR;
856: END IF;

Line 885: IBE_Util.Debug('IBE_Workflow_Pvt.NotifyOrderStatus() starts');

881: END IF;
882: IF(l_current_state NOT IN (2,3,4,5)) THEN
883:
884: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
885: IBE_Util.Debug('IBE_Workflow_Pvt.NotifyOrderStatus() starts');
886: END IF;
887: /*This part is a fix for sending notifications to sharee*/
888: IF (p_sharee_party_id = fnd_api.g_miss_num OR p_sharee_party_id IS NULL) THEN
889: IBE_Workflow_Pvt.NotifyOrderStatus(

Line 889: IBE_Workflow_Pvt.NotifyOrderStatus(

885: IBE_Util.Debug('IBE_Workflow_Pvt.NotifyOrderStatus() starts');
886: END IF;
887: /*This part is a fix for sending notifications to sharee*/
888: IF (p_sharee_party_id = fnd_api.g_miss_num OR p_sharee_party_id IS NULL) THEN
889: IBE_Workflow_Pvt.NotifyOrderStatus(
890: p_api_version => p_api_version_number
891: ,p_init_msg_list => FND_API.G_TRUE
892: ,p_quote_id => l_qte_header_rec.quote_header_id
893: ,p_status => l_return_status

Line 902: IBE_Workflow_Pvt.NotifyOrderStatus(

898: ,x_msg_data => x_msg_data);
899:
900: ELSE
901: /*Sharee is present*/
902: IBE_Workflow_Pvt.NotifyOrderStatus(
903: p_api_version => p_api_version_number
904: ,p_init_msg_list => FND_API.G_TRUE
905: ,p_quote_id => l_qte_header_rec.quote_header_id
906: ,p_status => l_return_status

Line 918: IBE_Workflow_Pvt.NotifyOrderStatus(

914: END IF;
915:
916: /* Book Order Error - Enter Order Success should notify user */
917: IF (l_return_status = 'E' and x_return_status = 'S') THEN
918: IBE_Workflow_Pvt.NotifyOrderStatus(
919: p_api_version => p_api_version_number
920: ,p_init_msg_list => FND_API.G_TRUE
921: ,p_quote_id => l_qte_header_rec.quote_header_id
922: ,p_status => 'S'

Line 933: IBE_Util.Debug('IBE_Workflow_Pvt.NotifyOrderStatus() finishes');

929:
930:
931: END IF;--for l_current_state(HA)
932: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
933: IBE_Util.Debug('IBE_Workflow_Pvt.NotifyOrderStatus() finishes');
934: END IF;
935: IF (x_return_status = FND_API.G_RET_STS_ERROR) THEN
936: RAISE FND_API.G_EXC_ERROR;
937: END IF;