on ‎2009 Feb 02 3:05 PM
Dear all,
My aggregation level is as follows:
city1 - city2 - price - km - planned price
also i have created a characteristic as distance id., which has attributes
Distance id: city1 - city2 - km.
so in my planing template, when i enter city1 and city2 i need to get km from master data.
How can i do that with planning functions? Is there any other suitable way to configure that?
Thanks
Request clarification before answering.
Thanks shafi,
that sounds ok to me, how can i call function module from planning function? Is it from fox formula part?
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Function Module can be called inside fox formulas:
http://help.sap.com/saphelp_nw70/helpdata/EN/47/94eb78b6394befe10000000a42189d/content.htm
or in abap exit class of custom planning function types:
http://help.sap.com/saphelp_nw70/helpdata/En/43/332530c1b64866e10000000a1553f6/content.htm
Hi John,
You can call a Function Module from Fox as follows :
First make an entry for the function module in RSPLF_FDIR table.
then use the following snippet in the fox code.
CALL FUNCTION MYFUNMODULE
EXPORTING
parameter 1 = local variable 1
parameter 2 = local variable 2
......
IMPORTING
E_T_RANGE = local variable 3.
In the code the parameter 1, 2 .. are the parameters that u define in the function module, so that you can pass to and from the function module using import and export statements.
Regards.
Shafi.
| User | Count |
|---|---|
| 13 | |
| 8 | |
| 7 | |
| 5 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.