FBCJ transaction - ignore TDS  for vendor

Hi Experts,
I am posting a payment to a vendor in FBCJ transaction. That vendor is liable for TDS. But while posting in cash journal I want to ignore the TDS amount.
My query is  how to ignore the TDS for this vendor while posting through FBCJ ?
Kindly suggest..I will assign good points for helpful answers.
Regards
Roomi

hi
GO TO IMG>TREASURY>CAH MANAGEMENT>MASTER DATA>SUBLEDGER ACCOUNTS>VENDOR CONTROL>MAINTAIN VENDOR ACCOUNT GROUP
AND MAKE TDS AS OPTIONAL FILED INSTEAD OF REQUIRED FOR YOU COMPNAY CODE AND VENDOR.
PLEASE ASSIGN POINTS IF HELPFUL.
THANKS
IRFAN

Similar Messages

  • Can we make use of Transaction code FKMT  for vendor line items

    Hi
    Please advise me whether we can make use of Transaction code FKMT (Account assignment model) for vendor line items as follows:
    For Example:
    Expenditure Account      Dr.       Rs.1000
             To Vendor A                                      Rs.100
             To Vendor B                                      Rs.100
             To Vendor C                                      Rs.100
              To Vendor D                                      Rs.700
    Also please advise me what to give parameters
    Thanks and Best Regards
    Shekhar
    Edited by: Shekhar Yecham on Sep 19, 2008 7:05 AM
    Edited by: Shekhar Yecham on Sep 19, 2008 7:10 AM

    Dear Kulakarni,
    I found few of my fields in 0FI_AP_4.I did n't find few fields can i enhance the Datasourse.
    What is the respective Cube for that  Datasourse.
    I check  0AP_30,but in Business Content that cube is not available.
    Could you please give me guidance.
    Thanks in Advance,
    Srinivasan.

  • Lower deduction of TDS for Vendors

    Dear Experts,
    My client requirement is,when the vendor gets an exemption certificate from income tax authority for a certain percentage for a particular Threshold limit  after that the system has to calculate the normal TDS rate.
    I have gone through the different thread but could not find the proper solution.
    Please guide how to configure the system to calculate TDS for a lower percentage upto the threshold limit...after that normal TDS should apply.
    Regards,
    Venkat.

    Hi,
    You can maintain exemption % in vendor master but there is no feature to define the limit and deduct tax as per the limit.
    You can meet this requirement by defining formula in the path IMG - FA - FA Global settings - WHT - Extended WHT - Calculation - WHT codes - Define formulas for calculating WHT.
    Here you can define the reduced tax rates and exempted amount to be deducted for the tax type & code combination.
    Regards,
    Jyoti 

  • Payment to one vendor and charge TDS for other no.of vendors against same invoice

    Is it possible to book invoice and payment to one vendor and charge TDS for other 3-4 vendors against same invoice.
    Is there any config require and any such process exist?

    Hi,
    Please go through the following process and see whether it suffice your requirement
    1. Create Vendor Invoice.
    2. Go to transaction code F-53
    Click on
    Click on
    Click on
    Click on Document - Simulate
    If entry is found O.K. Click on
    Hope, this solves your issue else revert.
    Regards,
    Tejas

  • Validation for FBCJ transaction  for section code

    hi
    i am trying to create validation for cash documents posted through FBCJ transaction . by using ob29 transaction i have created validation it is working fine when i am posting entry f-02 but not validating documents which posted through FBCJ .
    why documents are  ignored when i am posting through FBCJ . is there any deferent  way to validate documents posted through FBCJ ? 
    prerequisite :- based on company code
    check  :-  based on  section code ' ' (blank)
    message :- just information msg
    thanks in advance
    sachin

    hi
    i am trying to tally  the balances for AR03 with f.01 but i am unable to match it . now what difference i am getting i am not able to trace it back .because when i uploaded assets that time some difference was there because of some assets value and postings .
    now through ar03 i am getting dieffrent gross values,accumulated depreciation  , wip , net values .
    is it possible to match both transaction balance ?
    so if i have to match the balances for both the transactions what point i have to consider and which area i have to focus ,
    in asset closing procedure which trace points are available .
    like f.01 balance in fixed , now i can change in asset area only   
    thanks in advance
    sachin

  • BAPI for Vendor Non-PO Invoice processed through MIR7 Transaction

    Hi All,
    I have a requirement where i will get data from flat file. Using this data Vendor Non-PO Invoice
    will be processed through MIR7 transaction with Multiple line items - Invoice Upload Parking the document for vendor non-po invoices.
    The data is in below format in flat file:
    Header fields in 1st line
    Dr. Key related fields in 2nd line
    Cr. Key related fields in 3rd line
    Header fields in 4th line
    Dr. Key related fields in 5th line
    Cr. Key related fields in 6th line
    etc .... in flat file
    In these main fields coming in from flat file are: comp.code, doc.type, vendor no,
    Debit/Credit indicatorSHKZG, G/L a/c no, inv/post dates etc..
    My issues:
    1. I am planning to use F.M BAPI_INCOMINGINVOICE_PARK is it the correct F.M!
    But Here PO number seems to be mandatory for this F.M but it is not available as per our flat file,
    if so can anybody suggest a BAPI for Vendor Non-PO Invoice parking for MIR7 transaction!
    2. What are the parameters need to be used for from above flat file data especially for 2 line itemshttp://Dr./Cr. data other than header data. So as per Header & 2 Line items http://Dr. & Cr. Data which parameters will be updated with which data in above flat file! can anybody clarify!
    3. Also in flat file WorkflowNo is available in which parameter this fields will need to be filled & also by doing this will it trigger workflow automatically!
    Can anybody clarify about above points!
    Thanks in advance.
    Thanks,
    Deep.

    Hello Deep,
    I know it might be quite late for you for this answer, nevertheless I will write that, because there are lots of question like yours. bapi_incominginvoice_park is also a suitable bapi for you. All you need to do is call it this way:
    data: headerdata like bapi_incinv_create_header value is initial,
            table_item type table of bapi_incinv_create_item,
            gl_account like bapi_incinv_create_gl_account,
            table_gl type table of bapi_incinv_create_gl_account.
    * fill headerdata and table_gl, leaving table_item empty
    CALL FUNCTION 'BAPI_INCOMINGINVOICE_PARK'
        EXPORTING
          HEADERDATA                = HEADERDATA
    *   ADDRESSDATA               =
        IMPORTING
          INVOICEDOCNUMBER          = lv_docnr
          FISCALYEAR                = lv_year
        TABLES
          ITEMDATA                  = table_item
    *      ACCOUNTINGDATA            = table_acc
          GLACCOUNTDATA             = table_gl
    *   MATERIALDATA              =
    *      TAXDATA                   = table_tax
    *   WITHTAXDATA               =
    *   VENDORITEMSPLITDATA       =
          RETURN                    = lt_return.
    This works perfectly for me, creating a mir7 document without refering to a PO. The trick here is to fulfill the glaccountingdata importing table while leaving itemdata empty.

  • Tables for vendor invoice no, date, amount, tds, deduction

    Hi experts, i m new to implementation. i m now doing report for vendor payment voucher.
    as per per the payment voucher no and date, in item data i want the tables stores the vendor invoice no, date, po no after MIGO & MIRO,  bill amount, tds, deduction (debit note, advance etc).
    regards
    thanks in advance.

    hi,
    LFA1
    LFAS
    LFAT.
        These tables is not useful for now for Report of Vendor payment voucher.
    In header data, i want pament voucher no, date, vendor no, name(i got in table-field REGUP-VBLNR, regup-bldat, regup-lifnr &  lfa1-name1)  .
    now i want in item data vendor invoice no, date, GR no, date, invoice amount, tds amt, deduction amt (separately like advance amt, debit note etc).
    till now i found invoice no,  inv amt (table-field BSIK-BELNR, BSIK-DMBTR).
    Now i need GR no,  GR date, tds amt, deduction details amt.
    Plz send with table-field names, and how to relate with above.
    regards,
    debendra

  • Hi what is the transaction code for vendor master delete

    hi
       what is the transaction code for vendor master delete? and customer master delete?
    thank u
    surya

    Hi
    There won't be any Deleting of customer and vendor completely
    we only BLOCK them
    FK05                   Block Vendor (Accounting)
    MK05                   Block Vendor (Purchasing)
    XK05                   Block Vendor (centrally)
    FD05                   Block Customer (Accounting)
    VD05                   Customer Block (Sales)
    XD05                   Block customer (centrally)
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Interest Caluculation for Special G/L transactions for vendor

    Dear All,
    Could you please tell me the scenario of interest calculation for Special g/l calculatios for vendors.
    Thanks,
    sudhan

    Hi Atif,
    I've made all the changes that you have suggested, but the problem still remains. For Reconciliation account that I'm using, I've changed Field Status Group from Payment to "Optional", and the same to posting keys for Special G/L transaction.
    The Note 9344 is about this problem. Do you know if it still remains?
    Thanks!

  • Agewise Reports for Vendors - Transaction Code?

    Agewise reports for Vendors are needed.
    What would be the best way and the Transaction code?

    Hi Bhatia,
    Transaction code F.42 via Information systems > Accounting > Financial accounting > Vendor accounts > Account balances ; you may find the balances and movements for different periods by varying the reporting periods and years.
    Hope this helps.
    Please assign points as way to say thanks

  • Subcontacting challan for tds with vendor name report

    hiii..
    when i see the line items of g/l account  by fbl3n  for "TDS for subcontarcting Challan"  here vendor name not display...
    can i get the report in any table "subcontacting challan for tds with vendor name"?
    Thanks & Regards
    Rekha Sharma

    Hi
    With_Item is the table where you can see exhaustive details relating to Withholding tax.
    Go to SE16 >> Enter "WITH_ITEM" >> Give your selection criteria >> Execute
    Regards
    Srini

  • Cutting stock (mill_cut transaction) for vendor consignment

    Dears,
    We encountered a business process: cutting stock vendor consignment (special stock indicator: K)
    Meaning that 1 had a big batch, and it should be cut into smaller batches.
    In standard sap, there's a transaction called "mill_cut": cutting stock transfer.
    We are using it to cut the normal stock without any problem. Any one have ideas that if standard sap also support the mill_cut for vendor consignment stock?
    Underneath the mill_cut transaction, the configuration is movement type 309. (material to material movement).
    Best regards,
    Vincent Shen

    Check Note 1480316 - Error C+ 602 for usage from vendor consignment
    thanks
    G. Lakshmipathi

  • USER-EXIT for FBCJ transaction

    Hi there good people,
    I'd like to ask You if there is some possibility to change button's functionality in FBCJ transaction. I mean 'post'  and 'save' buttons.
    I see there are no user-exits in FBCJ, (no CALL CUSTOMER-FUNCTION ...) so ... maybe You know some other way to catch the 'post'  or 'save' action in code and make own code-enhancement ?
    I'd be thankful for suggestions. Greeting. P.

    BADI idea looks very interesting. We've got 4.6c system
    I'm checking the SE15, I can see there:
    -> tree (R/3 Repository Information Sys)
      -> Envir.
        ->Exit techniques
          -> Business Ad-ins -> here I'm choosing Definitions
    In the selection screen I'm entering CJ_DOCUMENT into a Definition name field, press enter and got
    No objects correspond to the selection criteria
    (PS. When I choose SE18, and search for 'CJ*' I can only find the 'CJ_DSAL_FUNC - BADI for DSAL for Including Customer Functions')
    So where can I find the CJ_DOCUMENT BADI? Or maybe I have no CJ_DOCUMENT BADI ?

  • FI-STANDARD SCRIPT FOR FBCJ TRANSACTION CODE

    Hi All,
    I need to change the standard script for FBCJ transaction code, Can some one help to get the standard Script name.
    Actually i need to remove IDES and place logo.Where to configure the Custom Script.
    Thanks in Advance.

    this is the path to assign customized Sapscript for cash journal
    Financial Accounting Bank accounting Business transaction  Bill of exchange transaction Bill of exchange receivable Bill of exchange receivable Failed payment transactionMake and check settings for correspondence Define form name for cores pending Printing
    please try this i hope that this will be useful to All.
    assign Customized Sapscript in place of the standard one for CASH JOURNAL
    Edited by: NareshBD on May 12, 2011 3:13 PM

  • T.code FB15: is there a similar transaction for Vendors?

    Hi All,
    could anyone tell me if ther's for Vendors a transaction like FB15 available in SAP for Customers?
    Thanks
    Gandalf

    You don't need to do this and there is no way to do it anyway. All that you need to do is to set your syncs preferences for the content that you want to sync to each device. I sync three different iDevices to one iTunes library on my MacBook Pro and each device has its own unique content.
    Here is an example of how to do this using Music as an example.
    Connect the iPad to the Mac and launch iTunes.
    Click on the iPad name on the left side under devices.
    Click on the Music Tab on the right.
    Click on all of the albums or playlists that you want to sync - or the entire library if you like.
    Click on the Sync Music Heading.
    Click on Apply in the lower right corner of iTunes
    One thing that would make this process easier is to turn off auto syncing. You don't have to turn it off, but if you have to remember to initiate the sync each time that you sync, you have a chance to go through every tab in the iTunes window and think about what you want to put on each device before you sync.
    You can turn off auto sync by launching iTunes and go to iTunes>Preferences>Devices and click the box at the bottom that says - Prevent iPods, iPhones and iPads from automatically syncing,

Maybe you are looking for

  • Maddening issue with text... trapping?

    I have recently taken over as acting editor for a PDF-only publication with a very small audience. My previous experience with InDesign has been with preparing files for CMYK printing, so this is my first opportunity to prepare a document specificall

  • How do I handle large resultsets in CRXI without a performance issue?

    Hello - Problem Definition I have a performance problem displaying large/huge resultset of data on a crystal report.  The report takes about 4 minutes or more depending on the resultset size. How do you handle large resultsets in Crystal Reports with

  • Is the possible to have Business Area for CVD Clearing Account

    Hi Friends, Is the possible to have Business Area for CVD Clearing GL Account? If yes, then how can it be done/configured. Pls advice.

  • Aperture 3.3.1 update

    I have installed aperture 3.3.1 update but aperture still freezes not responding and I have to force quit...anyone know what else i can do now?? i'm running mac os 10.7.4 this issue has just happened last week after a bunch of software updates

  • Cisco Prime NCS v1.1 Eval Download

    Hello, I've been trying to download the evaluation of Cisco Prime NCS v1.1 from the eval page located at the below address so I could, well, evaluate it. https://cisco.mediuscorp.com/market/networkers/productView.se.work?/nxt/rcrs/proieidentity/=1984