cancel
Showing results for 
Search instead for 
Did you mean: 

Bulk infoobject creation

Former Member
0 Kudos

Hello guru's,

Is any program or FM is avilable in sap BI/BW for bulk creation of infoobjects(Char/KF) in one go?

Thanks,

Rishi Nigam

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Rishi,

we don't have such an utiltiy in SAP BI/BW to create mass infoobjects in one go, but if you want to create mass infoobjects (char/KF). you can write the the custom program to create multiple infoobjects in one go.

by using the BAPI "'BAPI_IOBJ_CREATE'"and 'BAPI_IOBJ_ACTIVATE_MULTIPLE' you can create a utitity to bulk creation of infoobjects.

1. define the all the fields

2. use BAPI's to fetch the strucute of infoobjects

BAPI6108IO

BAPI6108

BAPI6113

BAPI6113IO

BAPIRET2

For Compounding:

BAPI6108CM

For Attribute use:

BAPI6108AT

For Navigational Attribute:

BAPI6108AN

3. Write a logic to fill this BAPI with the values of data file that has the infoobject details.

keep the file with all details of infoobjects

i.e. INFOOBJECT, TYPE,TEXTSHORT,TEXTLONG, DATATP,INTLEN,COMPOUND,ATTRIBUTES,NAV ATTRS, KYFTP, FIXCUKY,

, FIXUNIT, UNINM, DECIMAL

Take the help of ABAP person to build this logic.

Thanks,

Om Ambulker

Former Member
0 Kudos

This message was moderated.

Answers (3)

Answers (3)

former_member182470
Active Contributor
0 Kudos

Hi,

MASS CREATION OF INFOOBJECTS IN BI is CTBW_META t-code

Regards,

Suman

Former Member
0 Kudos

Hi,

Using RSD1 t-code you can create Char/Key figure but one by one only.

Thanks and Regards,

Venkat.

Former Member
0 Kudos

Hi Rishi,

As I know there is no utility available readily as such to create infoobjects in bulk, but you can build your utility as we did in one of the previous project.

I can give you some hint if possible you can implement similar solution,

1) You will have to create an LSMW for loading the data.

2) Use transaction SHDB for creating recording which will be used in LSMW.

3) Then you can upload an excel file where you will have to maintain all the required parameters which are needed for infoobject creation.

4) Do the fieldmapping from excel to LSMW, execute the LSMW job and your infoobject creation will happen.

Consult your ABAP team for building LSMW, if you are not comfortable with that.

Regards,

Durgesh.