I'm trying to make a request to a function in a SAP RFC server hosted at 10.123.231.123 with user myuser
, password mypass
, system number 00
, client 076
, language E
. The name of the function is My_Function_Nm
with parameters: string Alternative, string Date, string Name.
I use the command line:
/usr/sap/nwrfcsdk/bin/startrfc -h 10.123.231.123 -s 00 -u myuser -p mypass -c 076 -l en -F My_Function_Nm
But it always shows me the help instructions.
I guess I'm not specifying the -E pathname=edifile
, and it's because I don't know how to create an EDI File to include the parameters values to the specified function. Maybe someone can help me on how to create this file and how to correctly invoke startrfc
to consume from this function?
Thanks in advance.