Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

set paramater id

Former Member
0 Likes
658

IF rs_selfield-fieldname EQ 'MATNR'.

READ TABLE itab INDEX rs_selfield-tabindex.

SET PARAMETER ID 'EQN' FIELD itab-matnr.

CALL TRANSACTION 'MM03' AND SKIP FIRST SCREEN .

ENDIF.

what is the paramter i forgot

6 REPLIES 6
Read only

hymavathi_oruganti
Active Contributor
0 Likes
636

CALL TRANSACTION 'MM03' using itab

AND SKIP FIRST SCREEN .

try like above

Read only

Former Member
0 Likes
636

The parameter ID is 'MAT' and not 'EQN'.

Read only

Former Member
0 Likes
636

You will need to set Parameter ID MAT for the material number.

Read only

Former Member
0 Likes
636

SET PARAMETER ID <b>'MAT'</b> FIELD itab-matnr.

Read only

Former Member
0 Likes
636

Hi ,

Use this Code.

IF rs_selfield-fieldname EQ 'MATNR'.

READ TABLE itab INDEX rs_selfield-tabindex.

SET PARAMETER ID <b>'MAT'</b> FIELD itab-matnr.

CALL TRANSACTION 'MM03' AND SKIP FIRST SCREEN .

ENDIF.

<i>Check the data element of that particular field > Further Characterstics> Parameter id .</i>

Hope This Info Helps YOU.

<b>Reward Points If It Helps YOU.</b>

Regards,

Raghavendra

Read only

Former Member
0 Likes
636

Hi Liat,

U only need to do is :

SET PARAMETER ID 'MAT' FIELD itab-matnr.

CALL TRANSACTION 'MM03' AND SKIP FIRST SCREEN .

Regards,

Digesh Panchal