Issue with the Framework Purchase Order

Background: Using the Framework Purchase Order in the Plant Maintenance module for external operations:
When The Framework Purchase Order is used for external services procurement with service specifications, Purchase Requisitions are created based on the quantity of services requested against the Maintenance Order. Since I am using the service specifications, limits are not used in the Framework Order.
Problem:
The system does not do any check on the quantity that is requested for a service against that in the Framework Order. Hence the PRs get created linked to the Framework Order for whatever quantity requested in the Maintenance Order. Now the vendor submits the Service Entry sheets against those PRs released with respect to the Framework Order. That time the system does not allow the SES to be posted, because it exceeded the service quantity in the Framework order service specifications. In otherwords, there is no check against the framework order service quantity, when requisitions are released against the Framework order in the Maintenance Order. The check at the the time of SES is too late causing problems for mass creation of service entry sheets and also if external data entry is done for the SES by the vendor.
Is there any setting or configuration in SAP that helps to circumvent this issue? Any suggestion will be appreciated.
Thanks in advance
Nebu.

Hi
M_BEST_BSA and M_BEST_EKO are not set to CHECK -> Value "NO".
If the check is not set to the standard delivered SAP what is the value in SU24 ?  Has it been changed to CHECK > YES or DO NOT CHECK ?
I am sure you are aware that SAP does not deliver all objects coded in the programme under AUTHORITY-CHECK Statement in the SU24 Indicators with a CHECK > YES that are in transaction ME28.  SAP only deliver a fraction of the values in the proposal as YES and the rest must be maintianed by the security team as they are discovered to be relevant to your organisations need of the particular functions within the transaction.This will then keep PFCG updated with all the CHECK YES objects the next time you add transaction ME28.
In other words all the objects listed in SU24 ( that are CHECK ) for ME28 will all be coded in the programme somewhere but it depends on which bits of the functionality within ME28 you are using that determines if they are called.

