Need tax report

hi
we have n no of vendors.but my PL ask to me,
1.how will U get form C vendor list?
2.How will u get FORM H VENDORS? 
IS THERE ANY T CODE ?
PLS HELP ME FRDS
with regards
kavi

Hi Kavi,
Use transaction MKVZ for list of vendors
In your case how you identify vendors with form C and H
It will depend on that
Please confirm
BR
Diwakar

Similar Messages

  • Need a sample of Withholding Tax Report

    Hi,
    Can anyone send me a sample of SAP Business One's Withholding Tax Report as my current database do not hold any data on it. If possible, can I have it in PDF format?
    PS: I am currently using 2007B
    Thanks,
    Gavin
    Edited by: Tan Gavin on Jan 5, 2009 9:42 AM

    Hi Gavin,
    There is no standard report for withholding Tax.you can develop one by Query generator or through XL Reporter or through Crystal Reports. you just need to know which are the tables that store the value you need and the conditions you want to mention. to know the table name you can go to View->check System Information. at the bottom you will know the Table name as well as field name.
    regards
    Shreyas

  • Need Service Tax Report

    Hello friends,
    Can any one help me in getting the service tax report as per the Indian Service Tax laws, wherein the service tax is payable on payment basis.
    Hope this problem exists for all sap users in India. If any code is written, please share it so that it can used for the benefit of all.
    REgards
    Dhirav Shah

    Hi Dhirav,
    Please refer the below note from SAP
    Note 779512 - Master Note for Service Tax
    "Regarding the reporting requirements, we will update the status as soon as we receive the clarifications."
    Note 1004815 - ER1 report - Corrections for Service tax and new layout
    Hope this helps.
    Please assign points as way to say thanks

  • S_P00_07000134 Generic Withholding Tax Report help needed!!!

    Hi,
    We have made all the required settings for country Thailand & we are running the report S_P00_07000134 - Withholding Tax -> General -> Generic Withholding Tax Reporting.
    The process type is STD & Output group is CER.
    Process followed:
    1. Posted a Invoice with FB60.
    2. Made the payment with F-53. EWT deducted at time of payment automatically based on settings.
    Now when running the above report, i get the message, No records were selected Message no. 7Q702
    Plz suggest what can be the reason for same.
    Points will be rewarded.
    regards
    Mayank

    This report is extremly delicate.
    It has a field (WT_SC_TEST_RUN) if is not checked, there are a 7Q702 Message
    Greetings
    Marco

  • 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

  • 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

  • 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

  • Tax Report - Tax Register Book with no data

    Hy all! I'm facing a problem with the tax report:
    When i try to run the tax report (output mode: Tax register Book) i get the info message: "Data is not available; modify selection criteria and re-enter  " and no results are display!
    If i deselect the output mode "tax register book" and select the "vat declaration", with the same filters.... i can get results!
    I'm working with SAP Business One 8.8 PL 20
    Can anyone give me a hint?
    Thanks in advance.
    Inê

    Hi,
    Check the issue whether the same is happening when the COPY of the database is upgraded to latest patch in Test Enviornment.
    Else, you would be needing to log a message to SAP Support to get the issue investigated.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Use tax reports do not match

    Use tax reports do not match. One shows the GL account balance using FAGLB03 and the other is the use tax report S_ALR_87012394.  I need to use S_ALR_87012394 to determine the location of the tax and pay it but since it doesnu2019t match with the GL there will be issues.

    Hi,
    Under  these two cases i had found difference between vat reports and vat gl accounts.
    1) When the users are manual input the vat amount on the input invoice , resulting vat amount will be updated on the invoice and gl account BUT not the vat report.To find the these items go to the GL line item report and find the line items with BLANK VAT CODE.usually this will tend to use by the users when there are any rounding differences in the vat calculation. Also to avoid these cases hide the manaul vat amount field blank.
    2) When the users manually inputed the vat amount on the gl accounts, provided GL master are not checked with automatic postings only option.
    Best Regards
    Suresh Addagiri

  • 3.Tax Report - Splitted by Profit Center

    Hi Colleagues,
    My customer has following problem.
    They have a vendor and customer invoice posted to more profit centers, but in the tax report the firts Profit centers wehre the document is posted is only visable?
    Do they need to activate a New GL (document splitt) in order to get a tax reports splitted by Profit centers.
    Thanks in advance.
    Best Regards,
    Slavisa Lecic

    Hi Ashish,
    If you have hierarchy node like "ALL" which have all the base members of Account and there is no data for other combination.
    Ex - Combination of Profit Center A with Accounts 100001 - 100010, 420000, 430000 etc.
    Combination of Profit Center B with Accounts 100001 - 100010, 520000, 530000 etc.
    In this case if there is no data for combination of Profit Center A and Account 520000, 530000 etc.
    and Profit Center B and Account 420000, 430000
    then you can use hierarchy node.
    Regards,
    Shrikant

Maybe you are looking for

  • Please help, itunes wont synch with my itouch

    after a recent update for my itunes, my itouch would not synch with itunes. i attempted to install and reinstall itunes. then it wont even charge my itouch. at this stage, whenever i open itunes, this error message pops up "registry settings used byt

  • Exiting full screen shows desktop for a second

    Hi all, Just installed Mountain Lion, and all is fine, except for maybe one thing.  If I'm editing a picture in full-screen (not the "full-screen" for the entire application, but the full-screen of the picture (by hitting the "F" key)), when I exit t

  • QT taking so long to bring up a video "WMV or AVI" on new Mac Intel

    Well, that about says it. I've loaded quite a number of the "add ons" but still taking forever to load and sometimes never comes up. Any advice please? Thank you tons. Tom

  • An unexpected error has occurred.  Please quit and reopen Keynote.

    I am suddenly unable to duplicate slides after duplicating 115 of them and am receiving the above message.  This makes me so sad.  I am going to have to tell a client that I couldn't finish his presentation.  Perhaps there has been too much emphasis

  • I cant sync anything from my computer to my ipod

    i just downloaded my apps from itunes (computer) and so when i plug in my ipod, it reads, but it doesnt want to sync my apps to my ipod. Ive been trying for over 2 hours and still couldn't fix it, help?