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

DECLARATION WHILE CREATING A FM

Former Member
0 Likes
280

Hi all,

I am creatin a Function Module and export parameter is total

and i want total to be like this total(11) type p decimals 5.

how should i declare this in my export paramter

Thanks

1 REPLY 1
Read only

Former Member
0 Likes
255

Hi Preeti,

May be you can create a data element of the required characteristics and use its reference in the export parameter of the Function Module.

eg: create data element abc with type p decimals 5.

In your FM in export say e_abc TYPE/LIKE abc.

Sri