Similar Messages

  • Goods Issue with reference to Purchase Order

    Hi MM Gurus,
    Is there any settings to do Goods Issue with reference to Purchase order?
    I want to capture the material price in purchase order during goods issue instead of standard price or moving average price.
    Thanks in advance
    Dinesh

    Hello Dinesh,
    Batch valuation is similar to split valuation. Here is the link on how batch valuation works.
    http://help.sap.com/saphelp_47x200/helpdata/en/25/283db54f7811d18a150000e816ae6e/content.htm
    Please check in sandbox environment before using.
    Hope this helps.
    Regards
    Arif Mansuri

  • Issue with service line purchase orders.

    Hi Experts,
        We have recently upgraded to following pack levels -
    System                                 Pack level
    ECC 6.0          17, EHP4 Stack 7
    SRM 5.0          17
    There is an issue around purchase order change. If an existing PO is edited and a new line is added to the PO it appears fine in SRM system. But on replicating to backend, we see that the newly added line has been duplicated i.e. appears twice thereby reflecting incorrect value.
    This is happening for Service line items. Has anyone had similar issue at their end ? I tried to search SAP Notes but found nothing relevant to our issue.
    Any pointers / suggestions would be much appreciated.
    Thanks
    RB

    Hi
    Before going to SAP, Check the data being passed to ECC from SRM. Activate the BAPI_PO_CREATE1 for creating data in test directory instead of posting the documnet. then check the data in BAPI Segments, if the data is proper there then there is some problem in ECC 6 ehp 4 which need to be highlighted to SAP, otherwise its a problem in sending the data from SRM to ECC.
    OSS Note for creating test data is - Note 539978 - Automatic generation of BAPI test data directory
    Regards
    Virender Singh

  • Issue with ME28 - Release Purchase Order

    Dear All,
    One of our user is unable to release a purchase order through Transaction code ME28.
    The role is assigned only with the Transaction Code ME28 with the correct Release code and Group.
    We have tested from our end and see that the Auth Objects M_BEST_BSA and M_BEST_EKO are missing based on SU53. When we have added back it worked.
    When i check in Su24 the Auth Obj M_BEST_BSA and M_BEST_EKO are not set to CHECK -> Value "NO".
    I dont understand how this Transaction is working, when the behaviour of the Transaction ME28 is to release the purchase order why is the system asking for additional Auth Objects.
    please advice.
    Regards

    Hi
    M_BEST_BSA and M_BEST_EKO are not set to CHECK -> Value "NO".
    If the check is not set to the standard delivered SAP what is the value in SU24 ?  Has it been changed to CHECK > YES or DO NOT CHECK ?
    I am sure you are aware that SAP does not deliver all objects coded in the programme under AUTHORITY-CHECK Statement in the SU24 Indicators with a CHECK > YES that are in transaction ME28.  SAP only deliver a fraction of the values in the proposal as YES and the rest must be maintianed by the security team as they are discovered to be relevant to your organisations need of the particular functions within the transaction.This will then keep PFCG updated with all the CHECK YES objects the next time you add transaction ME28.
    In other words all the objects listed in SU24 ( that are CHECK ) for ME28 will all be coded in the programme somewhere but it depends on which bits of the functionality within ME28 you are using that determines if they are called.

  • Can 2 invoice number be created with the same Purchase Order number

    HI,
    I have created one invoice number with a Purchase order number 4500020000. Now is it possible to create a another invoice number with the Same PO

    In me23n transaction go to Invoice tab(In items), there will be a check box for <b>Final Invoice</b>. If it is checked, full amount is invoiced.
    The same can be checked in table EKPO.
    Field EREKZ = 'X' means final invoice done.
    another method is:
    foe each item:
    go to table EKPO and see the quantity.
    then go to table ekbe and get all the invoiced quantity by passing VGABE = '2'. for the PO item.
    add all the records with SHKZG = 'H' and subtract the total of all SHKZG = 'S' records.
    If this quantity is equal to the ekpo quantity, then there is no more quantity to be invoiced.
    Get the PO Item quantities
      SELECT EBELN
             EBELP
             MENGE
        FROM EKPO
        INTO TABLE IT_EKPO
       WHERE EBELN IN R_EBELN.
    Get the Invoice Receipt Documents for the POs
        SELECT EBELN
               EBELP
               BEWTP
               MENGE
               GJAHR
               BELNR
               BUZEI
               SHKZG
          FROM EKBE
          INTO TABLE IT_EKBE
          FOR ALL ENTRIES IN IT_EKPO
         WHERE EBELN = IT_EKPO-EBELN
           AND EBELP = IT_EKPO-EBELP
           AND VGABE = C_VGABE_2.
    logic to check if the IR Quantity equals the PO Quantity for each Item
      LOOP AT IT_EKPO.
        CLEAR V_BPMNG.
    For each line item, calculate the total Invoiced Quanity
        LOOP AT IT_EKBE WHERE EBELN = IT_EKPO-EBELN
                          AND EBELP = IT_EKPO-EBELP.
    Change the sign of the quantity for debit
          IF IT_EKBE-SHKZG = C_SHKZG_H.
            IT_EKBE-MENGE = -1 * IT_EKBE-MENGE.
          ENDIF.
          V_BPMNG = V_BPMNG + IT_EKBE-MENGE.
        ENDLOOP.
    If the PO Item Quantity is equal to IR Quantity
        IF IT_EKPO-MENGE = V_BPMNG.   "ARAO
    write:/ 'No more quantity to be invoiced'.
        ENDIF.
      ENDLOOP.
    Regards,
    ravi
    Message was edited by: Ravi Kanth Talagana

  • Issue with the Internal sales Order

    Hi
    We are trying to populate the customer information in the internal sales orders.
    We are updating the Customer_ID, Customer_Number, Customer_name information on the iface header table...and we are submitting the Order Import concurrent program...even though customer information is not populated....
    Could any one sggest on this....
    Regards,
    Krishna

    Why are you updating the interface record?
    You create and approve an internal requisition (IR)
    You run the "Create Internal Orders" concurrent program.
    This program reads the IR details and populates the Order Interface table.
    Then you run the "Import Orders" concurrent request.
    That program processes the interface record and creates the Internal Sales Order (ISO). All the information Oracle needs to create the ISO (such as customer name, number etc.) is already in the interface table or is derived by the Import Orders program. You should NOT update the information.
    Hope this helps,
    Sandeep Gandhi

  • Issues with the new "Purchased" history and re-downloading.

    I have multiple Apple ID's, and I'm trying to re-download all the music I previously bought under an old Apple ID.  I lost it all when my laptop was stolen, so I got very excited when Apple announced the new puchased history feature.  Well, I went into the link on iTunes and pressed the "Download All" button, but it gives me the following error.
    "This item has not been purchased.
    [song title] cannot be downloaded because it was not purchased with your Apple ID."
    I'm sort of confused... if I haven't bought this song, then why is it showing up in my purchased history?

    Joseph Baggett wrote:
    I have multiple Apple ID's, and I'm trying to re-download all the music I previously bought under an old Apple ID.  I lost it all when my laptop was stolen, so I got very excited when Apple announced the new puchased history feature.  Well, I went into the link on iTunes and pressed the "Download All" button, but it gives me the following error.
    "This item has not been purchased.
    [song title] cannot be downloaded because it was not purchased with your Apple ID."
    I'm sort of confused... if I haven't bought this song, then why is it showing up in my purchased history?
    Joseph,  Since you have purchased under multiple accounts, you will have to log into each account separately and use the re-download feature for the content associated with that account.

  • Wanted To Channge The Standsrd Purchase Order Template with Customized Temp

    Hi ALL,
    I m using oracle 11.5.10.2. I want to change the template attached with the Standard Purchase Order(PO_STANDARD_XSLFO) which is in XSL-FO Formatt.I want to use my customized template for printing Purchase order.I attached one template with the same Data definition which the standard template is having.
    But still it is taking the standard template not the customized one. Can u tell me how i can attch the customized template with the standard Purchase Order. And one thing more if i want to update the exisiting Standard template then how i can update it bcoz the update is disabled for that template.
    Thanx
    Ravi

    Hi Klause,
    Thanx, for ur Reply. I did the same thing.....i copied the xsl-fo for standard template and i just removed the braces from there, which was for printing purpose only. this is the change what i did....
    <fo:inline xsl:use-attribute-sets="legal_details_style">
    <xsl:value-of select="TOTAL_AMOUNT" />
    <fo:leader leader-pattern="space" leader-length="2.0pt" />
    ( --------------i removed this brace
    <xsl:value-of select="CURRENCY_CODE" />
    ) --------------i removed this brace
    </fo:inline>
    and the rest is similar to the standard template.. But it has given me that error....
    Error while generating the PDForacle.apps.xdo.XDOException genDoc() : Exceptionjava.lang.Exception: Error while generating PDF :null java.lang.Exception: Error while generating PDF :null java.lang.Exception: Error while generating PDF :null at oracle.apps.po.communicate.PoGenerateDocument.genDoc(PoGenerateDocument.java:2084) at oracle.apps.po.communicate.PoGenerateDocumentCP.runProgram(PoGenerateDocumentCP.java:302) at oracle.apps.fnd.cp.request.Run.main(Run.java:148)
    Thts the error...which i m getting..... Can u help me out.....
    Thanx
    Ravi

  • Consignment withdrawal with reference to purchase order

    HI All,
    In case of consignment withdrawal i.e. 411 + K ; is there any way by which we can tie this withdrawal with the consignment purchase order that brought the material in inventory?
    THanks,
    Ritesh
    Edited by: Jeyakanthan A on Nov 15, 2011 9:14 PM

    Hi Ritesh,
    This is not a standard functionality but you can most certainly achieve this thru customer enhancement (A Badi or FM exit) for the transaction code.
    Please take help from your ABAP team!
    Thanks,
    Reetesh

  • I had recently purchased a iphone 5s in Oman and had to move to India.I am facing some hardware issues with the earphone slot. When i plug in the earphone there is lot of disturbance heard. Can i get it repaired in India under international warranty?

    I had recently purchased a iphone 5s with OS version 7.1.2 in Oman and had to move to India.I am facing some hardware issues with the earphone slot. When i plug in the earphone there is lot of disturbance heard. Can i get it repaired in India under international warranty?

    No. The iPhone warranty is not international. You will need to have warranty service done in Oman.

  • Ipod nano 7th generation having issues with the UI. Out of box everything worked great. Once I snyc the device and it finished, the UI becomes unuesable. You have to double tap every icon in order to open music, videos, etc.  I cannot swipe to the second

    ipod nano 7th generation having issues with the UI. Out of box everything worked great. Once I snyc the device and it finished, the UI becomes unuesable. You have to double tap every icon in order to open music, videos, etc.  I cannot swipe to the second page of icons,  black box appears around an icon and then switches to a different one anytime I swipe. A box even appears around the time and battery power. iPod & iTunes are both updated. What is the FIX on this issue?

    I had this problem as well.  This is what I found by searching online.  I tried the fix on my nano 7th gen and it worked.  I hope this helps you.  Make sure to use two fingers for sliding and double-click the icons to get into settings.  Good luck.
    It would seem that Voiceover has been enabled on your iPod Nano. The following article contains information regarding Voiceover, and how to disable it once it's been enabled.
    iPod nano (6th generation and later): How to use VoiceOver
    http://support.apple.com/kb/HT4317
    To turn off VoiceOver on iPod nano using VoiceOver gestures
    From the Home Screen, swipe right or left with two fingers until you see or hear "Page 2 of 2" on iPod nano (7th generation) or "Settings" on iPod (6th generation).
    If the icons have been rearranged, or if there are more than four Home screens, you may hear something different.
    Slide one finger around the screen until you hear Settings. 
    Double-tap to open Settings. 
    Slide your finger up or down the screen until you see or hear General, then double- tap. 
    Slide your finger up or down the screen until you see or hear Accessibility, then double-tap. 
    Slide your finger up or down the screen until you see or hear VoiceOver, then double-tap. 
    Double-tap when you hear "VoiceOver switch button on." 
    You'll hear "VoiceOver off" to confirm the setting. Now you can use standard gestures to control iPod nano.
    Note: You can also turn off VoiceOver by resetting your iPod.

  • HT201401 Has anyone had issues with the iPhone 5'S power cord going bad? I have purchased 2 in a 4 month span and they keep going out.

    Has anyone had an issue with the power cord for the iPhone 5? I have replaced two in a four month period

    Did you check with Verizon to make sure that your destination country would allow the device you have to connect? The possibility is that this country does not have (or you are not in range) a carrier that uses CDMA. If the carriers in this country use GSM you may be out of luck. VZW cannot guarantee service in any country outside the USA.
    Here is the number to call 908-559-4899

  • Problem with WorkFlow of Purchase Orders related to non active employees

    Dear all,
    We are running into issues with the WorkFlow when people are linked to a PO who are not anymore an active employee. That will give problems in the workflow as those people are logically not going to goods receipt/invoice reciept/approve those invoices.
    How should we deal with this problem?
    We are thinking about a solution like creating an overview of ALL purchase orders (without Goods Receipt) in which the creator, project manager or project sponsor of that specific PO is not anymore an active employee.
    Could someone please advise the right solution?
    Thanks in advance.

    Experts? Anyone?

  • R12 - How to customize the seeded Purchase Order PDF report

    Hi,
    We need to customize the layout AND the data of the seeded Purchase Order pdf report that is generated in PO Summary form when user picks drop-down menu Inquire->View Document. I know how to set up the Document Type with a customized layout but I do not know how to update the XML data that feeds the layout.
    Thanks, Mike

    Mike,
    Please review the following documents.
    Note: 374165.1 - How To Customize The PDF Output For Printed Purchase Order Report (Portrait) ?
    Note: 406094.1 - How To Diagnose Issues Within Oracle Purchasing PDF File Creation for Printing
    Regards,
    Hussein

  • Item text in Purchase Order getting updated with info. record Purchase Order Text

    Hello All,
    I am working in a roll out project and facing issue in text repeating twice for the line item in the Purchase Order for the new company code for which rollout is happening
    Issue:
    Item text in Purchase Order getting updated with info. record Purchase Order Text
    01) PO Text is maintained in the material master under "Purchase Order Text" tab
    02) The PO text that is maintained in material master is getting updated in the Purchase Info. Record
    03) When Purchase Order is created, the "Item Text" gets updated in the Purchase Order automatically only for the new company code for which rollout is happening. when printed, this results in the text getting duplicated twice
    03.1) this behavior is not observed in the Plants/ Company code that is already Live
    Configurations in the system:
    The copying rules for the "Texts for Purchase Orders" is
    Source Object = "Info Record", Source Text="Purchase Order Text", Fix="*"
    We have modified the Purchase Order form to print one of  the condition types maintained for calculating the tax. Other than this there is no change to the plants that are already live.
    I could not locate any "Purchase Organization" / "Company Code" / "Plant specific configuration.
    Am I missing any configuration or where can I look in what is causing this error.
    Request help from the experts in the forum.
    with Regards,
    Dhandapani R

    There is no company/purchasing/plant specific customizing for purchase order text.
    The customizing copying rules for the "Texts for Purchase Orders" affects all equally .
    If the text in the purchase order in ME23N is already filled different to other plants, then you either have a modification in place, or the texts are differently maintained in the referenced data (vendor, material, info record, contract)

