‎2008 Dec 02 1:47 PM
Hi all,
someone has used this MF: CR_API_CREATE_CAPACITY_INTVALS ??
I try to use it but i return an error, I search where is used is sap system, and is not used !!!
My doubt is: is it correct ? how use it ?
Tks a lot,
bye.
‎2008 Dec 02 4:08 PM
Hi
This Function module is used inside the ocde of this FM CR_API_CREATE_CAPACITIES
and this is how it is used:
IF in_kapa_api01-kapname IS INITIAL.
CALL FUNCTION 'CR_API_CREATE_CAPACITY_INTVALS'
EXPORTING
kapid = p3006-kapid
CANUM = IN_KAPA_API01-CANUM
mosid = in_kapa_api02-mosid
IMPORTING
error = api-error
warning = api-warning
TABLES
in_kazy_api01 = in_kazy_api01
in_kapa_api04 = in_kapa_api04
EXCEPTIONS
OTHERS = 1.
ENDIF.
Regards
Neha
‎2008 Dec 02 4:20 PM
tks,
How you find it ?
with the button 'where-used list' show nothing ....
tks for your reply, but i don't again how I have to use it !!!
help,
tks.
‎2008 Dec 08 2:27 PM
‎2008 Dec 08 2:58 PM
hello ,
I can see the FM used in LCRA0U06
321 CALL FUNCTION 'CR_API_CREATE_CAPACITY_INTVALS'
EXPORTING
kapid = p3006-kapid
CANUM = IN_KAPA_API01-CANUM
mosid = in_kapa_api02-mosid
IMPORTING
error = api-error
warning = api-warning
TABLES
in_kazy_api01 = in_kazy_api01
in_kapa_api04 = in_kapa_api04
EXCEPTIONS
OTHERS = 1.
click on the function module name and go to where used list and search .. you might have missed some thing while using where used list
Edited by: Brajesh maheshwari on Dec 8, 2008 8:29 PM