Query on Messages , Text message -PO

Hi Guys,
I wanted your help on 2-3 things.
1. Presently I am able to send the child item to Sub contractor even though all my requirement is complete , but I wanted an error message to be generated when I do so .
Is it possible to do the settings so that system gives an error message .
2.Secondly  I wanted the Delivery Text & Info record Note at the item level to be visible in PO print preview.
I had done setting for the text message in spro -MM-Purchasingmessage -define text for PO, in this I had selected Text for Document item in the dialog structure and for operation (1)-- doc type (NB)item cat(std ie blank)-Object (EKPO) I have maintained object id F04 & F05 , but still I am not able to view the delivery & info record text in the preview.
3.Lastly can I take the reference of a reservation, to create a PR and or PO , if so how do I go abt. it.
Thanks

Hi,
1) What error message you need to put if all the requirements is completed. You can add any custom message with the help of ABAPer, but check the condition which is applicable ( As you told all the requirements is completed then what is the need)
2) Delivery text & info record note to be in PO print preview can be done, you need to discuss with your ABAPer to include these two texts in PO print in the PO Smartform. So that linkage will be used for display.
3) PR & PO cann't be created using the Reservation, It will serve for Internal stock movements means only applicable to Inventory management.
rgds
gsc

Similar Messages

  • Error while querying workflow message attributes for task

    Can some one please help me with this error?
    I get this error when I submit a task in worklist app. I have figure out that it is causing due to one payload in the table in the task. If remove that payload I am able to submit the task.
    Error while querying workflow message attributes for task a99d1cf3-5e91-4c4a-8660-aeae91bfbec0 with version 5.
    Check the underlying exception and the database connection information. If the error persists, contact Oracle Support Services.
    oracle.jbo.JboException: Error while querying workflow message attributes.
    Error while querying workflow message attributes for task a99d1cf3-5e91-4c4a-8660-aeae91bfbec0 with version 5.
    Check the underlying exception and the database connection information. If the error persists, contact Oracle Support Services.
         at oracle.bpel.services.datacontrol.XSDDataControl.invokeOperation(XSDDataControl.java:460)
         at oracle.adf.model.bean.DCBeanDataControl.invokeMethod(DCBeanDataControl.java:430)
         at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:261)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1635)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2144)
         at oracle.adf.model.bean.DCBeanDataControl.invokeOperation(DCBeanDataControl.java:467)
         at oracle.adf.model.adapter.AdapterDCService.invokeOperation(AdapterDCService.java:307)

    Can anybody help me on this?
    I did some google but I get this only which is not much helpful.
    http://download.oracle.com/docs/cd/E14571_01/core.1111/e10113/chapter_bpm_messages.htm

  • How to query for messages on JMS Queue?

    Hi All,
    What is the best way to query on a JMS Queue? I would like to query for messages based on values entered on a screen. Can this be achieved using the JMS Adapter or any other adapter?
    JDev : 11.1.1.4
    Thanks and Regards.

    Hi,
    I am not 100% clear on your requirement and what selection criteria you need. I would be surprised if you need the DB adapter. If you just want to query how much message are in the queue or other related queries for example related to header information then DB adapter can be used. This only works when JMS queue is stored in the database. Personally I have never come across this requirement.
    I suggest to look in more detail of the JMS adapter. The JMS adapter can be used to select (subscribe) to certain messages. Please read the below for more information:
    http://docs.oracle.com/cd/E17904_01/integration.1111/e10231/adptr_jms.htm#CJACBCHJ
    The message is automatically removed from the queue (implicit delete) the moment it is picked-up. I would not recommend deleting a message directly from the queue using DB adapter. What is the point of publishing the message in the first place?
    Thanks
    Sander

  • Query Archived Message Tracking Logs

    Hi,
    How can we query archived message tracking logs restored from backup from EMS?
    Regards,
    Irfan
    Irfan Goolab SALES ENGINEER (Microsoft UC) MCP, MCSA, MCTS, MCITP, MCT

    Hi Irfan,
    I am a little confused, could you please describe your requirements in more detail ?
    If you want to restore a message , you can use "Search-Mailbox" cmdlt to find and recover it;
    More details for your reference:
    https://technet.microsoft.com/en-us/library/ff660637(v=exchg.150).aspx
    Best regards, 
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Niko Cheng
    TechNet Community Support

  • Apex 4.2 Report region sql query with "apex_item.text" renders wrongly

    In APEX 4.2 page i have created region "Report data".
    Type="SQl Query".
    "User Interface"-->"Template"="Reports Region".
    "Region Source"="select apex_item.text(1, '111') as c1 from dual".
    Actually the select query is little bit more complex, but generally simplified it is such, that it uses function "select apex_item.text" to construct HTML textfield.
    If i run in Sql Developer query
    select apex_item.text(1, '111') as c1 from dual;Then result is:
    <input type="text" name="f01" size="20" maxlength="2000" value="111"  />But in APEX 4.2 the report is rendered so:
    <td  headers="c1">&lt ;input type=&quot ;text&quot ; name=&quot;f01&quot; size=&quot;20&quot; maxlength=&quot;2000&quot; value=&quot;111&quot;  /&gt ;</td>(for this forum to display correctly i had to put extra spaces between" &gt" and ";" and so on)
    And APEX 4.2 shows ugly html inside report cell/slot for me, displaying characters/symbols ">". The reason is that APEX HTML page source does not have symbol ">" but has " &gt ;" .
    In APEX 3 i have similar query working well, without such anomaly.
    What attribute should i change in APEX 4.2 region to display my query result as needed?
    I need that function "apex_item.text", i cannot remove it.
    Edited by: CharlesRoos on 13.02.2013 15:28
    Edited by: CharlesRoos on 13.02.2013 15:29
    Edited by: CharlesRoos on 13.02.2013 15:29

    CharlesRoos wrote:
    In APEX 4.2 page i have created region "Report data".
    Type="SQl Query".
    "User Interface"-->"Template"="Reports Region".
    "Region Source"="select apex_item.text(1, '111') as c1 from dual".
    Actually the select query is little bit more complex, but generally simplified it is such, that it uses function "select apex_item.text" to construct HTML textfield.
    If i run in Sql Developer query
    select apex_item.text(1, '111') as c1 from dual;Then result is:
    <input type="text" name="f01" size="20" maxlength="2000" value="111"  />But in APEX 4.2 the report is rendered so:
    <td  headers="c1">&lt ;input type=&quot ;text&quot ; name="f01" size="20" maxlength="2000" value="111"  /&gt ;</td>(for this forum to display correctly i had to put extra spaces between" &gt" and ";" and so on)
    And APEX 4.2 shows ugly html inside report cell/slot for me, displaying characters/symbols ">". The reason is that APEX HTML page source does not have symbol ">" but has " &gt ;" .
    In APEX 3 i have similar query working well, without such anomaly.
    What attribute should i change in APEX 4.2 region to display my query result as needed?Ensure that the Display As Column Attribute for the C1 column is Standard Report Column.

  • How to display the out put of the sql query in a text file using forms

    I want to display the out put of the sql query in a text file using forms 6.0.Same could be done using spool command in sqlplus but i want it using forms....Fiaz

    Have a look at the text_io package:
    http://www.oracle.com/webapps/online-help/forms/10g/state?navSetId=_&navId=3&vtTopicFile=f1_help/oraini/c_text_io.html&vtTopicId=
    cheers

  • How to write the output of an SQL query to a text file?

    I am using Oracle 11g and SQL plus.
    I have a large table called rating.
    Whenever I do
    SQL> select * from rating;
    The output goes much beyond what the SQL Plus screen can show. I want to therefore store the output of this query into a text file.
    How can this be done? Please help. Thanks.

    SQL> SPOOL results.txt
    SQL> select * from rating;
    SQL> SPOOL OFF

  • How to display query variable in text element and format the text element

    Hi All,
    I want to display the value of the value of variable against fiscper3 and the value of the variable against 0fiscyear in the web application template from the query in the text element in the web template in BI 7 Web application designer.
    Also, in the web application designer I need to format the text element in the web application designer to set the text element to center the display change the size and make it bold. I am bit lost I cannot find these properties in the web application designer against the text element.
    Appreciate if you could kindly help.
    Thanks
    Karen

    Hi
    hope below tags would help you
    Re: Search by text on a variable
    Re: Need to display text part of TEXT variable in query designer
    regards
    nag

  • Saving query results to text file

    Hi experts,
    I would like to save a query results to text file.
    The query has desined to the correct structure and I wish the query results will be saved automaticly to text file every time the query is running.
    The query should cintain some sql code that will save the query to text file instead of show the query results.
    What function of SQL should I add to query to achieve that goal. (The query is a long one).
    Thanks in advance,
    Joseph

    If you are talking about Query Manager, it is not difficult to do.  No matter how long your query coding is, just go to the start point of your query.  Then press CtrlShiftEnd to select all the TEXTs.  CtrlC and CtrlV will copy the text (query codes) to text file easily.
    Thanks,
    Gordon

  • BW Web Query Error Message

    We execute our queries through web templates. My client executes a CO-PA operating concern query through the web browser for a year’s worth of data and after results are returned, then proceed to drill down on material and another drill down on customer. After 15 minutes or more the following message is displayed – “ An error has occurred during loading. Please look in the upper frame for further information”.
    Client also gets the same message after letting a query set idle for some time and then later try to resume action on it, such as drill down or filter.
    We have tried the suggested solution in SAP note 924176 for the &SNIPPET_OPERATIONS=.
    We have almost 20 active aggregates setup for the CO-PA operating Concern cube assigned to the query.
    Also, we have upgraded the SAP kernel to the latest version:
    icm/server_port_2  PROT=SMTP ,  PORT=8857 , TIMEOUT=900
    icm/server_port_1  PROT=HTTPS , PORT=8856 , TIMEOUT=900
    icm/server_port_0  PROT=HTTP ,  PORT=8855 , TIMEOUT=900
    icm/keep_alive_timeout is set to 60 and always has been on our servers.
    These all check out with what SAP recommends.
    Does anyone have any other suggestions that we can try?
    Also, does anyone know where this error message is produced from? Is it from SAP, BW or Microsoft Explorer? Can this message be modified to better explain to the user why the timeout occurred, i.e. too much data?
    We realize that this is a huge amount of data being returned due to the drill down. The client would like for us to continue to try and resolve this issue. This error message is not very user friendly and tends to be confusing for our client.  If we cannot resolve the error, we would at the very least like to change the error message to be more meaningful.
    Any assistance is greatly appreciated. Thanks!

    Dear Eric,
    do you have a Proxy Server you work with, if you deactivate it for your BW domain. Proxy Server normally have timeouts from 5 till 15 minutes - but sometimes its to less for BW Queries.
    Another reason is the 2 GB limitation of Processec, look in Transaction ST22 (Dump Analysis) and search for Dumps on a day the error occurs.
    IF there are dumps including 'ROLL_MEMORY' or 'TABLE_SIZE' ..., it is the 2 GB limitation - this happens often with larger data, is it possible to reduce the data by mandatory varibales or something else, if this is not practible. Contact your BASIS, there are some system parameters to optimize it - but only a bit.
    We have to wait for 64 bit systems...
    Search SAP Notes for the Dump Text and you will get further help on it.
    Regards Marcus

  • Recordset(Query) Error Message

    Hi
    I'm a newbie, so I need your help. Whenever I try to add a
    Recordset(Query) to a PHP page I get the following error:
    " While executing addDynamicSource, the following JavaScript
    errors occured:
    At line 29 of file " C:\Program
    Files\Macromedia\Dreamweaver8\Configuration\DataSources\PHP_MySQL\Recordset.js":
    JavaScript error while loading Recordset.htm
    At line 1111 of file
    "C:\ProgramFiles\Macromedia\Dreamweaver8\Configuration\DataSources\PHP_MySQL\Recordset.js ":
    theStr=theStr.replace(/(?>)*/gi,""); //remove close tags
    SyntaxError: invalid quantifier? "
    Or this error (the same as in the Philgreg's post): "The
    Recordset script does not define the applyServerBehavior function"
    I'm using PHP5, MySQL with IIS as a testing server, and DW8
    (updated). Connection to database is OK.
    PLEASE HELP!
    Thanks in advance.
    link
    to the post
    link[/L]

    Have you tried reinstalling DW?
    "dedurus" <[email protected]> wrote in
    message
    news:e6pm9v$hci$[email protected]..
    > Hi
    > I'm a newbie, so I need your help. Whenever I try to add
    a
    > recordset(Query) to
    > a page I get the following error:
    > " While executing addDynamicSource, the following
    JavaScript errors
    > occured:
    > At line 29 of file " C:\Program
    >
    Files\Macromedia\Dreamweaver8\Configuration\DataSources\PHP_MySQL\Recordset.js":
    > JavaScript error while loading Recordset.htm
    >
    >
    > At line 1111 of file
    >
    "C:\ProgramFiles\Macromedia\Dreamweaver8\Configuration\DataSources\PHP_MySQL\Rec
    > ordset.js":
    > theStr=theStr.replace(/(?>)*/gi,""); //remove close
    tags
    > SyntaxError: invalid quantifier? "
    >
    > I'm using PHP5, MySQL with IIS as a testing server, and
    DW8. Connection to
    > database is OK.
    > PLEASE HELP!
    > Thanks in advance.
    > dedurus
    >

  • Query another message payload from graph mapping program

    Hi all,
    I have the following scenario
    Third Party Business System -> XI -> ECC 5.0
    Third Party sends ORDER to ECC and ECC answers with ORDRSP
    When mapping ORDRSP.ORDERS05 to Third Pty format, I need to use info that the Third Party provided us on the ORDERS.
    So... I have to query the ORDERS message payload from ORDRSP message mapping program.
    Any ideas?
    My first idea deal with doing an RFC lookup to search the ABAP Database for this info (my ABAP background raises ) but I'd like to know if there is a more elegant and efficent way of doing this.
    regards,
    David R.

    Hi,
    Let's try again to explain myself with my poor english!
    Time frame
    A) TPart system sends order. XI maps to ORDERS.ORDER05 idoc and is forwarded to ECC.
    B) In ECC users modify Sales order and then triggers the outbound ORDRSP.ORDERS05.
    C) XI has to map ORDRSP.ORDERS05 and include some info (in fact the original message) that was sent in step B).
    The xmls from TPart could be (simplified version):
    Orders (step A)
    <?xml version="1.0" encoding="iso-8859-1">
    <document>
      <header>
      </header>
      <Items>
      </Items>
      <Items>
      </Items>
      </Header>
    </Document>
    The received XML on step C) could be something like this:
    <?xml version="1.0" encoding="iso-8859-1">
    <Document>
      <PurchaseOrder_from_vendor>
      <i>Here I have to include the whole xml sent in step A</i>
      </PurchaseOrder_from_vendor>
      <SalesOrder_from_customer>
      <i>Here the ORDRSP.ORDERS05 mapping stuff</i>
      </SalesOrder_from_customer>
    </Document>
    All the communication will be always async.
    Any ideas?
    regards,
    David R.

  • Bex Ajust Query Warning message

    Hi,
    When I run by bex report in browser I get the message
    "Characteristic XXX was changed in infocube ABC.Adjust the query"
    I retransported the query but no change.
    How do I adjust the query?

    Hi,
    You Can Regenerate the Query in RSRT,  give the query name, environment menu - Generate queries
    or else You can supress this warning message in RSRT, if that message exists in the list.
    Regards
    Sreekanth

  • Rosetta - query re message displayed during installation

    I recently installed OS 10.6 on my iMac and then upgraded to 10.6.4 using the combo update.
    Everything worked properly except for two old games which reported that they required Rosetta.
    I installed Rosetta from the OS 10.6 Disk and during that process a message was displayed which basically said that, as my OS (10.6.4) was later than the one on the Snow Leopard Disk (10.6), I might have to re-install the 10.6.4 update.
    After installing Rosetta I repaired permissions and ran the daily weekly and monthly maintainance scripts from Terminal - a procedure I always follw after installing anything.
    As everything now appears to work just fine, including the two old games my query is:
    Do I really need to re-install the 10.6.4 update, and if so, why?
    Advice would be appreciated

    If everything is working fine, games etc, you are good. However 10.6.5 update just came out for security, bug fixes etc.
    Hope this helps

  • Post query giving messages

    Hi all i need help
    I have a database block and in that i an a non database item which i am using it for display purpose and i am getting the for the non database item thru the post query.
    After i retreive my block status is changing and when i immediately press save button without changing any records its giving me 2 records saved message.
    how can i supress this?
    BEGIN
    SELECT DISTINCT W_VLV_FNCT_CD INTO :WVG.W_VLV_FNCT_CD FROM WH_VALVES WHERE
         W_VLV_NUM = :WVG.W_VLV_NUM;
    EXCEPTION WHEN OTHERS THEN
         NULL;
    END;
    /*SET_RECORD_PROPERTY :system.TRIGGER_Record,'WVG','STATUS','QUERY_STATUS');*/
    :WVG.W_VLV_FNCT_CD COLUMN IS A NON DATABASE ITEM.
    Thanks
    -Samsam

    Hi,
    Do two things First check that when ur form opens no field in ur form is getting value from anywhere. May be through parameters or through when new form instance.
    Second Do not use exception When others use exception
    when no record found. Try these things. hoping that first point will solve ur problem.

Maybe you are looking for

  • Set up old iPad under new Apple ID?

    I bought my mother an iPad last year (she is not at all computer literate and doesn't own a PC or mac).  I set up the iPad using my own Apple ID because she doesn't have one, doesn't use a mac or the iTunes/App Store, and it was easier to load some f

  • Problem in converting char * to java objects

    Hi All, When I am trying to compile the following JNI code, I am getting the under-mentioned errors. <code> JNIEXPORT jboolean JNICALL Java_XXXAPI_nativeCheckSomeAccess (JNIEnv *jnv, jobject jobj, jstring fresource, jstring uname){      jboolean acce

  • Generate XML using package xmlgen

    I have the following query: select employ_id, last_name, first_name, salary from employ; I need generate xml like this: <row> <employ> <employ_id last_name="Dennis" First_name="david">1</employ> <salary>6</salary> </employ> </row> How can I get it us

  • BW Objects inactive in DEV system

    Hi All, In Our BW DEV System ,All objectu2019s have become inactive and in revised mode, we cant figure out what happened, bcoz of this we are facing a lot of problem to initiate transport or to install or activate again anyhting. Is there any Functi

  • Can i download my current itunes from mac to my pc

    can i download my current itunes libery to my pc windows