cancel
Showing results for 
Search instead for 
Did you mean: 

Issue in Passing data from webdynpro to report

Former Member
0 Kudos

Hi all,

I am calling a report transaction in webdynpro through WEBGUI . I have to pass some value to report from webdynpro.

I tried memory ID. It doesnt works. Any suggestions will be helpful.

Thanks in advance.

Rupachandran G

Accepted Solutions (0)

Answers (1)

Answers (1)

ChrisPaine
Active Contributor
0 Kudos

Hello Rupachandran,

the memory id won't work as it is within the current session only.

you have two main options:

1) pass parameters in URL

2) persist the parameters somehow ( shared memory area, database table ) and pass a GUID in the URL which refers to these.

strangely enough although this is a mirror of most of the posts here, which want to launch WDA apps from standard GUI based code, the techniques are very very similar.

you might get some help from looking at this recent post

Former Member
0 Kudos

Hi Chris,

thanks for the reply. I passed value through URL it works.

The Issue is I have a report which is used to update STXBITMAPS( uploading a BITMAP Image to table)

table. When I run the report in SAP GUI it works fine whereas if I run through ITS its not working. Its neither giving error nor giving dump. Its processing but nothing happens. pls guide me where I am going wrong.

Thanks

Rupachandran G

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

Not everything that runs in the SAPGUI for Windows will work in the SAPGUI for HTML. There are certainly technical limitations that keep some transactions from being supported in the SAPGUI for HTML. You may very well have hit one of these transactions.

Former Member
0 Kudos

Thank you for all your replies.