Click a line in query created from SQ01 - Purchase requisition.

Hi all,
my problem is: Tcode SQ01, i've created a query where query's fields are:
purchase order,
purchase requisition,
maintenance order.
In change query phase, menu Goto --> Report assignment
i've choosed two standard Tcode:
IW32
ME53N
so that when i click a line of my query and chose iw32 i really can change the order clicked on my query but when i choose ME53n i can only display the last purchase requisition displayed e not that I really clicked on my query!
So, how can i display the purchase requisition clicked on my query?
Are there someone help me?
Thanks a lots,
Alex.

Hi Phyllis,
I face the same problem that Alessandro and I've changed the report assignment to the old transaction ME53. Unfortunately, when I click in the purchase requisition the new ME53N is called instead of ME53.
Do you have any idea why is this happening?
Thanks in advance for any help.
Regards,
Sara

Similar Messages

  • Purchase Order creation from closed Purchase Requisition

    Hi all,
    Please kindly help with the following questions
    1) Is it possible to lock a purchase requisition such that after a purchase order has been created, another purchase order would not be created from that purchase requisition
    2) also is it possible to assign a fixed vendor to a purchase requisition without an info record.
    Thank You.

    Hi,
    set the two message 06076 & 06400 as error so that no  more purchase order can be created with
    reference to the purchase requisition.
    And also refer the note 385002 for more information.....
    You can fix a source in source determination in source list thriugh ME11 not in info record.

  • Creating user defined pay items in a complex PO which will be created from an Approved requisition

    Hi,
    We want to create user defined pay items in a complex PO which will be created from an Approved Requisition.
    User will select the approved Req. through WebADI and update the pay Items which will be uploaded and a complex PO will be created with user defined Pay Items.
    Approach 1:
    The API po_interface_s.create_documents is running good but there is one issue with this API as below.
    When we add user defined pay items to the po_lines_locations interface table against a line they are also getting added to the complex PO correctly.
    But the issue is coming when the API is creating default shipment lines and distribution which we dont want.
    Is there any way to stop creating the default pay items and distributions?
    We only want the shipments we have entered in the po_lines_locations interface.
    We can delete the lines from the PO_line_locations and po_distributions base tables for the default lines but that will be the last option to do delete on base tables.
    Approach 2:
    We can also do the same with the open PO import interface but it is not linking the complex PO to the approved requisition from which it is created.
    Oracle mentioned that this is a future enhancement and this functionality is not available in standard PO import prog.
    We are trying for Approach 1 so any suggestions/solutions are appreciated to achieve the requirement.
    Regards,
    Sanket

    UDT cannot be created in sbo-common. You may create new db and work with table in this db (but it will be not UDT, but standard sql table), or create new company db only for this purposes and create UDT there.

  • Two purchase orders from one purchase requisition

    Hi experts,
    i'm getting this strange behavior. How is possible to create 2 purchase orders from one purchase requisition ??
    If i look to sales order flow i see two purchase orders.
    Thank you.

    Hello Dan M,
    When u enter the material and qty in Item the system might be doing Availability check. Then u might be going to schedule line and then "check mark on "Fix qty/date". Here once again the system might be doing Availability check and then u press  "Dely proposal".
    I suggest u to check the Purchase Requisition Item No. (the field next to Purchase Requisition No.). Keep watch here after every step u perform. Watch before and after u press every button.
    Do carefully analysis step by step u will get the reason.
    Any thing required write on the forum.
    Thanks & regards,
    Shailendra Panhale

  • One Purchase Contract from Several Purchase Requisitions

    Hi Experts,
    I have a problem, I want to make one purchase contract from several purchase requisitions. Here, some of PR's are of same material and some PR belong to different material. What we want that same Material should be clubbed together in one line and diffrenent material code should come in diffrent line.
    Regards
    GR

    Gi,
    if you are creating the contract manually and still want to see the PRs used.
    then i suggest you to maintain the detauils in the texts which are not used for printing and could be used for information purpose.
    one thing that this is manualy created so PR in system will not show the assigned and will remain open.
    regards,
    Adwait Bachuwar

  • Locating Planned order from a  purchase requisition

    Hi Gurus ,
    A purchase requisition has been created manually , by converting a planned order . Is it possible to find out the planned order , from a purchase requisition   Pls advise.

    Hi
    Once planned order converted in to Production order or Purchase requisition, we can't see any details of the planned order.Planned orders are stored dynamically in tables.once it is  coverted,Details can not be seen even in PLAF-Plan order table.
    In production order, you can see the planned order number but for PR , it is difficult to get the reference Plan order number.
    Regards
    Ramakrishna

  • Is it possible Line level approval in AME for purchasing requisition?

    hi
    is it possible Line level approval in AME for  purchasing requisition ?
    so that send each line to separate approver ?

    If using AME, it should be possible. Check AME Guide for POs for details. Let me know if you run into issues.
    Thanks
    Shree

  • Is it Possible to create a simulation purchase requisition?

    Hi everybody,
    I was wondering  whether it is possible to create a simulative purchase requisition in transaction MS02.
    Or if it is possible to convert a Simulative Planned Order into a purchase order in transaction MD02/MD04.
    Thank you kindly for your help.
    Best regards
    Mitch

    Hello
    There is no such thing as a simulative purchase requisition on LTP. Even for externally procured materials, system still created a planned order.
    What you can do is to copy a simulative planned order to the operative MRP. Later, this planned order can be converted to purchase requisition and to purchase order.
    Take a look on the following link for more details:
    Copying the Long-Term Planning Results to Operative Planning - Long-Term Planning (PP-MP-LTP) - SAP Library
    BR
    Caetano

  • Performance tuning for ABAP Query (created from t-cd SQ01)

    Hello all,
    We created ABAP Query report from transaction SQ01.
    But the generated report has an appropriate SQL statement which causes performance problem.
    To solve this issue, I guess the easiest way is;
    0. Give up to use it.
    1. Copy it to another object in the customer namespace.
    2. Ajust SQL statement.
    But I'm wondering if there're appropriate ways to adjust SQL statement of Query.
    Could anybody give me any better idea?
    Thank you
    Yuko

    You can try this: Create 2 ranges, for objnr and cdtcode and fill like:
    ra_objnr-sign = 'I'.
    ra_objnr-option = 'CP'.
    ra_objnr-low = 'OR*'.
    append ra_objnr.
    ra_code-sign = 'I'.
    ra_code-option = 'CP'.
    ra_code-low = 'CO*'.
    append ra_code.
    SELECT objnr udate utime
    FROM jcds
    INTO TABLE it_jcds
    WHERE objnr IN ra_objnr
    AND stat = l_tj02t
    AND cdtcode IN ra_code
    AND inact = space
    Regards,
    John.

  • Require TCode used by user for sap query created through SQ01

    Hi All,
    I have number of SAP Query in production that currently are used by different-2 user & created through SQ01
    My question is how to know the TCode that used by user for SAP Query.
    Thanks In Advance
    Regards
    San

    Charlie
    You did not get the question.
    I knew the TCode of the query which I had created using tcode SQ01. user is using this query to see the report
    Like I created query named 'order_line_details'. This query is basically to see the order & other details. To use this by user one TCode'zncv_ord_item'  has been created.
    So in the system lots of query are available. So i want to know the Tcode for those query that are using by user.
    Thanks in advance
    San

  • Attaching document in CREATE mode on Purchase Requisition?

    Hi,
    I am running ECC5.00.
    If using the document management system (DMS), is there any way to configure DMS such that a user can attach a document (e.g. a PDF file) to the requisition in CREATE mode, i.e. during ME51N?  Is there anyway to configure the DMS system such that the attachment is required prior to saving the requisition?
    Cheers.

    Hi,
    Yes. It is possible through Object Linking from DMS. You need to follow the below stated steps to achive Object linking.
    1.Goto SPRO->CA Components->Document Management->Control Data--->Define Document Types.
    2.Select the desired Document type which you need to make it available in your Purchase requisition. for ex: Contracts e.t.c.
       & Click on "Define Object Links" from the left hand Panel.
    3.Goto New Entries and Object as EBAN & Screen No as 247 & Save the entries.
    4.Now go to DMS & Upload your documents.
    5. To access Documents at Purchase Requisition Level first you need to maintain the Item level Details. Then Select an item and Click on the Icon "DOCUMENTS"  just above the Item level. you can access only those document types which have been defined through Object linking.
    with regards,
    S. Dayananda Murthy

  • Error While Creating Workflow for Purchase Requisition Rejection

    HI Experts,
    Purchase Requisition No is not Displaying in the Business Workplace Inbox after my Work  flow got triggered.
    In Work flow i am Using the Task  97600004  which i copied from the Standard Task  65400032. This Task i called in the Activity Step having Work Item Display Tab. In this Tab while i am checking at Work Item Text  for Identification  of Work item in work flow inbox level it is Giving Error "Container element '_WI_OBJECT_ID' does not exist and also Insert Expression is in Disable Mode.
    In Business Workplace Inbox i am getting message as "Purchase requisition  00000 rejected".
    Please Suggest where i am Committing Error.
    Thanks in Advance
    Srikanth Kumar

    HI.
    I Have Checked the work flow as suggested Dheepak
    In Start Event of Work flow i declared BUS2105 as BOR Object . The Task which i copied contains BUS2009 as default.
    As Raj Suggested In Task i have Created a New Element BUS2105 at Container Tab and set binding in task and set the Binding between Work flow and Task. Now it is working fine and i am getting the PR No in the Message of SBWP inbox.
    But i Having one more doubt regarding this issue only Why BUS2009 BOR object Type is not working which is the Task as default even though its binding is set between work flow and task?
    Thanks Dheepak and Raj for Your Valuable Suggestions. My gmail id is srikanth537. Can u add me In your Friends list.
    Thanks
    Srikanth Kumar
    09937876902
    Edited by: Srikanth Kumar Talasu on Dec 23, 2008 11:59 AM

  • PO creation from One Purchase Requisition

    Dear all;
    In standard SAP We can create multiple PO from A single PReq ,though the full quantity of PReq is taken first time of PO creation .Is there any restriction that After full use PReq quantity no one can use the same PReq for further PO creation.
    Thanking You;
    Regards;
    Joydeep Mukherjee

    Dear Joydeep,
    In contrast to a purchase requisition, it is possible to create more than one PO in reference to a RFQ.
    A RFQ only gives information about the price for which can be ordered from a vendor. The system does therefore not reject you from ordering again from the same vendor with the best conditions.
    Once you create a PO with reference to an RFQ, if the quantity in PR to which the RFQ is refering is exhausted,
    the user is prevented from creating further PO only with reference to the PR. But the user can create Purchase orders refering to a RFQ as long as the validity period of the RFQ is still valid.
    Regards,
    ian, Wong Loke Foong

  • Create a Service Purchase Requisition using BAPI_PR_CREATE

    Hi Everyone,
    I am using BAPI_PR_CREATE.
    I am able to create Standard Purchase requisition.
    But while creating Service Purchase Requisition, i am not able to create.
    I am getting no errors for the PR Item, but even after entering Services for the PR Item i am getting error message in return table of bapi "Please Maintain Services or limits'.
    Do i have to pass value to Package_No field in the item level table of BAPI_PR_CREATE.
    Please help.
    Regards,
    Akash

    Hi,
    Check this link for creation of services.
    Bapi_pr_change in services
    PO Upload through BAPI_PO_CREATE1 - Problem in Service Item
    BAPI_PO_CREATE1 Error
    Hope it helps
    Sujay

  • WorkFlow and "Created" Event in Purchase Requisition

    Dear Experts,
    I have created a new workflow for the Purchase Requisition
    The problem is that when i tried to use "Start Event" for the object type "BUS2105" i didn't find the event "created"
    I need this event "Created" because my work flow starts with the creation of the PR
    Please supoort my with the full steps i need to overcome this problem
    Waiting for youe advice
    Best Regards
    Edited by: Sap Sap on Jun 29, 2009 11:10 AM

    You can use "releaseStepCreated" Event for the start.

