cancel
Showing results for 
Search instead for 
Did you mean: 

NEED SET PARAMETER ID for maintain Activity (BUS2000126)

Former Member
0 Kudos

Hi all,

i am working in CRM 5.0, i have created one Z Activity Report wit interaction,

i need Set parameter id for maintain Activity (BUS2000126) for geting the partcular Transaction Activity,

it is not working :

FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM

RS_SELFIELD TYPE SLIS_SELFIELD.

data:index type i.

CASE R_UCOMM.

WHEN '&IC1'.

read table it_data index rs_selfield-tabindex.

SET PARAMETER ID 'CRM_CURR_OBJECT_ID'

FIELD it_data-object_id.

call transaction 'CRMD_BUS2000126' ."and skip first screen.

ENDCASE.

ENDFORM. "user_command

this 'CRM_CURR_OBJECT_ID' parameter is not working ,

Can any one tell me parameter ID for t-code 'CRMD_BUS2000126' ,

Thanks,

Ganesh R

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Ganesh,

Use Parameter ID: CRM_OBJECT_ID

Best Regards,

Pratik Patel

<b>Reward with Points!</b>

Former Member
0 Kudos

Hi Pratik Patel,

i have tryed Parameter ID: CRM_OBJECT_ID,

but it is not working ..

see my coding :

FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM

RS_SELFIELD TYPE SLIS_SELFIELD.

data:index type i.

CASE R_UCOMM.

WHEN '&IC1'.

read table it_data index rs_selfield-tabindex.

SET PARAMETER ID 'CRM_OBJECT_ID' FIELD it_data-object_id.

call transaction 'CRMD_BUS2000126' and skip first screen.

ENDCASE.

ENDFORM. "user_command

here is any problem?,

i have checked clicked object id is comming properly ,

can u tell what is the problem?

regards

ganesh

Former Member
0 Kudos

Hi Ganesh,

May be you can use a different approach,

Where in you will use a BDC program openup the transaction for you passing the transaction ID.

Best Regards,

Pratik Patel

<b>Reward with Points!</b>

Answers (0)