Contract appearence when creating PO and SC

Dear Experts,
When I create an SC, after I enter the material number, the contract will appear automatically.
But when I create a PO, the reference contract doesnot appear after I input the material number.
So this is an error or not.
Is the the default right system logic?
Thanks & Regards,
Hayashi.

Hi Hayashi,
As per me the contract should not appear even in SC also. could you pls check if there is any development done to get the contract in SC.
Imagine of a scenario, where a material is being procured from different vendors within same validity, in that case how the system will propose the contract ?
The option what we should have to select the source of suppy and search a valid contract.
Best Regards,
Anil

Similar Messages

  • Why a semi-colon is not enough when creating packages and package bodies?

    Hi,
    I'm struggling with a quite simple problem - when creating a package header and body in the same script, it does not work as expected. See for example this very simple package:
    CREATE OR REPLACE PACKAGE mypackage AS
    PROCEDURE test_proc(id INTEGER);
    END mypackage;
    CREATE OR REPLACE PACKAGE BODY mypackage AS
    PROCEDURE test_proc(id INTEGER) IS
    BEGIN
    NULL;
    END test_proc;
    END mypackage;
    When executed from JDeveloper (or sqlplus), the package is created but with a "PLS-00103: Encountered the symbol CREATE" error. It seems Oracle does not recognize the script contains header and body, and uses the whole script as a header (which is obviously wrong).
    If modified so that there are "/" everything works fine:
    CREATE OR REPLACE PACKAGE mypackage AS
    PROCEDURE test_proc(id INTEGER);
    END mypackage;
    CREATE OR REPLACE PACKAGE BODY mypackage AS
    PROCEDURE test_proc(id INTEGER) IS
    BEGIN
    NULL;
    END test_proc;
    END mypackage;
    Why is this necessary? Why Oracle does not recognize that "END mypackage;" actually ends package header definition, and combines it with the body definition into an invalid block? I've thought semicolon is a valid separator, so why is the "/" necessary?
    It does not work even when I try to run the statements separately (from the same worksheet in Jdeveloper) - first select the header block, hit F9 (execute statement), then repeated the same for body. In this case both header and body are created, but are invalid because the last semicolon is removed from them (so it's not possible to compile them).

    For that to work, the SQL engine would have to understand PL/SQL syntax. Only the PL/SQL compiler knows when all the END statements have matched up with their corresponding declarations, and it doesn't do CREATE statements. I guess it could detect that the compilation unit it started has finished and pass any text left over back up to SQL to have another shot at. I'm not sure that's reasonable. There is no other example in SQL where one CREATE statement can turn into two - e.g. you can't send a block of CREATE INDEX statements together and expect the database to parse them out into separate commands.
    Edited by: William Robertson on Jun 6, 2009 6:49 PM
    Edited by: William Robertson on Jun 6, 2009 6:51 PM
    Added example about indexes.

  • Slow program response, crashes when creating titles and dynamic link issues

    Dear reader,
    I am now trialling Adobe CC OSX with Premiere Pro and After Effects before deciding to subscribe but I am experiencing a lot of issues while working.
    I am now working on an animation, but editing raw mxf files also gives crashes and slow responses/ program refreshes.
    1) Slow mouse response
    2) Slow program refresh while key framing visuals
    3) Rendering in PP is extremely slow when AE is open in the background, when closing AE and re-initiate the render in PP it renders super fast
    4) Crashes. When I overlay titles in my time line PP regularly crashes
    5) Dynamic Link issues when working combined in AE and PP where file connections in the time line get lost when the AE project has too many sequences
    I am curious to find out if other people are also experiencing these issues.
    I am indecisive in getting the paid yearly plan or move to FCPX instead? Or should I get a new MacPro and is this model too old?
    It worked fine 2 months ago, however I was still working on FCP7. After updating it is really bad working with it...
    My system consist of:
    MacPro mid-2010
    OSX 10.9.5 (13F34) (new installation)
    2x2,66Ghz 6-core Intel Xeon
    24GB DDR3 ECC
    Nvidia Quadro K5000, 4GB
    2x PCIe SSD 1TB
    2x HDD 3TB
    2x HDD 2TB
    Feedback is much appreciated! Best regards, Alexander

    this does work for basic colour correction but not when trying to grade an entire suqence to achieve a specific style, applying a vingette or certain effects have to be done in after effects.
    I want to try and get my whole sequence into after effects but preserve the edits and effects added in permier pro, is there any way to do this?
    rich

  • Error when creating tweens and masks

    Hi Guys, i seem to be having a porblem with any sort of tweens, motion (classsic) and shape.
    when i create a new motion tween for example, i get the yellow "!" error in properties and it says "Motion tweening will not occur on layers with ungrouped shapes or on layers with more than one group or symbol". Thing is, i dont have more than one symbol or thing more than one shape and that is actually being tweened.
    the ! error only shows when i select the last frame in the tween. any ideas how i can get around this? i've never had this problem previously.
    when i create a motion tween, i draw the object (in this case a circle), right click on the single keyframe, select create motion tween, then copy this keyframe and paste it further down the timeline, say at frame 10. At frame 10, i will move the circle to another location. the tween seems to work and it has created the symbol in the libary (tween 1) as a graphic, and when i export, it works ok, but the last frame has still the same error with the "!".  Same thing happens with shape tweens.
    In this case i have used a shape tween to make a circle become larger, and this which is my mask layer, with the masked later underneath, which is a static shape which i have drawn with the pencil tool. The mask works fine in flash, but when exproted, nothing shows.
    I've linked to an example .fla file of the problem that i am having with the tween and also the mask layer. The main animation is in a movie clip called "Drop 10", in the libary.
    Any help would be great as this is driving me mad.
    File: http://ranicx.com/test/example_problem.fla

    does anyone have any idea what could be happening? i really need help with this.

  • Can I do a "select all" when creating themes and settings?

    When I am creating my dvd, can I do something so that each of the scene selection screens will have the same theme, same movie clip in the drop zone and same music playing? Is there a way to select all the same preferences for the customize option? Thank you!

    Hi Navy91,
    After you have finished customised the first scene selection menu screen, use the Adanced > Apply Theme To Folders menu command to apply the same theme settings to all other scene selection menus following it.

  • Timeout when creating socket in EJB

    What is the best way to solve the problem when creating sockets and being dependant
    on the timeout of the JVM. On windows the timeout is approx. 20 seconds. But on
    Solaris the same operation has timeout of more than 200 seconds...
    Socket sock = new Socket(host, port);
    The solution seems to be using threads. But threads are not allowed in EJB's...
    Dows anyone have a solution for this?
    Mala

    Hello Tor,
    Try the following:
    Socket s = new Socket();
    s.connect(socketAddress, timeOut);
    These features are available in J2SE 1.4 and above.
    Best regards,
    Ryan LeCompte
    [email protected]
    http://www.louisiana.edu/~rml7669
    "Tor Mala" <[email protected]> wrote:
    >
    What is the best way to solve the problem when creating sockets and being
    dependant
    on the timeout of the JVM. On windows the timeout is approx. 20 seconds.
    But on
    Solaris the same operation has timeout of more than 200 seconds...
    Socket sock = new Socket(host, port);
    The solution seems to be using threads. But threads are not allowed in
    EJB's...
    Dows anyone have a solution for this?
    Mala

  • Layer position resets when creating animations

    I'm creating an animated gif from a video clip (cinemagraph). In order to acheive the effect I need, I need to move each layer with the move tool to get an object to stay in the same position. I have gone through layer by layer and used the move tool to move the contents of each layer. When I play the animation I see the layers in the position I put them in. As soon as I stop playing the animation the contents of each layer snap back to their original positions. I have tried using the lock tools (both lock position and lock all) but they don't make a difference. Can anyone tell me why layer positions would reset when creating animations and how to get it to stop?
    Thanks for any help.
    Eric

    It seems from your answer that you're thinking I'm just moving one frame and expecting the rest of them to move automatically (but I'm not sure if that's what you are saying). I have gone through and moved each frame individually and then locked each frame's position individually. When I play the animation and then stop it the layers move back to their original positions.
    I'm also not sure if you're thinking I'm expecting that when I move one image off the layer it will affect the next layer. That's not what I'm expecting. I'm just repositioning the image on each layer to get a particular object to stay in one place (the camera was moving while shooting), so I'm dealin gwith each layer individually.
    Thanks

  • Text Box in DOCUMENTS Tab when creating a Contract

    Hi
    I'm using SRM 5 , when creating a Contract(GOA), the minute you select the Documents Tab , the text box for internal note is already open, and it fills up the top portion of the screen. This does not allow you to save( or to put your contract either on hold, or to Release.) You cannot select any of those options as the text box covers the entire top area, the only option available is to click on "back to inital screen".
    When you select this option you loose all your work,and it takes you to the initial screen.
    I cannot find the note which has to be applied , please assist.
    Thanks
    T.

    Hi,
    Kindly review the following note:
    1067625 - ITS TextEdit: Control overlaps other screen elements
    This note should resolve this issue,
    Kind Regards,
    Lisa

  • Contract Version not created when WK Contract (target value) is changed.

    Hi there,
    Problem with the Version Management on a WK Contract.
    When we change the contract targ. value on some of our contracts the new version is not created accordingly. This is only on some of our contracts
    Version Mgmnt is correctly configured and the release strategy in place to be triggered when the target value changes. It does work correctly for some contracts.
    We receive the following message when we change the targ. value:
    "No new version created because a message has not yet been transferred"= Message 027
    Can anyone help or advise?
    Many thx.

    We receive the message on some of the contracts.
    Therefore it can't be due to the output

  • Problem when creating contract  with foreign trade / customs

    Hi,
    I encountered a problem when creating contract / outline agreement.
    I used ME31K to create a contract with a vendor outside of our country. I suppose that I should be able to see "Foreign Trade / Customs" in "Header" menu, but this entry is gray, I cannot enter it.
    I tried to create a scheduling agreement using ME31L with the same vendor and material, I can see "Foreign Trade / Customs" information. I suppose these two process are similar, aren't they?
    Btw., I checked the master data according to this thread:
    http://help.sap.com/saphelp_46c/helpdata/en/ed/3b6cc697e711d1b4e20000e82d81b0/content.htm
    Can anyone give me some hint?
    Thanks!
    Charlie

    These two processes are different:
    The Contract agreement or the Outline Agreement is that create the centrally contract (cross-plant) where it can maintain different pricing conditions for each and every plant. It creates the Release Order with reference to Outline Agreement. No detailed delivery schedule can be made in the Release Order. No Release documentation is created. Only time-dependent conditions can be created, Some Item Category 'M' and 'W' can be used.
    Whereas the Scheduling Agreement is the Plant Location what must be entered in the Scheduling Agreement. Its no need to create any other purchasing document except for delivery schedule line via Transaction ME38 or MRP running (with the appropriate setting of Source List). Delivery Schedule line items are created subject to your specific requirement. It can create both Scheduling Agreement with or without release of Documentation (subject to the Document Type LP or LPA) with the selection of either FRC or JIT delivery schedule. Either time-dependent or time-independent conditions can be created subject to the customizing in the Document Type of the Scheduling Agreement. Item Category 'M' and 'W' can not be used.

  • When creating PO in ECC central contract not displayed automatically

    Hi,
    I'm testing if the central Contracts are displayed automatically when creating a PO (ME21N). The contract has been created in SRM. In ECC the contract is saved in table CC_DB_VIEW.
    Is it possible that the contract is automatically assigned to the PO, when entering the vendor and material. For PIR this works fine.
    Regards,
    Alexander

    Hi,
    Create Contract Release Order Thru ME25.
    Follow the steps from this document:
    http://help.sap.com/saphelp_470/helpdata/en/75/ee0f4d55c811d189900000e8322d00/content.htm
    Reetesh
    Edited by: Reetesh Tiwary on Nov 17, 2011 3:52 PM

  • Terms to be agreed when creating a Paid Books Account and submitting an iBook to the iBookstore

    Hi there everyone
    I'm advising a client on the range of terms to be agreed when its creates an iBook using iBooks Author and then submits the iBook for publication on the iBookstore (using a Paid Books Account, not a Free Books Account).
    From what I can glean from various sources, it seems the client needs to agree to:
    the iBooks Author 2.0 License Agreement, when downloading the iBooks Author app from the AppStore;
    the eBook Agency/Commissionaire Distribution Agreement (when creating a Paid Books Account through iTunes Connect); and
    the iTunes Connect Terms of Service when downloading iTunes Producer (the separate app through which one publishes an iBook to the iBookStore).
    There are two things I'm not sure about though. The reason for my lack of certainty is that I don't have a US Tax ID and so cannot replicate the Paid Books Account sign-up process to the stage where I'd have to agree to the various terms and conditions. My  questions, please, are:
    Am I correct in thinking that a person is required, when creating a Paid Books Account through iTunes Connect, to agree to the "eBook Agency/Commissionaire Distribution Agreement"?
    If so, can anyone email me please ([email protected]) or provide a link to the latest version of the eBook Agency/Commissionaire Distribution Agreement? (I've seen a version online (http://outskirtspress.com/iBookStore_v3.pdf) but don't know whether it's the latest version; I'm thinking it's probably not).
    When signing up for a Paid Books Account, is one also required to agree to the "PHG Terms and Conditions" and the "Publisher Program Terms and Conditions" that are attached to them, or is that optional?
    Many thanks for any help. Much appreciated.
    Kind regards
    Richard

    Any documents/agreements are obtained as part of a contract and not allowed to be distributed in an otherwise uncontrolled manner, which if done, could violate the agreement/contract.
    You need to participate in the process to:
    1. Access the latest, binding versions of all agreements/contracts
    2. Possess a tax id/SSN to sign up.
    If you have questions about the process, you should contact Apple directly.
    Global Phone Support
    We have expanded English-language publisher phone support. To make contacting the iBookstore support even easier, new local phone numbers are now available for Australia, France, Germany, Italy, Netherlands, Spain, and the U.K. Support is available Monday to Friday, from 7 a.m. to 5 p.m. (PT).
    Country
    Phone Number
    Australia
    1300 307 504
    Note that this is a low tariff number.
    France
    0805 540 117
    Germany
    0800 664 5307
    Italy
    800 915 902
    Netherlands
    0800 0201 578
    Spain
    900 812 687
    U.K.
    0800 975 0615
    U.S.
    +1 (877) 206-2092
    Toll-free from U.S. and Canada.
    Applications:
    [email protected]

  • Mandatory PR reference when creating Contract or RFQ?

    How is it possible to make it mandatory to reference a PR when creating a Contract or an RFQ? I have tried to make the Ref. PR field mandatory but still the system allows me to continue even though I have not entered a PR number.

    Hi,
    When you say that you have made the field mandatory and it is allowing you to continue, this means that you have not made the field mandatory and so I would check your settings. It is tricky to set the fields correcrly on Purchasing documents because there are so many different influencing factors. In addition to trying to set it as mandatory for the ME31 in the field selection reference table you have to set the MKK or WKK entries as well and also check all of the PT0K, PT2K etc. settings (the numeric character is the numeric character of the item category, i.e. the internal code for the "D", "L" etc.)
    So before you give up check the other field selection entries to make sure that they all have the field as mandatory.
    Steve B

  • When create RO against contract system should allow to create RO 10% tolera

    Hello,
    My scenario is when create release order (RO) against contract, system should allow to create RO against contract value 10% tolerance on total value of the contract.
    Please let me know what are the configuration settings needs to be done.
    For ex: contract value 1000 USD
    So system should allow to create RO against contract 1100 USD it means 10% tolerance on contract value.
    It seems nobady have idea on this issue
    Thanks
    Edited by: sapmm99 on Apr 19, 2011 8:11 AM

    you idea  is just in conflict to SAP design and as well it does not follow the good business practise and violates the meaning of a contract.
    a contract is a written agreement between vendor and you (customer) that fixes a certain quantity at a certain price for a certain period.
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/75/ee0ee555c811d189900000e8322d00/content.htm

  • Generally when creating a Word file from either a Mac or Win7 pc and opening it on two different machines (either one first) it always prompts that the file is open and will be opened as read only. However opening a CSS file does not prompt that it is alr

    Generally when creating a Word file from either a Mac or Win7 pc and opening it on two different machines (either one first) it always prompts that the file is open and will be opened as read only.
    However opening a CSS file does not prompt that it is already open on or from any machine which is causing code edits to be lost.
    What we found from out testing:
    - The file can be saved from one user to the server and WILL NOT PROMPT on other machines until the saving machine has the Dreamweaver program closed completely
    - The file can be closed and  Dreamweaver minimised to the launch bar but it still will not register on other machines that it has been changed.
    - Also, until the  Dreamweaver program is closed on the machines, it will continue to open it's saved version of the file. 
    Example Scenario:
    - User 1 opens test.css (which is 2000 lines) and adds some code to the end of the file to bring it up to 2500 lines
    - Meanwhile User 2 opens test.css as well (opens as 2000 lines as User 1’s edits have not yet been saved) and adds in code to bring it to 2300 lines
    - User 1 saves his file and closes it - but  Dreamweaver is still open.
    - User 2 also saves his file and leaves  Dreamweaver  open.
    - The server will report the size and last edit of the file the same as User 2 as he was the last person to save it (and if you open from the Win7 Machine it will show as User 2’s 2300 line version)
    - If User 1 then open's the file again (from either the 'recent' in Dreamweaver OR clicking on the file directly in Finder...which version opens.... The version that User 1 saved! Not the true version on the server, but the version that User 1 edited and saved with 2500 lines in it.
    - Same for User 2, he will open 'his' version with 2300 lines in.
    Other information:
    - Files are opened directly from the server
    - Sometimes the users will save incrementally and re-open
    - Most of the time users will save incrementally and keep the files open
    - The users will never not save incrementally and just save when closing the file once finished
    - The users are usually working on the files all day
    - It is always the bottom lines of code that are lost. It could be a case of the two versions being mixed up and cutting off the newly added lines based on the line count (possibly).
    It is as if Dreamweaver is holding a cache of the version locally and then only properly looking back to the server when it has been completely closed. It is very difficult to see how the server is causing such an impact on these files, there are very few logs which are giving any indication to the root cause of the problems.
    Anyone know if this is a known issue?
    Is there a way that there can be a featured implemented on the server that doesn't allow another user to open a file if it is already open on another machine?
    Thanks

    Your server file handling has nothing, and really nothing to do with Adobe software. If files don't get locked for (over-)writing and/or lose connection to the program opening them, then your server is misconfigured. It's as plain and simple and that. Anything from "known file types"/ file associations not being set correctly, MIME types being botched, crooked user privileges and file permissions, missing Mac server extensions, delayed file writing on the server, generic network timeout issues and what have you. Either way, you have written a longwinded post with no real value since you haven't bothered to provide any proper technical info, most notably about the alleged server. Either way, the only way you can "fix" it is by straightening out your server and network configuration, not some magic switch in Adobe's software.
    Mylenium

Maybe you are looking for

  • How to see the print preview of outgoing excise invoice.

    Hi Experts, How to see the print preview of outgoing excise invoice. Thanks, srinivas.

  • Zen Xtra Nomad Jukebox suddenly not recognized by Windows XP Netbook

    I'm desperately struggling to get my Creative Zen Xtra Nomad Jukebox MP3 player (version .03.02) to be recognized by my computer. (My background is I'm about 4 hours south of my home, temporarily helping my exwife who is slowly dyiing of cancer... [U

  • Unwanted images in my library

    For some reason all the images that come with software have become part of my iPhoto library. How do I get them out, without removing them from my imac.

  • Command line set of retention?

    Greetings. I'm in a situation in which several thousand users are spread across about 12 POs. I have to manually verify that many of these users are flagged for retention using the MA GWarchive product. Right now, I have to do this via the GUI in Con

  • How do I delete an object

    I have imported a document from Word, and the footer came in as an object.  I can delete the text within the object, but I can't seem to delet the object itself, even though it is selectable.  How do I go about deleting the object? Thanks in advance