FBL1N name of the vendor

Hi All
In FBL1N We can see the name of vendors for two company codes but having just added another company code we cannot see the names of the vendor for that company(blank field) although amount , due dates etc are displayed as line items...When I run the report with the company code selected for the three companies I find that the vendor names belonging to two companies configured earlier appears normally but not for the latest one
I have looked at the layout  and am looking the the FIBF
Does anyone have a suggestion

Hi,
Please kindly check the following wiki page , I believe it can help you with the reported issue.
[Vendor name FBL*N |http://wiki.sdn.sap.com/wiki/x/fg3cCw]
I hope I could be of assistance.
Kind Regards,
Fernando Evangelista

Similar Messages

  • Vendor name in the Journal entry PLD

    Hi all,
    I want to print the vendor name in the journal entry pld, what is happening is i have taken the Table as GL Account and the Column as Account Name, it is getting me the control account, but i dont want  control account i want the name of the vendor to be printed.
    And i have checked the system journal entry pld in that the name of the vendor name is printing correctly it has taken table as Journal entry rows and the Column as Bp/Account code i am also taking the same but it is not fetching me the name of the vendor,it is only fetchig the account code. So let me know how to resolve this issue.

    Solved by Myself

  • About the Vendor's Name Display Language

    Dear Experts
    I want to know is there have any methods that can let the Vendor name's display language equal with the R3 login Language???
    Exp. when I login R3 with English, and create PO by ME21N, the Vendor's display name shows English automatically.
            when I login R3 with Japanese, and create PO by ME21N, the Vendor's display name shows Japanese automatically.
    I created a Vendor 'ZTEST001' by the T-Code: FK01,
    In the default screen,
    I input an English Vendor Name into the Name column(LFA1-Name1),and I input a Japanese Vendor Name into the Name4 column(LFA1-Name4).  At the End, I setted  the Language 'English'.
    In the Internat. Versions screen,
    I input a Japanese Vendor Name into the Name column(LFA1-Name1),and I input an English Vendor Name into the Name4 column(LFA1-Name4).  At the End, I setted  the Language 'Japanese'.
    And then I logged into R3 with Japanese, by used ME21N I created an Inter-Co. PO documents, and I found the Vendor's name is English,not Japanese....
    Also
    I logged into R3 with English, by used ME21N I created an Inter-Co. PO documents, and I found the Vendor's name is also English.
    Best Regards.
    Zhang

    Finally,
    I added some BAdI source codes into IF_EX_ME_PROCESS_PO_CUST~PROCESS_HEADER
    to set English Vendor name for the vendor into 'Header text' automatically when user login R3 with English and to create  the PO.
    Thank you all.

  • How to dispaly vendor name to the next line

    hi all,
    i have made a smartform in which i have created a TEMPLATE.I have created Three column in which in the last column of SECOND RAW i am displaying VENDOR NO and VENDOR NAME.Now my requirement is this, if the name of the vendor is too long that can not be fit in that RAW than it will automatically display to the next line of column and raw
    Thanks & Regards,
    sappk25

    thanks

  • How to change the name of the column for dynamic query

    I would like to change the name of the column name to bidderone, biddertwo and bidderthree. the only problem is the vendors name unknown when I run the query and sometimes the query returns two vendors. the maximum vendor is three. here is the query and please let me know how this can be done. thank you so much. I am using oracle 10i
    FOR lv_rec IN   ( SELECT vendor, calcbtot
      FROM (SELECT t.*, ROW_NUMBER () OVER (ORDER BY t.calcbtot Asc) rn
              FROM (  SELECT DISTINCT
                             s.vendor,
                             TO_CHAR (s.calcbtot, '999,999,999.00') calcbtot
                        FROM bidtabs b, bidders s
                       WHERE     b.CALL = s.CALL
                             AND b.letting = s.letting
                             AND b.vendor = s.vendor
                             AND b.letting = v_letting
                             AND b.CALL = v_call
                    ORDER BY 2) t)
    WHERE rn <= 3 )                 
       LOOP
          lv_sql :=
                lv_sql  || ', TO_CHAR(MAX(DECODE(TRIM(S.VENDOR),'''|| TRIM (lv_rec.vendor) || ''', S.BIDPRICE)),  ''$999,999,999.00'') AS "'|| TRIM (lv_rec.vendor) ||'" ';
       END LOOP;

    thank you so so much for your help on this. I am sorry i did not post the entire code. my intention is to use bidderone, biddertwo,bidderthree as a column name insead of the name of the vendors and also calcuate the average of the three vendors. the maximum vendor will be three but the minumum could be one or two. hope this is enought information to help me out further . thank you
    CREATE OR REPLACE PROCEDURE biddersquoteforbridge (
       p_spnumber   IN       VARCHAR2,
       p_result     OUT      sys_refcursor
    IS
       v_letting   VARCHAR2 (40);
       v_call      VARCHAR2 (40);
       lv_sql      VARCHAR2 (32767) := NULL;
    BEGIN
       SELECT DISTINCT L.LETTING, CALL
                  INTO v_letting, v_call
                  FROM LETPROP L, PROPOSAL P
                 WHERE L.LCONTID = P.CONTID AND CPROJNUM= p_spnumber;
       lv_sql :=
          'SELECT   O.PRPITEM "Item Number",
                    INITCAP(FUNC_GET_ITEM_DESCRIPTION(O.PRPITEM)) "Description",
                    O.CONTID "Contract Id",O.SECTION "Section" , P.CPROJNUM "SP Number", P.CFACSSUP "District",
                    FUNCT_GET_SECTION_IDENTIFIER(O.SECTION, O.CONTID) "Section Title",  ''Q''||(TO_CHAR(D.DATELET, ''Q-YYYY'')) "Quarter",
                    O.IPLINENO "Line Number", O.QTY "Quantity" ';
      FOR lv_rec IN   ( SELECT vendor, calcbtot
      FROM (SELECT t.*, ROW_NUMBER () OVER (ORDER BY t.calcbtot Asc) rn
              FROM (  SELECT DISTINCT
                             s.vendor,
                             TO_CHAR (s.calcbtot, '999,999,999.00') calcbtot
                        FROM bidtabs b, bidders s
                       WHERE     b.CALL = s.CALL
                             AND b.letting = s.letting
                             AND b.vendor = s.vendor
                             AND b.letting = v_letting
                             AND b.CALL = v_call
                    ORDER BY 2) t)
    WHERE rn <= 3 )                 
       LOOP
          lv_sql :=
                lv_sql  || ', TO_CHAR(MAX(DECODE(TRIM(S.VENDOR),'''|| TRIM (lv_rec.vendor) || ''', S.BIDPRICE)),  ''$999,999,999.00'') AS "'|| TRIM (lv_rec.vendor) ||'" ';
       END LOOP;
       lv_sql :=
             lv_sql
          || '
            FROM   PROPITEM O  ,                   
                   PROPOSAL P  ,
                   LETPROP  L  ,
                   BIDDERS  B  ,
                   BIDTABS  S  ,
                   BIDLET   D
             WHERE O.CONTID = P.CONTID
                    AND P.CONTID = L.LCONTID
                    AND L.CALL = B.CALL
                    AND L.LETTING = B.LETTING
                    AND B.CALL = S.CALL             
                    AND B.LETTING = S.LETTING
                    AND B.VENDOR = S.VENDOR 
                    AND S.IPLINENO = O.IPLINENO
                    AND L.LETTING = D.LETTING             
                    AND O.LINEFLAG =''L''    
                    AND L.LETTING = :B1
                    AND L.CALL = :B2
             GROUP BY
                   O.CONTID,
                   O.SECTION,
                   O.IPLINENO,
                   O.PRPITEM,
                   O.QTY,
                   P.CPROJNUM,
                   P.CFACSSUP,
                   O.PRICE ,
                   D.DATELET             
             ORDER BY O.IPLINENO ';
      -- DBMS_OUTPUT.put_line (lv_sql);
       OPEN p_result FOR lv_sql USING v_letting, v_call;
    END;

  • Block the Vendor Invoice & Vendor Invoice Payment

    Hi Experts,
    I need more information about Block the Vendor Invoice & Vendor Invoice Payment.
    and laso is there is any standard report is there to see the blocked invoices
    Thanks

    Hi Mazid,
    In F110
    On the Status tab, choose the Proposal (change) button.
    Select All accounting clerks and choose Enter. The list of vendors and amounts to be paid displays.
    To review invoices for a particular vendor, double-click that vendor's line. A list of invoices displays.
    To block a particular invoice for the payment run, put the cursor on that invoice and choose the Change button.
    Enter the payment block indicator and choose   Continue.
    To unblock a particular invoice for the payment run, put the cursor on that invoice and select the Change button.
    Delete the payment block indicator and choose   Continue.
    Try MRBR for to Review and Release Blocked Invoices, you can also use transaction FBL1N to list the vendor open items and change the payment block within the transaction
    Assign points if useful
    Regards
    Genie

  • I want to find the vendor balance as from fbl1n?

    Hi all,
    I am preparing a report where I need to get the vendor balance till date, for a particular employee, as I see in t-code fbl1n.
    Can anyone specify how can i get that in my report , where it is stored???
    Also I checked out t-code pc00_m40_term, where there is notice date and relieving date of employee.
    The relieving date is stored in pa0000, but where is this notice date stored, actually this is the resignation date, and i want it in my program.
    Any help would be highly appreciated.
    Regards
    Tarun

    Hi Tarun,
    I think you have to choose wrong forum.
    T-Code is related to SAP R/3 and its SAP B1 forum.
    choose right forum to get desired result.
    Thanks,
    Srujal Patel

  • Include the Vendor name in S_ALR_87012089 : Vendor Changes

    Hi ,
    The requirement is to add a vendor name to the report S_ALR_87012089 : Vendor Changes.
    Please let me know the feasibility and the way to achieve it.
    Regards
    Rudra

    Hello,
    You just need to modify the layout to add the field "Sort address of customer".
    Regards,
    Renan Correa

  • Display the Customer/Vendor Name in the General Ledger Report

    **I have Questions about General Ledger Report in SAP Business One. How can Display the Customer/Vendor Name in the General Ledger Report.**
    *Just would like to ask if its possible to display the Customer/Vendor Name in the General Ledger Report? The format simply have the Customer/Vendor Code on the said report. Is there a work around on this?*

    If ur selection creteria by g/l account,u can display customer/vendor name by including
    offset account from form settings.

  • Display the Customer/Vendor Name in the Check Register Report

    Just would like to ask if its possible to display the Customer/Vendor Name in the Check Register Report? The format simply have the Customer/Vendor Code on the said report.  Is there a work around on this?
    Thanks...

    Llowen,
    You may develop a Query like this
    SELECT T0.CheckNum, T0.PmntNum, T0.VendorCode, T0.VendorName,  T0.TaxDate, T0.CreateDate, T0.PrnConfrm, T0.CHECKSUM FROM OCHO T0
    WHERE T0.Canceled = 'N' AND (T0.CheckDate BETWEEN  '[[%0]]' AND '[[%1]]') OR (T0.CheckNum BETWEEN '[[%2]]' AND '[[%3]]')
    Suda

  • The Customer/Vendor Name in the General ledger Report Form.

    I have Questions about General Ledger Report in SAP Business One. Display the Customer/Vendor Name in the General Ledger Report.
    Just would like to ask if its possible to display the Customer/Vendor Name in the General Ledger Report? The format simply have the Customer/Vendor Code on the said report. Is there a work around on this?
    Please help me.

    Hi,
    In the Standard Reports, you cannot add a new column.
    As mentioned by me earlier, please check 'Offset Account Name' column in the Form Settings if the same is of help in your case.
    You can check Note No. [1045356|https://websmp130.sap-ag.de/sap(bD1odSZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1045356] regarding the issue. The same has been fixed in 2005 A PL23.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • How to get the VENDOR NAME in the report s-ME80FN,MB51

    Dear friends,
    In many sap standard reports we are getting the vendor no. or material no. etc., What to do if we want vendor name in the reports ME80FN AND MB51?
    bye
    TS

    Hi Guys,
    Go for enhancement of RM07DOCS......
    add new variable as shown below,
    DATA: BEGIN OF list OCCURS 0.
             INCLUDE STRUCTURE itab.
    DATA: maktx LIKE makt-maktx,
           name1 LIKE t001w-name1,
           btext LIKE t156t-btext,
           pspid LIKE prps-posid,
           vornr TYPE vornr,                                     "215929
           color_line(03)       TYPE c,                          "n555
           color TYPE slis_t_specialcol_alv,
    *{   INSERT         IDEK900044                                        1
        vd_name1 type name1_gp,
    Also add the variable if required.
    Then go for Deatil_list and add the further coding.....
    Problem get resolved......

  • Vendor name in the "assignement" area

    Hello all
    I have a problem with the "assignemen" area(ZUONR) in the fi document, and iI want this area filled with the vendor name(name1).
    I have created  a sort key with the  "name1" and put it in my vendor master data. But after that the vender name did not display in the vendor item of fi document.
    Could you help me?
    Thanks a lot.
    Best regards.
    Youqiao

    Hi,
    After the assignment of Sort Key did you create a vendor document and test or you are checking with the existing as the existing document will not change anything I hope already you know this.
    As per you comments it should work.
    Please check this link
    Creation of Sort key
    See if it is helpful

  • Display vendor name in the additional costs details for the PO

    Hi,
    I was wandering if there is any possibility to display vendor's name in the additional costs detail in the conditions tab in PO.
    As for standard, only the vendor number is shown.
    Regards.

    Hi,
    It is not possible to view the name of vendor there in "Addiitonal Data" screen for the condition type.

  • To bring the Vendor name & Code in FBL3N Report

    Hi Friends,
    As we need to bring the Vendor name / Code in FBL3N report, we have given the settings in the SPRO ( SPRO>Financial Accounting>General Ledger Accounting>G/L Accounts->Line items>Line items Display-->Define special fields for finding and sorting data ) by putting of BSEG table and assigned the same with LIFNR field and transported the same to Development server for testing, but after transport, the above requirements are NOT coming while we run the FBL3N report,
    Please guide me to bring the same in FBL3N as it is important requirement for us.
    Thanks
    G. Jana

    Hi
    If you are on ECC 6.0 you can use report FAGLL03. However, if you need to get vendor name also, you need to do refer to link
    Re: adding a field to FBL3N
    Regards
    Sanil K Bhandari

Maybe you are looking for