cancel
Showing results for 
Search instead for 
Did you mean: 

WEB REPORT how to fire multiple commands with 1 link

Former Member
0 Kudos

I have 2 tables in my report. I can use this command to swap brand with packtype

CMD='EXCHANGE' DATA_PROVIDER='DATAPROVIDER_4' IOBJNM_1='0MAT_SALES__ZBRN' IOBJNM_2='ZMMHLMTLS__ZPAT'

but i want to change both tables ( actually I am using tabs to only one is visible at a time but effect should be there if the user switches to the other tab)

but when i fire this command.. it does nothing to the 2nd dataprovider.. what's wrong with this?

CMD='EXCHANGE' DATA_PROVIDER='DATAPROVIDER_4' IOBJNM_1='0MAT_SALES__ZBRN' IOBJNM_2='ZMMHLMTLS__ZPAT'

CMD_1=EXCHANGE&DATA_PROVIDER=DATAPROVIDER_5&IOBJNM_1=0MAT_SALES__ZBRN&IOBJNM_2=ZMMHLMTLS__ZPAT'

points will be awarded for even a good try...

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

I tried that but it doesn't work... My understanding is MULTI is used only in case you have * in your item property value.

What I want to know is what's wrong with this format of sending 2 commands in 1 URL request ?

edwin_harpino
Active Contributor
0 Kudos

hi Ram,

try MULTI='X' ?

...

DATA_PROVIDER='DATAPROVIDER_4' DATA_PROVIDER=DATAPROVIDER_5 MULTI='X' CMD='EXCHANGE' IOBJNM_1='0MAT_SALES__ZBRN' IOBJNM_2='ZMMHLMTLS__ZPAT'

.....

hope this helps.