Skip to Content
0
Former Member
Mar 02, 2005 at 10:12 AM

Passing parameters from webdynpro to rfc and displaying pdf in portal

22 Views

Hi,

I am creating a webdynpro application where in I am using the following code for catching the current user who has logged into the portal.

try{

IWDClientUser user = WDClientUser.getCurrentUser();

if(user.isAnonymousUser()){

//User is anonymous .. do something...

}else{

//user is authenticated..do something

}

}catch(WDUMException e){

//do something...

}

I am calling a rfc, how do I pass the username to the rfc?

This rfc will retrieve some data from R/3 and covert the data into pdf format.

How do I display this pdf document in the portal?

Thanks in advance,

Jayesh