‎2008 Aug 13 4:35 AM
Hi
I have to upload data for OM module for PP01 tcode and i dont want to go for BDC which FM i should use pls help me out
Regards
Meeta
‎2008 Aug 13 4:06 PM
Hi
I have to upload data for OM module for PP01 tcode and i dont want to go for BDC which FM i should use pls help me out
Regards
Meeta
‎2008 Aug 28 9:04 AM
‎2008 Oct 09 11:04 AM
The easyest way is by the FM RH_INSERT_INFOTYPE.
Starting mainaining the Infotype 1000 and then all the next you need.
If you don't know the OBJID of the Object you are creating then use this FM to know it.
CALL FUNCTION 'RH_GET_NEXT_NUMBER'
EXPORTING
action = 'DIRECT'
ext_number = lv_objid
otype = lv_otype
plvar = gv_plvar
TEST_MODE =
IMPORTING
number = lv_objid
EXCEPTIONS
invalid_action = 1
number_must_be_zero = 2
invalid_object = 3
no_external_interval_found = 4
no_internal_interval_found = 5
invalid_number = 6
no_more_numbers_available = 7
OTHERS = 8
.
enjoy