Application Development 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: 

QE51N - Changing QAPP-USERC1

Former Member
0 Kudos

Hi,

I'm using QAPP_CUST_IP_PROPOSAL to change the value for the field USERC1, in transaction QE51N. But if I have 10 lines in QAPP to modify with this function i can only modify one row. How can i modify all linea at the same time?

I also try with EXIT_SAPLQAPP_001, and it doesn't work.

Thanks,

Sené

4 REPLIES 4

Former Member
0 Kudos

HI,

I think u can have this function module in loop and modify the table wrt to workarea

Thnks

0 Kudos

Hi,

It's not possible. It's an standard program and I have only access to one workarea, not to internal tables.

Thanks

0 Kudos

Hi,

Can u xpalin me ur query clearly

r u writing an exit

Thnkx

0 Kudos

I solved it with....

*----


DATA: l_qappv LIKE qappv.

*----


MOVE-CORRESPONDING actual_values_for_qapp TO l_qappv.

MOVE sy-mandt TO l_qappv-mandt.

  • Value U to Update

MOVE 'U' TO l_qappv-kzbuchen.

  • fix the new value for userc1

l_qappv-userc1 = p_userc1.

CALL FUNCTION 'QAPV_IP_POST_MEM_INS_UPD'

EXPORTING

i_qappv = l_qappv.

CALL FUNCTION 'QAPV_IP_POST'.