cancel
Showing results for 
Search instead for 
Did you mean: 

GUI Mapping Select to Table in PI ABAP Server

suwandi_cahyadi
Contributor
0 Kudos

Dear all,

Is it possible to get data from PI ABAP Server from PI GUI mapping?

If this is possible how was the performance?

My requirement is that, I need to do a mapping but the mapped value is different from one server to another.

in Development the mapped value will be A, in QA the mapped value will be B.

Is there any workaround for this?

Thank you,

Suwandi C.

Accepted Solutions (1)

Accepted Solutions (1)

iaki_vila
Active Contributor
0 Kudos

Hi suwandi,

You will need a system to have a plave to get the correspondence between values. This concept in PI is the value-mapping. There different forms to do like this document pointed http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00ee347e-aabb-2a10-b298-d15a1ebf4... or here an easier example: XI/PI: Value Mapping Using Graphical Editor

A few tips,

If the number of values is little you should use the valueMapping function in the ESR with the values inserted in the integration directory,  if you have a large number of values o these values can change frequently you should use a RFC lookup or JDBC lookup and to have the values in a SAP table or another DB table.

Regards.

Answers (2)

Answers (2)

former_member184720
Active Contributor
0 Kudos

Hi Suwandi - Not sure if you want to get the system ID in the mapping.

If so below java code will get you that

String sysID= (String) System.getProperty("SAPSYSTEMNAME");

if(sysID.equals("your Dev/Test/Prod"))

{

...

...

..

}

gagandeep_batra
Active Contributor
0 Kudos

i think we can you valuemapping for this purpose

& also can you plz explain your scenario

Regards

GB