cancel
Showing results for 
Search instead for 
Did you mean: 

extend virtual provider e.g. 0FIGL_V10

Former Member
0 Kudos

Hi All,

does anybody know what to do to enhance a virtual provider. I need to to extend the cube 0FIGL_V10 with an attributes,

0FIGL_V10 gets data from 0FIGL_C10 and the source system.

Any help appreciated. Points will be awared.

Thanks in advance.

Thomas

Accepted Solutions (1)

Accepted Solutions (1)

mr_v
Active Contributor
0 Kudos

0FIGL_V10 gets data from 0FIGL_C10 using function module RS_BCT_FIGL_DATA_GET_VC10...

To see that FM (Goto change mode of virtual provider (ZFIGL_V10). click information icon (blue 'i') .. click 'Type/ Namespace'..

Then click 'details' button)

To extend, 0FIGL_VC10 .... copy 0FIGL_V10 as ZFIGL_V10 and also copy function module as ZRS_BCT_FIGL_DATA_GET_VC10 and manipulate logic for extended fields here

Answers (2)

Answers (2)

Former Member
0 Kudos

Dear all,

thanks for you answers by now. I've two questions left:

1) Do i have to copy the whole package to get my FB working?

2) Where do i extend my FB. Do i change the top include to extend my list of attributes (I_TH_SFC) to copy every value of my new attribute from the cube 0FIGL_C10 to my virtual cube 0FIGLV10 or is there a mapping table?

Best regards,

Thomas

dennis_scoville4
Active Contributor
0 Kudos

1) Do i have to copy the whole package to get my FB working?

2) Where do i extend my FB. Do i change the top include to extend my list of attributes (I_TH_SFC) to copy every value of my new attribute from the cube 0FIGL_C10 to my virtual cube 0FIGLV10 or is there a mapping table?

You will need to copy the values in the TOP INCLUDE of the RS_BCT_FIGL Function Group and paste it into your custom Function Group TOP INCLUDE, so that you have the appropriate associated code. As for the necessity to copy the entire RS_BCT_FI package, you may have to.

Former Member
0 Kudos

Dear Dennis,

thanks for you help. I awared points.

Regards,

Thomas

dennis_scoville4
Active Contributor
0 Kudos

You can enhance a VirtualProvider just like you would any other InfoCube. We typically, however, activate the standard content, copy it to a custom name (e.g. ZFIGL_V10) and then enhance it instead of directly enhancing the standard content InfoProvider. You would also have to create a custom version of the RS_BCT_FIGL_DATA_GET Function Module to add the mapping to the VirtualProvider and also the RS_BCT_FIGL_DATA_GET_VC10 which is the actual Function Module called for populating the VirtualProvider. Create the Function Modules first, then when creating the custom VirtualProvider you will use the custom version of RS_BCT_FIGL_DATA_GET_VC10 as the source.

The thing to watch out for in doing this, is the fact that it's virtual and if you add too many InfoObjects or have many sources or transformational routines, queries using this VirtualProvider may suffer performance issues.