DBA Data[Home] [Help]

APPS.AHL_VWP_PROJ_PROD_PVT dependencies on FND_REQUEST

Line 628: FND_REQUEST.SET_ORG_ID(l_curr_org_id);

624: fnd_log.string(l_log_statement,L_DEBUG_KEY, 'concurrent parameter values p_api_version -> '||p_api_version||' , visit_number -> '||c_visit_rec.visit_number||' , p_release_flag -> '||p_release_flag);
625: END IF;
626:
627: l_curr_org_id := MO_GLOBAL.get_current_org_id();
628: FND_REQUEST.SET_ORG_ID(l_curr_org_id);
629:
630: -- SKPATHAK :: 02-MAY-2011 :: VWPE: ER:12424063
631: -- If the visit status is DRAFT, treat the call of this API from front end as Plan_visit else as P2P
632: -- Also note that we are passing the fourth argument 'caller' as JAVA, since this API is being called from JAVA layer

Line 635: l_req_id := FND_REQUEST.SUBMIT_REQUEST(

631: -- If the visit status is DRAFT, treat the call of this API from front end as Plan_visit else as P2P
632: -- Also note that we are passing the fourth argument 'caller' as JAVA, since this API is being called from JAVA layer
633: -- The concurrent programs can also be launched through FORM, in which case FORMS will be passed as caller to BG_Push_to_Production
634: IF l_visit_status = 'DRAFT' THEN
635: l_req_id := FND_REQUEST.SUBMIT_REQUEST(
636: application => 'AHL',
637: program => 'AHLVWPPLN', --launch concurrent program for plan_visit
638: argument1 => p_api_version,
639: argument2 => c_visit_rec.visit_number,

Line 643: l_req_id := FND_REQUEST.SUBMIT_REQUEST(

639: argument2 => c_visit_rec.visit_number,
640: argument3 => p_release_flag,
641: argument4 => 'JAVA');
642: ELSE
643: l_req_id := FND_REQUEST.SUBMIT_REQUEST(
644: application => 'AHL',
645: program => 'AHLVWPP2P', --launch concurrent program for P2P
646: argument1 => p_api_version,
647: argument2 => c_visit_rec.visit_number,