Query to get Vendor Name who is Customer also

Hi,
Can any one send me the query to find the Supplier/Vendor who is Customer also and vice versa.
I am in 10g.
Please suggest me some query to find out dis.
This is very imp for me.
Thanks

Hi,
I think you can use this table to cross reference between vendor and customer FV.FV_CUST_VEND_XREFS.In 11.5.10 this table act as cross reference between vendor and customer

Similar Messages

  • How to get Vendor name and Material text in FAGLL03 transaction?

    Hello All,
    I am executing FAGLL03 report which display Vendor No and material No in item level but I want Vendor name and Material text to be display for every vendor no. and material no.
    Please let me know any approach to do this?
    Thanks in advance.
    Regards
    Steve

    Hi Raymod,
    Again I am getting the same error after executing all reports and FM.
    Internal error in ANALYZE_ACT_FIELDCAT
    Message no. MSITEM012
    Diagnosis
    An internal error has arisen in the form routine ANALYZE_ACT_FIELDCAT for program RFITEM_INC.
    This is due to inconsistencies between table T021S (special fields) and structure RFPOSEXT.
    System Response
    During the processing of special fields in the line item list, errors and even a program termination may occur.
    Procedure
    Recreate the special fields in Customizing. If the error occurs again, contact SAP.
    Can you pls check it out in your system if you can?
    It is not working here ..
    Thanks and Regards
    Steve

  • How to get vendor name and invoice reference details in asset register

    Hi Experts,
    My client requirement is he want to see Vendor name and invoice reference filed in asset register.
    Is there any standard reports relating this requirement.
    Kindly Provide valuable information relating to this issue.
    Regards
    Madhan

    Hi Madhan,
    Let me know the t.code which you are getting asset data.
    Thanks

  • How do I get vendor name in FBL1N for multiple vendors

    Hi gurus.  When I run FBL1N for a single vendor, the vendor name shows up.  If I run FBL1N for multiple vendors, the list is subtotaled by vendor number, but the name goes away.  How can I get the vendor name show up when the list is for multiple vendors?
    Thanks
    Janet

    Well, we'll just have to deal with the header data.  It is REALLY strange to me that NAME1 is a field you can choose in this report but not in FBL1N.
    By the way, we try very hard to give our users a usable solution so that they don't have to download to excel.  However, SAP doesn't always cooperate......  : (
    Thanks again for your help today.  You have solved my problem.

  • Getting vendor name and addreess and as well Emp name &address details

    Hi Experts,
    1.Can any one help to fetch Vendor name and address details based on LFA1 and  ADRC tables.
    2.fetch  employee name and address details based on PA0001 and  PA0006 tables.
    Please tell me the addres field of a  employee in PA0006 table.
    Thanks
    Nagraj

    Vendor & Addr details
    Get Vendor Number from Lfa1-lifnr
    pass that to table lfa1-adrnr     "Address Number
    pass that address number to adrc-ADDRNUMBER
    get all address details from ADRC Table
    Employee Details:
    we have Personnel number is common in between PA0001 and PA0006 tables.
    so first we need to get Personnel number .
    after that we can get employee details from both tables.
    we will get Personnel numberfrom PA0003 table.

  • Query to get parameter name and value after ran the conccurent program

    Hi All,
    Query to get the parameter name and value for completed concurrent program using the request id. can any one help me in this regard.
    Thanks,
    Red.

    Red,
    I have tried the same query and it works properly here.
    I have submitted "Purge Signon Audit data" concurrent program with "Audit Date" parameter set to 01-06-2009, and here is the query output:
    SQL> select request_id, phase_code, status_code,
    argument_text, argument1
    from fnd_concurrent_requests
    where request_id = '739664';
    REQUEST_ID P S ARGUMENT_TEXT        ARGUMENT1
        739664 C C 2009/06/01 00:00:00  2009/06/01 00:00:00Regards,
    Hussein

  • ME2N report - ALV- How to get Vendor Name ?

    We use the ME2N (Purchasing Documents per Document Number), with the ALV scope of List.
    Is it possible to have the <b>Vendor Name</b> in this ALV grid ?
    The name is not offered in the COLUMN SET when pressing the "CHANGE LAYOUT" button.
    Thanks

    You are correct there is no vendor name available in the ALV grid for
    ME2N.  This is the way ME2N is presented in the standard with ALV.  To
    be able to view the vendor name you must use the classic view,
    alternatively your Basis people could create a copy of ME2N and include
    the field vendor name.
    Regards,
    Sunitha

  • How to get the name of a (custom) component

    Hi,
    I would like to know whether there is a way to get the name Xcelsius uses for instance in the Object Browser. Getting the components "name" property doesnt return this information.
    Thanks in advance.

    String myFileName = request.getRequestURL().substring(request.getRequestURL().lastIndexOf("/")+1);
    or with javascript
    <H1><script>document.write(document.location.href.substring(document.location.href.lastIndexOf("/")+1))</script></H1>
    bye! :)

  • Query to get the name of the tables used in a View?

    Hi,
    Could you please help me in getting the name of the tables used in a perticular view?
    Please help me out...
    thnx in advance.
    Thnx,
    Bits
    Edited by: Bits on Sep 14, 2009 2:15 PM

    There is no data dictionary table that stores this directly.
    - You could get the DDL used to create the view and parse that SQL. Depending on how complex the view might be, this could be relatively easy or highly complex.
    - You could get a recursive list of the objects that the view depends on (from ALL_/USER_/DBA_DEPENDENCIES) and trace those dependencies back to all the tables that the view depends on. If your view calls functions, however, this may or may not be what you're looking for. If you are selecting from just one table in the FROM clause but you are calling a function that references a dozen tables, do you want one row? Or thirteen? What about tables referenced in a correlated subquery in the WHERE clause?
    Justin

  • Query to get file name of field

    Hi folks,
    I have one field in SQL table with whole file names:
    e.g
    C:\Directory1\File 1.txt
    C:\Drirectory2\SubDirectory1\Image 33.jpg
    I need one query to show only the file names:
    e.g
    File 1.txt
    Image 33.jpg 
    What I need to do to get only the file names as result of query? 

    create table test (filenames varchar(100))
    insert into test values ('C:\Directory1\File 1.txt'),('C:\Drirectory2\SubDirectory1\Image 33.jpg'),('aaa'),(null)
    select Reverse(stuff(reverse(filenames)
    , Case when Charindex('\',reverse(filenames))>0 then Charindex('\',reverse(filenames)) else len(filenames) end
    , Case when Charindex('\',reverse(filenames))>0 then len(filenames) else 0 End
    ,'')) fileCol from test
    --Or
    SELECT Distinct Coalesce(S.a.value('(/H/r)[4]', 'VARCHAR(100)'), S.a.value('(/H/r)[3]', 'VARCHAR(100)'), S.a.value('(/H/r)[2]', 'VARCHAR(100)'), S.a.value('(/H/r)[1]', 'VARCHAR(100)') ) AS fileCol
    FROM
    SELECT *,CAST (N'<H><r>' + REPLACE(filenames, '\', '</r><r>') + '</r></H>' AS XML) AS [vals]
    FROM test) d
    CROSS APPLY d.[vals].nodes('/H/r') S(a)
    drop table test

  • Select query to get table names

    Hi,
    Can i retrieve a table name from a select query if i know value of one of the columns in the table?
    Glen

    Can't you take a look at the source code and see what table those values are coming from? That's likely the easiest solution.
    Barring that, you could use dynamic SQL, but it's going to be awfully inefficient. Something like
    FOR x IN (SELECT * FROM user_tab_cols WHERE data_type = 'VARCHAR2')
    LOOP
      EXECUTE IMMEDIATE
        'SELECT COUNT(*) FROM ' || x.table_name ||
        ' WHERE ' || x.column_name || ' = <<literal value>>'
        INTO l_cnt;
      IF( l_cnt > 1 )
      THEN
        DBMS_OUTPUT.PUT_LINE( 'Found the value' );
      END IF;
    END LOOP;This assumes that you know at least what data type the value is stored in. It's also going to generate a tremendous number of full table scans, so it'll be slow as molasses on a system of any size.
    Justin

  • Query to get the User who updated BP Catalog No. for an Item.

    Hi experts,
    I am trying to get the user id who updated BP Catalog No. for an Item. BPCatalog Number details are available in OSCN table. There is no BPCatalog No. field available in ItemMaster OITM, or in ItemHistory AITM. Also, I searched for history table of OSCN. I could not find it.
    Any help is appreciated.
    Thanks in advance,
    Parvatha Solai.N

    Hi,
    Thanks for your quick response and reply.
    Regards,
    Parvatha Solai

  • Query to get batch GLBATCH name for the invoices of AP and AR

    Please provide a query to get GLBatch name for an invoice of AR and AR.
    From one cursor iam getting invoice number and invoiceID of AP and AR.
    I have written query but it is taking much time
    select distinct gjb.NAME
    from gl_je_headers gjh,
    gl_je_lines gjl,
    gl_je_batches gjb
    where gjl.REFERENCE_2=to_char(:p_invoiceid)
    and gjh.JE_HEADER_ID=gjl.JE_HEADER_ID
    and gjh.JE_BATCH_ID=gjb.JE_BATCH_ID
    so iam getting performance problem.
    Please suggest if iam wrong.
    Waiting for your valuable suggestion.
    Thanks
    ganesh

    Hi,
    the version of Oracle E-Business Suite is R12
    and ORacle Database IS 11I
    Thanks & Regards
    ganesh

  • Report for vendor no., vendor name for good receipt documents on KSB1

    Hello,
    My client needs vendors on KSB1 report. I told them about offseting  account, but it doesn't show vendor for good receipt documents.
    Is there any place else they can view vendor, vendor name for those good receipt documents .
    Any MM report or AP report .
    Thanks,
    T.G

    Hi,
    Please go to FBL1N, In Dynamic Selection give document as "WE", this will give and enable Purchase Order Number
    This will give you Vendor Name, Purchase Order and  FI Document number or u can try MB51, there you will not get Vendor Name, but you will get Vendor Code, Material Document Number and Purchase Order Number
    Br,Vivek
    Edited by: View_taurian on Oct 22, 2011 12:01 AM

  • Vendor name and Vedor number in FAGLL03

    Hi All,
    My Client is running report for GR/IR, T-code FAGLL03, they want to see Vendor name and Vendor number columns in the report. I searched forums and got the answer for Vendor number but not clear
    My questions are
    1. I added field LIFNR in BSEG table in the SPRO and am able to see the vendor colum. If I transport to Test system, will I be able to see the vendor column? (in forums some one mentioned that they are not able to see the vendor column when they transport to Test system) they have been asked to run this program BALVBUFDEL, So I am concerned about this issue and want to know exactly what are the things that need to be done, what programs have to be run before transporting to Test system?
    Also we are using ECC 6.0 and the highest support package present in the system is SAPKGPAD15. So I dont think I need to install the OSS note 1034354, I checked the OSS note and the highest APPL level is 604? but just making sure about this Patch level and OSS note.
    2. Second, how to get the Vendor name cloumn in the report?
    Could someone give me solution? your help will be really appreciated.
    Thanks,
    Harter
    Edited by: Harter21 on Nov 8, 2009 2:57 AM
    Edited by: Harter21 on Nov 8, 2009 2:58 AM

    Hi Sanjay,
    Thanks for the reply. I understood that we get Vendor number from the Function module ITEM_STRUC_EXTENSION and when you run that FM it updates the vendor number in the Structure FAGLPOSYEXT. I want to have Vendor name side to Vendor number field. Can I get vendor name also from the same FM?
    I have tried in BSIS table and other OSS notes that are mentioned in that forum link but none of the OSS notes mentioned about the Vendor name and the vendor name is coming from LFA1 table and that has no connection with FAGLL03 report as far as I understand (correct me if I am wrong).
    If you have any idea please throw some light.
    Thank you very much,
    Harter.

Maybe you are looking for

  • Lines on your iPhone diplay?

    I suddenly found lines across the upper half of the display on my well cared for original iPhone. Genius Bar said that it needs to be replaced "the displays go bad after a while". this $600 smart phone should have given me alittle more service time,

  • Stat machine workflow task workflow status different values on different state activity(Approval level)

    i have developed the State machine workflow in which i am using default workflow task i have added one status dropdown and that is having approve or reject that i set using workflow task drop down values now my requirement is that when my workflow go

  • Create a file xml using dbms_xmldom

    i'm using dbms_xmldom to create a file xml. i use to create a node this line: IV_element:= dbms_xmldom.createElement(doc,'CATEGORIA'); dbms_xmldom.setAttribute(IV_element, 'natura','prova'); IV_node:=dbms_xmldom.appendChild(III_node,dbms_xmldom.makeN

  • Integration Testing on Business system to PI 7.0

    Hi, When i try to execute sldcheck transaction, i get a error statement like this: Calling function LCR_LIST_BUSINESS_SYSTEMS Retrieving data from the SLD server... <b>Function call returned exception code     4</b> But when i checked under Business

  • My Microsoft Word program crashes often!

    Ever since I updated to Lion, my microsoft word program crashes, often! More than often and as a PhD student this is becoming incredibly annoying. What Can I do to fix this problem? Do I need to up grade my writing programs, i.e. MS Word and Endnote?