‎2010 Dec 02 7:03 AM
I have an input field where i am entering value of file path as /Data/Test/ but on debugging this i found this value gets changed to /DATA/TEST/. I want this value to be same as entered by the user.
‎2010 Dec 02 7:06 AM
Check in SE11 at the domain level of the field if th checkbox for lower case is selected or not.
‎2010 Dec 02 7:06 AM
Check in SE11 at the domain level of the field if th checkbox for lower case is selected or not.
‎2010 Dec 02 7:13 AM
NO....Actually, I write in Input parameter : "Data/Test".
but it automatically convert into Upper case....like " DATA/TEST".....so I want same data as user entered.....that's "Data/Test"
‎2010 Dec 02 7:16 AM
Hi
Maybe you could try to write the contents of your field to a work area and use the addition
write fld_in to v_fld_in respecting case.
regards
Isaac Prince
‎2010 Dec 02 7:22 AM
Hi,
Try defining your input parameter as:
parameters: p_input like file lower case.
the addition lower case would make it case sensitive
Regards,
Himanshu
‎2010 Dec 02 7:32 AM
In SE51 screen layout of your program, double click on your field and at the bottom in setting, Dic - there is a check box for
lower/uppercase ,use it, your problem will be solved.
‎2010 Dec 02 7:45 AM
‎2010 Dec 02 11:13 AM