DBA Data[Home] [Help]

APPS.AR_AUTOREC_API dependencies on FND_REQUEST

Line 1028: FND_REQUEST.SET_ORG_ID(p_org_id);

1024: l_request_id NUMBER;
1025: BEGIN
1026: arp_debug.debug('submit_subrequest()+');
1027:
1028: FND_REQUEST.SET_ORG_ID(p_org_id);
1029:
1030: l_request_id := FND_REQUEST.submit_request( 'AR', 'AR_AUTORECAPI',
1031: '',
1032: SYSDATE,

Line 1030: l_request_id := FND_REQUEST.submit_request( 'AR', 'AR_AUTORECAPI',

1026: arp_debug.debug('submit_subrequest()+');
1027:
1028: FND_REQUEST.SET_ORG_ID(p_org_id);
1029:
1030: l_request_id := FND_REQUEST.submit_request( 'AR', 'AR_AUTORECAPI',
1031: '',
1032: SYSDATE,
1033: FALSE,
1034: p_process_type ,

Line 2271: fnd_request.set_org_id(l_org_id);

2267: l_org_id := TO_NUMBER(FND_PROFILE.value('ORG_ID'));
2268: END;
2269: end if;
2270:
2271: fnd_request.set_org_id(l_org_id);
2272:
2273: l_reqid := FND_REQUEST.SUBMIT_REQUEST (
2274: application=>'AR',
2275: program=>'ARZCARPO',

Line 2273: l_reqid := FND_REQUEST.SUBMIT_REQUEST (

2269: end if;
2270:
2271: fnd_request.set_org_id(l_org_id);
2272:
2273: l_reqid := FND_REQUEST.SUBMIT_REQUEST (
2274: application=>'AR',
2275: program=>'ARZCARPO',
2276: sub_request=>FALSE,
2277: argument1=>'P_PROCESS_TYPE=RECEIPT',

Line 2745: fnd_request.set_org_id(l_org_id);

2741: l_org_id := TO_NUMBER(FND_PROFILE.value('ORG_ID'));
2742: END;
2743: END IF;
2744:
2745: fnd_request.set_org_id(l_org_id);
2746:
2747: /* Modified the code as per SEPA Project. We need to check the
2748: program attached to the receipt method and call it accordingly */
2749: /* l_reqid := FND_REQUEST.SUBMIT_REQUEST (

Line 2749: /* l_reqid := FND_REQUEST.SUBMIT_REQUEST (

2745: fnd_request.set_org_id(l_org_id);
2746:
2747: /* Modified the code as per SEPA Project. We need to check the
2748: program attached to the receipt method and call it accordingly */
2749: /* l_reqid := FND_REQUEST.SUBMIT_REQUEST (
2750: application=>'AR',
2751: program=>'ARXAPFRC',
2752: sub_request=>FALSE,
2753: argument1=>'P_BATCH_ID='|| p_batch_id

Line 2791: l_xml_output:= fnd_request.add_layout(

2787: INTO l_iso_language,l_iso_territory
2788: FROM FND_LANGUAGES
2789: WHERE language_code = USERENV('LANG');
2790:
2791: l_xml_output:= fnd_request.add_layout(
2792: template_appl_name => 'AR',
2793: template_code => 'ARSEPADNT',
2794: template_language => l_iso_language,
2795: template_territory => l_iso_territory,

Line 2799: l_reqid := FND_REQUEST.SUBMIT_REQUEST (

2795: template_territory => l_iso_territory,
2796: output_format => 'RTF'
2797: );
2798: END IF;
2799: l_reqid := FND_REQUEST.SUBMIT_REQUEST (
2800: application=>'AR',
2801: program=>l_program_name,
2802: sub_request=>FALSE,
2803: argument1=>'P_BATCH_ID='|| p_batch_id