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

create OM data without BDC

Former Member
0 Likes
460

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

3 REPLIES 3
Read only

Former Member
0 Likes
430

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

Read only

Former Member
0 Likes
430

no response

Read only

0 Likes
430

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