Application Development 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: 

Function module

Former Member
0 Kudos

HI,

what is the use of function module 'CUOV_GET_FUNCTION_ARGUMENT'.

CALL FUNCTION 'CUOV_GET_FUNCTION_ARGUMENT'

EXPORTING

ARGUMENT = 'LENGTH_FT'

IMPORTING

  • VTYPE =

SYM_VAL = L_LENGTH_FT

  • NUM_VAL =

  • IO_FLAG =

TABLES

QUERY = WS_QUERY

  • EXCEPTIONS

  • ARG_NOT_FOUND = 1

  • OTHERS = 2

.

IF SY-SUBRC <> 0.

  • MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

  • WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

i run this function module it is not asking any input and output parameters?what input parameters i will give?

Thanks & Regards,

sairam

3 REPLIES 3

Former Member
0 Kudos

Hi,

Put a where used list of the FM and check how this FM is used..

Thanks,

Naren

Former Member
0 Kudos

Sairam,

The standard function module “CUOV_GET_FUNCTION_ARGUMENT” used to read the current characterstic values from the structuer QUERY.

Regards,

Amey

Former Member
0 Kudos

HI,

place the cursor on FM and press F1.

Kishi.