Selection field on Infosource
Hi,
I have this field in a Z infosource, that I need to turn it into a Selection Field, so I can use it as a filter in the Infopackage. How do I do that?
I enter using SBIW, but it doesn't let me check the selection check button.
any help?¿?¿?
Mauricio
Former Member replied
Hello Mauricio,
To make a field as selection field from datasource you need to make changes in OLTP side.
Go to rsa6->datasource name->edit->mark column selection for required field.
If this check box is grey and not allowed to change, then you can write a simple ABAP program in SE38 to achieve this. The code should contain this statement
Update ROOSFIELD set SELECTION = 'X' where
OLTPSOURCE = 'datasource name' and
FIELD = 'field name' and objvers = 'A'.
Regards,
Praveen