TDS Payment entry after Go-Live.

Dear All,
           My client goes live on 01.04.2014. In their legacy system they used to pass entries related to TDS payment is like
TDS -- Party A --- 100.00
TDS -- Party B ---  200.00
TDS -- Party C ---- 300.00
             to  Bank a/c --- 600.00
From this they used to get report like vendor wise TDS payment in their legacy system.
Now my issue is how can I post this entry in SAP , where I can get Vendor wise TDS report. I know that if we will follow TDS cycle as per SAP standard then we can get the report from J1inmis. But here I have to make payment entries after go-live where I cannot follow TDS cycle for cut over entries/data.
So kindly guide me to handle this issue .
Regards
Soumya

Hi,
Please do following steps :
1. Go to transaction code J1INCHLN
Click on Execute
Enter
Click on Document - Simulate
If entry found O.K click on Save (Post)
Clearing document
Go to transaction code J1INBANK
Select appropriate Challan
Click on
Pre - requisites
1. Maintain number range for object J_1ICHLNNO in J1I9.
Hope, this solves your issue else revert.
Regards,
Tejas

Similar Messages

  • TDS reversal entry is not getting generated at time of F-54

    Dear All,
    I have made down payment request  through F-47  transaction code  and down  payment made by Transaction code u2013F110 (instead of F-48)   and TDS is deducted at this point. There after I made invoice through MIRO / F-43 in which TDS is again deducted for whole invoice amount. I have cleared down payment through T.code F-54. But at this time TDS reversal entry is not getting generated and only customer account is credited and debited.
    So in short TDS is getting deducted at time down payment and at time of Invoice for their respective full value.
    Note: For TDS type on payment I have selected u201CCentral Invoice PROPu201D and we are not using business place and section code. Please help me.
    Appreciate all expertsu2019 help ASAP.
    Thanks ,
    Manas kumar

    Hai Manas,
    If ur not using business place how can u get remitance chalana thats why first u can configure the business plance. I think ur already posted some entries its correct? In this case u will run this t.code business place update the previous entries i.e.,  J1INPP  this is very useful to u
    Regards
    Madhu I

  • Down Payment entries not reflecting in J1INMIS report

    Dear Guru's,
    TDS deducted at  the time of down payment made to vendor is not reflecting in J1inmis report.
    Is J1INMIS report does not reflect down payment entries?
    What will be the reason for this?
    Which alternative report to followed for J1INMIS !!!
    Waiting for your positive reply.
    Regards,
    Sany.

    Hi Sany,
    To update Business Place & Section Code, execute the program given below. After execution of the program run T.Code J1INPP and your issue should get resolved. Let me know if this works.
    Ask the Abaper to write the following Code & execute the program:
    REPORT  ZFI_BUP_SEC_CHANGE.
    TABLES : BSIK,BSAK,BSEG.
    parameters: PA_BELNR TYPE BSEG-BELNR OBLIGATORY,
                PA_BUKRS TYPE BSEG-BUKRS OBLIGATORY,
                PA_GAAHR TYPE BSEG-GJAHR OBLIGATORY.
    PARAMETERS : PA_BUPLA TYPE BSEG-BUPLA NO-DISPLAY,
                 PA_SECCO TYPE BSEG-SECCO NO-DISPLAY.
    PA_BUPLA = 'MUM'.                               (Note : Use the Business place & section Code Used
    PA_SECCO = 'MUM'.                                         in your company code).
    START-OF-SELECTION.
    PERFORM CHANGE_DATA.
    END-OF-SELECTION.
    *&      Form  CHANGE_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM CHANGE_DATA .
    DATA : LT_BSEG TYPE TABLE OF BSEG WITH HEADER LINE,
           LT_BSIK TYPE TABLE OF BSIK WITH HEADER LINE,
           LT_BSAK TYPE TABLE OF BSAK WITH HEADER LINE.
    BSeg updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSEG
    FROM BSEG
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSEG.
      IF LT_BSEG-BSCHL    = '25' OR LT_BSEG-BSCHL = '26'
         OR LT_BSEG-BSCHL = '27' OR LT_BSEG-BSCHL = '28'
         OR LT_BSEG-BSCHL = '35' OR LT_BSEG-BSCHL = '36'
         OR LT_BSEG-BSCHL = '37' OR LT_BSEG-BSCHL = '38'
         OR LT_BSEG-BSCHL = '39'.
        LT_BSEG-BUPLA = PA_BUPLA.
        LT_BSEG-SECCO = PA_SECCO.
        MODIFY BSEG FROM LT_BSEG.
        Write : / LT_BSEG-BELNR, 'Update For BSEG', LT_BSEG-BSCHL,
                  LT_BSEG-BUPLA,LT_BSEG-SECCO.
      ENDIF.
    ENDLOOP.
    Bsik updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSIK
    FROM BSIK
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSIK.
      IF LT_BSIK-BSCHL    = '25' OR LT_BSIK-BSCHL = '26'
         OR LT_BSIK-BSCHL = '27' OR LT_BSIK-BSCHL = '28'
         OR LT_BSIK-BSCHL = '35' OR LT_BSIK-BSCHL = '36'
         OR LT_BSIK-BSCHL = '37' OR LT_BSIK-BSCHL = '38'
         OR LT_BSIK-BSCHL = '39'.
        LT_BSIK-BUPLA = PA_BUPLA.
        LT_BSIK-SECCO = PA_SECCO.
        MODIFY BSIK FROM LT_BSIK.
        Write : / LT_BSIK-BELNR, 'Update For BSIK', LT_BSIK-BSCHL,
                  LT_BSIK-BUPLA,LT_BSIK-SECCO.
      ENDIF.
    ENDLOOP.
    BsAk updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSAK
    FROM BSAK
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSAK.
      IF LT_BSAK-BSCHL    = '25' OR LT_BSAK-BSCHL = '26'
         OR LT_BSAK-BSCHL = '27' OR LT_BSAK-BSCHL = '28'
         OR LT_BSAK-BSCHL = '35' OR LT_BSAK-BSCHL = '36'
         OR LT_BSAK-BSCHL = '37' OR LT_BSAK-BSCHL = '38'
         OR LT_BSAK-BSCHL = '39'.
        LT_BSAK-BUPLA = PA_BUPLA.
        LT_BSAK-SECCO = PA_SECCO.
        MODIFY BSAK FROM LT_BSAK.
        Write : / LT_BSAK-BELNR, 'Update For BSAK', LT_BSAK-BSCHL,
                  LT_BSAK-BUPLA,LT_BSAK-SECCO.
      ENDIF.
    ENDLOOP.
    ENDFORM.                    " CHANGE_DATA
    Thank You.

  • Cancel goods receipt after doing LIV

    Dear all,
    I find the system allow users cancel the goods receipt of an PO item after the LIV process is completed.
    In business practice, it is none sense to reverse the goods receipt qty after the purchasing dept confirm the GR qty and payment to the vendor.
    In my understanding, the purchasing dept should cancel the LIV confirmation first, and then cancel the GR document afterward.
    Are there any control settings in MM to prevent users reverse the GR qty without cancel the IR document at first?
    Best regards,
    Chris

    Hi
    For GR-Based IV only a customizing is present to prevent such activities
    Please check in customizing if the Config of For GR-Based IV, Reversal of GR Despite Invoice has been maintained, remove the flags if it has been maintained.
    T.code is OMBZ.
    SPRO-> Materials Management-> Inventory Management and Physical Inventory-> Goods Receipt-> For GR-Based IV, Reversal of GR Despite Invoice.
    If your PO does not have the GR based IV Flag then GR can be reversed even if IR exists.
    Thanks & Regards
    Kishore

  • TDS Payment Issues

    Dear All,
    I have made down payment request through F-47 transaction code and down payment made by Transaction code : F-48  and TDS is deducted at this point. There after I made invoice through MIRO / FB60 in which TDS is again deducted for whole invoice amount. How it will adjusted this TDS payment which T Code we will use for clear TDS payment
    At the time of create remittance challans system has taken both amount
    so in short TDS is getting deducted at time down payment and at time of Invoice for their respective full value.
    Appreciate all expertsu2019 help ASAP
    Regards
    SAPCO

    Hi
    When you book the invoice that time in header go withholdind tax tab and there you can give base amount and TDS amount . i.e. your advance is 10000 and your tds deducted amount is 1000 after that when you book the invoice your invoice amount is say 50000 so that time you deduct tds on 40000 so go to header and Withhilding tax Tab and put the base amount 40000 so tds will be deduct on 40000. Also there you can put the TDS amount manually so that can TDS not calculate automatically.
    To do that check you Withholding tax type SPRO >IMG>Financial Accounting (New) >Financial Accounting Global Settings (New) >Withholding Tax>Extended Withholding Tax >Calculation >Withholding Tax Type > Define Withholding Tax Type for Invoice Posting    and check that in CONTROL DATA W/Tax base amount is ticked & manual w/tax amount also ticked
    Follow the above process your problem will solve
    Best Of Luck
    Tanmoy

  • Intercompany payment posting after Foreign currency valuation - F.05

    Hi Gurus,
    I have an issue with intercompany payment posting after foreign currency valuation run.
    Build Up:
    Let me give you a brief description first. Company u2018Au2019 has open items from Company u2018Bu2019. Basically Company u2018Au2019 charges management fees from Company u2018Bu2019.  Both companies have a local currency of u2018EURu2019 and a group currency of u2018USDu2019. The open items posted in company u2018Au2019 have been accumulating for two years now. In January of this year finance decided to run the foreign currency valuation (F.05). The method they used was the reversal method. So at the beginning of the next month the entries from the valuation were reversed. They repeated this in February as well. Note this is the first time the foreign currency valuation was performed in SAP, before it was done manually. After February they never ran the foreign currency valuation run.
    Issue:
    Now what is happening is, when open items that have been accumulating for over two years and are before the foreign currency valuation run are cleared (payment is made) there is a exchange rate loss/gain. When the open item is cleared there is posting to the G/L account for Balance sheet adjustment and also an exchange rate loss/gain G/L account.
    Posting:
    Debit u2013 Cash
    Credit u2013 Customer (intercompany)
    Credit u2013 Balance sheet adjustment account (unrealized loss)
    Debit u2013 Profit and loss account (realized loss)
    The balance sheet adjustment account that is posted to is from OBA1 u2013 KDF u2013 balance sheet adjustment account in the foreign currency valuation accounts. Currency translation account determination is empty in OBA1.
    I understand the system while payment posting is clearing/offset the unrealized loss/gain and posting the realized loss/gain. But how is this possible, when the foreign currency valuation run was done the entries were reversed so there was no unrealized loss/gain posted.
    Also another caveat: Isnu2019t foreign currency valuation for open items that are posted in foreign currency and need to be revaluated to local currency. Well that is what is puzzling the open items posted in company u2018Au2019 are posted in local currency u2018EURu2019 so the foreign currency valuation should not affect these open items, correct? And if this is true then when the open items is cleared the unrealized loss/gain should never be cleared since there is none posted the exchange rate difference should only be posted to the realized account in the profit and loss correct? Please help? I can explain further if needed?
    Thank you.
    Comments and facts:
    Companies fiscal year is June u2013 May.
    Company u2018Au2019 and u2018Bu2019 have a local currency of u2018EURu2019, group currency is u2018USDu2019
    The invoices in Company u2018Au2019 were posted in u2018EURu2019
    The foreign currency valuation was only ever run in January and February of 2010.

    HI ,
    I believe becuase you did not enter any date that's why they did n't reverse automtcially . You need to enter to reverse.
    now you can use f.80 mass reversal for all of them
    Many Thanks

  • Payment entry

    Dear friends,
    I want to know tcode for payment entries in order to control check lot series.
    One i know is f58 which is used for vendor open item payment.Similarly i want to know same for down payment to vendor and GL account payment.In both the case system should pick up check number automatically as it picks up in f58.
    Immediate reply will be appreciated.
    Regards,
    Greeshma

    You will need to maintain the following before you record the transaction
    1. TDS is maintained for advance Payment in Vendor Master.
    2. Maintain Spl GL Indicator for Advance as well as for Down Payment Request.
    Steps involved
    1. In F-47 choose the Vendor and Spl GL Indicator for Advance and save the request. Here itself the system will prompt for TDS
    2. Go to F-58 . Here give the Spl GL Indicator for Down Payment Request and process open items. The down payment request created through f-47 will appear as open item.Choose the same and make Payment
    Hope this helps you.

  • Tds payment

    HI
    Guru's
    Here I am posting TDS payment in FB60, When i check in simulate it is not taking the
    respective GLS.(TDS)
    I Assign the tds codes in vendor Master
    Please Guide me whether I missed any configuration Parts
    with Regards,
    Arun Kumar

    Hi,
    1. Kindly check whether you have assigned TDS, Ed Cess on TDS and SHE Cess on TDS GL  accounts     to respective Tax Types & Tax Codes in configuration part.
    2. Check whether Extd WHT is activated for Company Code.
    3. Check Tax types are assigned to Company code.
    4. Check in Vendor Master whether you have ticked the liable check box for the tax types & tax codes.
    5. Whether a dialog box for Ext. WHT information opens during the transaction FB60 which you have
        to confirm.
    6. You are entering the Vendor Invoice in FB60 and if you want TDS to be captured during invoice,
        check the tax type and tax codes for only invoice is active
    Kindly revert back after these checks.
    Regards,
    Sadashivan
    Edited by: Sadashivan Natarajan on May 27, 2009 2:22 PM

  • How to keep Track of the Changes after Go live in OM

    Hi Experts,
    Need one information, after Go Live, PPOME is used by the end users for tracking or updating daily changes. While making he changes do we also need to keep a copy of the changes made in the Development server or it is fine if the changes are seen only in Production system.
    If any body has made changes to the existing Organization and Staffing, how do we keep a track of who has done the changes is there any standard report through which we can get the information.
    Please advice.
    Regards,
    Subbu

    Hi,
    Access the table through SM30. It comes blank as standard. Click "New Entries" and make entries for changes to be tracked. For example, whenever an org. unit changes 002 and 003 relationship, you will make entries like:
    01 O 1001 B002 Activate box checked
    01 O 1001 B003 Activate box checked
    Here, 01 is your active plan version, O is org. unit, 1001 is infotype and B002 and B003 are the subtypes. You can also use * for infotype and subtype which means every change will be logged.
    If you then run the report RHCDOC_DISPLAY through SA38, it will pick up all the changes pertaining to B002 and B003 relationship for org. units (in the above example).
    Similarly, you can set up this table for other object types.
    For more information, follow SPRO>Personnel Management>OM>Basic Settings>Activate change documents and go through the documentation for that node. Also, read up the documentation for the report.
    Hope this helps.
    Donnie

  • For production - Raw material & WIP after system Live

    Hi All,
    I have taken the cutover data with WIP value for GOLIVE; we have put the value in WIP in GL for trial Balance;
    After System Live, we are facing the two scenarios to map in system.
    u2022     Open production which has no needed more raw materials (all included in WIP) to completion of production order.
    We have uploaded the finish product with movement type -521 and reduce the value from WIP with help of manual entry; but below scenario have confusion how to map.
    u2022     Open production which needs more raw material (apart of WIP) to complete the production,
    Please guide to me how to map in system.
    Thanks
    Rajesh Tiwari

    Hi,
    The best practice followed is you need to close the legacy system production order and you need to create a new production order in SAP. Against the new SAP production order number, you can issue the raw materials.
    Regards,
    V. Suresh

  • Cancel Payment Program after Payment Run is executed

    Hi Friends,
    Can any one please tell me what should be the process to reverse payment program after executing payment run in F110.
    We executed Payment program, it cleared vendor open items but it did not generate the checks and looks like I need to cancel that payment program and regenerate it.
    Please help me.
    Thanks

    Check note 17975

  • Open production orders and outbound delivery after go-live

    Hello All,
    I tried to search answer for this question but could not find answer.
    Could anybody suggest, what to do with open production orders and outbound delivery after go-live when WM is activated. As, after go-live WM-PP interface will be activated and system should consume material from storage bin specified in control cycle and that will happen for newly created production order after go-live,but what about existing production orders how to update production supply area against work center in production order.
    Similarly with outbound delivery how to update WM status after go-live.
    Thanks in advance

    Thanks to both Jurgen and Sander
    Regarding production order yes, one way is to re-read PP master data in production orders, but is that the only way to handle this or do we have any other option?
    I was aware of re-read PP master data but it will real time consuming and also if it will problematic for already released or partially confirmed production orders.

  • In measurement doc.where to enter as on date counter readings after go live

    Dear All,
    After go live the sap system, user has to start creating the measurement document for counters which as follows.
    Suppose we have go lived on 1st feb 2010, so on that day already physical counter is showing following readings.
    Equipment - Counter - Current readings of meter (as on 1st feb 2010)
    DG Set - Running Hours - 3000
    Boiler - Running Hours - 2400
    Compressor - Running Hours - 3800
    Electricity meter - Units - 5800
    I am little confused about in which field of measurement document i have to enter the above as on date readings (1st feb 2010).
    Those fields are
    Counter reading
    Differnce
    I am also worried, because this is start of creation of measurement document & which makes basis for counter base preventive maintainence of equipment.
    Thanks & Regards,
    Sandeep

    Hi
    First time reading you entre in counter reading filed, then the subsequent daily reading you can entre in counter reading field or difference.
    It means, if you entre counter reading, system automatic calculate the difference (i.e current minus previous reading),
    or if you entre the difference, then system bring the counter reading as difference plus previous reading.
    Check these senerios in Quality and then you can take decision
    S Ramanujam

  • Use of half months in the company code configuration after  Go Live

    Hi,
    Our client has a requirement to activate the functionality of u201CUse of
    half months in the company code configuration in Asset accounting after 3 month of Go live.
    For the above purpose, we enabled the same in our Development server
    (DE5) after Go Live and we are getting some Errors at the time of Asset
    posting in F-90 and Asset Explore AW01N and even depreciation Run.
    Already we ran 3 months depreciation without enabling this
    functionality and now the client requires this in our Production server
    before running the 4 period depreciation.
    We are using the same Fiscal year variant (V3) at Depreciation area
    level for all our company codes. All other company codes enabled this
    functionality except one company code (NOPE) .
    So the client requires this Half month depreciation calculation
    Functionality in company code NOPE too.
    Please advice to resolve this issue at the earliest and its quit urgent.We are using the same depreciation key, asset class in all company codes.
    Thanks
    Man
    Error details,
    SYST: You cannot change the depreciation periods
    Message no. AA662
    Asset affected: 000016000025-0000
    Diagnosis
    Processing terminated because the number of depreciation periods in
    company code NOPE has been changed. However, you cannot change the
    number of periods in your live (productive) system.
    Procedure
    Change the depreciation periods back to the original value in company
    code NOPE. The number of depreciation periods is determined by the
    fiscal year version and the use of half-periods. At least one of these
    parameters was changed.
    If you want to change your system so that you can now work with half-
    periods, you have to use depreciation keys with time-dependent period
    control in that company code.
    If you need to make general changes to the number of periods for
    calculating depreciation per fiscal year, you will have to consult your
    system administrator

    hi
    If you refer to SAP Note 2993, it is not possible to change to/from half
    period. This is because the expired useful life are based on 12 periods
    and the system is not able to change this to 24 periods.
    To be able to change this settings under:
    Asset Accounting>Valuation>Fiscal Year>Use of Half Months in the
    Company Code.
    Company code must be in status  2 (Test company code with data transfer)
    Once you have finished your legacy data transfer you should set company
    code as productive to avoid this changes.
    Regarding error AA662,  it occurs if you change the number of period
    in the fiscal year version or the use of half-periods, after you have
    already posted to assets.
    The cause is a different value in field ANLB-PERFY which
    is the number of periods in the fiscal year.  If the number
    entered here does not correspond to the number of posting periods
    of the fiscal year used, the system raises error AA662 (except
    for none posted areas for which ANLB-PERFY = 000 or areas
    with depreciation to the date for which ANLB-PERFY = 365)
    If T093C-MONMIT = 15 (half periods), ANLB-PERYF = 012 is not
    correct. It should be 24.
    Please note that changing the PERFY value will not be sufficient because
    the expired useful life is calculated on base of PERFY. Thus PERFY has
    to be adjusted and the expired useful life also.
    Blaz.

  • We have a situation where in an existing application after go live we need

    We have a situation where in an existing application after go live we need to add a new dimention. The fact is after adding the dimension the existing data will not have any value against this dimension(will have only null values). If so will it create a problem in loading or reporting?. How to resolve it?.

    My experience (on BPC 5.1 MS, and earlier versions) has been as follows:
    1.) create a new dimension, with at least 1 member. Pay particular attention to which member is the first base member in the hierarchy. (If you're planning to have multiple hierarchies in this dimension, wait for now on the ParentH2 etc. Start with just 1 hierarchy until you've completed these steps.) Process the dimension.
    2.) add that dimension to an existing application. When the application is processed, all of the existing data is assigned to that first base member of the new dimension.
    3.) If that's not sufficient, and you want to assign some data to another member of this new dimension, either use the "Move" package, or write custom SQL script logic, to get the data assigned to the correct members.

