
Steps to enhance Datasource in SAP ECC
- Posted by How2bw
- Categories BW Technical, SAP BW
- Comments 0 comment
- Tags Append structure, cmod, Datasource enhancement, Datasource Structure enhancement, Enhance Datasource Extract Structure in SAP, field only known in customer exit, Hide fields, Include, Install business content datasource, Non LO Datasource enhancement, RSA3, RSA5, RSA6, SAP ECC Standard Datasource
More details can be accessed in ebook, click here
Below is a sample scenario to enhance the extract structure of a standard Data source. The procedure is same for custom data source. However, the procedure is slightly different for enhancing the LO extractors.
Enhancing a data source structure signifies that you want to add an extra field to the data source which is not present in the extract structure. For this you need to add this field in the extract structure and then write a logic to populate this field in tcode CMOD. The extractor then can be checked in tcode RSA3.
If it is a non LO standard data source, you need to install and activate the business content data source in tcode RSA5 first and then change the data source in tcode RSA6. Below is the step by step process on how to do the same.
You can go through the details for data source enhancement in SAP in my ebook which has LO as well as Non LO data source enhancement procedure along with other SAP enhancement concepts-
More details can be accessed in ebook, click here
Aim:
Enhance a non LO standard business content data source with a field not present in the data source extract structure
Procedure:
Step 1:
Login to SAP ECC system. Go to RSA5 and activate the business content data source-
Step 2:
Now go to Tcode RSA6 and find your data source – 0PU_IS_PS_44. Double click on it and note the extract structure name. Observe the fields. Press F3.
Step 3:
In the tcode RSA6 itself, select your data source and click on ‘Enhance Extract Structure’.
System creates an append with name ZA<Extract Structure Name>
Step 4:
Give a description of the append structure, add the fields with which you want to enhance your data source. I have given name of the field starting with ‘ZZ..’ just to indicate that it is a user created appended field.
Give a component type and press enter. Here I am adding the field ‘SD Document Category’ to this data source. This is a standard field in SAP standard table VBAK (Sales Document Header table).
Save and activate your append structure, continue with the warnings. Press F3.
Step 5:
Now select your data source and click on the edit icon. Observe the newly added field.
Deselect the check boxes ‘Hide field’ and ‘Field only known in customer exit’. Save.
(Note: if you do not deselect these options here, the field will not come to BW)
Step 6:
Now you need to write the logic for populating this newly added field. If you check in RSA3 now, the data source will show this field as blank for all the records-
To write the logic for populating this field, go to transaction CMOD.
Select your project and make sure that it has the enhancement object ‘RSAP0001’.
Step 7:
Go to Components and double click on ‘EXIT_SAPLRSAP_001’ since it is a transaction data source.
Note: To view the type of the data source, go to tcode SE11 and type the table name as ‘ROOSOURCE’. Go to table contents and enter your data source name and check the entry.
We can see that the data source is of the type ‘TRAN’ which means transaction data.
Once you double click on ‘EXIT_SAPLRSAP_001’ in cmod transaction, you can see the below screen-
Double click on the include ‘ZXRSAU01’.
Step 8:
Go to change mode and insert few lines just before the ‘When others’ statement and after the ‘end loop’ statement.
Step 9:
Start writing your code. I will write a code to populate the new field as a constant just to demonstrate the process.
Declare a field symbol as type of the data source extract structure. Loop on the table C_T_DATA and assign your field ‘ZZIND’ values.
I have assigned a constant value ‘A’ to the field. Check and save your include. Then Activate it. Press F3. Activate your exit also and press F3.
Step 10:
Now go to tcode RSA3 to check the extractor. Observe that the new field is getting populated.
Step 11:
Login to BW system. Replicate your data source and activate it. Create info package to extract the data to the PSA. Create targets like Cube or DSOs to load this data.
More details can be accessed in ebook, click here
Related
Tag:Append structure, cmod, Datasource enhancement, Datasource Structure enhancement, Enhance Datasource Extract Structure in SAP, field only known in customer exit, Hide fields, Include, Install business content datasource, Non LO Datasource enhancement, RSA3, RSA5, RSA6, SAP ECC Standard Datasource
How2bw is a collection of free and paid study material, ebooks and courses on SAP BI mainly SAP BW, HANA, BODS and BI.
It is a hub of free blog posts to aid the readers working in SAP industry in their day to day work and also provides affordable and easy learning platform to advance their career.
You may also like

BW System Scout

BW4HANA Interview questions
Using CDS View as source for Open ODS View in BW4HANA
In the previous post, we have built CDS view ZSVIEWFLIGHT. Now in BW modeling tools in Eclipse, create Open ODS View based on the CDS View created above. Select Create New Open ODS View in the context menu of your …