Buyer No & Buyer Name in PO's Process

Hi All,
I am Technical consultant. But i want know who is buyer in PO's process.
In which table these data are stored means..what is the field names of buyer no & buyer name.
Thanks,
Subbu.

Hi,
In MM , you can create purchasing groups. A purchasing group can be an individual or a group of individuals,i.e nothing but a Buyer.
U can maintain Purchasing group at Organisational data tab while creating Po.
Purch group-Key for a buyer or a group of buyers, who is/are responsible for certain purchasing activities.
Table Name-MEPO1222
Field Name-EKGRP
Par ID-EKG
Regards
Sanjay l

Similar Messages

  • Buyer No & Buyer Name in PO reports

    Hi All,
    i need to add Buyer Number & Buyer Name in existing Zreport.
    This rreport is used for "Purchase Order Line Items With Outstanding Goods Receipts" . But how i can get those two fileds mean.
    From which table i have to get those related data.
    whos the buyer?
    Thanks,
    Subbu.

    Hi,
    You have purchase order number (EBELN)
    goto  table EKKO and get vendor number (LIFNR)
    goto table LFA1 and give the LIFNR value there and get the (Vendor name) NAME1.
    Reward points, if helpful,
    Sandeep kaushik
    Message was edited by:
            Sandeep Kaushik

  • Make Purchase Order Change Buyer name

    Hello Experts - small question, how do I change in an Purchase order the buyer name for standard.
    I mean, I always make the PO's so I want my name standard in the buyer box, how can I do this?
    Thank you!

    HI Bob
    You need to go Administration->Setup->General->User Defaults.
    You have to select the appropriate user and under default tab,you have to set the sales employee as your name.
    So Buyer name will appear by default in PO when logging with that particular user...
    Revert me for any clarifications...

  • Why can not I see the name of a child process?

    Hi,
    I implemented a program for my project.
    My program has two processes. One is a parent process. Another is a child process.
    The parent process forks its child process. The child process is executed by execl() system call.
    The program code implemented is followed.
    === abbreviation ===
    switch(itmr_forkid = fork()) {
    case 0:
    RCode = execl("./itmr", "itmr", (char *) 0);
    exit(0);
    break;
    === abbreviation ===
    I executed the program. And then I pressed "ps -ef" on command line.
    [stp1ggsn1][user/shlim] ps -ef
    UID PID PPID C STIME TTY TIME      CMD
    root 29402 29376 38 Mar 06 pts/0 11376:36 ibgfb
    root 29403 29402 0 Mar 06 pts/0 0:15
    However, why can not I see itmr process name for the child process?
    When I executed the program for the parent process and the program for the child process respectively, I can see itmr process name for the child process.
    I tried to look for the cause. But I could not find out the answer.
    Please, give me your answer. Thank you for your answer in advance.

    Hi,
    I am sorry that I loaded my question two times by mistake.

  • Need to change the name of a GP process instance at runtime.

    Is there a way to change the name of a GP process instance at runtime?  I would like to change the name of the process instance to include the employee's name who initiated the process.  This way when the process owner or overseer displays thier list of processes from the GP Runtime Work Center, they can tell who initiated each process.
    Does anyone know how to do this?

    Hi Karen,
    If the users are invoking the Process from Web Dynpro or some other application using GP API, then you can try the followigI.
    You can try using the startProcess() method of the IGPRuntimeManager object. It has multiple paramaters of which two(second and third) are for the userProvidedName and userProvidedDescription. You can set any name and description while invoking the GP process and the name and description should appear in the Runtime for the owners/overseers/administrators in hte list of process instances. You can add the name of the Employee while setting that name and description.
    help.sap.com link for the info on this:
    http://help.sap.com/saphelp_nw70/helpdata/en/43/fcdf77fc6510b3e10000000a11466f/frameset.htm
    Regards,
    Ajay

  • Identify the job name of a particular process

    Hi Experts,
                     How can i find the job name of a particular process in sm37.since every load has job name as BI_Process_loading.
    Thanks,
    Sandeep

    Hi Sundeep,
    can check the jobs by its name and user ID.
    ex: BIDTPR  job for loading data with DTP.
    and time of job run.
    check for different jobs runs thorugh process chain, go to completed process chain -> right click on each process type and select messages -> back ground job.
    Best Regards.

  • Program name for E-mail processing routines for o/p type NEU

    Hi Friends ,
    What is the program name for E-mail processing routines for o/p type NEU for purchase order . This i want use this for send PO for vendor .
    RB

    Hi
    Program SAPFM06P
    Form Routine ENTRY_NEU
    Form MEDRUCK
    Transmission  Medium - External Send

  • How to localize HumanTask names and process names of oracle BPM process ?

    Anybody known how to localize HumanTask names and process names of oracle BPM process ?

    Oracle Apex is an API, if that helps you understand / visualize. You do not start Apex process nor stop it.
    When an Apex session starts it starts calling the API.
    You can however start / stop the listener. It may be OHS, ApexListener and the J2EE container running it, OC4J or any other "server" that you are using.
    The built-in EPG is something like an API again, you cannot start / stop it but you can disable/enable it with DBMS_XDB.SETHTTPPORT API.
    Regards,

  • Link of purchase group and the buyer name

    Hi,
    Could you anybody let me know the relationship table name for purchase group vs buyer code.
    Your help will be really appreciated.
    Regards
    Rifaie

    What is buyer code? i.e produ category
    Purchase group vs product category relations?
    in PPOSA_BBP
    you might seen Purchase grouph , in this purchase group you might seen relationship tab
    here you mentio product category.
    so whenevr users create a shopping cart w.r.t product category, the basis data shows as product category w.r.t purchase group
    table name :- - HRV5501OT
    Thanks
    Muthu

  • PO Buyer Name

    Hi,
    I am trying to extract Buyer's information from PO_AGENTS table in R12. Below is the query
    SELECT pa.agent_id,
                papf.person_id,
                papf.employee_number,
                papf.email_address,
                pa.category_id,
                pa.location_id,
                papf.effective_start_date,
                papf.effective_end_date
    FROM po_agents pa, per_all_people_f papf, hr_all_organization_units haou
    WHERE pa.agent_id = papf.person_id
         AND papf.business_group_id = haou.business_group_id
         AND TRUNC (SYSDATE) BETWEEN papf.effective_start_date AND papf.effective_end_date
         AND papf.effective_end_date > SYSDATE
         AND haou.business_group_id = 83                              -- CURRENT
    Here, I am using business_group_id from per_all_people_f because the organization_id I require is not available in per_all_assignments_f table. But this query does not return data specific to my organization. Which joins do I need to add to get the data?
    Is there any other way I can join po_agents or per_all_people_f with hr_all_organization_units?
    Thanks in advance,
    Aditya

    Sunil,
    it is coming from Purchasing group description, table for that is T024.
    Reward points if helpful.
    Bobby

  • Dynamic file names on file based  processing

    Hi Experts
    we are doing file to file scenario using file based processing not on message based ( No Reposiitory Objects - No mapping , no interface objects ).
    we need to pickup the file name from the source directory and place it in the target directory with the same file names.
    the source file name is added with the time stamp and client number,
    Since there no mapping , we can't use the dynamic file concepts.
    Please help me with the possible solutions
    thnz for the help in advance.
    Cheers
    Faheem

    Hi Faheem,
    You will be using the dynamic config when u want to map the input file name to a field in the target message.
    As per ur requirement ASMA will do :
    try this:
    In both the sender and receiver file adapters , select Adapter Specific Identifiers and File Name
    In the receiver file adapter give some dummy value for file name and directory.
    In the runtime, the source file name and directory will be used as the target file name and directory.
    You need not use any UDF or a mapping here
    Hope it helps!!!!!!!!

  • Invalid DataStore object name error when running process chain after EHP1

    Hello,
    We recently upgraded our BW Dev platform to NW7.01 EHP1 SP6. I noticed that the layout for "Delete PSA Request" process in the Process Chain has changed after the upgrade. We can no longer specify the actual PSA table to delete eg, /BIC/B0001645. Instead we need to specify the Datasource name and the Source System.
    Now after the upgrade when I run one of my process chains, it fails at "Delete PSA Request" step with error message "Invalid DataStore object name /BIC/B0001645: Reason: No  valid entry in table RSTS". This datasource is based on the flat file source system and the PSA table for this Datasource is /BIC/B0001653.
    Unfortunately the process chain is picking up an older PSA table for this datasource and there is no way for me to specify the current PSA table name after this change in layout with EHP1 upgrade. Any suggestions on how to resolve this issue.
    Many Thanks,
    Al

    Hi,
    Please implement OSS 1345331.
    If this does not help try the below steps:
    1.  Run the report 'RSAR_PSA_CLEANUP_DIRECTORY/_MS' in check mode for a 
           particular PSA table for finding the inconsistencies.
    2.   After that please analyze the logs and if there is any problems related to partition, you need to correct them using the report u2013
    3.  'SAP_PSA_PARTNO_CORRECT' in repair mode for the
          PSA tables.  Run the report again after this
    4.  'RSR_PSA_CLEANUP_DIRECTORY/_MS' in check mode to 
         double check that the invalid partitions are 
         corrected.
         Once this is done you can execute the report     
         'RSR_PSA_CLEANUP_DIRECTORY/_MS' in repair mode.
    -Vikram

  • How to reference page attributes (e.g. name) in application level process

    How can I access the NAME of a page while in an application process? Is this possible, without setting some sort of app-level current page name variable? (Which would defeat the purpose of the app level process :)
    Thanks,
    Carol

    When an application process runs at a firing point other than On Demand the current page name can be obtained using this SQL:
    select page_name from apex_application_pages where application_id = v('APP_ID') and page_id = v('APP_PAGE_ID');
    When an application process is invoked "On Demand" by way of AJAX, the page ID in the request is usually 0, so there is no page context available. However you could pass an item name/value into these requests and use that item value in the query against apex_application_pages.
    Scott

  • Add serial number in the report file name when using batch process model

        I would like to append a string containing the current UUT serial number to the base name of the report file. For example, uut_report.html becomes uut_report[SN000001].html. This setting is not available if I use NI BatchModel.seq as my process model.
    Thanks!
    Jacky

    duplicate post
    Ask your question only once.

  • Server name message when triggering process chain through ABAP PROGRAM

    Hi all,
    When I am trying to execute one process chain with variant as a APD ( In this APD data is getting loaded form one Query to Transactional ODS.) This process chainis being executing through one ABAP program using the following code
    CALL FUNCTION 'RSPC_API_CHAIN_SCHEDULE'
         EXPORTING
           I_CHAIN      =  'XYZ'. ( Dummy Process chain name)
    While executing this program I am getting following message :
    You can specify the name of the application server here
    on which all jobs in the chain are scheduled
    If you do not specify a name, the jobs from batch
    management are divided between the available servers
    How to avoid this message.
    Can we write any code in the above program to assign any fixed server name so that it will not ask for any server name.
    Your help is much appreciated.
    Thanks,
    Uday.

    Hi Shanthi,
    How to write exception handling for this.
    Quick reply is nedeed.
    Thanks,
    Uday.

Maybe you are looking for

  • How to create matrix template help pls

    hi frs, i have generated xml file after creating matrix report in report builder. i want to know how to create matrix template(rtf) in word document. if i use wizard or insert> all fields i am not getting rtf like matrix. help pls Thanks Rajesh

  • Auto Bank Reconciliation

    Hi, In our company I want to implement Auto Bank Reco so can any one help me about configuration and procedure step by step . I have to implement this .. so pls. help me urgent. Regards, Kaushal Shah +91 099247 56365 [email protected]

  • Still cannot purchase item at game inside . What can I do?

    Still cannot purchase . What can I do ? Change credit card also cannot. Or got any contact service can help me?

  • Place command - ai files multiple artboards

    Hi everyone, When I use place command for .ai files that contain multiple artboards, InDesign does not import all fo them, just artboard nr.1. Is there a way to specify / select the number of artboards I would liek to be placed, selectively? Thanks,

  • Zend AMF Authentication & Authorization

    How do I secure my PHP services created with 'Connect To PHP' wizard? The web is full of tutorials on connecting to PHP but I found nothing on securing the services. The 'Connect to PHP' wizard generates a gateway.php which doesn't do authorization.