cancel
Showing results for 
Search instead for 
Did you mean: 

Showing ABAP Reports thru SAP transactional iviews?

Former Member
0 Kudos

hi

I have just 4 user license for my R/3 ,thru these user i want to show reports of R/3 to my Enterprise portal user (which are diff.from R/3).I thought to give this report thru SAP transactional Iview .Can i pass my EP user logon data thru SAP transactional Iview into R/3?

I have activated ITS and is able to see SAP transactional Iview.Please help me.

Regards

Nidhideep

Accepted Solutions (0)

Answers (1)

Answers (1)

sridhar_k2
Active Contributor
0 Kudos

Hi Nidhideep,

If you have ITS Parameters and Connection Parameters of R/3 you can create transaction iviews. If that transaction is taking input parameters (like EP user details), then you can send parameter thru iView.

For more info about Transactional iView, go thru this link

/message/2273101#2273101 [original link is broken]

For Reports, Visual composer is better option. If you have RFC's , which gives report VC iView are easy to create and all the function modules you can use directly.

Reply me with your exact requirement.

Regards,

Sridhar

Former Member
0 Kudos

hi

I want to that when EP user logsin then his user details such as user name are passed

thru parmeter using ITS url,this url is to acess some transcational code.Then using my username, mapping will be done in R/3 and only those reports will be queried my user for which he is entitled.

Regards

Nidhideep

sridhar_k2
Active Contributor
0 Kudos

Hi,

Where do you want call this transaction iview?

Is it from Web Dynpro?

If you want to call that iview from Web Dynpro use this code.

Declare Name in the Application Parameter for the iview.

WDPortalNavigation.navigateAbsolute(

"ROLES:portal_content/com.cv.kaar.Test_Page2",

WDPortalNavigationMode.SHOW_INPLACE,

(String) null,

(String) null,

WDPortalNavigationHistoryMode.NO_DUPLICATIONS,

(String) null,

(String) null,

"Name=" + wdContext.currentContextElement().getName());

Go trhu the link for more info.