Maybe you are looking for

  • How can I download a previous version of an app?

    I recently just downloaded the latest version of eBuddy, 5.2.0, and it is absolutely terrible. It doesn't give me all my messages, and it crashes every few seconds. I wish to revert back to 5.1.0 without deleting the information on my iPod as of curr

  • FF 21.0 Unresponsive after Sleep - Windows 7.0

    Ok, this problem has been going on with a number of FF users since FF 8.0 (and possibly earlier). I have yet to see a suggested response that actually cures the problem, and the fact that the issue still persists in the current release tells me that

  • Best Performance vs Professional Quality

    Which provides best playback quality? Assuming the project is A) 40 min and B) 70 minutes, which one should I use? Thanks

  • Iphone syncing and drag-and-drop hang

    Two problems: 1. When syncing my iPhone 4s (IOS 7.0.3, Macbook Pro Mavericks OS X 10.9), it hangs on the last step "waiting for changes to be applied". 2. Immediately after reinstallation of IOS 7.0.3, I can drag and drop music onto my iPhone from th

  • Illustrator CS4 - 20+ second lag when tabbing back

    Hi, all - New-built machine, quad-core, 6 gig RAM, EAH5870 GPU, 2 Samsung (to be replaced) monitors and 2 1T drives, Windows 7; CS4 Master Suite. The problem is tabbing or clicking back to Illustrator from any program, though most notably from PS, th