DECLARE
V_REQUEST_ID NUMBER;
l_boolean BOOLEAN;
l_boolean1 BOOLEAN;
BEGIN
l_boolean := FND_REQUEST.ADD_DELIVERY_OPTION
(TYPE => 'E', -- this one to speciy the
delivery option as Email
p_argument1 => 'Testing the Email option from
back end', -- subject for the mail
p_argument2 => 'raju.ch88@gmail.com', -- from address
p_argument3 => 'raju.ch88@gmail.com', -- to address
p_argument4 => 'raju.ch88@gmail.com', -- cc address to be specified here.
nls_language => '' -- language option
);
IF l_boolean = TRUE
THEN
FND_GLOBAL.APPS_INITIALIZE(8511,51272,20003);
l_boolean1 := FND_REQUEST.add_layout
(template_appl_name => 'XXAA'
,template_code => 'XXAAPTOSUEMP'
,template_language => 'en'
,template_territory => 'US'
,output_format => 'PDF'
);
V_REQUEST_ID := FND_REQUEST.SUBMIT_REQUEST
(APPLICATION => 'XXAA'
,PROGRAM => 'XXAAPTOSUEMP'
);
COMMIT ;
DBMS_OUTPUT.PUT_LINE('Request submitted.
V_REQUEST_ID = ' || V_REQUEST_ID);
END IF;
EXCEPTION
WHEN OTHERS THEN
DBMS_OUTPUT.PUT_LINE('Request set submission failed
- unknown error: ' ||SQLERRM);
END;
1 comment:
Thanks for This, Can you tell me If I Put Email ID in "find_request.add_delivery_option" API then this will not be enabled for all request.. because there is not link or Id passing to the API that say this Delivery option is for particular Request. can you plz confirm ? thanks
Post a Comment