Application Development 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: 

adding column in RFUMSV00

Former Member
0 Kudos

Hi,

I have requirment to add new column in S_ALR_87012357 transaction (standard program RFUMSV00). I have copied RFUMSV00 program to 'Z' program. I need to add new column in 'Z' program. The column is a custom column with evaluated imports.How can I add this column in the report ?. How can I display this column in the screen that allow to change the user layout ?

Thanks in advance.

Regards,

Luca

2 REPLIES 2

Former Member
0 Kudos

Hi,

As you have created Z program, then modify the include I_RFUMS_ALV_FORMS. Debug carefully so that you can find exact location. Do can modify the tables used in form print_table.

Edited by: Tejal Parikh on Nov 5, 2008 2:23 PM

Edited by: Tejal Parikh on Nov 5, 2008 2:23 PM

Former Member
0 Kudos

Hi,

There are BADI FI_TAX_BADI_010 to FI_TAX_BADI_016 for RFUMSV00 program. To populate the user field, you just need to use FI_TAX_BADI_011 and FI_TAX_BADI_014. Implement the BADI using t-code SE19 and remember to set parameter CH_USE_BADI_11 of method SET_FLAGS to equal 'X'. This is to indicate that the method APPEND_TAX_ITEM is called. In method APPEND_TAX_ITEM you can change the value of the Tax on Sales/Purchases Item before it is appended to the table for display.

For currency type data, you can use USERFIELDNUM1 or USERFIELDNUM2.

Regards,

Teddy Kurniawan