WBS or Proj.Defination at Vendor Line item

Hi,
can anybody help me by providing information as -
IS it possible to populate the WBS or project defination field to Vendor line item during logistic invoice verification.
as in our case we need the project wise vendor outstanding.
Or is there any other report thru which we can get the same report.
Thanks & Regards
Mahesh

Hi Mahesh,
In MIRO while entering Logisitics Invoice Verification, go to Details Tab and enter WBS number in Assignment.
It says "The assignment number is an additional information reference field in the line item.
The program can display the account line items sorted according to the content of this field.
You can either enter the field contents manually, or have the system define them automatically in the master record via the sort key field.
Regards
Tushar

Similar Messages

  • Need Profit Centre,WBS element fields in Customer/Vendor Line item display

    Dear Experts,
    In Standard SAP we do not have the Profit Center, WBS Element in Customer / Vendor line item functionality. Now we need to develop user exit, when User try to post transactions like MIRO, F-02, FB01 system should ask the Profit Center field and WBS Element field in Vendor / Customer line items.
    I dont know the actual functionality, The consultant has given example as 3 transactions, Do we need to update any other transactions also. If yes please provide me the information.
    Can anyone help me with the solution.
    Thanks in advance.
    Regards,
    Abdur Rafique

    I have used User exit, to obtain the above scenario.

  • Customer and vendor line item report FBL5N/FBL1N

    Dear all,
    Could you please let me know, whether there is any way that we can get cost center ans wbs element in customer and vendor line item report FBL1N/FBL5N.
    REgards,
    Suresh Patipati.

    Hi Suresh
    Through BTE1650 you can fetch it . for this you have to  do some development.
    You can add additonal field to FBL*N reports with using BTE exit.
    Regards
    SAP student

  • NEW GL: Customer/Vendor Line items cannot be displayed per business area

    Hello ECC 6.0 Masters!
    We have implemented Standard Document Splitting by Business area(BUSA). See below scenario..
    ENTRY VIEW
    PK     Account          Segment          Amount
    01     Customer               100
    50     Expense          BUSA1          60-
    50     Expense          BUSA2          40-
    GL VIEW
    PK     Account               Segment          Amount
    01     CustomerReconAcct     BUSA1          60
    01     CustomerReconAcct     BUSA1          40
    50     Expense               BUSA1          60-
    50     Expense               BUSA2          40-
    However after implementation we discovered that because the Customer/Vendor BUSA is blank in entry view, we now cannot derive reports that are normally based on the BUSA of Customer/Vendor line item, which we used to be able to do prior to implementing NEW GL.
    Some of them are below:
    1. Debtor Ageing Analysis (Standard)
    2. Customer/Vendor line items per BUSA (Standard)
    3. Several other Sublegder based custom reports we have that neeed to be categorized by BUSA
    My question now is..Is there a way to derive these Business Area information under Vendor and Customer account to produce our reports? Especially for the Ageing which is key to the business process of my client.
    I hope somebody there has experienced this before. thanks!
    Andrew

    Hi
    You will not get ageing reports based on BA after new gl migration. You need to bring the info from the new gl tables. one of the easiest ways is to get the info from the table FAGL_SPLINFO by passign BSEG-BELNR. For defining ageing reports in new gl use t code FKI3 and FDI3 for Vendors and Customers respectively.
    Regards
    Sanil Bhandari

  • Fbl1n txn for updating vendor line item

    hello every one iam trying to update vendor line item when a billing document get cancelled in vf11 i have tried bapi  BAPI_ACC_DOCUMENT_REV_POST .
    the requirement is whenever a billing document get cancelled the commision need to get credited again for example if vendor line item is
         St Assignment         DocumentNo Type     Doc. Date  S DD Amount in local cur. LCurr Clrng doc. Text
            COMMISSION         1700000014 CP       31.08.2011                    71.26- INR
    it need to get like this
         St Assignment         DocumentNo Type     Doc. Date  S DD Amount in local cur. LCurr Clrng doc. Text
            COMMISSION         1700000014 CP       31.08.2011                    71.26 INR
    that means the amount in local currency need to get into + one like above
    Please help ASAP & if some one give me code also that will be very helpul for me

    Hii ali this is my code & below iam showing u what wasthe data in  my return table please suggest me what to do
          DATA : P_REVERSAL     LIKE  BAPIACREV ,
                 TRAN_DOC(20)   TYPE  C         ,
                 p_busact       LIKE BAPIACHE09-BUS_ACT ,
                 p_objkey       LIKE BAPIACREV-OBJ_KEY  .
          DATA : P_RETURN  LIKE  TABLE OF  BAPIRET2  ,
                 WA_RETURN  TYPE  BAPIRET2          ,
                 WF_REMARKS  ,
                 PLANT     TYPE VBRP-WERKS         ,
                 bill_no   type vbrk-vbeln         ,
                 belnr     type BELNR_D  ,
                 AWKEY     type AWKEY    .
    data : date1 type sy-datum .
    date1 = sy-datum+0(4) .
    select single belnr AWKEY from bkpf into (belnr , AWKEY)    where blart = 'CP'     and
                                                     budat = sy-datum and
                                                     xblnr = vbrk-kidno . "bill_no .
          IF SY-SUBRC = 0 .
              CONCATENATE belnr AWKEY+10(4) date1 INTO TRAN_DOC .
            ENDIF .
      SELECT SINGLE WERKS  FROM VBRP INTO  PLANT  WHERE VBELN = vbrk-kidno .
            p_reversal-obj_type   = 'BKPFF'.
            p_reversal-obj_key    = tran_doc.
            p_reversal-obj_key_r  = tran_doc.
            p_reversal-pstng_date = sy-datum.
            p_reversal-comp_code  = tran_doc+10(4).
            p_reversal-reason_rev = '02'.
            p_reversal-ac_doc_no  = tran_doc+0(10).
            p_busact = ' '.
            CALL FUNCTION 'BAPI_ACC_DOCUMENT_REV_POST'
            EXPORTING
              reversal = p_reversal
              bus_act  = p_busact
            IMPORTING
              obj_key  = p_objkey
            TABLES
              return   = p_return.
                  IF sy-subrc = 0.
                ---commit Work
                        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
                          EXPORTING
                            wait = 'X'.
                  ELSE .
    *****Use the below statement, if the BAPI is sending back the 'RETURN' internal table.
                    READ TABLE p_return INTO WA_RETURN WITH KEY TYPE = 'F'.
                       IF SY-SUBRC EQ 0 .
                           CALL FUNCTION 'MESSAGE_TEXT_BUILD'
                          EXPORTING
                            MSGID = WA_RETURN-ID
                             MSGNR = WA_RETURN-NUMBER
                            MSGV1 = WA_RETURN-MESSAGE_V1
                             MSGV2 = WA_RETURN-MESSAGE_V2
                            MSGV3 = WA_RETURN-MESSAGE_V3
                            MSGV4 = WA_RETURN-MESSAGE_V4
                          IMPORTING
                            MESSAGE_TEXT_OUTPUT = WF_REMARKS.
                       ENDIF.
                    ENDIF.
    1     E     RW     609     Error in document: BKPFF $ DEVCLNT300          000000     BKPFF     $
    2     E     RW     632     Document BKPFF 1700000061WPL12011 DEVCLNT300 cannot be reversed          000000     BKPFF     1700000061WPL12011
    3     E     F5     814     Document type ZX not defined          000000     ZX
    4     E     F5     814     Document type ZX not defined          000000     ZX

  • In vendors line item display in FBL1N

    Hi SAP guru's
    could you pls check & let me know if the Cost center and WBS elements can be displayed in SAP transaction FBL1N- "Vendor Line Item display".
    as per your answer, cost center and wbs elements r displayed in FBL1N but i need to display values in CC & WBS Element. during the transaction in F-43 i have assigned cost center and wbs element accordingly but in FBL1N values r not displayed. pl let me know the reasons r the same. pl provide step by step i am fresher in sap
    hope u r sending the answer to me very soon
    regards
    venkat
    Message was edited by:
            Venkata Krishna

    Hello Venkata,
    Please click on the change layout button(on the screen of FBL1N scrren). Then you can drag and drop from the right sided column to left sided columnsthe field like cost centre and WBS element which you want in report.
    Hope this helps. please rewards points before closing the thread.
    Rgds
    manish

  • Vendor Line item with Opening and Closing Balances report regarding

    Dear All,
    I need a report for vendor line items with Opening and Closing balances.
    Thanks in advance
    Sateesh

    Hi
    Try S_ALR_87012082 - Vendor Balances in Local Currency
    Regards
    Sanil Bhandari

  • Vendor Line Items

    Is there any std BAPI or FM to get Vendor Line Items?
    Is there any database Table which shows all  Vendor line items (open and cleared)?
    Note : table BSIK shows only open line items.
    Thanks in advance. Points will be rewarded.

    hi Nikhil,
    yes, open items are in BSIK, cleared items are in BSAK. There is no table where you can find both! Acc. to my knowledge, there is no FM or BAPI to give back the information you need. You have to select from the tables. In fact you can find all items in BSEG (together with debitor and G/L items), but selecting from that table can take ages...)
    hope this helps
    ec

  • Vendor line item due date error

    I found the net due date in vendor line item report is not correct. vendor payment term is 30 days, accounting document posting date is Jan1. 2010,but net due date is Jan.1.2010, it should be 1.Feb,2010.
    why system calculate wrongly? Thanks

    Is it a credit memo ?
    For a credit memo the due date is the baseline date. This is the default rule. If you want that the credit memo is taken in account with payment terms, you must either link it to an invoice by filling the field REBZG with the invoice number either put the constant 'V' in the same field (REBZG). With 'V' in REBZG, the credit memo is taken in F110 according to its payment term.
    see documentation of data element REBZG.

  • Report: Vendor Line Items

    Hello Everyone,
    I would like to know, is there any report available with Vendor Line items with P.org and Plant, when i check the report FBL1N, there is no field available for P.org, and Plant field is available but plant is not getting updated.
    Actually there are some entries posted with reference to Purchase order (FB60), so my client wanted to get all the Vendor balances (Invoice as well as Payments) in one report with purchase details (P.Org and Plant)
    Regards
    Sudheer

    Hi Iqbal,
    Thanks for reply, with this reports which ever you send me, I can not get the detials FB60 line items, I need both documents (purchase related and non purchase related-FB60) in one report.
    Thanks

  • Withholding tax not able to view in FBL1N - Vendor Line Item report

    Dear All,
    The VI documents are posted in different vendors. The Tax code has been duly selected and tax was deducted at the time of posting the entry. When we generate the list of vendor line items using standard report FBL1N, we observe that only some of the VI documents in the output show the withholding tax amount in the respective column whereas in some of the VI documents, the withholding tax amount is appearing as zero even though the tax line item is available in the document (same can be seen in FB03).
    Please let us know the possible cause for the same.
    Regards,
    Anand.Inguva

    Dear,
    by FBL1N is not possible to check the Extended WT            
    information due to the technical reasons explained into the note               
    number 363309.                                                                               
    Furthermore please be aware that by the report RFKQST00 and          
    RFIDYYWT You can have all the WT details.                                      
    I hope this helps You.
    Mauri

  • Check number not getting updated in vendor line items

    Hi
    I am giving check to vendor. Hence i am assigning manual checks in FCH5. Then i did FCHU. After i did FCHU, my check number got updated in assignment field in bank line item. But i am getting problem for vendor line item.
    My vendor line item is not updated with check number. Hence i am unable to see what check number is issued against which payment document. I do not want to go in each every document and then click on environment and check information.
    I tried with check register also, but i am not getting vendor wise bank details smoothly.
    So i want to know how can i get check number in FBL1N vendor-wise. Is there any standard report?

    You should activate the PAYR-CHECF in FBL1N report. Execute FBL1N report for a vendor and go to Menu->Settings-> Special Fields. A new screen would open. There add the table PAYR and field CHECF. Save and exit out. Now the check number should be displayed in FBL1N report.
    Thanks,
    SD.

  • Regarding FBL1N(vendor line items)

    hi experts ,
    I have to display the opening balance(balance carried forward) with vendor line items ,I found the table n field name but don't know how to display in header or in <b>ALV</b> list.
    table name is <b>LFC1-UMSAV</b>.
    ldb is <b>KDF</b>.
    hope u understood the problem if no the pl ask for more clearification.
    thanks & rgds
    Abaper

    Hi,
    do it in line item:
    instead of belnr -  give out 'op.balance'  and
    instead of bsik-wrbtr - lfc1-umsav in your alv-table
    A.
    Message was edited by:
            Andreas Mann

  • Segregation of Vendor line items

    Dear SAP gurus ,
    I have the following requirement.I wants to segregate vendor line items into
    Opening           Purchases             Payments.
    Balances.
    I know how to segregate purchases and payments in my development report.
    But i want to know how i will get Opening balances as per the given period.
    Regards,
    Gopi.

    Hi,
    While executing the FBL1N, select the "Selection Variant" button the give the the period from which the report has to display. Here in selection variant you can include and exclude the values as per the requirement.
    Assign Points if it useful
    Regards
    Ravindra

  • Iterating through bseg line items and picking the vendor line item

    Hello,
    I am creating a report in which i want to show the list of vendors (with their WHT's). The output will be based on selection of a certain period(range). I guess i have to first iterate through BKPF and get those documents that lie in the given range, then i 'll have to iterate through the selected documents in BSEG and pick out the vendor line items (KOART = 'S'). Will i be using GET for this..
    Is this the right way? secondly, if yes, can sumone show me how to iterate through BKPF and BSEG and get vendor details.?
    Thanks..
    SHehryar

    Hey,
    Instead of selecting data from BKPF-BSEG you could use BKPF-BSIK-BSAK.
    BSIK and BSAK have the same details as BSEG and are use by SAP for reporting purposes.
    Similarly for customer the table are BSID, BSAD and for GL the tables are BSIS and BSAS.
    BSIK will have the open items and BSAK will have the cleared items.
    -Kiran

Maybe you are looking for

  • Help with Errors in JAVA

    I support a web site that utilizes the Sun Java viewer for viewing real estate documents. A very small percentage of our users will get the error: "Invalid tiff header, not mm or ii" when they try to view an image they have purchased. An even smaller

  • Keyboard Input and switch statement error

    Hi, Below is a program to read an alphabet and check whether its a vowel/consonent using switch statement. Its always executin' the default stmt and not going into the case 1. This is because the ascii value of the character is being stored rather th

  • JDBC to IDOC Scenario - select data in jdbc based on multiple conditions

    Hello      I have a JDBC to IDOC Scenario. I have to select the records in JDBC based on different conditions each time. For example I have to select based on company code '1000' and Employee claasification 'E1' and date range. After I post these rec

  • Banner page Setting Lexmark Printer

    Having problem in Lexmark printer E232 prints a header banner page prior to actual print job. The printer is on my small house network. I want to turn off this feature. Is there setting that control this feature that I turn off. Thanks in advance for

  • Taking Out The SIM Card Wears Out The SIM Tray

    I wanted to take the SIM tray out of my (black) iPhone 3G just to check the SIM card out. It slightly wears out the area around the hole on the SIM tray to do that, it looks exactly what would happen to cheap plastic. Did anyone else remove the SIM c