Vendor tobe searched on the base of Vendor Account Group

Hi,
I want to search a vendor on the base of their account group of that vendor
Eg. While creating a PO in ME21N for vendor field in F4 option , i want to get the vendor account Group also to simplify my search.
is it possible thru search help customizing or else whether ABAPer help is required.
With Rgds,
Krishna.

Hi Krishna,
Go to ME21N--Click on Vendor and press F4.
Select the Tab for " Vendors". Here you can see the field as "Account group".
NOw here you can refine your vendor search based on  account group.
Rgds
Utsav

Similar Messages

  • Data required on the basis of Profit center group.

    Hi,
        Is there any table or report from where we can find out the values of customer, cusotmer description, city, GL Account, GL description, amount, sales document or sales order on the basis of PROFIT CENTER GROUP.
    Means i need the above details on the basis of  profit center group.
    Can anybody suggest on this
    Regards,
    Shree.

    Hi:
    Using this report, you can display according to profit center wise, not as profit center group wise.
    All the details are displayed accordling according to your requirement.
    Select the screen layout and select the fields you required.
    The Standard report is
    FBL5N - Display/Change Line Items
    Please let me know if you need more information.
    Assign points if useful.
    Regards
    MSReddy

  • Regarding Deletion or Archiving the Data based on Account Group

    Hi All,
    How to find the solution for Deletion or archiving the vendors in different SAP servers which is haviing account group.
    And tell me what is use for SARA Tcode?
    Please send documents or links..
    Can anyone help us ....its Urgent.....
    Thanks,
    Raj..

    hi,
    F58A - Archiving of Vendors.
    u can find all database tables for a particular object using SAra tcode.
    reward if hlpful.

  • Vendor report which gives the detail of vendor #, email,fax etc...,

    HI,
        Is there any report is SAP which gives us the details of vendor number, Fax number, email, alternate payee.
    or is it suggestable to have a customized report for this.
    Can anybody have anyidea on this.

    hi,
    /n --->accounting --->financial accounting --->account payable -
    >infomation  -
    >reports for a.p accounting  -
    >master data
    s_alr_87012086--vendor list
    in that give from vedor account no 2 to ac number
    select adress & telecom
    assign points if useful
    with regards
    santosh kumar

  • Default of Profit Center in the Documents on the Basis of GL Accounts

    Hoe to default the profit center in the Documents on the basis of the GL Accounts.

    In 3KEH set up a default profit center for a particular account. If a company break down is needed, set up the account first to dummy. Then select Prctdet. There you assign the GL account to the profit center and company.
    pls assign points if helpful as a way to say thanks.

  • Search for the exit of clear account

    Before saving, I want to get the datas of clear account and cleared account which saved in table BSIK and BSAK. Could anybody help me with the exit. Many thanks.
    BTW the standard posting account exit 00001030 can not satisfy my requirment.

    Try the following:
    set echo on
    column segment_name format a30
    column tablespace_name format a15
    column owner format a15
    select tablespace_name, owner, segment_name, bytes/1048675 SizeM
    from dba_segments
    where (tablespace_name, bytes) in (
    select tablespace_name, max(bytes)
    from dba_segments
    group by tablespace_name
    This will find the largest segment. If you want to limit it to tables then add another where clause condition on segment_type = or in the types you are interested in.
    You can find dba_segments described in the Oracle version# Reference manual along with all the Oracle rdbms dictionary views.
    HTH -- Mark D Powell --

  • How to maintain the sequence of site account grouping in SRS

    hi gurus
    i am new to SAP and i want to know where i can assign the sequence of Account Grouping for stores in SRS

    You can use transaction WOSCR01 directly for this assignment, or you can call up assignment maintenance from the area menu for Retail Store administration (the area menu is in the SAP Easy Access Menu under Retailing -> Distributed Retailing). If you have to use this transaction more often, it is recommended that you also paste this transaction into maintenance for plant master data. This enables you to copy transaction WOSCR01 to your favorites in the SAP Easy Access Menu; you can also create a link in a suitable customer area menu (see transaction SE43).

  • Report on the basis of Vendor and item

    Hi all
    I want a report where i will select a "vendor" , "item"  and it will give me the quantity ordered for that particular quantity to that vendor line by line and also how much has been has been received against each line being displayed there

    Hi Rahul,
    I hope this is what you want... if it is not I have wasted too much time on this
    It is basically 3 queries that merges the results into one result set. The first query retrieves orders, goods receipts and invoices, the second query retrieves orders and invoices, the third just orders that's still open.
    Hope this will help you
    SELECT T1.DocEntry 'Order No', T0.LineNum 'Order Line', T0.Quantity 'Order Quantity',
           T2.DocEntry 'GRN No', T2.LineNum 'GRN Line', T2.Quantity 'Receive Quantity',
           T3.DocEntry 'Invoice No', T3.LineNum 'Invoice Line', T3.Quantity 'Invoice Quantity'
    FROM POR1 T0
    INNER JOIN OPOR T1 ON T1.DocEntry = T0.DocEntry
    INNER JOIN PDN1 T2 ON (T2.BaseEntry = T0.DocEntry) AND (T2.BaseLine = T0.LineNum) AND (T2.BaseType = '22')
    INNER JOIN PCH1 T3 ON (T3.BaseEntry = T2.DocEntry) AND (T3.BaseLine = T2.LineNum) AND (T3.BaseType = '20')
    WHERE T1.CardCode = '[%0]'
    AND T0.ItemCode = '[%1]'
    UNION
    SELECT T1.DocEntry 'Order No', T0.LineNum 'Order Line', T0.Quantity 'Order Quantity',
           '0' 'GRN No', '0' 'GRN Line', '0' 'Receive Quantity',
           T2.DocEntry 'Invoice No', T2.LineNum 'Invoice Line', T2.Quantity 'Invoice Quantity'
    FROM POR1 T0
    INNER JOIN OPOR T1 ON T1.DocEntry = T0.DocEntry
    INNER JOIN PCH1 T2 ON (T2.BaseEntry = T0.DocEntry) AND (T2.BaseLine = T0.LineNum) AND (T2.BaseType = '22')
    WHERE T1.CardCode = '[%0]'
    AND T0.ItemCode = '[%1]'
    UNION
    SELECT T1.DocEntry 'Order No', T0.LineNum 'Order Line', T0.Quantity 'Order Quantity',
           '0' 'GRN No', '0' 'GRN Line', '0' 'Receive Quantity',
           '0' 'Invoice No', '0' 'Invoice Line', '0' 'Invoice Quantity'
    FROM POR1 T0
    INNER JOIN OPOR T1 ON T1.DocEntry = T0.DocEntry
    WHERE T1.CardCode = '[%0]'
    AND T0.ItemCode = '[%1]'
    AND T0.LineStatus = 'O'
    Hope it helps,
    Adele

  • IB search on the basis of the account address

    Hi all,
    I'm working on SAP CRM 2007: I configured an Interaction Center Business Role, in particular on Service scenario.
    The account identification process develops through this steps:
    1) I identify an account;
    2) I confirm the contact person;
    3) I select one of the IBs accociated to the account I've just recognized
    If I would like to disply, after having identified the account and confirmed the contact person, all the IBs installed upon the account address, what I have to do? I mean, can I change the "rule" according to wich it is possible to choose an IB only among the ones are associated to account "name" with a new one that permits to display all the IBs installed in the same street of the customer (always after having identified the account)?
    Thanks & regards
    Stefano

    Hello Stefano,
    In transaction CRMC_IC_BPPROFX, in the Object Components folder, you can determine whether the automatic search for IObject/IBase components is done based on the account, the contact person, or both. Does this help?
    Regards,
    John

  • Can we limit the search count in Webcenter Imaging on the basis of user/grp

    Hi All
    I have a scenario wherein i want to limit the search count in Webcenter Imaging 11g on the basis of user and group.
    For e.g if administrator searches for documents it should return all the search result, whereas when a noraml business user searches for the document only 1000 documents should be returned as search results(if exact search criteria is not met).
    I am aware of the General setting in Enterprise Manager, but i want to restrict it on the basis of user.
    Can somebody help me, it's really very urgent.
    Thanks
    ACM

    Hi
    This is very important and i am not able to figure a way out of this.
    Is this a Product Feature and can not be altered?
    Please help
    Regards
    ACM

  • How to search for vendor account group

    hi expert,
    how to check for vendor account group that contains of certain condition? And where to assign this in PIR?
    thanks

    HI ,
    You can see Vendor account group by XK03, here just enter Vendor code (for which you want to see Account group) and enter company code and Purchase Org. , Tick Address , Tick Accounting info. and press Enter
    Now In Display Vendor Address there is icon in Blue colur *Administrative data (Shift +f8) click on this now
    YOu can see Vendor Account group.
    enjoy
    Regards,
    Vraj

  • Mass updation of Vendor account group

    Dear FICO gurus
    Found XK07 -Individual processing to change Vendor account group, but issue is i need to change  for more than 2500 vendors. Can any one suggest the alternative t.code as solution  (apart from LSMW/BDC).
    Thanks in advance
    Deepak

    Hi,
    You can use transaction MASS, enter LFA1, select table LFA1. Select the account group field, enter the value of the account group you want to change and execute. This will bring up a list of all vendors with that account group. Enter the new vendor account group and execute. All vendors with the old account group will be updated with the new vendor account group. However, you must have all fields settings the same on both account groups for this to work.
    regards
    santosh kumar

  • CHANGE OF ACCOUNT GROUP IN VENDOR MASTER

    Dear cons
    I created a vendor through t-code- XK01 & the accouint group is domv( domestic). I want to change the account group to IMPV( imported). In change mode(XK02) THE ACCOUNT GROUPING FIELD IS NOT AVAILBLE. PL. SOLVE IT.

    HI,
    GO TO XK07
    Enter Vendor code,then press Enter, Then enter new Account Group.
    System will allow new account group if both the account groups have been assigned same number range otherwise it is not possible.
    Regards
    Manish Joshi

  • All vendors under account groups..

    how to find all vendors which is under account groups?is there ant transaction code to find out?

    Hi,
    You can find all the vendors falling under one account group through table LFA1.
    In SE16 give LFA1 table and Click F7.
    In the next screen give account group and click execute.
    You can find all the vendors under the given vendor account group.
    I suspect there is no transaction code as such to find the vendors as per vendor account group.
    Regards,
    Praisty

  • Account Group and Cash Mgmnt group in vendor

    Hi,
    What the purpose of the "account group"  and " Cash mgmnt group "  when I create a Vendor using XK01.
    Tks,
    Sandra Amadi

    Hi Sandra
    Account group is basicaly use for segregarion of vendors based on their relation with Business.  It is a purely business decission for easy and user freindly reports of and control of vendors.
    find more at SAP help at beow link
    http://help.sap.com/saphelp_47x200/helpdata/en/53/c98647ca3711d2b494006094b9114a/frameset.htm
    In cash management, customers and vendors are allocated to planning groups by means of an entry made in the master record.
    for example:
    R1  Customers paying by bank collection
    R2  Other domestic customers
    R3  Customers abroad
    R4  Affiliated company customers
    R5  High risk customers
    R6  Major customers
    R7  Rental income
    R8  Repayment of loans
    E1  Domestic vendors
    E2  Vendors abroad
    E3  Affiliated company vendors
    E4  Major vendors
    E5  Personnel costs
    E6  Taxes
    E7  Investments
    Hope this info will helpful for you.
    best regards
    S.Habib Pasha.

