Vendor Master report with address, telephone number & email ID

Dear All,
Kindly provide to me T Code for Vendor master report along with vendor address,Telephone number & email ID.
Krajesh

Hi Rajesh .... in case customer require specific information, you can also try using sap queries (trust me it is not as difficult as it sounds but the results are just great ;-):
queries
Table SZA1_D0100 have the following fields
SMTP_ADDR (E-mail Address) ; TEL_NUMBER ; MOB_NUMBER ; FAX_NUMBER
For address check table ADDR1_DATA
Common join should be Vendor among these 2 tables
Hope this helps !!!
Edited by: m_n_novice on Aug 7, 2009 11:08 AM

Similar Messages

  • Bank detials Maintained in Vendor master data with out Sort code / Bank Key

    Hi
    We have a Requirement of creating Japanese bank details in Vendor Master Record. But No Bank key / sort code is available.
    Even for Russian Bank accounts we donu2019t have any bank key / sort code available from client.
    System does not allow to create vendor bank details with out providing Sort code/ Bank key details.
    Is there is any way of creating bank details in Vendor master data with out giving Bank key details.
    Regards,
    Karunakar.

    Hi,
    I assume you fill in Sort Code in bank number field.
    In my company, our bank number is set not to duplicate bank key.
    So bank key is simply a reference.  And our bank number field is not mandatory.
    If you follow these settings, you can create an abitrary bank key for your vendor bank account.

  • Vendor master data with the company code

    Hi Friends,
       There is a requirement to pull out all the vendor master records with the company code.  I didnt find any standard report how can i pull the  same plz guide me...
    Thanks
    Prem

    check whether compounded infoobject (Material & Company Code) is available then you could create a report on that.
    Vikash

  • Vendor Payments Report with WBS Elements

    Dear Expert,
    I am looking a report for Vendor outgoing payment against WBS Elements.
    Is there any Vendor Payments report with WBS Elements in SAP? I have seen FBL1N but WBS Elements field is blank.
    Thanks
    Samiee.

    Hi,
    You mentioned WBS Element is blank; so please check in any one sample payment documnet whetehr WBS is maintained and if yes find which field it is populated. For eg; sometimes people populate this information in the text or assignment field. If that is the case then change the layout accordingly in FBL1N.
    Regards
    Sreekanth

  • How to generate report with dynamic variable number of columns?

    How to generate report with dynamic variable number of columns?
    I need to generate a report with varying column names (state names) as follows:
    SELECT AK, AL, AR,... FROM States ;
    I get these column names from the result of another query.
    In order to clarify my question, Please consider following table:
    CREATE TABLE TIME_PERIODS (
    PERIOD     VARCHAR2 (50) PRIMARY KEY
    CREATE TABLE STATE_INCOME (
         NAME     VARCHAR2 (2),
         PERIOD     VARCHAR2 (50)     REFERENCES TIME_PERIODS (PERIOD) ,
         INCOME     NUMBER (12, 2)
    I like to generate a report as follows:
    AK CA DE FL ...
    PERIOD1 1222.23 2423.20 232.33 345.21
    PERIOD2
    PERIOD3
    Total 433242.23 56744.34 8872.21 2324.23 ...
    The TIME_PERIODS.Period and State.Name could change dynamically.
    So I can't specify the state name in Select query like
    SELECT AK, AL, AR,... FROM
    What is the best way to generate this report?

    SQL> -- test tables and test data:
    SQL> CREATE TABLE states
      2    (state VARCHAR2 (2))
      3  /
    Table created.
    SQL> INSERT INTO states
      2  VALUES ('AK')
      3  /
    1 row created.
    SQL> INSERT INTO states
      2  VALUES ('AL')
      3  /
    1 row created.
    SQL> INSERT INTO states
      2  VALUES ('AR')
      3  /
    1 row created.
    SQL> INSERT INTO states
      2  VALUES ('CA')
      3  /
    1 row created.
    SQL> INSERT INTO states
      2  VALUES ('DE')
      3  /
    1 row created.
    SQL> INSERT INTO states
      2  VALUES ('FL')
      3  /
    1 row created.
    SQL> CREATE TABLE TIME_PERIODS
      2    (PERIOD VARCHAR2 (50) PRIMARY KEY)
      3  /
    Table created.
    SQL> INSERT INTO time_periods
      2  VALUES ('PERIOD1')
      3  /
    1 row created.
    SQL> INSERT INTO time_periods
      2  VALUES ('PERIOD2')
      3  /
    1 row created.
    SQL> INSERT INTO time_periods
      2  VALUES ('PERIOD3')
      3  /
    1 row created.
    SQL> INSERT INTO time_periods
      2  VALUES ('PERIOD4')
      3  /
    1 row created.
    SQL> CREATE TABLE STATE_INCOME
      2    (NAME   VARCHAR2 (2),
      3       PERIOD VARCHAR2 (50) REFERENCES TIME_PERIODS (PERIOD),
      4       INCOME NUMBER (12, 2))
      5  /
    Table created.
    SQL> INSERT INTO state_income
      2  VALUES ('AK', 'PERIOD1', 1222.23)
      3  /
    1 row created.
    SQL> INSERT INTO state_income
      2  VALUES ('CA', 'PERIOD1', 2423.20)
      3  /
    1 row created.
    SQL> INSERT INTO state_income
      2  VALUES ('DE', 'PERIOD1', 232.33)
      3  /
    1 row created.
    SQL> INSERT INTO state_income
      2  VALUES ('FL', 'PERIOD1', 345.21)
      3  /
    1 row created.
    SQL> -- the basic query:
    SQL> SELECT   SUBSTR (time_periods.period, 1, 10) period,
      2             SUM (DECODE (name, 'AK', income)) "AK",
      3             SUM (DECODE (name, 'CA', income)) "CA",
      4             SUM (DECODE (name, 'DE', income)) "DE",
      5             SUM (DECODE (name, 'FL', income)) "FL"
      6  FROM     state_income, time_periods
      7  WHERE    time_periods.period = state_income.period (+)
      8  AND      time_periods.period IN ('PERIOD1','PERIOD2','PERIOD3')
      9  GROUP BY ROLLUP (time_periods.period)
    10  /
    PERIOD             AK         CA         DE         FL                                             
    PERIOD1       1222.23     2423.2     232.33     345.21                                             
    PERIOD2                                                                                            
    PERIOD3                                                                                            
                  1222.23     2423.2     232.33     345.21                                             
    SQL> -- package that dynamically executes the query
    SQL> -- given variable numbers and values
    SQL> -- of states and periods:
    SQL> CREATE OR REPLACE PACKAGE package_name
      2  AS
      3    TYPE cursor_type IS REF CURSOR;
      4    PROCEDURE procedure_name
      5        (p_periods   IN     VARCHAR2,
      6         p_states    IN     VARCHAR2,
      7         cursor_name IN OUT cursor_type);
      8  END package_name;
      9  /
    Package created.
    SQL> CREATE OR REPLACE PACKAGE BODY package_name
      2  AS
      3    PROCEDURE procedure_name
      4        (p_periods   IN     VARCHAR2,
      5         p_states    IN     VARCHAR2,
      6         cursor_name IN OUT cursor_type)
      7    IS
      8        v_periods          VARCHAR2 (1000);
      9        v_sql               VARCHAR2 (4000);
    10        v_states          VARCHAR2 (1000) := p_states;
    11    BEGIN
    12        v_periods := REPLACE (p_periods, ',', ''',''');
    13        v_sql := 'SELECT SUBSTR(time_periods.period,1,10) period';
    14        WHILE LENGTH (v_states) > 1
    15        LOOP
    16          v_sql := v_sql
    17          || ',SUM(DECODE(name,'''
    18          || SUBSTR (v_states,1,2) || ''',income)) "' || SUBSTR (v_states,1,2)
    19          || '"';
    20          v_states := LTRIM (SUBSTR (v_states, 3), ',');
    21        END LOOP;
    22        v_sql := v_sql
    23        || 'FROM     state_income, time_periods
    24            WHERE    time_periods.period = state_income.period (+)
    25            AND      time_periods.period IN (''' || v_periods || ''')
    26            GROUP BY ROLLUP (time_periods.period)';
    27        OPEN cursor_name FOR v_sql;
    28    END procedure_name;
    29  END package_name;
    30  /
    Package body created.
    SQL> -- sample executions from SQL:
    SQL> VARIABLE g_ref REFCURSOR
    SQL> EXEC package_name.procedure_name ('PERIOD1,PERIOD2,PERIOD3','AK,CA,DE,FL', :g_ref)
    PL/SQL procedure successfully completed.
    SQL> PRINT g_ref
    PERIOD             AK         CA         DE         FL                                             
    PERIOD1       1222.23     2423.2     232.33     345.21                                             
    PERIOD2                                                                                            
    PERIOD3                                                                                            
                  1222.23     2423.2     232.33     345.21                                             
    SQL> EXEC package_name.procedure_name ('PERIOD1,PERIOD2','AK,AL,AR', :g_ref)
    PL/SQL procedure successfully completed.
    SQL> PRINT g_ref
    PERIOD             AK         AL         AR                                                        
    PERIOD1       1222.23                                                                              
    PERIOD2                                                                                            
                  1222.23                                                                              
    SQL> -- sample execution from PL/SQL block
    SQL> -- using parameters derived from processing
    SQL> -- cursors containing results of other queries:
    SQL> DECLARE
      2    CURSOR c_period
      3    IS
      4    SELECT period
      5    FROM   time_periods;
      6    v_periods   VARCHAR2 (1000);
      7    v_delimiter VARCHAR2 (1) := NULL;
      8    CURSOR c_states
      9    IS
    10    SELECT state
    11    FROM   states;
    12    v_states    VARCHAR2 (1000);
    13  BEGIN
    14    FOR r_period IN c_period
    15    LOOP
    16        v_periods := v_periods || v_delimiter || r_period.period;
    17        v_delimiter := ',';
    18    END LOOP;
    19    v_delimiter := NULL;
    20    FOR r_states IN c_states
    21    LOOP
    22        v_states := v_states || v_delimiter || r_states.state;
    23        v_delimiter := ',';
    24    END LOOP;
    25    package_name.procedure_name (v_periods, v_states, :g_ref);
    26  END;
    27  /
    PL/SQL procedure successfully completed.
    SQL> PRINT g_ref
    PERIOD             AK         AL         AR         CA         DE         FL                       
    PERIOD1       1222.23                           2423.2     232.33     345.21                       
    PERIOD2                                                                                            
    PERIOD3                                                                                            
    PERIOD4                                                                                            
                  1222.23                           2423.2     232.33     345.21                       

  • Pls help:sending oracle reports with desformat=spreadsheet to email

    Is there a way to send the reports with desformat=spreadheet to email(destype=mail). I tried to execute the commandline with destype=mail desname=[email protected] desformat=spreadsheet but I am getting a report with html type attachment. How could I make it xls(excel) instead of html

    When having lots of repeating frames and fields placed in a complex pattern, the Oracle Reports doesn't know how to place them in the .xls cells.
    You ought to have a second layout for the report (containing the same data) that would print when the desformat = spreadsheet and would be be rather simple in comparison to the one that would print when desformat=pdf/html.
    In case you have several repeating frames it is best to have all the fields in those frames placed and vertically aligned on the same row in the layout, from left to right. This should give a reasonable output.

  • How can i create Standard master Report with  Client standards .

    HI Gurus,
    We are creating somany reports. for each time we have to redesign same work.. My client has some standards every report should looks same. I mean Logo, Client Name, Color of the bar, font size, Style, Format, back ground color etc......
    Is there any way we can create one master report with all my client standards. Then developers no need to do same work again and again in each and every report.
    Please help me on this issue it will help lot of our developers time.
    Thanks in Advance for your help

    hi,
    even your question is really large and generic,
    a very good start is this blog,
    http://obiee101.blogspot.com/2008/09/obiee-setting-up-compagny-custom-skin.html
    also check from the same blog,all the threads related with skin.
    The main idea is to have configured all the views...images,logos,colors...and so on...
    As far as presentation of "letters" / "numbers" at reports , in the configuration of each column,you can select to be this style default for the whole scenario..(i,e, always calendar.date column has 11-verdana-bold size...and so...)
    Your most valuable tool is firebug,with this you can change the css....(more details in blog...)
    hope i helped....
    http://greekoraclebi.blogspot.com/
    ///////////////////////////////////////

  • Vendor Master details with email address

    Dear sir,
    How to get the list with all the vendor with address, contact nos. and email ids.
    pls let me know the T code for the same.
    devesh

    Hi,
    Using T-code MKVZ - List of Vendors : Purchasing, give input data purchasing organization, Account Group and execute the report display all vendor details which is already stored in data base and report top line click Change Layout button(blue color) it will open new window right side required data field selected and click <--- mark selected field come to left side and then press tick mark. now the report shown vendor related all data's are displayed.
    Hope, it is useful for you.
    Regards,
    K.Rajendran

  • Vendor master creation with Street1, Street2, email ids

    Hi friends,
    Here, I am trying to upload the data of Vendor Master. I tried creating the LSMW or BDC method, in both the cases, I could not upload the Street2, stree3, ..etc. some of the details. While executing the transaction XK01, we have that option to enter those details, but while doing the recording method, it is not appearing, as well as in the Standard method also. How can I attack this problem...! If any one faced the same please suggest.
    -Sarasijasri

    Hi sarasijasri ,
    I had faced the same problem, pls find the solution below.
    while doing recording for XK01.
    in the first screen of recording you will get an option as "USE CENTRAL ADDRESS MANAGEMENT " pls select that and click on enter in the next screen you will get the required fields as you mentioned.
    Regards,
    Viswa

  • Vendor Master:  Name, Street Address and PO Address

    Hello SAP Gurus-
    I am working on a Vendor Master cleanup hopefully to streamline our Vendor Master Data.  We have data in all fields of the vendor master for address and in effort to decide on what to do with the SAPScript for checks, we would like to know what we have in what fields. 
    Is there a table I can use that shows all the fields with values for all Vendors?  LFA1 is not showing street address or PO Box Address.  I found S_ALR_87012086 but that doesn't show all fields either.
    Thanks!

    Well, perhaps your installation is doing things a little differently, but I use ADRC for most stuff, except for email address...There are POBox specific fields, such as city, zip, etc., in ADRC.  Occasionally, I've used ADR2, 3 and 6; somewhat rarely, though, except for email retrievals.  But, no, there's not a single table, everything in one, for SAP business partners. 
    Perhaps there's a BAPI or Function Module that would be helpful to you, like BBP_VENDOR_GET_DATA2 or BAPI_VENDOR_GETDETAIL.
    Yes, Rob, we gotta keep it complicated, so we can remain employed....lol.

  • VENDOR MASTER REPORT

    HELLO, In SAP MM there is a transaction s_alr_87012089 for general vendor master.And the standard report is RFKABL00.This report shows the value of fields F_new and F_Old if the created document in changed.But if the document is not chnaged it shows the **created**.i have to make changes such that instead of *created* it shows the values of the time of creation..plz help as its very urgent for me..i will be very thankful ...
    OR IS THERE ANY "NEW VENDOR REPORT"(STANDARD REPORT) IN SAP.PLZ HELP

    Use FBL1N transaction.

  • Changed reconciliation account in vendor master - Report FAGLF101

    Hi
    When a Recon account is changed in the Vendor Master, a report has to be run to post the adjustment entries using T-Code FAGLF101.
    The query is that, the report posts the adjustment entries through an adjustment account but at the same time also reverses the effect on the first day of the next month.
    Is there a way to stop this reversal. Though I do not select the reversal posting date, system is reversing the entry.
    Further, why is the Recon account not posted to rectify the entries?
    Regards
    Abhishek Kumar

    Hi
    For changing the reconciliation account in Vendor Master and customer master, please follow the following steps.
    1. First change the reconaccount in the customer / vendor master
    2. run the program SAPF101 for adjusting balances of old recon account to the new recon account.
    Problem will be solved.
    I hope it will  clarify your doubts.
    Regards
    Madhav

  • Vendor master record international address

    I have a client in Kazakistan with SAP release 4.7.
    They need to manage vendor master records in 3 languages (Kazak, English and Russian).
    How can I manage this with SAP?

    Hi:
              Kindly refer to OSS note 810571... Vendor name in logon  ...However If you want the field labels in vendor master data as well in chinese, then you need to be able to logon in Chinese , hence Chinese language should be installed in System.
    Regards

  • PR or PO report with Sales Order Number

    Friends,
    Is there any report with PR Number & Sales Order Number or PO Number & Sales Order Number
    Regards
    Banniar

    hi,
    VBAK SAles doc header data
    VBAP sales doc item data
    VBEP - sales doc schedule line data
    VBFA - sales doc flow...in it VBELV gives preceding doc...and VBELN gives subsequent docs....
    hope it helps...
    Regards
    Priyanka.P
    Edited by: Priyanka Paltanwale on Sep 23, 2008 6:38 AM

  • Vendor Master Reports

    Hi Guys,
    Do you know any reports which will get the vendor reports containing their name, address and email details per company code?
    What is the table the holds email information for vendor

    Hi,
    You can get your required data with LFA1 table.
    Enter SE16 t-code, then enter LFA1 table.
    Enter vendor codes and click on execute button.
    Also check LFB1,
    Regards,
    Mahesh Wagh

Maybe you are looking for