Tax Reporter

Hi Gurus,
I have a requirement to generate Disability and Driver`s Insurance tax reports, but they are not in a list of tax reporter.
How to solve this problem?
Thanks!

?

Similar Messages

  • TAx Reporter Temse Files Download Automation

    Hi,
    I have a reuiqrement to download the Temse files generated in Tax Reporter. I have completed the code and it works fine if we run the program in foreground. But when I run the same program in background some Temse files downloaded have junk characters. If I download the same Temse file in foreground it works fine.
    There seems to be some issue with the FM when I run my progam in background.
    I have searched SDN and SAP Notes for any clues but did not get any.
    REPORT  ZPHOP_TEMSE  NO STANDARD PAGE HEADING
                      LINE-SIZE 1023
                      LINE-COUNT 65
                      MESSAGE-ID zz.
    DATA: BEGIN OF tape OCCURS 1,
             DATA(2000),
          END OF tape.
    DATA: force_ascii type c VALUE 'T'.
    DATA:  BEGIN OF int_msgs2 OCCURS 10,
             errnum(2) TYPE c,
             text1(8) TYPE c,
             text2(60) TYPE c,
           END OF int_msgs2.
    DATA: BEGIN OF g_int_temse OCCURS 0,
             dname    LIKE TST01-dname,
             dpart    LIKE TST01-dpart,
             dcretime LIKE TST01-DCRETIME,
             dcreater LIKE TST01-DCREATER,
          END OF g_int_temse.
    DATA: record_length  TYPE i VALUE 275,
           data_length    TYPE i,
           convert_to_ebcdic,
           filesize TYPE i,
           number_of_records TYPE i VALUE 1,
           filetype(3) VALUE 'BIN',
           conv TYPE REF TO cl_abap_conv_out_ce,
           dline TYPE REF TO data,
           dtab TYPE REF TO data,
           p_compid(4),
           p_pswd(8),
           g_str(2000),
           uc_filename TYPE string.
    DATA: l_nm_fixed_record.
    CONSTANTS: c_lpath TYPE pathintern VALUE 'ZOUT'.
    TABLES: TST01, ZPHOPFLS, ZTEMSE_LOG, V_5UXY_A.
    FIELD-SYMBOLS: <dtab> TYPE STANDARD TABLE,
                   <dline> TYPE ANY.
    INCLUDE: dbpnpcom.           " No logical database        Do not modify!
    INCLUDE: zphoptop,           " Top Include                Do not modify!
             zphopfil.           " File inlcude               Do not modify!
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE text-T01.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(30) text-001.
    SELECT-OPTIONS  s_temse FOR TST01-dname NO INTERVALS.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE text-T02.
    SELECT-OPTIONS  s_cai   FOR TST01-DCREATER NO INTERVALS.
    SELECT-OPTIONS  s_date  FOR sy-datum.
    SELECTION-SCREEN END OF BLOCK B2.
    SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE text-T03.
    PARAMETERS: p_ifid   LIKE t9aoa-if_id MODIF ID DIS ,
                p_fileid LIKE t9aoa-file_id MODIF ID DIS,
                p_unixf(60)  LOWER CASE MODIF ID DIS,
                p_uxdir  TYPE pathextern LOWER CASE MODIF ID DIS,
                p_dstfil(45) LOWER CASE MODIF ID DIS.
    SELECTION-SCREEN END OF BLOCK B3.
    PARAMETERS: p_skip AS CHECKBOX.
    DATA: ws_unixr LIKE p_unixf,
          ws_trans LIKE p_unixf.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF screen-group1 = 'DIS'.
          screen-output = '1'.
          screen-input  = '0'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    INITIALIZATION.
      p_ifid = 'PAYFLS'.
      p_compid = 'HR00'.
      p_fileid = '01'.
      p_unixf = 'AFS'.
      p_pswd = 'chevr123'.
      p_skip = 'X'.
    -End of Initialization--
      PERFORM get_physical_path.
      FORMAT COLOR COL_HEADING.
      WRITE: /01 text-t04,
              10 sy-pagno,
              41 text-t05,
             110 text-t06,
             123 sy-datum.
      WRITE: /01 text-t08,
              14 sy-repid,
             110 text-t07,
             125 sy-uzeit.
      FORMAT COLOR OFF.
      SKIP.
      WRITE: /(20) text-T21       CENTERED COLOR COL_HEADING,
              (15) text-T22       CENTERED COLOR COL_HEADING,
              (20) text-T23       CENTERED COLOR COL_HEADING,
              (15) text-T24       CENTERED COLOR COL_HEADING,
              (40) text-T25       CENTERED COLOR COL_HEADING.
    START-OF-SELECTION.
    *Do not allow background processing
    *Check if the Temse file and CAI both are entered
    IF NOT S_TEMSE IS INITIAL AND NOT S_CAI IS INITIAL.
       MESSAGE W999 WITH TEXT-E01.
    ELSEIF S_TEMSE IS INITIAL AND S_CAI IS INITIAL.
       MESSAGE W999 WITH TEXT-E02.
    ENDIF.
    Collect all temse filenames from TST01 into an internal table.
    IF NOT s_temse IS INITIAL.
       SELECT dname dpart dcretime dcreater FROM TST01 INTO TABLE g_int_temse
              WHERE dname in s_temse
              AND   dpart EQ '1'.
    ELSE.
       SELECT * FROM TST01
              WHERE DCREATER in s_cai
              AND   DPART EQ '1'.
         IF TST01-DCRETIME(8) GE s_date-low
             AND TST01-DCRETIME(8) LE s_date-high.
            MOVE-CORRESPONDING TST01 TO g_int_temse.
            APPEND g_int_temse.
         ENDIF.
       ENDSELECT.
    ENDIF.
    SORT g_int_temse BY DNAME DPART DCRETIME.
    LOOP AT g_int_temse.
    Check if the temse file is already processed in ZTEMSE_LOG table.
      SELECT SINGLE * FROM ZTEMSE_LOG
             WHERE DNAME = g_int_temse-dname.
      IF sy-subrc EQ 0.
    error. Temse already processed
         CONTINUE.
      ENDIF.
    Check if the temse file bieng processed is the eligible temse file
      SELECT SINGLE * FROM V_5UXY_A
             WHERE TSOBJ = g_int_temse-dname.
      IF sy-subrc EQ 0.
         SELECT SINGLE * FROM ZPHOPFLS
             WHERE TAXAU = V_5UXY_A-TAXAU
             AND   TXFRM = V_5UXY_A-TXFRM.
         IF sy-subrc EQ 0.
    Generate the filename for the target destination
            CONCATENATE ZPHOPFLS-FILENAME '.' sy-datum '.' sy-uzeit INTO p_dstfil.
         ELSE.
    error. Script not maintained in ZPHOPFLS table
            CONTINUE.
         ENDIF.
      ELSE.
    error. Temse file is not the latest processed file.
         CONTINUE.
      ENDIF.
      CALL FUNCTION 'RP_TS_OPEN'
        EXPORTING
          tsobj = g_int_temse-dname
         versn = g_int_temse-dpart
          empfg = 'RPUTSVUM'.
      COMMIT WORK.
      REFRESH tape.
      CLEAR   tape.
    Einlesen von der TemSe
      CALL FUNCTION 'RSTS_READ'
        EXPORTING
           PARTS1BY1 = 'X'
        TABLES
          datatab = tape.
      CALL FUNCTION 'RSTS_CLOSE'.
    Read the 1st line which is supposed to contains info important for
    the downloading procedure. The syntax of the line is :
      SAPxxxnnnyyyy  - the 1st 3 char 'SAP' indicates this line contains
    download related info. xxx can either be 'ASC' (for ASCII) or 'EBC'
    (for EBCDIC). nnn is the length of each record, e.g. 128 for SSA disk
    format, 275 for SSA tape format etc. yyyy can either be 'CRLF' (each
    record is delimited by CRLF) or blank (no CRLF).
    After processing the 1st line, the line is deleted from the internal
    table. Downloading begins on the 2nd line.
      READ TABLE tape INDEX 1.
      IF tape-data(3) EQ 'SAP'.
        IF tape-data+3(3) EQ 'EBC'.
          convert_to_ebcdic = 'x'.
        ELSEIF tape-data+3(3) EQ 'ASC'
              AND force_ascii EQ 'T'.
          filetype = 'ASC'.
        ENDIF.
        IF tape-data+6(3) NA '*'.
          record_length = tape-data+6(3).
        ELSE.
          record_length = tape-data+13(4).
        ENDIF.
        IF tape-data+9(4) EQ 'CRLF'.
          data_length = record_length + 2.
        ELSE.
          data_length = record_length.
        ENDIF.
        DELETE tape INDEX 1.
      ELSE.
        data_length = record_length.
      ENDIF.
    Transfer the Temse file data to Unix file.
          PERFORM transfer_file.
    Update the Log table with the temse details.
          ZTEMSE_LOG-dname = g_int_temse-dname.
          ZTEMSE_LOG-txcmp = V_5UXY_A-taxau.
          ZTEMSE_LOG-txfrm = V_5UXY_A-txfrm.
          ZTEMSE_LOG-filename = ws_unixr.
          ZTEMSE_LOG-DCREATER = g_int_temse-dcreater.
          INSERT ZTEMSE_LOG.
        WRITE: /(20) ZTEMSE_LOG-dname,
                (15) ZTEMSE_LOG-txcmp,
                (20) ZTEMSE_LOG-txfrm,
                (15) ZTEMSE_LOG-dcreater,
                (40) ZTEMSE_LOG-filename.
    ENDLOOP.
    *&      Form  get_physical_path
          Get Physical directory name for the given logical path name
    FORM get_physical_path .
      CALL FUNCTION 'ZFILE_GET_PATH_NAME'
        EXPORTING
          LOGICAL_PATH               = c_lpath
        IMPORTING
          FILE_NAME_PATH             = p_uxdir
        EXCEPTIONS
          PATH_NOT_FOUND             = 1
          MISSING_PARAMETER          = 2
          OPERATING_SYSTEM_NOT_FOUND = 3
          FILE_SYSTEM_NOT_FOUND      = 4
          OTHERS                     = 5.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " get_physical_path
    *&      Form  TRANSFER_FILE
    FORM transfer_file.
      p_unixf = 'AFS'.
    Concatenate Date with Unix File name
      CONCATENATE p_unixf '.' p_compid '.' p_ifid  '.' sy-datum '.' sy-uzeit INTO ws_unixr.
    Concatenate Unix Directory with Unix File for Outbound
      CONCATENATE p_uxdir ws_unixr INTO p_unixf.
      PERFORM open_files USING p_unixf.
    LOOP AT tape.
         g_str = tape-data(record_length).
        TRANSFER g_str TO p_unixf LENGTH record_length.
        IF sy-subrc <> 0.
          MESSAGE ID '00' TYPE 'E' NUMBER '398' WITH 'sy-subrc:' sy-subrc
           ' Error Transferring to: ' p_unixf.
        ENDIF.
    ENDLOOP.
      PERFORM close_files USING p_unixf.
    ENDFORM.                    " TRANSFER_FILE
    Can anyone please check and tell me what I need to overcome this problem.

    Hi Bhaskar,
    I also have the same requirement to upload TemSe files in to application server.
    In FDTA tcode after we enter company code and click on enter.
    In the second screen checking and line item and go to edit and click on download button.
    Here we see a popup with default file name, and when we say ok the file will get downloaded into C:\.....
    Here our req is to upload the file automatically pick up via batch job and place it in the in to the application server and from there it should be placed in the Netwrok server (UNIX).
    Pls provide me with suitable code so that i can finish it off.I tried a lot but did not work.
    Thanks.

  • Not yet solve....TAX Report regarding (client)question

    Client asked to me in interview, please give me answer
    This is regarding US PAYROLL
    1  Transaction PU19 Reports for tax reporting/Tax Returns / Files for State Unemployment Reporting on CD or Diskette :-
      We have issues on some reports regarding address, page numbers and totals. Alex worked on it and told that we need to contact SAP         for help as he thinks problem is with SAP Forms itself.  Currently typing manual returns pending changes to forms.
    2 Deposits on 941 form:-
       Can we update the form to include tax deposits made on the 941 line for deposits?
    3 State Tax Returns not configured in SAP:-
       Can we have state tax returns configured in the PDF format also?
    4 Printing of W-2:-
    Need to be able to print W-2s so we can fold/seal so address apprears on outside for mailing.  Duplex or 11/14 form?  Our folder/sealer uses pressure seal self sealing forms.
    5 Documentation of Processes (Benefit and Garnishment):-
    6 Configure benefit changes for 2009:-
    7 Update benefit tables / rates for 2009:-
    8 'Update SUT rates for new year:-
    9 New 401k Limits Entered :-
    Documentation how to do this
    10 W-2 Reporting, Non Taxable Relocation, Personal Use of Company car (Box 12 and 14 items) for W-2 Reporting:-
    11 Deceased Employee Payments:-
    How do we handle so W-2 is correct and any 1099 items handled correctly
    12 'Mag Media File - Federal (annual):-
    'RS record missing from Magnetic Media file.  Can this be included in the Federal Mag Media file?  Kathy has sent some changes that need to be made to Frank.
    13 'State Mag Media Files and State annual returns:-
    Have some states that we must file by diskette file.  Can we also have annual state tax returns configured in the PDF format?
    14 Federal 940 Return:-
    Make sure this form is configured correctly
    15 Pension Plan Indicator box on W-2:-
    Tested and is not showing on the W-2 or in the Mag Media file
    16 Third Party Sick Pay indicator box  on W-2:-
    Tested and is not showing on the W-2 or in the Mag Media file
    17 Retirement Calculation:-
    18 Year end close procedure:-
    What all has to be done before we can close the year and print W-2's.  Do we have to do any zeroing of wages, taxes and deductions before the first check of the new year can happen?
    19 Sort order for W-2 printing:-
    20 941 Correction Form (941C):-
    Need training on how this is handled
    21 'W-2 correction form (W-2C):-
    Need training on how this is handled
    22 'Payments received in January that affect prior year W-2:-
    'How do we handle.  We receive info in January that must be included on the prior year W-2.  Want to be able to include on original W-2 without filing a W-2C. (Third Party Sick Pay, Payments made in Mexico, Germany, etc) Usually don't receive.
    Regards

    Aswin,
    The client session is your primary TopLink interface abstracting over the shared cache and connection pooling. Depending if you are using internal or external connection pooling and the transaction state you are in TopLink may have a JDBC connection allocated to your client session. A client session does equate to a single dedicated JDBC connection for its entire lifecycle.
    Assuming you are using an external connection pool (Application server's data source) your client session will have a connection from this data source when required to perform a read and during the commit of its UnitOfWork.
    Doug

  • Tax Report for Canada

    Hi everyone!!
    Does anyone knows the tax report that should be used for Canada? We have advised the business to use the standard S_ALR_87012394 (Record of Use and Sales Tax - USA) as it provides de info by customer/vendor, tax code and jurisdiction code.
    However, they have now come back to us saying that they will also need the system to display all the taxable items where a customer/vendor account has not been impacted. We have debugged the program and the system will only consider the customer/vendors' taxable items.
    Has anyone come through this issue before?
    Thank you very much in advance. Best regards

    Check this Configuration Guide
    [External Tax Determination - Canada|http://help.sap.com/bp_blv1600/BL_CA/documentation/ExtTax_ConfigGuide_EN_CA.doc]
    thanks
    G. Lakshmipathi

  • Tax Report Returns No Data [Message 131-85]

    Our client has been using SBO for the past few years and run the Standard Tax Report.
    They follow a standard procedure whereby they open the Tax Report enter the period details and click OK, the report returns all Input and Output Tax details.
    This month they have run the report and no matter what dates you enter the report returns No Date [Message 131-85]
    Does anyone have any clues as to what might be causing this?

    I have discovered via a SQL trace that the following script is tun for the tax report
    exec sp_executesql N'
    SELECT      T0.[AbsEntry],
         T0.[Code],
         MIN(T0.[Name]),
         T0.[SrcObjType],
         T0.[DocNum],
         MIN(T0.[Category]),
         MIN(T0.[IsEC]),
         T0.[IsAcq],
         MIN(T0.[VatPercent]),
         MIN(T0.[EqPercent]),
         T0.[DocDate],
         MIN(T0.[TaxDate]),
         MIN(T0.[CANCELED]),
         SUM(T0.[BaseSum]),
         SUM(T0.[VatSum]),
         SUM(T0.[EqSum]),
         SUM(T0.[DeductSum] - T0.[EqSum]),
         MIN(T0.[SrcObjAbs]),
         N''0'',
         0,
         0,
         MIN(T0.[DocDate]),
         0,
         0,
         MIN(T0.[NumAtCard]),
         SUM(T0.[BaseSumSc]),
         SUM(T0.[VatSumSc]),
         SUM(T0.[EqSumSC]),
         SUM(T0.[DedctSumSC] - T0.[EqSumSC]),
         MIN(T0.[TaxType]),
         T0.[CrditDebit],
         MIN(T0.[CardCode]),
         MIN(T0.[CardName]),
         MIN(T0.[SrcLineNum]),
         MIN(T0.[VatDate]),
         MIN(T0.[VatIdUnCmp]),
         MIN(T0.[LicTradNum]),
         MIN(T0.[BPLicTradNum]),
         MIN(T0.[AddID]),
         SUM(T0.[BaseSum])
         FROM  [dbo].[B1_VatView] T0 
         WHERE (T0.[Code] = (@P1)  OR       
         T0.[Code] = (@P2)  OR 
         T0.[Code] = (@P3)  OR 
         T0.[Code] = (@P4)  OR 
         T0.[Code] = (@P5)  OR 
         T0.[Code] = (@P6)  OR 
         T0.[Code] = (@P7)  OR 
         T0.[Code] = (@P8)  OR 
         T0.[Code] = (@P9)  OR 
         T0.[Code] = (@P10)  OR 
         T0.[Code] = (@P11)  OR 
         T0.[Code] = (@P12) ) AND 
         T0.[DocDate] >= (@P13)  AND 
         T0.[DocDate] <= (@P14)  
         GROUP BY T0.[AbsEntry], T0.[Code], T0.[SrcObjType], T0.[DocNum], T0.[IsAcq], T0.[DocDate], T0.[CrditDebit]
         ORDER BY T0.[IsAcq] DESC,T0.[CrditDebit]',N'@P1 nvarchar(30),@P2 nvarchar(30),@P3 nvarchar(30),@P4 nvarchar(30),@P5 nvarchar(30),@P6 nvarchar(30),@P7 nvarchar(30),@P8 nvarchar(30),@P9 nvarchar(30),@P10 nvarchar(30),@P11 nvarchar(30),@P12 nvarchar(30),@P13 datetime2,@P14 datetime2',N'SEXP',N'SFRE',N'SGST',N'SNT',N'PCAF',N'PCAP',N'PFRE',N'PGNR',N'PGST',N'PGSTV',N'PNT',N'PPRI','2010-03-01 00:00:00','2010-03-31 00:00:00'
    If I run this in SQL I get the following error, which mat shed some light on what is happening
    Msg 2715, Level 16, State 3, Line 1
    Column, parameter, or variable #13: Cannot find data type datetime2.
    Parameter or variable '@P13' has an invalid data type.
    Msg 2715, Level 16, State 3, Line 1
    Column, parameter, or variable #14: Cannot find data type datetime2.
    Parameter or variable '@P14' has an invalid data type.

  • Tax Reporting Date for Cz Republic in report S_ALR_87012357/RFUMSV00

    Hi All,
    We activated Tax reporting date as per SAP Note 1023317. However we are not able to see in the report "S_ALR_87012357 / RFUMSV00" tax reporting date column which should show which document has which date assigned to it. I executed the report with tax reporting date.
    Please help me to find out how to get the column in this report.
    Regards,
    Abishek

    hi Giovanni Baumann  .,
             will u please tell me how u added NAME1 field to on the output list Layout on the report . please guide me on this.
    Regards.,
    S.Sivakumar

  • Generating a document that will not show on the tax report

    Good Morning,
    I have an interesting situation involving the Tax report and the GL. My client had a AR down payment invoice that was entered in error and they made a credit note to cancel it and re enter the invoice correctly. Now when you look at the BP balance everything is correct however when you look at the tax report their is an extra credit because the Credit Note appears but the AR down payment invoice does not.
    Ultimately my questions are how do I make an entry to correct the tax report and for the future how do I correct a down payment document without hosing the Tax report?
    Thank you for your consideration,
    John-Michael

    Hi John-Michael,
    when you create a DT invoice with the appropriate tax code, this document will appear in the tax report. When using the copy-to functionality in the DT invoice to create the credit memo, it will draw all data including the tax to that document. In the tax report these 2 transactions then cancel each other out.
    To correct the entry in your db I would hence recommend to reverse the credit memo with an appropriate invoice & then use the DT invoice as base document for the correct CM.
    All the best,
    Kerstin

  • Error while executing sales tax report S_ALR_87012394

    Hi,
    I am getting the below error while executing the sales tax report S_ALR_87012394.
    Infomration: I have maintained the tax jurisdiction code 9 digits initially.after that i have maintained with 10 digits
    Tax jurisdiction LA0000000 has defective structure
    Message no. FS790
    Diagnosis
    When calling the GET_JURISDICTION_LEVEL_TTXD function module, a tax jurisdiction code was transferred which does not correspond to the structure specified in the table.
    Procedure
    Check the calculation procedure for the company code and determine the respective tax jurisdiction length and structure in Customizing. Check that the tax jurisdiction code transferred corresponds to the tax jurisdiction length and structure.
    kindly help me
    Thanks
    Supriya

    check is there any notes which you have to apply to correct already posted entries with 9 digits. because of this its generating this error

  • S_ALR_87012357 / S_ALR_87012356-Wrong reporting of tax amounts on the tax reports.

    Hi,
    S_ALR_87012357 / S_ALR_87012356
    Tax amount for tax codes V9, VP and VT are calculated and
    displayed correctly in FI reporting but they are reported at a higher amount in
    the tax reports run by transactions S_ALR_87012357 / S_ALR_87012356.
    Since its a standard report , I would expect there would  be a way of correcting this wrong tax amount showing this report .
    Is there any SAP note regarding this error ?
    Appreciate your help and advise..
    Kind Regards
    Thiru

    Hi Srikanth ,
    As you mentioned it is showing the difference ...
    Please find attached screenshot ...
    Is there a way to correct this ? since its creating an issue& confusing from Finance/Accounting point of view...
    Kind regards
    Siva..

  • MMREF Magnetic Media Files Download/Saved from Tax Reporter

    Often times when we go to download the MMREF Federal File and various state files that are generated in PU19, they are not in the correct format.  Please explain how these should be downloaded.  Is the process to take the temse file and just download via the download link in the screen?  If so, should they be saved in txt files to view?  Often times it looks like the data is wrapped.  Please help!  We seem to specifically be having a problem with AL at this time.

    Hi
    First you need to download the MMREF format in google. so that you will get an idea how it looks like and compare the same with the format you generated from tax reporter. you can download the same by hitting the disk icon and save it in your hard drive in .txt format. Pls open the downloaded txt file. you can able to read those....
    Thanks
    Muru

  • Tax Reporter (PU19):W-2 download format has additional lines and character

    Hey experts,
    when running tax reporter (PU19) and creating the magnetic file for our W2s, our file has additional lines and characters in the file when downloading it on our desktop.
    The following occurs: At the top of the file:
    01/20/2012                                  Dynamic List Display                                                                                1
    |TEMSE OUTPUT                                                                                |
    Each line has an additional | at the beginning and end.
    At the bottom we have an additional doted line:
    How can we get rid of these lines and additional characters?
    Thanks

    Hi Arthi,
    Thanks for the reply ,  for TAX form Group W2M1, W2M2, W2M3  , while configuring Evaluation of tax form
    the following items required to select
    Evaluation of tax forms (Employee info required)
    Time ranges , in which data will be stored
    Reporting of retro calculation
    Please let me know how to configure these evaluation forms ?? and Does  any wagetypes needed to be assigned to these tax form groups ??
    Note:
    The customers has to use manual entries options in PU19 and use the below TFG to populate the respective fields accordingly.
    W2M1 MW508-Employer Total Tax Exempt Credits
    W2M2 MW508-Overpayment to be credited
    W2M3 MW508-Overpayment to be refunded

  • Fi Tax report truncating while downloading to the Excel file.........

    Hi all,
           this is the tax report which when will be execute by the uses .
    when user A execute the report its giving 27000 records as out put and when he extracts to Excel shell in that excel sheet its giving 27000 records.
    whne that same report executed by the user B its giving 27000 records in output.when he try to download to excel sheet.its giving 19000 records and truncating remaining records.
    both the users having the same authorization! for the tax
    i was working fine till last Jan 2008. now its giving the truncation.
    Can any thing related to memory issue that can be resolved in Production.
    Thanks,
    Nelson

    its the problem with the MS-Exce. requested the User to Update the MS Excel software.
    lower versions of Excel will not support the Financial data.
    my proble had resolved by Updating the S/w MS-Excel in the User Mechine.
    Edited by: Nelson karunakar on Aug 27, 2008 2:36 PM
    Edited by: Nelson karunakar on Aug 27, 2008 2:37 PM

  • Data Over flow in Reports 10g for the report U.S Sales Tax Report

    Hi,
    we are running the "U.S Sales Tax Report" in which we are facing the data overflow as an issue. Do any body have an idea how to fix this type of issue.
    Thank you,
    BOD

    Just to save time for others who have the same requirement , use below,  fill the structure with sales order and other details. Leave the posnr blank if you need document flow , else fill the posnr if it is item level.
    CALL DIALOG 'RV_DOCUMENT_FLOW'
            EXPORTING
                 VBCO6      FROM VBCO6
                 MAKT-MAKTX FROM SPACE
                 KNA1-KUNNR FROM kunnr2000
                 KNA1-NAME1 FROM name
                 MAKT-MATNR FROM SPACE
                 IVKORG     FROM VKORG
                 IVTWEG     FROM VTWEG.
    No custom screen required, no tree control required, no coding required except that you need to call this at right place in your module pool/ report etc. SAP internally uses this for display in SAPMV45A.
    Hope it helps.
    Regards/Ajay

  • PU19 Tax Reporter - Form 941 spool missing after 4.6c to ECC 6.0 upgrade

    Hi Experts,
    We recently underwent a technical upgrade from 4.6c to ECC 6.0.When we use PU19 tax reporter Form 941 as it is  a federal tax return form in US .When i check in job spool is not coming.Please let me know if some note is release for spool and printout put.
    Looking for your prompt response.
    Thanks & Regards,
    Ankur

    Hello Ankur,
    You need to get the Adobe Document Server running if you are going to
    print PDF files from Tax Reporter. Please have you basis group check
    that the Adobe Document Server is working correctly.
    Please use transaction SFP to test the Adobe Document Server using the
    Tax Reporter forms.
    From Adobe Document Services Implementation Guide;
    Installation Preparation
    Install a SAP Web AS 6.40 J2EE Engine or higher
    A SAP J2EE Engine on Windows is the basis for the Adobe Document
    Services.
    Therefore, before you begin with the installation, make sure that one of
    the following prerequisites are met:
    SAP Web AS J2EE engine on Windows is Installed
    The following installation types are supported:
    - SAP Web AS 6.40 ABAP + J2EE system (J2EE Add-In) or higher
    - SAP Web AS 6.40 J2EE system or higher
    For both variants the following installation options are supported:
    - Central System (Central Instance and Database Instance on one host)
    - Distributed System (Central Instance and Database Instance on separate
    hosts)
    - Dialog Instances
    For information on Adobe and the ADS I would suggest looking at the
    online documentation.
    http://service.sap.com -> SAP Help Portal -> Search on ADOBE and you
    will get the help information on configuration.
    Also review SAP Note No. 944221
    Regards,
    Manny

  • PU19 Tax Reporter - Form 941spool missing after 4.6c to ECC 6.0 upgrade

    Hi Experts,
    We recently underwent a technical upgrade from 4.6c to ECC 6.0.When we use PU19 tax reporter Form 941 as it is  a federal tax return form in US .When i check in job spool is not coming.Please let me know if some note is release for spool and printout put.
    Looking for your prompt response.
    Thanks & Regards,
    Ankur

    Hello Ankur,
    You need to get the Adobe Document Server running if you are going to
    print PDF files from Tax Reporter. Please have you basis group check
    that the Adobe Document Server is working correctly.
    Please use transaction SFP to test the Adobe Document Server using the
    Tax Reporter forms.
    From Adobe Document Services Implementation Guide;
    Installation Preparation
    Install a SAP Web AS 6.40 J2EE Engine or higher
    A SAP J2EE Engine on Windows is the basis for the Adobe Document
    Services.
    Therefore, before you begin with the installation, make sure that one of
    the following prerequisites are met:
    SAP Web AS J2EE engine on Windows is Installed
    The following installation types are supported:
    - SAP Web AS 6.40 ABAP + J2EE system (J2EE Add-In) or higher
    - SAP Web AS 6.40 J2EE system or higher
    For both variants the following installation options are supported:
    - Central System (Central Instance and Database Instance on one host)
    - Distributed System (Central Instance and Database Instance on separate
    hosts)
    - Dialog Instances
    For information on Adobe and the ADS I would suggest looking at the
    online documentation.
    http://service.sap.com -> SAP Help Portal -> Search on ADOBE and you
    will get the help information on configuration.
    Also review SAP Note No. 944221
    Regards,
    Manny

  • Annual operations report in Tax reporting

    Hi friends,
    system is ECC 6.0
    We have tax reporting in Spain specially want to know about S_PL0_09000158 - Annual Operations Report (Spain)
    for this report all kind of configuration is done ( as per my knowledge), normal tax reports are being generated successfully but couldnt generate this Annual Operations report.
    program is RFUSVS14
    In Spain this is to be called as 347 report (norm)
    as this is a SAP standard program, no doubt that this program has mistakes but some where this program is dropping the values which are being picked from the vendor and customer line items.
    actually this should generate a report for the vendors and customers to which the amount is exceeded more than 3005.06u20AC.
    please help me.
    thanks in advance.
    Edited by: YELLA REDDY sama on Sep 17, 2010 10:53 AM

    Hi,
    There are several notes regarding this report. Look for example on this guide line note 1315415.
    Also, look at note 1271698 which corrects the problem where not all vendors are displayed.
    Regards,
    Eli

Maybe you are looking for

  • Keyboard and mouse not working correctly after installing Windows 8.1

    I was forced to upgrade my computer to Windows 8.1. My keyboard worked fine until the sytem did a reboot. Numbers on keypad stopped typing and letters were being capitalized when the caps lock was off and the numbers across the top will only type the

  • Mail: How do I collect a bunch of email messages into one document?

    After 5 years of collecting the email messages on an application we are making I need to collect all these emails into several documents (pdf would be nice). One for out going, incoming, etc. I guess I was thinking I would just save as pdf for each m

  • How to prepare for 1Z0-204, 1Z0-225 and 1z0-226 certifications?

    Hi everyone, I am done with the instructed led training from Oracle University for Oracle SCM Apps(ESSENTIALS, INV, PUR, OM). I would like to take the basic certifications like 1Z0-204 (ESSENTIALS), 1Z0-225 (INV and PUR) and 1Z0-226 (INV and OM) for

  • YTD ABAP Code

    Hi, If any body have abap code for YTD(year to date) please share with me. My manual input variable is 0P_FPER(Fiscal year period) in the format of 012.2008. and customer exit variable is 0FISCPER_CE_001. Thanks, Ram.

  • Adobe reader 2.0 and printing

    Hi I have a pocket pc. Pocket loox 720 running windows mobile 2003se. I have installed acrobat reader. It has an option to print the document. But that option is not working. Its is always grey - that is - inactive. I dont know why. I have installed