Maybe you are looking for

  • My macbook pro laptop has a grey screen at start up and doesn't boot up all the way

    to whom this may concern, i have a macbook pro and the computer on startup has a grey screen i get the apple symbol and a status bar but as the status bar is filling it only fills 1/3 of the way and the computer shuts down i tried turning back on sev

  • ITunes on an iMac won't open at all

    I have 10.6.8 and have been playing iTunes regularly. Today, I click on icon in dock-one bounce, no open. Try in app folder...no open. Tried time machine... can't open files due to newer version....Try updates, no new updates.....Finally just downloa

  • Sub-contracting purchase for by-products

    Hi I am doing Sub-Contracting PO for By- Products. I have maintianed in BOM , the by-product material code in "-ive" qty. Consider Material A - Main Product                Material B - By_Product               Material C - Raw Material When i do GRN,

  • Query about crystal reports............

    Hello Experts, I am creating the Crystal Report which has  a parameter with data type nvarchar,which is not getting linked with report. How can I map this parameter to obtain the result? With Regards Prashant Muke

  • Bdoc error in SMW01 When Loading Materials into CRM

    Hi, We have recently done a system copy of our Production System to our Test System in R/3. We are now in the process of loading the Materials into our CRM 2007 Test System from the newly updated Test System in R/3. However, when loading the objects