‎2010 Jun 11 2:05 PM
Hi,
I am getting following error in this Function Module ,
code is : go_uexit = ybc_uexit_check_01=>get_instance( fcs_accit-budat ).
Error: You can only omit the parameter name if the method only has a non-optional parameter or an optional IMPORTING parameter that is identified by "PREFERRED PARAMETER". by "PREFERRED PARAMETER".
‎2010 Jun 12 10:10 PM
Hi
Probably method get_instance of class ybc_uexit_check_01 has more oblicatory parameters. You can call it as indicated below:
CALL METHOD ybc_uexit_check_01=>get_instance
EXPORTING
param1 = fcs_accit-budat
param2 = x2.Kind regards
‎2010 Jun 12 10:10 PM
Hi
Probably method get_instance of class ybc_uexit_check_01 has more oblicatory parameters. You can call it as indicated below:
CALL METHOD ybc_uexit_check_01=>get_instance
EXPORTING
param1 = fcs_accit-budat
param2 = x2.Kind regards