Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Open URL in Background

Former Member
0 Likes
1,259

Good Day Gurus,

      Currently i'm developing an email notification for newly created purchase order,

  

      On the user exit side of Purchase Order Creation, this will call a function module to open the url.

      Is there any other way to call the Url in background ?

 

      Note: on page load of my asp page, an Email Notification will be sent to the approver.

     I tried the PRGN_GENER_EXECUTE_URL and

      cl_gui_frontend_services=>execute functions but both of them does need to open the browser physically

     Also failed to use the  cl_http_client=>create

1 ACCEPTED SOLUTION
Read only

guilherme_frisoni
Contributor
0 Likes
832

Hi Harvey,

check this link:

http://scn.sap.com/docs/DOC-38842

I use the same code to load an html page in a job.

Regards,

Frisoni

Good Day Gurus,

      Currently i'm developing an email notification for newly created purchase order,

  

      On the user exit side of Purchase Order Creation, this will call a function module to open the url.

      Is there any other way to call the Url in background ?

 

      Note: on page load of my asp page, an Email Notification will be sent to the approver.

     I tried the PRGN_GENER_EXECUTE_URL and

      cl_gui_frontend_services=>execute functions but both of them does need to open the browser physically

     Also failed to use the  cl_http_client=>create

2 REPLIES 2
Read only

guilherme_frisoni
Contributor
0 Likes
833

Hi Harvey,

check this link:

http://scn.sap.com/docs/DOC-38842

I use the same code to load an html page in a job.

Regards,

Frisoni

Read only

0 Likes
832

Thank you so much Sir!