Maybe you are looking for

  • Problem with Local DCs View in NWDS 7.0

    Hi! I' ve got a problem with Local DCs view in NWDS: None of the standard-DCs (BI_MMR, BI_UDI, CAF a.s.o.) can be expanded and show their content. I already reinstalled IDE, but without success. Has anybody got an idea? Thanks a lot in advance! Regar

  • Inserting PDF File in Reports 10g

    We are having oracle reports 10g Rel 1, We have product drawings stored as PDF File We wish to print this PDF Along with a report i.e when generating Purchase Order of a item the stored drawing in PDF format should also be included in the report for

  • Standart assignments in document for line item for certain ledger group

    Hi colleagues, I have a task to fulfill field order while posting asset retirement for certain G/L (91-2070000) and certain Ledger Group (0L). I've searched this in SPRO but can't find it. Maybe you can suggest where it could be customized. Thanks in

  • IDOC    re-issue

    Hi Seniors, 1) If IDOC fails, can we re-issue the same IDOC ? If yes, kindly tell me how ? 2) Where i can see IDOC types for Sales order, delivery, shipment,purchase order ? Kindly tell me please. Regards, JanaMM

  • Netbeans and junit

    Hi, I am sorry if this is the wrong place to post this but I need a quick answer. I have developed a school project in netbeans and junit. How can I execute the junit tests externaly to the IDE? Where is the junit installed? thanks, Sebastian