cancel
Showing results for 
Search instead for 
Did you mean: 

How to fulfill the virtual characteristic value into report

Former Member
0 Kudos

Hi Experts,

I am working on one reporting requirement that needs to add reference date (virtual characteristic) field to report.

I have added reference date field to query and able to display the field in report.But I am not able to display reference date field runtime data in to report output.

Could someone please help me on this how to display this virtual characteristic values into report.where the runtime variable values are stored.How to fill the data etc.

Thanks in advance.

Best Regards,

Hari.

Edited by: k hari on Jan 29, 2008 6:22 AM

Edited by: k hari on Jan 29, 2008 6:24 AM

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member189638
Active Contributor
0 Kudos

You can achieve this using Customer Exit or BADI. Check the folllowing link.

http://help.sap.com/saphelp_nw70/helpdata/en/ac/ef1f43daac9a448f0150a02e3a7aba/content.htm

If you are using BADI

You can create Virtual CHAR in BADI using transaction SE19

In this transaction you can create a new or display the existing BADI.

There you can see two tabs

The Attribute Tab we need to give the name of the Multiprovider on which the query with the virtual char is getting executed.

The Inerface Tab has three following sections. Need to write the ABAP code for all the three.

Define : Defind all the characteristics and virtual char that will be used for populating virtual char

Initialize : Initialize them

Compute : Here you will have to write the logic for populating the virtual char.

Once the logic is written then you can use this char in your query .

Hope this helps.