Adding a field in the VF31 Output list

Dear Experts
We have a requirement such that in the VF31 Output screen which will list the billing document no and the output types, we should add a new column in the output list. This new column will have the sales group key. 
Considering that sales group is on the line item level of the billing document, we need a way to capture the sales group of the 1st item of the billing document and display the sales group key in the new column.
Is there a standard/customised way to achieve this ?
Request your inputs at the earliest. Thanks
Regards
Siddharth Sridhar

Hi,
Check Note 960611 - FAQ: Output control in Sales and Distribution and report RSNASTZZ. Perhaps this user exit could help you.
Regards,
Eduardo

Similar Messages

  • KE5Z : UserExit or SAP Note for adding new fields in the report output

    Hi,
    I want to add 2 new fields in KE5Z (Profit Center: Actual Line Items) report output.
    Order reason(AUGRU), Sales Document Type (AUART) fields.
    Is there any UserExit or SAP Note available for this....
    Thanks in advance,
    fractal

    Hi Fractal,
    See if Note 92864 will help you.
    Summary
    Symptom
    Through a modification, it is possible for you to include additional fields in the profit center line-item reports 'actual' and 'plan' (Release 3.1*).
    Additional key words
    KE5Z, KE5Y, RCOPCA02, RCOPCA08 -
    SUPPORTGUIDE 20010613143936 -
    REPORTWRITER,
    SGRW_OM SGRW_PS SGRW_PC SGRW_SL SGRW_PCA SGRW_EC SGRW_LIS
    Cause and prerequisites
    The fields must be located in table GLPCA (for actual) or GLPCP (for plan).
    For Release 3.0F, you should ensure you have applied Note 62511 first.
    Solution
    To include a field in the actual line item report, proceed as follows:
    Call the ABAP/4 Dictionary (Transaction SE11) and display table GLPCA. You can then find in a line the field name and data element for the field you want to include.
    Return to the initial screen of the ABAP/4 Dictionary. Now change the structure RPCA2. If the structure does not yet contain the field, you select Edit -> Insert field; enter the field name and data element. Do not insert the new field at the beginning of the structure but in the rear half of the structure.
    Then save and activate the structure.
    Now call the ABAP Editor (Transaction SE38). Change the source code of program RCOPCA02. Insert the lines set out in the attachment in FORM routine FIELDCAT_FILL. When you do this, replace SGTXT by the field name of the field. If you normally want the field to be displayed when you the access the report, delete the line   afield-no_out      = 'X'.                "<<<< insert Note 92864 .
    You should note that the place where you insert the lines influences the position of the column in the report list.
    To include a field in the Plan-line-item report, carry out the same procedure except with table GLPCP, structure RPCA8 and program RCOPCA08.
    Note: Pls check if these 2 fields are available in any of the layout versions you have available with the transaction.
    Cheers,
    Vikram
    Pls reward for helpful replies!!

  • ADDED TWO FIELDS IN THE me49 OUTPUT

    HI i have added the two fields for field cat for the ME49 output
    could please tell me how to update those fields with the values.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            i_interface_check       = ' '                       "n1068548
            i_callback_program      = l_repid
            is_layout               = ls_layout
            i_grid_title            = l_grid_title
            i_grid_settings         = l_grid_settings
            it_fieldcat             = lt_fieldcat
            i_default               = 'X'
            i_save                  = 'A'
            is_variant              = ls_variant
            it_events               = lt_events
          IMPORTING
            e_exit_caused_by_caller = l_exit_caused_by_caller
            es_exit_caused_by_user  = ls_exit_caused_by_user
          TABLES
            t_outtab                = <outtab>
          EXCEPTIONS
            program_error           = 1
            OTHERS                  = 2.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    <outtab> am not able to update those values into this table.

    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            i_interface_check       = ' '                       "n1068548
            i_callback_program      = l_repid
            is_layout               = ls_layout
            i_grid_title            = l_grid_title
            i_grid_settings         = l_grid_settings
            it_fieldcat             = lt_fieldcat
            i_default               = 'X'
            i_save                  = 'A'
            is_variant              = ls_variant
            it_events               = lt_events
          IMPORTING
            e_exit_caused_by_caller = l_exit_caused_by_caller
            es_exit_caused_by_user  = ls_exit_caused_by_user
          TABLES
            t_outtab                = <outtab>
          EXCEPTIONS
            program_error           = 1
            OTHERS                  = 2.
    hi i copied ME49 report two add two fields in the output, fields are added in the field catalogue but please tell me how to get the data into output, <removed by moderator>.Am not able to update the data into output.
    Edited by: Thomas Zloch on Oct 23, 2011 8:44 PM

  • Adding Custom Fields to the Recipe Management Workbench

    Hi Experts
    I'm trying to add fields to the Quatities Tab of the recipe dependent and the stage dependent formulas
    in RMWB (Recipe Management Workbench).
    I've added other fields to the Input and output tab by appending the frmls_iot_scr structure and then doing the layout setup
    in SPRO but where and how do I go about adding fields to the Quantities Tab and is there a BADi that can then be used to fill
    those additional fields.
    Any help would be much appreciated.
    Regards
    Vic

    Hi Vic,
    There are no exits or BAdI for extending the fields for the view quantities. New fields must be added at the structure FRMLS_TOTALS and added into the customizing table FRMLC32 as col_id. Then the processing of the fields is still to be programmed. The function group is FRML600.
    You can use also a copy of the group group.
    Best regards,
    Roland

  • Adding few fields to the ODS based on a condition

    Need suggestions in adding few fields to the ODS based on a condition.
    The following is the requirement.
    Do a calday and 'Sales Org' based selection:
    0CALDAY=20041101-99991231; All Sales Orgs except AM01
    0CALDAY=20030701-20070930; All Sales Orgs except AM01

    Hi Dolly,
                   You can do this by writing a simple end routine in your transformation rules.It is just an  conditional statement.
    In that statement write
    If <RESULT_FIELDS>CALDAY EQ 20041101-99991231 and If <RESULT_FIELDS>Sales Org NE AM01
    <write the statements which populate the fields>
    endif.
    In the same way you can write the code.
    Hope this helps
    Regards
    Karthik

  • In BDCs, after adding one field to the screen, which one is the better proc

    Hi,
    My client requirement In BDCs, after recording the legacy data by using MM01, After some time adding one field to the screen, How can we record the  for the new field.
    If any one knows pls help me total process.
    Warm regards,
    Venkat.

    Identify the screen in which this new field is added and simply add one more line to add the bdc record for this field in that screen.
    If the screen is also entirely new, then you have to identify the previous screen, the okcode to go to this new screen and finally the next screen and the okcode to go to the next screen along with the field BDC record.
    I don't think it is necessary to redo all the recording as long as you can follow the existing code.

  • Adding new field in the table for Output

    Hi ,
    I need to add a field catalogue as Payment method in the condition table for Output, but the payment method field does not exist in the table. Can this be done?
    regards,
    Ragu

    Hi Refer below link on sdn for adding new Field
    Adding New Field to Catalog
    Adding New fields to field catalog

  • Adding fields to the out put list of a standard program

    Hi All,
    I have a problem , i need to add two fields to the output list which we get by executing the transaction CJ74( actual cost line item). The final table is a field symbol(<gt_pos_data>).
    can i implement this way will it works out.
    I want to create an internal table with all fields of  the final internal table(field symbol) and the new 2 fields.My problem is how can i include the fields of the field symbol to my table.
    can anyone do the needful ASAP.
    Regards and Thanks in advance,
    Priya.

    Hi Priya,
    Guess my last suggestion didn't work.
    I was checking the program and found that just before the ALV function an exit is provided and there are about 6-7 exits however I am not sure if it will solve the purpose for two reasons.
    1. these exits either talk about authorization which is of no use to us OR about layout of ALV which can be used to enhance the layout .
    however this will only enhance the layout and to add data to the table i am not sure nor could i check because of the second reason.
    2.Tried all possible data available in IDES to produce an output of the report however was not sucessful.
    if you know any stadard selection screen data which i can provide and produce an output do let me know to help you further.
    Otherwise here by checking the code I found some ASSIGN statement assigninng data to out field symbol. And all these assign statements are actually assigning either tables or work area to the FS. So I would suggest to put a break-point on the ALV function being called and check the format in the FS <gt_pos_data> and accordingly assgn the two fields which you need i.e first name last name , in your z program and also update the layout. For standard i am not sure for the reasons above that wether the same can be enhanced.
    <b>Always reward points to useful suggestions.</b>
    regards,
    Vikas

  • Adding date field in the notification list-- MAM2.5

    hi
    i want to add DATE field in the notification list
    this field is already there in the device inside notification details i want to get it in the list beside notification no
    Can I do this by editing List Def.xml file in the device
    pls tell me  way to do
    with regards
    sid

    Hi Sid,
    You need not modify the xml file. You have to change the JSP file(not sure which one) for your application using the netweaver developer studio.
    Regards,
    Rahul

  • Adding new field to MB51 screen output

    Hi All,
    I need to add a new field TCODE2 from MKPF table on the screen output of MB51. I have added my new field thro SPRO following the below steps:-
    Go to SPRO -- MM -- Inventory Management and Physical Inventory -- Reporting -- Define Field Selection for Material Document List
    Here I have give
    RM07DOCS MKPF TCODE2 Transaction code -- output box checked
    and saved.
    Now I  tried to re-execute the transaction MB51 but not able to see the Tcode2 on the output screen .
    Can any one help me out, if I am missing out something or is there any thing else i need to check on the ALV output to see the field TCODE2 on the screen og MB51?
    Regards
    Shilpa.

    Hi,
    Check these notes:
    Note 357187 - MB51: Fields in field catalog / selection screen
    Note 828104 - Enhancing MB51 for AFS
    I hope this helps you
    Regards
    Eduardo

  • ADDING CUSTOM FIELDS TO IW38 IN OPERATIONS LIST

    Hi Gurus,,,
             I have a requirement where i want to add some custom fields in IW38 Report in the OPERATIONS LIST(NOT BASIC OR FIRST LIST.)
    I tried Copying the program of IW38 and develop Z program in which i appended some fields in RIHAUFK_LIST.
    But these fields are not showing on output.
    I Think I have to add these field to ALV field catalog.
    Kindly suggest,, Or I should go by implementing the enhancement IWOC0004,,,, Could i add fields to Operations List Using this enhancement.
    Thanks and regards,,
    Sandeep.

    Hi Spank,
    Check this link which will solve your issue.
    Step 1: First read the documentation for enhancement (IWO10018) in SMOD.
    Step2: Then execute the exit and activate the same.
    Step3: Goto AUFK table. Create CI_AUFK structure with two fields shift incharge (ZZSIC) and Shift (ZZSHIFT). Activate.
    Here it may take minimum 30 min to activate the table. As it hits many views and structures while activating. See the warning message after activation, which is normal, and would not affect your work.
    Note: When you want to add further fields after activating the CI_AUFK structure then it will again take min 20 min to activate with same warning message. Hence it is suggested that complete all required fields at first go. Since activating CI_AUFK structure means regenerating table.
    Step4: Click on screen exit SAPLCOIH green button.
    It will ask to create screen no. 900.  Create in sub screen area and activate the same.
    Click on maintain in orig.. button.
    Step5: Create subscreen area and attach the respective structure fields to each input field.
    CI_AUFK-ZZSIC to Shift Incharge and CI_AUFK-ZZSHIFT to Shift.
    Step6: Then create PBO and PAI module pools.
    Step 7: All PBO modules are saved in include ZXWOCO01 and All PAI modules are saved in ZXWOCI01.
    Step8: Code each module as given below or as per your requirement.
    Step 9: Once you activate the code, it will start showing in IW31/ IW32/IW33 t codes under enhancement tab.
    Step10: Now you can write your own code at each exit.
    EXIT_SAPLCOIH_018: This is getting triggered PBO module. Hence all data from SAP application to screen area are passed at this exit. Use import parameters SAP_CAUFVD_IMP and COCI_AUFK_IMP.
    Step 11: EXIT_SAPLCOIH_019: Customer Enhancement for User Fields for Order Header PAI. This exits saves data after PAI module. Hence pass data from screen area to SAP application by using export parameter COCI_AUFK_EXP.
    How to display new field at list disply?
    Now how to display the same added fields at IW38 list editing report. (Enhancement name: IWOC0004
    Step1: Plz read the documentation for your reference.
    Step2: Activate the enhancement. (It should be assigned to a project )
    Step3: Now in report IW38 (RIAUFK20), search for REUSE_ALV_GRID_DISPLAY.
    Under tables you will find OBJECT_TAB as the internal table for displaying data.
    And it includes a structure RIHAUFK_LIST
    We need to append our own structure to the above structure by clicking at Append structure button. So that while populating data via OBJECT_TAB internal table it will refer the fields and will start showing the data at list display.
    Step4: Now goto IWOC0004 and activate. In  EXIT_SAPLIREP1_001 write ur own code to modify the list display at IW38.
    The fields will start populating at IW38 list display.
    I got this from our SDN given by Rath.
    Regards,
    Madhu.

  • Fields missing in SM30 after adding new fields to the table

    Hi ABAPers,
    I added a new field & marked another field as primary key in the table. Then I generated the table maintenance view for the table in SE55 and adjusted Database utility SE14.
    When i saw the table in SM30. The number of fields in the overview screen of SM30 shows less field then existing in table. i.e in my table i have 10 fields(3 primary). in SM30 it shows only 5 fields(3 primary + 2 normal fields)
    In SE51, the overview screen of the table show less fields in the field list..
    I want all the fields in the Table maintenance overview screen. Please suggest me a way forward friends..
    Note: the system is 4.0B.
    Thanks...Suresh Kumar

    Hi
    You have to re-generate your dialog for SM30 by table maitenance generator.
    - From Se11 go to table maitenance generator
    - Choose update icon
    - Set flags for NEW FIELD
    - Go to expert
    - Set flag to re-generate dynpro
    Message was edited by: max bianchi

  • Adding new fields to the data flow

    Hi,
    I am currently planning to add some new fields in one DSO and map it (with info source) in the update rules.
    Will adding new fields to Info source - Comm. structure affect all the update rules connected to it?
    The info source is connected to multiple DSO.
    (The data source is currently under enhancement for these fields). Once this is done, we have to replicate it to BW.
    Thanks,
    Naveen

    yes.
    Once the enhancement is done for data source in r/3 side, you will have to replicate the datasource in BW.
    Adding new fields will deactivate the update rules. You have to map the same in update rule and activate the same.
    This will require activation of  transformations, update rules, etc for related DSOs. Try to find out the where used list for the DSO where you want to add the new objects. Then check each objects whether these are activate after the changes. If these are inactive, you will have to activate all the objects.
    Cheers
    Chanda

  • Adding new fields in the layout.

    Hi gurus,
    I have a requirement in which i need to change the layout of a report v.25 through transaction VOKF. Actually i have added one field VDATU in the table VBMTV and the fields of this table are getting displayed in the output but not all fields. so through the transaction VOKF a variant has been created with some fields and there is also option for additional fields addition. But the field which I have added new through append structure doesnt appear in the possible value fields.
    So do anyone have any solution for this or if anyone has ever encountered this type of issue.
    Thanks in advance.

    I have added the field VDATU in the Structure VBMTV and the structure is active. This field is getting filled in the my Standard report and and is displayed only when change the layout after displaying the output.My requirement i need this field by default in the output.
    Thanks in advance.

  • Incorrect field KNA1-STCEG in output list for input tax Line items-RFUMSV00

    Hi all,
    I found the incorrect field in RFUMSV00 - Advance Return for Tax on Sales/Purchases. If you want to configure the output list for Input tax: Line items, there is the field VAT Registration No. which has to be LFA1-STCEG, but there is incorrect field KNA1-STCEG. After that I cannot find the values for this field in my output.
    In the output list for Output tax: Line items there is correct field in configuration /LFA1-STCEG/.
    I tried to find some SAP notes but without avail.
    Thanks for help.
    Miroslav

    Hi,
    Please check the following OSS note:-
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=736203
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=640269
    It is picked up from bseg-stceg and not from lfa1-stceg or kna1-stceg
    Regards,
    Gaurav

Maybe you are looking for

  • DuplicateKeyException

    Hello! I am using a receiver file adapter with a content conversion with j2ee jms adapter in the module chain. When I am trying to poll a message I always receive the follwowing error message in the runtime workbench: "Message ID 634a89b0-2663-11dd-8

  • How to avoid The "mandatory error" during the AutoSubmit ?

    Hi, I have an af:table with 5 columns. All of them have an inputText mandatory in it. Theses inputText have the property "autosubmit=true". An other component of the form has a partialTrigger on theses inputText. When i populate one inputText and cli

  • Transfer of Assets one unit to another unit

    Transfer of Assets one unit to another unit - Excise Invoice is required for the same, Excise Invoice Series, reversal of CENVAT  and again  credit of CENVAT by receiving unit*

  • Baseline grid? How do you make type line up across facing pages?

    I'm laying out a book in Pages, and I have it set up as 12.5-point type on 15-point line spacing, exactly. The margin at the top and bottom of both pages is 0.9 inches. There is a header and a footer set on each page at 0.4 inches. But occasionally,

  • How to get name of the current localization language?

    Hello! How can i get value of Setting->General->International->Language? TIA