2012 Apr 22 11:32 AM
Hi Expert,
I have added two custom field in me23n and i have included in se11 also those field are zzaccept and zzuser i have added in the layout editor also
my requirement is for field zzaccept i have created one dropdown in layout editor i have to maintain two value in layout editor i.e Accept or Reject
How to maintain this two value in layout editor.
Can any one throw some light.
Regards,
Addu
Hi Expert,
I have added two custom field in me23n and i have included in se11 also those field are zzaccept and zzuser i have added in the layout editor also
my requirement is for field zzaccept i have created one dropdown in layout editor i have to maintain two value in layout editor i.e Accept or Reject
How to maintain this two value in layout editor.
Can any one throw some light.
Regards,
Addu
2012 Apr 22 11:41 AM
2012 Apr 22 11:54 AM
Hi Manu,
Please cau eloborate what i have to do as my requirement is for field zzacept i have created dropdowm option i want to add ACCEPT or REJECT in the drop down hot to add this in my dropdown.
Regards,
Addu
2012 Apr 22 12:36 PM
You just need to follow some threads that already describe this...
Especially: how to use dropdown list in module pool
Try and get back if still stucked.
You should have something like:
TYPE-POOLS : VRM
DATA : field_id TYPE VRM_ID ,
values TYPE VRM_VALUES,
value LIKE LINE OF values.
* In screen flow:
PROCESS BEFORE OUTPUT
MODULE list_fill_100
* in PBO module:
MODULE list_fill_100 OUTPUT
value-KEY = 'A'.
value-TEXT = 'Accept'.
APPEND value TO VALUES.
value-KEY = 'R'.
value-TEXT = 'Reject'.
APPEND value TO VALUES.
CALL FUNCTION 'VRM_SET_VALUES'
EXPORTING
id = 'ZZACCEPT'
values = values.
ENDMODULE.
Cheers,
Manu.
2012 Apr 22 2:40 PM
Hi Manu,
Thank u very much for your support Both Accept and Reject are comming.But in me23n tcode
when i am trying to save that value it is not saving the value i.e accept or reject.
Regards,
Addu
2012 Apr 23 8:26 AM
Hi,
me23n is only for display purpose. I dont think you can save data in this transaction. Do you want to save in me23n only?
Regards,
Sindhu Pulluru.
2012 Apr 22 1:01 PM
Hi md Addu,
maintain as fixed values in underlying domain.
Regards Clemens
2012 Apr 22 2:30 PM
Hi md Addu,
You can use the FM " VRM_SET_VALUES ".
Regards,
Swarnadeepta .
2012 Apr 23 8:35 AM
Hi MdAddu,
you need to maintain the fixed values for the field, do it through the domain level for your NEW added fields.
Fixed values : A - accept
R - Reject.
Thanks
Sachin