cancel
Showing results for 
Search instead for 
Did you mean: 

showing R/3 transaction screen from VC

Former Member
0 Kudos

Hi, two questions:

1) I need to show in VC application the R/3 screen after entering specific transaction with parameters I passed from VC. How do I do this?

2) I need to show in VC application picture stored in R/3 (from material catalogue).

How do I do this?

Thanks for help

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

ad 1) Don't know exactly, but I would try this: if your R/3 transaction can be launched through a URL, and this transaction allows you to pass values through the URL, then concatenate the URL plus the parameters from your application

ad 2) Use an HTMLView and display the images as website with a link to image from the R/3 system

Former Member
0 Kudos

You have to define an URL view in your VC iView and provide it an url like the following:

"http://<portal>:<port>/irj/servlet/prt/portal/prtroot/com.sap.portal.appintegrator.sap.Transaction?System=SAP_R3&TCode=VA02&GuiType=WebGui&DynamicParameter=VBAK-VBELN="&@Order_Number&"&OkCode=ENT2"

This one is calling transaction VA02 from an ERP back-end system, alias is SAP_R3 (you need to replace it with your alias), skipping first screen and bringing the sales order "Order_number" in change mode.

The parameter Order_number is filled previously in my VC model

Karim told me,and i succeded,but the screen of the tcode is english ,i want chinese,i don't know how to do

regards

zlf

Former Member
0 Kudos