Maybe you are looking for

  • Why does my paragraph tag for images get repositioned AFTER the image?

    I have TCS2 and link my FM docs to RH. I use a paragraph tag in FM called "figure" for my imported images. I noticed there is too much space after the images in RH and discovered the "figure" tag is BELOW the images. So even if I map the tag to a RH

  • Porting Data from iPhone 3G to iPhone 3GS

    I'd like to replace my iPhone 3G with the new 3GS (now available in Canada), but I'd like to keep all my application data, text messages... beyond the 'usual' Apple apps (iPhoto, iCal, et al). Does anyone know if this is possible, and if so - how?

  • What does this mean ---- load-on-startup 1 /load-on-startup

    Hi All, Anybody please tell me what does this mean: <load-on-startup>1</load-on-startup> Thanks in advance amitindia

  • Ellipsis in JTable

    Does anyone know how to prevent ellipsis (...) in the data of a JTable? What I want is for each column to be wide enough to display the longest string in the column without the use of ellipsis. Thanks so much, Jason

  • [X-Fi Titanium] SPDIF In (XBOX360)

    Hello, I have a XBOX 360 with a digital output, when i set the XBOX to stereo i get the sound out off my speakers but the quality is tereble. When I set the output to digital output 5. I don`t hear any thing at all. When i look at the controll panel