cancel
Showing results for 
Search instead for 
Did you mean: 

Using SET GET parameters in ITS

former_member184111
Active Contributor
0 Kudos

Hi All,

Is it possible to use set get parameters in ITS. We want to set some parameters in a BADI and read the value in ITS Template .

Or is there any other method to do this?

Thanks,

Anubhav

Accepted Solutions (1)

Accepted Solutions (1)

former_member228142
Active Contributor
0 Kudos

Sure. In your abap program use the following code


*  ITS macros
INCLUDE avwrtcxm.

...

GET PARAMETER ID 'YOUR_PARAMETER' FIELD SAVE_PARAMETER.

field-set u2018~YOUR_PARAMETERu2019 1 SAVE_PARAMETER.

field-transport.

...

in the template you can now use ~YOUR_PARAMETER.

regards,

Klaus

Edited by: Klaus Layer on Feb 3, 2009 5:05 PM

Answers (0)