cancel
Showing results for 
Search instead for 
Did you mean: 

Iview problem

Former Member
0 Kudos

Hi,

i have a transaction iview for uploading Xcel file to infotypes . I have called the F4_filename fn module ,so that users can select their file name .

CALL FUNCTION 'F4_FILENAME'

EXPORTING

program_name = syst-cprog

dynpro_number = syst-dynnr

  • FIELD_NAME = ' '

IMPORTING

file_name = file_path .

In R/3 it's working fine .But if i access it from the Portal .am getting one new page prior to window popup.

saying ...

"Please Wait . You will be forwaded automatically.

This page had to be included for techinical reasons ."

How to avoid this page in portal .

Rgds,

J

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Jothi,

'F4_FILENAME' has the parameters

program_name

dynpro_number

These are the the module pool program from where the screen for F4 help is fetched and the screen number (well these are the descriptions from the Function Module itself).

Since the FM 'F4_FILENAME' would call another module pool program to generate the F4 help screen, there is a message saying that your request is forwarded(probaby to the program that generates the screen).

In SAP, this call would be fast and hence we feel that it is the same program running, but since there is a time delay on the portal, you see the message.

Instead of using 'F4_FILENAME', use the methods:

1. CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG or

2. CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG

Based on your requirement. This would eliminate the forwarding message.

Naveen.

Former Member
0 Kudos

Hi guys ,

thxs.

I found in SAP Note : 893567 , saying that ..

-


"If u use the frontend services in the SAPGUI for HTMl,interim screens are shown coz of tech reasons and the screen contains msg , " Please wait. You will be forwarded automatically . This page had to be included for tech reasons ."

-


Evn though the interm page comes in my system ,the selection popup(F4) opens immediately and the interim page vanishes.

But in all other system the interim page remains ...

and no window pop up.

Hav u created any before ?

Plz refee the above note .

Rgds,

J

Former Member
0 Kudos

Hi Jothivenkatachalam (is that real?!),

What GUI type are you using for the transaction iView?

Yoav.