Layout change for S_ALR_87012143/1099 Listings report

Hi Experts,
is it possible to change layout of report S_ALR_87012143 - RFKQSU20 by some means other then abap code change?
We need to add Vendor master related data (such as PO BOX , City etc to the output ) when report is being extracted as excelsheet. This sheet should later be used to submit to 1099 Express.
Are there any other alternative provided by SAP for S_ALR_87012143 - RFKQSU20 ?
Any help would be appreciated?
Thanks a lot!!!!

Hello,
As far as I know, all the relveant information required by you are
available for report RFIDYYWT.
In main screen of report RFIDYYWT:
-> go to'output control' section-> 'tax per business partner'->
click on 'configuration'-> from menu, click 'settings'-> 'layout'->
'change'-> select the fields from the right box and add it to
the left box-> click 'copy'.
BR,
Raquel

Similar Messages

  • How to retrieve the Sapscript layout changes for a particular Transport request in development server after this Transport request so many requests created  ?

    Dear Abapers,
    I request the Abapers kindly reply for this blog
    I want to retrieve the sapscript layout changes for a particular transport request in development server after that many transport request created and moved to quality ? 
    I checked in SE03 transaction the transport request was there.  But I want to retrieve the existing transport request which is not moved to Quality?
    Is it possible to retrieve the existing transport request in development which is not moved to quality ?
    Like how we retrieving the programs using versions in development server,  In the same way I want to retrieve the sapscript layout in development server ?
    Thanks & Regards
    Muzeebur Rahiman.S

    Hi,
    There is no version management for SapScript or Smartforms .
    When you write "transport request in development which is not moved to quality" - was the transport ever released and exported from the development system? If yes, and if the "Transport files" are still available in "Transport directory" (or if the transport files were backed up and could be retrieved), the transport could be imported again. If the TR was not exported, you are out of luck, I believe...
    I would not recommend you do it on your own even if you happen to have enough authorizations (consult with Basis and/or Transport Admin, if you have one in your organization). I would not recommend that it's imported on a development system or QA system, even if the transport contains no other objects - only the SapScript form in question. Import it on a "sand-box" that gets overwritten by system copy from time to time... Once the transport is imported, you should have the old version of SapScript in that system and could analyse the changes and perform manual merge.
    cheers
    Jānis

  • 1099 listings report

    HI GUrus,
    we are running S_ALR_87012143 report to get the 1099 lisitngs for withioholding. But the ouput is not excel friendly. Is there any other report tahat willl give the same information as this report does and come neatly on to spreadsheet
    Thanks
    anusha

    Hi Tammy,
    I realize you replied to this thread in 2010, but in the off chance you see this, could you let me know if your comment about S_P00_07000134 being an Excel-friendly format is still true?
    When we save the S_P00_07000134 results as an Excel file, it comes in with a header data and each vendor's information (doc numbers, etc.)not in an easily-sortable format at all.
    We'd have to use Monarch or some pre-formatting tool to 'strip out' the erroneous lines in Excel before it becomes truly 'friendly' (IMHO)
    The way the export is currently (for us....we're in ECC 6.0 EhP 6) it reminds me of some of the MM reports that used to download this way before SAP introduced ALV option for so many MM reports.  ALV makes the download to Excel very easy and in a really, ready-to-use format.
    Thank you for any info.  I've searched the forums and haven't found anything specific to ALV for this WHT report.
    Suzanne

  • Screen layout changes for PO

    Hi expert
    In the document type i have  change the screen layout to MBF from copying NBF, but i am not getting   effect of changes which i had made for MBF..
    Regard
    Nabil

    HI,
    There are up to six different field selection keys.
    Eg: 1. Field selection key: transaction
          2. Field selection key: activity type
          3. Field selection key: purchasing document type
          4. Field selection key: item category/document category
    The successive combination of the field selection keys listed above decides which input characteristics the fields have in the document.So not only MBF, it is the combination of the setting that determines the field layout.
    + For mandatory fields
    . For optional fields
    For display fields
    - For suppressed fields
    the strongest is suppresed, then display, then mandatory and last is optional.
    ie , for eg combine fld sel key 1=  suppressed and fld sel key 2 = mandatory, result is field is suppressed. Similarly , ther final result after combining the settings determine the field status.
    Regards
    Aloysius

  • Layout problem for Drill down ALV Report

    Hello Everyone,
                           I have developed a ALV drill down report using the method G_GRID->SET_TABLE_FOR_FIRST_DISPLAY. The problem is what ever layout i save for the primary list 'Screen 100' is effecting my secondary list 'Screen 200'.  User need to save both Screen 100 and Screen 200 layouts independently without affecting each other.
    I am calling  screen 100 as below,
    Call metthod g_grid_100->set_table_for_first_display
      Exporting
       i_Save                                     = 'A'
       is_layout                                 =  ls_layout
       is_Variant                                =   ls_Variant
      Changing
       it_outtab                                  =  ct_poitems
       it_fieldcatalog                           =  lt_fieldcat
      Exceptions
       Invalid_parameter_combimation   = 1
       Program_error                            = 2
       too_many_lines                         = 3
       others                                       = 4.
    Could any body suggest me a way to do this..
    Thanks in advance.
    Regards,
    Shyam.

    Hi,
    Use multiple Layout structure (each alv have its own structure) .
    Note the use of disvariant-log_group .
    DATA: gs_disvariant_1 TYPE disvariant ,
               gs_disvariant_2 TYPE disvariant .
    * Layout-Logical groups
    CONSTANTS: gc_log_group_1 TYPE disvariant-log_group VALUE 'ALV1' ,
                            gc_log_group_2 TYPE disvariant-log_group VALUE 'ALV2' .  
    INITIALIZATION.
      PERFORM at_initialization .
    FORM at_initialization .
    DATA: vari TYPE disvariant-variant .
      PERFORM alv_variant_get_default USING gc_log_group_1 CHANGING gs_disvariant_1 vari .
      PERFORM alv_variant_get_default USING gc_log_group_2 CHANGING gs_disvariant_2 vari .
    ENDFORM.
    FORM alv_variant_get_default
      USING
        log_group TYPE disvariant-log_group
      CHANGING
        disvariant TYPE disvariant
        variant    TYPE slis_vari .
      DATA: ls_disvariant TYPE disvariant.
      ls_disvariant-report = sy-repid .
      ls_disvariant-log_group = log_group .
      disvariant = ls_disvariant.
      CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
        EXPORTING
          i_save     = 'A'
        CHANGING
          cs_variant = ls_disvariant
        EXCEPTIONS
          not_found  = 2.
      IF sy-subrc = 0.
        disvariant = ls_disvariant.
        variant    = ls_disvariant-variant .
      ENDIF.
    ENDFORM.                    "alv_variant_get_default
    Later....
       CALL METHOD gui_alv_grid_1->set_table_for_first_display
          EXPORTING
            is_layout       = wa_layout
            is_print        = wa_print
            i_save          = 'A'
            is_variant      = gs_disvariant_1
          CHANGING
            it_sort         = it_sort
            it_fieldcatalog = it_fieldcatalog
            it_outtab       = it_alv_grid_1.
      CALL METHOD gui_alv_grid_2->set_table_for_first_display
          EXPORTING
            is_layout       = wa_layout
            is_print        = wa_print
            i_save          = 'A'
            is_variant      = gs_disvariant_2
          CHANGING
            it_sort         = it_sort
            it_fieldcatalog = it_fieldcatalog
            it_outtab       = it_alv_grid_2.     
    Regards.

  • Font and font color are getting changed for  SAP R/3 report in portal

    Hai,
    We are using ITS 6.2 patch 26 and EP 6.0.
    When i run a SAP R/3 4.6C report in ITS 6.2, the report content are shown in Courier New font with blue color.
    When i run the same report from portal, the report content are shown in Arial font with blackish blue color.
    Can anyone tell why in portal the font attributes are getting changed and how to have the same font attributes in portal also.
    Regards,
    H.K.Hayath Basha.

    Hi
    Please go to System Administration -> Portal Display -> Themes.
    You can change the font type , color and size from here and have to properly assign it to the Desktop for the users for which these font should be displayed .
    Please check the following links :
    http://help.sap.com/saphelp_nw04/helpdata/en/26/3df46c0584cd4eb31e91aa7bcf1893/frameset.htm
    Edited by: purav mehta on Dec 16, 2007 6:01 PM

  • No color change for mandatory parameters in Report Launch Form

    Report Launch Form (qms0012f) does not color the mandatory report parameters when running on 9IAS webserver.
    We are using Designer 6i with Headstart 6.5.3.0.
    On client server the mandatory report parameters are changed to user preference color.
    Testing when running the form with the Developer Web Previewer of Forms Builder 6i the mandatory parameters are also changed to user preference color but the background color is white instead of gray?

    Cheryl,
    I'm sorry, on creation of Headstart 2.1 we added the implementation_name to the qms_modules table, but we just plain forgot to modify qms0012f as well. As most people have the implementation name identical to the module name, nobody noticed until you did!
    If you want to change this, you should modify library qms0012l.pll.
    Go to package qms0012f,
    find the declaration of g_short_name_item, and add a similar one g_implementation_name_item where 'SHORT_NAME' is replaced by 'IMPLEMENTATION_NAME'. In the same package qms0012f, find the function get_short_name_item and add a similar one get_implementation_name_item.
    Then go to package qms$report, function fill_par_list. At the end of this function, you will see a statement l_module_name := name_in(qms0012f.get_short_name_item);
    Change this into l_module_name := name_in(qms0012f.get_implementation_name_item);
    I am not able to test this, but I think it should work. Please let us know if this workaround helps, then we can include it in Headstart 6i.
    Hope this helps,
    Sandra

  • Extended Withholding Tax - 1099 listings

    Hi Folks,
    We are not able to get the output data for S_ALR_87012143 (1099 Listings) when extended withholding tax is configured.
    This transaction works fine for classic withholding tax.
    We also have no problem with 1099-MISC for EWT.
    Is there any program to be run or an OSS note to be implemented inorder to get the output for 1099 listings for EWT.
    Thanks in Advance,
    Venkat

    What was the t code that you found? We're having a similar problem.

  • 1099M - 2008 Legal changes for 1099 Reporting

    Hello experts,
      I have been using program RFW1099M via Sapscript form to generate the 1099M. Based on note 1279366 on 2008 legal changes for 1099 reporting, sap provided the 1099MISC form in Smartforms.
    I don't use Smartforms.  Is there any sap 1099M program provided using Smartforms ?
    The sapscript form i currently have looks the same as the 2008 1099Misc.  So I don't know why i have to use Smartforms.   Pls let me know what you think ?
    Thanks
    Joyce

    Question is closed.

  • Changing details layout for a multi column report

    I have a report that contains linked 2 subreports. The report has a details layout width of 2.5 inches which will create a 3 column report (Format groups with multiple columns is checked) . This works fine for my first subreport as it is small enough to fit that width. However that isn't enough room for my second sub report. Ii need to change the details layout width from 2.5 inches to 3.5 for a 2 column report then back again when that section is finished. Is this possible?

    i believe you can depends on where you place you subreports
    insert a 2nd group under the first, place 2nd report in the new details section
    in the section expert next to the details section check off underlay.
    this will lay them out next to each other but grow independetly

  • Layout change and save for ALV report

    Hi,
    I ahve created R3 report in which report has been displayed using ALV grid, I am able to change the layout as I can see the layout -> change option in settings menu, but save and choose option is disabled.
    Please advise how to enable layoutr save and choose option for ALV grid.
    Thanks,
    Piyush

    Hi,
    According to sap help you need authorization to save Layout
    [ALV -Layout|http://help.sap.com/saphelp_sm32/helpdata/en/82/839d37664e4d45e10000009b38f8cf/content.htm]
    To save layouts for all users, you need the authorization S_ALV_LAYO with activity 23 as of Release 4.6C. You can only go to the layout administration if you have this authorization.
    You must maintain the authorization object S_ALV_LAYO using the user administration.
    If you would like to use or save the Excel view in your layout, you also require the additional authorization S_BDS_DS with activity 01,02,03,06,30; CLASSNAME ALVLAYOUTTEMPLATES and CLASSTYPE OT.
    Furthermore, there are applications that have their own authorization checks installed.
    In some ALV lists, you can only save user-specific layouts. In these cases, the indicator "user-specific" is active , on a grey background and unable to be changed. This is related to the parameter I_SAVE. This controls which options you have to save the layout.
    To be able to define default layouts, the parameter I_DEFAULT must have the value 'X'.
    Notes 409190 and 601803 also provide further information on authorizations.

  • Crystal Report Layout asking for Login Info

    I have modified the Delivery Note Crystal Report Layout for Business One by clicking the Edit button on the Report and Layout Manager for Delivery Note (Items).  I then saved my modifications to a file.  Finally, I go into Business One and import the Layout for Delivery Note (Items).  When I preview the Layout it asks me for login information then continues to fail.  How dow I make it so I can print the Delivery without having to constantly log in?

    Hi Jeff,
    I recently had a similar problem on an 8.82 implementation, having contacted and spoken to SAP Support multiple times these suggested fixes worked:
    The request to login to the database when you open or print preview a Crystal
    report is a known issue. To resolve this, I recommend you go through our Root
    Cause Analysis (RCA) guide. Please see attac hed Note 1676353 on where to find
    this. There are four Cases in this guide (which contain a number of Influences)
    - please go through all Cases and Influences.
    We also tried the following:
    STEP 1:
    Influence 2: Case 2 is to clear all the data for login (e.g. sa and
    password - delete them) and then ticked 'Integrated Security#.
    - Influence
    3: #: Check the current datasource is to update connection.
    - Retest opening
    the system reports on a workstation.
    - If they are still reporting an error
    try the next step
    - STEP 2:
    - Change the datasource location of
    the report from OLE DB to SAP Business One type and leave the
    authentication
    information blank. Try running the report in Crystal, and then import to SAP.
    And also opened up the Crystal Report via the Edit button in SAP in Reports and Layouts Manager, we then clicked on the database connection and updated all the tables (even though they were the same) and these got the reports needed working. Speaking to SAP it is a known bug and they are releasing a hotfix to resolve it, but try explaining that to a customer !!!
    Hope these help.
    Regards
    Sean

  • Report Layout Changed After Upgrade from 4.6C to ECC6

    Dear Gurus,
    I do functional test of every process in ECC6 after upgrade from 4.6C. I found all report layout changed without variant (it's happen to all Query/SQ01 reports ). So I've to assign manually the fields for the reports, and create a default variant then.
    Why it happen ? Is there configuration or setting missed or this is standard while we do upgrade ?
    Thx in advance.
    Tri Wicaksono

    We do re arrange for all ALV report ...

  • How do I set individual properties for a column in report layout at runtime

    How do I set individual properties for a column in report layout at runtime? I need to change this based on a user's input. This is for v10g.
    I need to change either the "Read from File" attribute or the "File Format" attribute for one column based on the user's input. IS this possible?
    Thanks in advance!

    Hi,
    define 2 columns and use format triggers to show the one or the other column.
    Regards
    Rainer

  • 1099 CHANGES FOR YEAR 2010 patch

    Hi all,
    Anyone knows patch number for 1099 changes for passed year (2010).
    I am on Oracle 11i on Linux.
    Thanks,
    Eugene

    check this note :
    Oracle Payables Plans for 2010 1099 Reporting [ID 209913.1]
    Release 11i - 2010 US Payroll Year End Phase 1 Readme [ID 1214109.1]

Maybe you are looking for