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

Issue on Function Module

Former Member
0 Likes
642

Hi Gurus

I have an issue with function module, i am passing a filepath to the function module which is like this /temp/folder/AFILE.csv.

to pull the data from application server. When ever it enters to the function module it is changing the file name as /TEMP/FOLDER/AFILE.CSV( it is changing the entire thing to capitol letters), I just want to know that there is any way where i can pass the file path as it is.

Regards

Kumar.

3 REPLIES 3
Read only

Former Member
0 Likes
623

use the syntax

\

parameter: p_filnm type string default "\xxx\xx" lower case.

Use no-display addition if you are programmatically passing on along with submit report and return if from a different larger program.

Read only

Former Member
0 Likes
623

If it is a custom Function module then goto the domain of the file parameter of the FM (if u r using std. domain then change it to a custom domain) and set the lowercase checkbox under Definition tab.

Regards,

Joy.

Read only

0 Likes
623

No it is not working in such way also,