Adopting of contract doc.no in PR doesn't work

Do Contract document no can be adopted in PR
in other ways if a contract allready exsists for a material,
than is it possible to adopt contract document no in Pr
Pls suggest
Regards
Sam

it is not possible u have to create po directly with refrence to contract

Similar Messages

  • My Docs In The Cloud Doesn't Work

    My iCloud space is all freed up, (I have 3GB available) and all my files show on my iPad. But when I upload them to iCloud, it says its on iCloud, but when I look on my iPhone or my iMac, it doesn't show. It only shows the updated docs on my iPad, (which is the device I used to edit them). On the other devices, it only shows old docs that haven't been updated for a month.

    Welcome to the Apple Community.
    Have you tried turning off Document and data syncing off and on again on your devices other than the iPad.

  • Google docs on E 71 doesn't work, why?

    Hi everybody, anyone has any tip how to make it run normally? Thks!

    Hi.
    Both parties must be connected via Wifi for Facetime to work.
    If wifi is not a possibility, I recommend you try Skype's video calling funtionality as that works over wifi and 3G.
    Rodí

  • The application DOCS doesn't work. Doesn't have HELP. it is very bad. Help me. My ID is regobarros.thanks in advance

    The application DOCS doesn't work. Doesn't have HELP. it is very bad. Help me. My ID is regobarros.thanks in advance

    Also it was not and never has been jailbroken if that helps.

  • Repository event handler doesn't work when inserting an xml-doc via ftp

    Hi,
    I want to add a 'schemaLocation'-attribute to an XML-document when I load it in the repository. Therefore, I use the precreate-repository event and created a Repository Event Handler (see code extract below).
    Everything works fine if I type the following code in SQL Plus:
    Declare
    v_return BOOLEAN;
    Begin
    v_return:=DBMS_XDB.createresource('/public/xml/test.xml', XMLType(bfilename('XMLDIR', 'test.xml'),nls_charset_id('AL32UTF8')));
    end;Unfortunately, when I try to insert an XML-document via ftp into the /public/xml folder it doesn´t work as expected and no 'schemaLocation'-attribute is added to the new resource.
    What's the reason for this strange behavior and how can I solve it?
    For your information: I use the Oracle Database 11g Enterprise Edition Release 11.2.0.1.0
    Thank you very much for your help!!!
    Repository Event Handler code extract:_
    create or replace
    PACKAGE BODY schemalocation AS
    PROCEDURE handlePreCreate (eventObject DBMS_XEVENT.XDBRepositoryEvent) AS
    XDBResourceObj DBMS_XDBRESOURCE.XDBResource;
    var XMLType;
    l_return BOOLEAN;
    l_xmldoc dbms_xmldom.DOMDocument;
    l_docelem dbms_xmldom.DOMElement;
    l_attr dbms_xmldom.DOMAttr;
    c1 clob;
    node     dbms_xmldom.DOMNode;
    txid varchar2(100);
    dDoc DBMS_XMLDOM.DOMDocument;
    nlNodeList DBMS_XMLDOM.DOMNodeList;
    BEGIN
    XDBResourceObj := DBMS_XEVENT.getResource(eventObject);
    dbms_lob.createTemporary(c1,TRUE);
    var:=DBMS_XDBRESOURCE.getcontentxml(XDBResourceObj);
    l_xmldoc := dbms_xmldom.newDOMDocument(var);
    l_docelem := DBMS_XMLDOM.getDocumentElement(l_xmldoc);
    ------ add schemaLocation attribute
    l_attr := DBMS_XMLDOM.createAttribute(l_xmldoc, 'xsi:schemaLocation');
    DBMS_XMLDOM.setValue(l_attr, 'urn:iso:std:iso:20022:tech:xsd:sese.023.001.01 http://www.test.com/Testswift.xsd');
    l_attr := DBMS_XMLDOM.setAttributeNode(l_docelem, l_attr);
    DBMS_XMLDOM.WRITETOCLOB(l_xmldoc, c1);
    ------- get the value of the TxId-tag
    dDoc := DBMS_XMLDOM.NEWDOMDOCUMENT(c1);
    nlNodeList := DBMS_XMLDOM.GETELEMENTSBYTAGNAME(dDoc, 'TxId');
    node := DBMS_XMLDOM.ITEM(nlNodeList, 0);
    txid:= dbms_xmldom.getnodevalue(dbms_xmldom.getfirstchild(node));
    l_return:=DBMS_XDB.createresource('/public/ok/'||txid||'.xml', XMLType(c1));
    END;

    Marco,
    Here's an example of the problem :
    create or replace package handle_events
    as
      procedure handlePreCreate(p_event dbms_xevent.XDBRepositoryEvent);
    end;
    create or replace package body handle_events
    is
    procedure handlePreCreate (p_event dbms_xevent.XDBRepositoryEvent)
    is
      XDBResourceObj dbms_xdbresource.XDBResource;
      doc XMLType;
      res boolean;
    begin
      XDBResourceObj := dbms_xevent.getResource(p_event);
      doc := dbms_xdbresource.getContentXML(XDBResourceObj);
      select insertchildxml(
        doc
      , '/root'
      , '@xsi:schemaLocation'
      , 'urn:iso:std:iso:20022:tech:xsd:sese.023.001.01 http://www.test.com/Testswift.xsd'
      , 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"'
      into doc
      from dual;
      res := dbms_xdb.CreateResource('/public/xml/result.xml', doc);
    end;
    end;
    declare
    res boolean;
    begin
    res := dbms_xdb.CreateFolder('/public');
    res := dbms_xdb.CreateFolder('/public/tmp');
    res := dbms_xdb.CreateFolder('/public/xml');
    end;
    declare
    res            boolean;
    resconfig      xmltype;
    my_schema      varchar2(30) := 'DEV';
    resconfig_path varchar2(300) := '/public/ResConfig.xml';
    resource_path  varchar2(300) := '/public/tmp';
    begin
      resconfig  := xmltype(
    '<ResConfig xmlns="http://xmlns.oracle.com/xdb/XDBResConfig.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/xdb/XDBResConfig.xsd http://xmlns.oracle.com/xdb/XDBResConfig.xsd">
      <event-listeners set-invoker="true">
        <listener>
          <description>My event handler</description>
          <schema>'||my_schema||'</schema>
          <source>HANDLE_EVENTS</source>
          <language>PL/SQL</language>
          <events>
            <Pre-Create/>
          </events>
          <pre-condition>
            <existsNode>
              <XPath>/r:Resource[r:ContentType="text/xml"]</XPath>
              <namespace>xmlns:r="http://xmlns.oracle.com/xdb/XDBResource.xsd"</namespace>
            </existsNode>
          </pre-condition>
        </listener>
      </event-listeners>
      <defaultChildConfig>
        <configuration>
          <path>'||resconfig_path||'</path>
        </configuration>
      </defaultChildConfig>
    </ResConfig>'
      res := dbms_xdb.CreateResource(resconfig_path, resconfig);
      dbms_resconfig.addResConfig(resource_path, resconfig_path, null);
    end;
    /Giving the following input XML file :
    <?xml version="1.0" encoding="utf-8"?>
    <root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>This works :
    SQL> declare
      2    res boolean;
      3  begin
      4    res := dbms_xdb.CreateResource('/public/tmp/test.xml',
      5               xmltype(bfilename('TEST_DIR','test.xml'), nls_charset_id('AL32UTF8')));
      6  end;
      7  /
    PL/SQL procedure successfully completed.
    SQL> select XMLSerialize(document xdburitype('/public/xml/result.xml').getXML()
    as clob indent size = 2)  result
      2  from dual
      3  ;
    RESULT
    <root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
    urn:iso:std:iso:20022:tech:xsd:sese.023.001.01 http://www.test.com/Testswift.xsd
    "/>With the same document loaded via FTP, we get :
    SQL> select XMLSerialize(document xdburitype('/public/xml/result.xml').getXML()
    as clob indent size = 2)  result
      2  from dual
      3  ;
    ERROR:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00283: document encoding is UTF-16-based but default input encoding is not
    Error at line 1
    no rows selectedand the content looks like :
    < ? x m l   v e r s i o n = " 1 . 0 "   e n c o d i n g = " u t f - 8 " ? >
    < r o o t   x m l n s : x s i = " h t t p : / / w w w . w 3 . o r g / 2 0 0 1 / X M L S c h e m a - i n s t a n c e " / >As a workaround, I've found that serializing and re-parsing the document solves the problem :
      select insertchildxml(
        xmltype(doc.getclobval())
      , '/root'
      , '@xsi:schemaLocation'
      , 'urn:iso:std:iso:20022:tech:xsd:sese.023.001.01 http://www.test.com/Testswift.xsd'
      , 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"'
      into doc
      from dual;
    ...We then get the expected result after FTP transfer :
    SQL> select XMLSerialize(document xdburitype('/public/xml/result.xml').getXML()
    as clob indent size = 2)  result
      2  from dual
      3  ;
    RESULT
    <?xml version="1.0" encoding="UTF-8"?>
    <root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
    urn:iso:std:iso:20022:tech:xsd:sese.023.001.01 http://www.test.com/Testswift.xsd
    "/>The workaround also works for the DOM version presented above.
    Any ideas?

  • Export PDF converts filled PDF form without the data - Turns filled PDF form onto blank Word doc. Is there a solution to this or did Adobe just sell me a service that doesn't work?

    Export PDF converts filled PDF form without the data - Turns filled PDF form onto blank Word doc. Is there a solution to this or did Adobe just sell me a service that doesn't work?

    ExportPDF is not for forms. In general, converting forms to Word is a really, really bad idea which can even cause legal problems. Work with the form as a PDF. Acrobat (not Reader) can export form data as simple text for example.

  • PB00 Adoption for Contract to PO

    Hi Guys,
    Initially, I will create a Contract with Item Category "M" - Material Unknown
    After I adopt this contract into Purchase Order, I will key in the material number at this point.
    The info record already exist.
    The question I would like to ask is, is there anyway to make the Purchase Order pull the Price from Info Record instead of Contract once the Material Number is keyed in for Pricing condition PB00 in Info Record.
    Or is there any note I could refer to? I've checked note 456691, but so far no luck on that,
    Thanks

    Hi,
    You can achieve thus requirement by making some changes to access sequence of PB00 i.e., 0002 gross price...
    If you create contract with item category material unknown(M), then if you create PO with ref to contract then price PB00 is picked from step number 15 (table 16) in access sequence.
    If you create plant specific info record for material then it is picked from step number 25 (table 17).
    So what you have to do is insert a new step in access sequence 0002 as below
    step no 14
    Table 17
    Requirement 35
    Exclusion X
    And delete step number 25
    Better to copy access sequence 0002 and do changes here and assign it to your PB00
    cheers,
    Regards
    Satish

  • I get this message when I try to open my google shared docs this week: "A browser error has occurred. Please hold the Shift key and click the Refresh button to try again." - but that click/refresh doesn't work either. What's up?

    # Question
    I get this message when I try to open my google shared docs this week: "A browser error has occurred. Please hold the Shift key and click the Refresh button to try again." - but that click/refresh doesn't work either. What's up?

    The backend end is in serious pain....on many levels.
    Try this: Connection Problems Form

  • Why "start abc.doc" doesn't work in my java code

    Hi there:
    I used Runtime.getRuntime().exec("start abc.doc") to view the file in my java code, it doesn't work, but it works when I type in this at command line, could anybody help me out, super thanks in advance.
    Regards

    Hi there:
    The exception is
    java.io.IOException: CreateProcess: start "c:/temp/desktop/bob/data/abc.doc" error=2
         at java.lang.Win32Process.create(Native Method)
         at java.lang.Win32Process.<init>(Unknown Source)
         at java.lang.Runtime.execInternal(Native Method)
         at java.lang.Runtime.exec(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at desktop_v1_f.novell.io.IOManager.showFile(IOManager.java:42)
         at desktop_v1_f.novell.core.MainDesktopManager.showFile(MainDesktopManager.java:74)
         at desktop_v1_f.novell.gui.Surfboard.openF(Surfboard.java:267)
         at desktop_v1_f.novell.gui.Surfboard.detailsTable_mouseClicked(Surfboard.java:283)
         at desktop_v1_f.novell.gui.Surfboard_detailsTable_mouseAdapter.mouseClicked(Surfboard.java:320)
         at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)

  • I can't seems to print using my macbook air with hp series printers. When I plug the printer via usb to my system, the printer was recognized and installed. But when i send a doc for printing, it doesn't print all . Any help?

    i can't seems to print using my macbook air with hp series printers. When I plug the printer via usb to my system, the printer was recognized and installed. But when i send a doc for printing, it doesn't print all . Any help?

    Greetings,
    Here's a direct link to the drivers you need, they should work perfectly for your situation.

  • I upgraded to iphone 5c at the end of Dec. I accidentally washed my phone and now it doesn't work. Is there a way to get a new or refurbished iphone 5c without signing a new contract?

    upgraded to iphone 5c at the end of Dec. I accidentally washed my phone and now it doesn't work. Is there a way to get a new or refurbished iphone 5c without signing a new contract?

    Thank you.  I've been looking online for refurbished iphones but that is cheaper than buying a refurbished phone.

  • Licensing of my Adobe products "doesn't work anymore"; errorcode 150:30

    Is this the technical support of Adobe? If so, I have a question (if not: where and how can I find it?): I use the German version of the Creative Suite 4 on a Mac OS X Mountain Lion (version 10.8.2). After regenerating a Time Machine backup I couldn't open the suite's programs anymore.
    The first days an error message kept telling me I needed to install a Java SE 6-Runtime-version, but unfortunately I didn't have Internet so couldn't do anything but wait to get my new internet contract. When I had internet again, a newer Java update (version 1.6.0_43 instead of SE 6; I can't find SE 6 to download, if this should be necessary) obviously was installed automaticly, but instead of the first error message I now always get a window telling me the licensing of the product doesn't work anymore. It tells me to relaunch the computer and if this doesn't solve the problem (which it doesn't), I shall consult the technical support of Adobe and indicate the errorcode 150:30. Can you tell me what do do? Thanks in advance!
    Theo

    Hi verwirrt,
    Error 150:30 usually comes up if you use timeline or any other software to migrate the files from the older Mac to the newer one or in case of licensing issues.
    If you have used a migration software to transfer the files then it's not recommended.
    Please remove the files and reinstall CS4 from the disk.
    Moreover Photoshop CS4 has not been tested on Mac 10.8.2 and you might face compatibility issues.
    Further if you have installed the software from the disk and did not transfer the files from the older mac to the new please refer to the steps mentioned in the Kb doc : http://helpx.adobe.com/x-productkb/global/error-licensing-stopped-mac- os.html
    And if you do not have the disk to reinstall the software, then please download from the direct download links available at : http://prodesigntools.com/download-adobe-cs4-and-cs3-free-trials-here. html
    But make sure you follow the important instructions on the page before initiating the download.

  • Video audio doesn't work

    video audio doesn't work
    video runs but no sound
    please help

    ITunes uses Quick Time to convert. Quick Time cannot convert MPEg (Muxed) Files. Read this:
    Quick Time: Using MPEG 1 and MPEG 2 Files:
    http://docs.info.apple.com/article.html?artnum=61608
    Again:
    It is not possible to export the audio portion of a muxed MPEG-1 or MPEG-2 audio/video stream using QuickTime.

  • Video doesn't work when calling from Jabber to DX650

    Hi,
    I just added a DX650 to our CUCM 9.1.2. When I call from either Jabber to the DX650 or Lync to DX650, the video doesn't work and the call is audio only. The message i'm seeing on Jabber is something like "the other endpoint is not accepting video." Sorry i don't remember the exact message. Has anyone seen this issue before? Thanks!

    Lync is not standards based and has proprietary codecs for video. You will need a Expressway with the MS Interop key to get video both ways.
    https://www.cisco.com/c/dam/en/us/td/docs/telepresence/infrastructure/vcs/config_guide/X8-2/Cisco-VCS-Microsoft-Lync-Deployment-Guide-X8-2.pdf 

  • Outlook advanced search & Exchange 2013 - "Sent to...." field doesn't work correctly in online mode?

    Hello,<o:p></o:p>
    We've come across what seems to be a problem with advanced find in Outlook in online mode, when used with Exchange 2013. 
    Using the "Messages" tab of "Advanced Find", anything typed into the "Sent to...." field produces no search results.  If the field is populated by clicking
    "Sent to..." and selecting a name from a contact list or GAL, results are returned. 
    eg. 
    Sent items contains messages to "Charlie" who has the email address
    [email protected] and sender is
    "Dave" who has the email address
    [email protected] 
    Entering "charlie" or
    [email protected], (or any previously acceptable partial term such as "charl" or "@contoso.com") into the "Sent to"" field produces no results.  If the user exists in a contact
    list and is selected from it, the search works fine.  The same is true searching the inbox, using the local user's id of "Dave" or
    [email protected]
    We've confirmed this issue occurs at four client's sites, plus our own internal Exchange 2013 CU3 system.  Four of the sites have been transitioned from Exchange 2010, the fifth was a completely new installation.  The problem occurs with Outlook
    2007, 2010 and 2013. 
    This works fine in cached mode (not a solution as our clients are predominantly Citrix/RDS).  Exchange search doesn't report any issues and the index states are all "healthy",
    we've also tried rebuilding the indexes with no improvement.
    Any ideas would be appreciated, or even if someone else can confirm they see the same thing.
    Thanks.

    Hi Winnie,
    Thanks for your reply, and I'm sorry I've not responded earlier.  While this problem is one that's annoying several of our clients, and while I have been doing further testing and investigation, it's had to take a back seat to other more pressing issues
    until now.
    OWA search works fine, as does using "From:" in instant search, and the "From" query on the Advanced tab in Advanced Find.  The search services have been restarted, indexing state and copy status etc are all healthy, the indexes
    have been rebuilt/reseeded, and I've gone through the diagnostics again.  Nothing is logged in event viewer, and the only error that comes up when checking failed index docs for a user are for unsupported format handlers (.png etc).
    The issue seems purely to be with the "Sent to..." field on the Messages tab, it's as if it gets completely ignored.  The search returns instantly with "There are no items to show in this view".  Just to make sure I wasn't losing
    my marbles, I've compared searches on Exchange 2007 and 2010, and on those I can enter as little as a single letter or email domain and receive the expected results.  On 2013 I get nothing whatsoever whatever I enter, unless I pick an address from a contact
    list.
    At this point, I thought that since Office 365 is Exchange 2013 based it'd be worth testing that, and sure enough I got exactly the same issue.  I setup an Office 365/Outlook 2010 profile on a machine that is currently in an existing Exchange 2010
    environment where search works correctly, searching Office 365 doesn't work on that either.
    EDIT - Ignore this bit, a fresh install of Windows 7 and Office 2010 doesn't work with Office 365 either.  I am exploring another avenue.  I setup a fresh Windows 7 VM, installed Office 2010 and connected that to Office 365, search worked fine,
    so I'm now looking into what the difference with that VM and the servers and workstations out "in the wild" could be.  For example, the test VM isn't on a domain, it's not fully patched, it has no additional software installed etc.  Outside
    of Microsoft applications and operating systems and having similar configurations, I haven't isolated a common link across all of our client sites that are affected, there's no single 3rd party application or anti-virus solution in place at all of them for
    example. 
    I'll update with any findings, but if you or anyone else has any idea in the meantime I'd be grateful for your input.
    Regards.

Maybe you are looking for

  • Material doc in AFRU table

    Hi Guys, Need a little help, Can any body tell me why sometimes there are enteries in AFRU table with material doc number (WABLNR) and some time material doc number field came as blank. Even though in MSEG i see material doc number (MBLNR) but its bl

  • ORA-12514 Fresh installtion of Oracle XE on Win XP

    I have a fresh installtion of Oracle XE on my Win XP machine. I am unable to view the databse home page using Start --> Programs --> Oracle Database 10g Express Edition --> Go To Database Home Page This gives "The page cannot be displayed" . Services

  • Changing display size on "Compose Email Page" in Outlook

    I am faced with a weird problem that has made my life miserable while using my Lenovo T430 machine. On the compose email page in outlook I must have hit some key combo coupled with some action on the trackpad and the fonts in the compose email became

  • Looking for 27" monitor or larger under $350

    Looking for (2) 27" monitor or larger under $350 each. It will be a dual monitor for a new build. Used mostly for PP cs 5.5   Win 7, 64 bit 1920/1080 of course. Video card will be: ASUS ENGTX480/2DI/1536MD5 GeForce GTX 480 (Fermi) 1536MB 384-bit GDDR

  • How to get elements6,onto mac air.

    i have i disc for my g4 powerbook but now i have a macbook air ,can i use the one i have downed to a flash drive or to i have to buy a download version..slim.j