cancel
Showing results for 
Search instead for 
Did you mean: 

Regarding BackGround scheduling with GUI_UPLOAD Function Module

Former Member
0 Kudos

Hi All,

I have a Report program. In this Report I am uploading data from Flat File( in Presentation Server) using GUI_UPLOAD function module and updating DB calling BAPI. When I am executing , its working fine i.e. Its uploading data in the DB.

Now , When I am scheduling the same Report in Background Process, the Process is cancelled.I mean Its not working. What I think that in Background Process the FM GUI_UPLOAD is not working but I am not sure about that.

Can anybody give me the solution for the same.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

GUI upload doesnot supports background processing.

see the code on line 57 inside GUI_UPLOAD.

  • Batch mode is not supported

IF sy-batch = 'X'.

MESSAGE ID 'FES' TYPE 'E' NUMBER '002' RAISING NO_BATCH.

ENDIF.

if you are ulploading from excel file,

use ALSM_EXCEL_TO_INTERNAL_TABLE FM

Former Member
0 Kudos

Hi Shefali,

Really Its helpful. Is there any other FM which uploads the data in Background from FLAT FILE ( Not from excell file ) which is kept on Presentation Server?

Former Member
0 Kudos

You can use ws_upload method

Former Member
0 Kudos

hi sefali,

No yar , I have checked it out these FM, it was not working.. Any how i have solved my issue using Dataset concept. Thanks for replying....

Answers (0)