Return status is S but assignment id is not created

I  have  To Assign to resource to project for that ihave     used pa assignment Pub. Create assignment api. Given all parameter but run well return status  S but assignment id return null. Please help

Maybe you need to commit after calling the API?

Similar Messages

  • I downloaded the whatsapp app to my new iphone, and when i wanted to create an account, i could not, it said, unable to send message. I downloaded it several times later, but i still could not create the account, it always said, unable to send, help

    I downloaded the whatsapp app to my new iphone, and when i wanted to create an account, i could not, it said, unable to send message. I downloaded it several times later, but i still could not create the account, it always said, unable to send, help

    I recommend reaching out to Citrix via their support system -
    http://www.citrix.com/products/receiver/resources-and-support.html
    The receiver app has a specific list of servers it's compatible with, if the server is not on the list the app won't work in OS X.
    http://support.citrix.com/servlet/KbServlet/download/28492-102-671726/Receiver%2 0for%20Mac%2011%204%20FAQ%20v1_1235.pdf
    Do you know what server you're connecting to?

  • I need the detail about how to read the data from spreadsheet file. but the file should not created by labview.

    i face some difficulties here. the datas are encrypted...... how to get correct data ..........

    Excel files are in a propriertary microsoft format. A LabVIEW "spreadsheet" file is a file containing an ASCII table with tabs separating columns and linefeeds separating rows. They are not ther same!
    If you use "write to spreadsheet file" and name the file *.xls, this does NOT make it an excel file, it just tells the operating system to open it with excel if you double-click it. Excel is smart enough to notice that it is not really an excel file and does its best to convert it transparently. The same does not work in reverse.
    You have several options:
    You can use excel to export your data to something LabVIEW can read. Try e.g. tab delimited text.
    You can use e.g. activeX to read an excel file, see: http://zone.ni.com/devzone/cda/epd/p/id/3409
    Search for excel in your example finder for more possibilites.
    LabVIEW Champion . Do more with less code and in less time .

  • When I click an email address windows mail opens but in the inbox not create mail.

    When I click on an email address on a web page Windows Mail opens with the Inbox window not the Create mail window. How do I set to open create mail window.

    Hi wayner,
    Thank you for your question:
    In the Firefox > Options menu under Applications, search for "mailto". From there select the action drop down and select the action.
    If you click on the details of the action it should have https://compose.mail.yahoo.com/?To=%s
    This macro should take you to a compose mail if you are logged in.
    If the above information does not resolve your issue, please consider creating a new thread containing the specific details of your issue.
    Doing so will allow the Mozilla volunteers to give you solutions that are more helpful to you. This may help them to solve your problem faster and more efficiently.
    Please, feel free to post the link to your thread on this thread for volunteers interested in assisting you.
    Thank you.

  • I have iPhoto 11 installed on my iMac. Has been working for last several months ok. I am trying to create photo books but it gets hung up after I select create book. Does not create the project.  Used to work but won't create any projects

    ILife 11 (iphoto 11) installed over a year ago with no issues. Have been creating Apple Books with no issues till now.  iPhoto now will not create books, calenders or anything else. After I select "create" it does nothing. Used to work Ok. Program seems to stall and do nothing. I can still look at events and other picture files but it will now not create a "project" / "book"  Anyone with a similar issue????

    ILife 11 (iphoto 11) installed over a year ago with no issues. Have been creating Apple Books with no issues till now.  iPhoto now will not create books, calenders or anything else. After I select "create" it does nothing. Used to work Ok. Program seems to stall and do nothing. I can still look at events and other picture files but it will now not create a "project" / "book"  Anyone with a similar issue????

  • Partner function copied from PO to Outb.del. but output message not created

    Hello Gurus,
    As the copy of the partner function from the PO to the Outbound Delivery is not supported in standard, I have activated userexit_save_document_prepare (MV50AFZ1) where I can add the other partner roles out of the purchase order into table XVBPA (VN). Thanks to this exit, the partner function VN is correctly added in the Outbound Delivery.
    My issue is the following this partner function should create an output message using the partner function VN but this one is not created during the Outbound delivery creation. But if I go to the VL02N and just save the Outbound delivery again (without change) now the output is correctly created and processed.
    Does someone of you know the reason why the output message for partner VN is not triggered at the Delivery Creation but
    after the manual save?
    Kind regards
    Chris

    I have just explained this in Copy partner from PO to inbound delivery

  • Ajax call returns 200 in IE but 0 in firefox 3.6.8

    firefox gets a xmlHttpRequest status 0 for the ajax call for which IE6 get a 200 . The code runs perfectly under IE6. fails (xmlhttprequest==200) in ajax
    == This happened ==
    Every time Firefox opened
    == testing ajax code

    I got the same issue, but with Firefox 12. I use this code to call my COMET server:
    function getXmlHttpRequestObject() {
    if (window.XMLHttpRequest) {
    //document.getElementById("_receivedMsgLabel").innerHTML += "Non-microsoft xmlHttpRequest object created.<br/>";
    alert("Non-microsoft xmlHttpRequest object created.");
    return new XMLHttpRequest();
    else if (window.ActiveXObject) {
    //document.getElementById("_receivedMsgLabel").innerHTML += "Microsoft xmlHttpRequest object created.<br/>";
    alert("Microsoft xmlHttpRequest object created.");
    return new ActiveXObject("Microsoft.XMLHTTP");
    else {
    alert("Status: Could not create XmlHttpRequest Object. Consider upgrading your browser.");
    //document.getElementById("_receivedMsgLabel").innerHTML += "Status: Could not create XmlHttpRequest Object. Consider upgrading your browser.<br/>";
    var sendReq = getXmlHttpRequestObject();
    var receiveReq = getXmlHttpRequestObject();
    var lastMessage;
    var mTimer;
    //Gets the server response:
    function getResponse() {
    document.getElementById("_receivedMsgLabel").innerHTML += "getResponse() called.<br/>";
    if (receiveReq.readyState == 4 || receiveReq.readyState == 0) {
    //if (receiveReq.readyState == 0) {
    //receiveReq.open("POST", 'http://tardis:1802', true, "server", "server123");
    //receiveReq.open("POST", 'http://localhost:1802', true, "server", "server123");
    //receiveReq.open("POST", 'http://holit109:1802', true, "server", "server123");
    //receiveReq.open("POST", "http://localhost:1802", true, "server", "server123");
    receiveReq.open("POST", "http://L45723:1802", true, "server", "server123"); //must use this URL at work.
    receiveReq.onreadystatechange = handleReceiveMessage;
    alert("handleReceiveMessage assigned to onreadystatechange event.");
    receiveReq.setRequestHeader("Content-Type", "text/x-json");
    receiveReq.timeout = 0;
    var currentDate = new Date();
    var sendMessage = JSON.stringify({
    SendTimestamp: currentDate,
    Message: "Message 1",
    Browser: navigator.appName
    //receiveReq.send("<?xml version='1.0'?><Request><Command>Queue</Command><User>user1</User><Message>Message 1</Message><Message>Message 2</Message><Message>Message 3</Message></Request>");
    alert("JSON message created. About to send...");
    receiveReq.send(sendMessage);
    alert("Message sent.");
    //function for handling the return message from Comet
    function handleReceiveMessage() {
    if (receiveReq.readyState == 4) {
    document.getElementById("_receivedMsgLabel").innerHTML += "Message received!<br/>";
    var status = receiveReq.status;
    //document.getElementById("_receivedMsgLabel").innerHTML += "Status received!<br/>";
    var txt = receiveReq.responseText;
    var receivedMsg = JSON.parse(txt);
    document.getElementById("_receivedMsgLabel").innerHTML += receivedMsg.Message + "<br/>";
    //var receivedTime = new Date();
    //alert("Got current date.");
    //alert(receivedTime);
    //var receivedTime_ms = receivedTime.getTime();
    //alert("Got time message received in ms.");
    //alert(receiveReq.SendTimestamp);
    //var sentTime_ms = getDateFromFormat(receiveReq.SendTimestamp, "dd/MM/yyyy HH:mm:ss");
    //var sentTime = new Date(receiveReq.SendTimestamp);
    //alert("Got time message sent in ms.");
    //var sentTime_ms = sentTime.getTime();
    //var difference_ms = receivedTime_ms - sentTime_ms;
    //document.getElementById("_receivedMsgLabel").innerHTML += "Comet took " + difference_ms + " ms.<br/>";
    mTimer = setTimeout("getResponse();", 0);
    getResponse();
    The handleReceiveMessage() event handler is called, but there is no data returned in the responseText property of the xmlHttpRequest object.
    Why?
    This works fine in IE9.

  • I want to return my iPad 3, but I did not have an apple account at the time of purchase, and when I type in my order number and proceed to click "cancel order", it prompts me to log in with my apple I'd and then tells me that the account is not authorised

    I want to return my iPad 3, but I did not have an apple account at the time of purchase, and when I type in my order number and proceed to click "cancel order", it prompts me to log in with my apple I'd and then tells me that I am not authorised to do anything on the account in relation to the transaction. What should I do?

    You can view and edit your orders without an Apple ID by logging in with your order number, along with the shipping zip code or email address.
    I copied the text posted above from this website.
    http://store.apple.com/us/help/viewing_changing_orders
    Click or tap on the Order Status link here and you should be able to type in the order number and your zip code.
    To view or edit your Apple Online Store order, visit online Order Status and log in with your Apple ID and password.

  • Database and Listener start up 'OK' (status code 0) but can't connect?

    Hi guys,
    I've got an instance of EBS with database 11.1.0.7 on Oracle Linux 5.8 in a VM.
    It's a new instance and been working for a few days but now I can't connect to the database.
    I'm using the standard scripts that have been working so far to bring up the db (commands below) and when run both return status code 0, there is nothing unusual in their respective log files and all looks fine to me. When trying to connect from either SQL Developer or by running the EBS apps startup script [adstrtal.sh] I'm getting errors the database/listener is unreachable. Everything was working fine yesterday - I've not changed any configuration.
    ./addbctl.sh start
    ./addlnctl.sh start PROD
    The only thing I can think is that last time the database was used it was crashed out due to the VirtualBox session hanging. As the scripts starting it back up again seemed to run OK I hoped that this didn't cause any long term issue? While obviously not good to be not shut down correctly this kind of issue shouldn't nuke the db should it?
    Any help/light much appreciated.

    I've got an instance of EBS with database 11.1.0.7 on Oracle Linux 5.8 in a VM.
    It's a new instance and been working for a few days but now I can't connect to the database.
    I'm using the standard scripts that have been working so far to bring up the db (commands below) and when run both return status code 0, there is nothing unusual in their respective log files and all looks fine to me. When trying to connect from either SQL Developer or by running the EBS apps startup script [adstrtal.sh] I'm getting errors the database/listener is unreachable. Everything was working fine yesterday - I've not changed any configuration.
    ./addbctl.sh start
    ./addlnctl.sh start PROD
    The only thing I can think is that last time the database was used it was crashed out due to the VirtualBox session hanging. As the scripts starting it back up again seemed to run OK I hoped that this didn't cause any long term issue? While obviously not good to be not shut down correctly this kind of issue shouldn't nuke the db should it?
    Any help/light much appreciated.Can you connect to the database from the server with no errors?
    What is the status of the database? Check the alert.log file for details.
    For the listener, please issue "lsnrctl status PROD" and post the output here.
    Please also run AutoConfig and make sure it completes successfully.
    Thanks,
    Hussein

  • BPM sync-async bridge returns status "to be delivered"

    Hi experts!
    I have a BPM consisting of the following steps:
    1. Receive (open S/A bridge): Msg SalesOrder
    2. Transformation: create Msg SalesOrderResponse
    3. Send (close S/A bridge): SalesOrderResponse (to sending system)
    4. Send (async send): SalesOrder (to receiver system)
    RWB shows 4 messages when the scenario is executed:
    Sender - BPM
    BPM - BPM
    BPM - Sender
    BPM - Receiver
    The BPM works in that both the sender and receiver system receives the expected messages (SalesOrderResponse and SalesOrder), but the RWB returns the status "To be delivered" for the message from Sender to BPM and from BPM to BPM.
    SXMB_MONI shows one message only, which is successful, and the PE_ADAPTER shows the BPM as completed.
    Do you know why the status is "to be delivered", when the messages are received correctly at both sender and receiver system?
    How can we make all messages involved in the scenario successful?
    Thank you very much for any help!
    Br,
    Kenneth

    Thank you, but I have already re-created all interfaces and the BPM in IR, and reimported to ID. I do not get any error messages anywhere, SXI_CACHE is OK (return code 0 for BPM), SWWL contains no old processes.
    Another maybe useful piece of information:
    the two messages returning "To be delivered" status in RWB both exist for Integration Engine. The first, for Sender -> BPM, the inbound channel is AENGINE and outbound channel is SA_COMM. Could it be that SA_COMM does not notify AENGINE that it has received the message?
    The other message with the same status is from BPM -> BPM, with message interface SalesOrderResponse_ABS both for sender and receiver, which I don't understand why. This interface should only be used from BPM to sender... There is no inbound or outbound channel specified for this message.
    So is the BPM sending some information to itself through the same message interface?
    Any clues?

  • Returns status code '500' (Internal Server Error) in response

    Hi,
    I got error like
    HTTP connection to http://XXX.com:50600/sap/xi/cache?sap-client=001 returns status code '500' (Internal Server Error) in response
    I did check this Discussion HTTP returns status is 500(Internal Server Error)
    But I don't understand can someone help me in detail.
    Thanks
    Kamal

    Hi All,
    When I check RFC destination configuration with following information.
    RFC Destination as "INTEGRATION_DIRECTORY_HMI"
    Connection Type: H
    Under Technical Setting TAB
    Target Host: write the host name
    Path Prefix: /dir/CacheRefresh
    Service No: enter J2ee port no (e.g. 50000)
    Under Logon/Security TAB
    select Basic Authontication radio button
    SSL select inactive
    Under Logon:
    Lang: EN
    Client: enter client
    User: XIISUSER
    Password: *******
    Under Special Option TAB
    HTTP Setting:
    HTTP Ver: HTTP 1.0
    Compression: inactive
    Compressed response: NO
    HTTP Cookies: Yes (All)
    This is the test result.
    Status HTTP response : 403
    Status text : Forbidden
    Duration test call : 163 ms
    Please help me.
    Thanks,
    Kamal

  • How can I check the return status of a request using URLConnection?

    Hi,
    I am using the classes URL and URLConnection to connect to a remote server and make a POST request. The code extract is:
    URL u = new URL("http://.....");
    URLConnection con = u.openConnection();
    con.setDoInput(true);
    con.setDoOutput(true);
    con.setUseCaches(false);
    con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
    DataOutputStream out = new DataOutputStream(con.getOutputStream());
    out.writeBytes(........);
    out.flush();
    out.close();
    Next, I would like to check the return status of my request. I need to see if the server returned status 200 (OK) or an error (e.g. 404). Is there a way to check this?
    If you are aware of another way I can achieve this whole thing I would be grateful if you could let me know.
    Thanks very much for your help!

    URLConnection doesn't have a getResponseCode
    method...
    But I found a link
    http://bugs.sun.com/bugdatabase/view_bug.do;:WuuT?bug_
    id=4191207
    that helped me found out that there is another class
    called HttpURLConnection:
    ((HttpURLConnection)conn).getResponseCode( )You should read the API:
    http://java.sun.com/j2se/1.5.0/docs/api/java/net/URL.html#openConnection()
    "If for the URL's protocol (such as HTTP or JAR), there exists a public, specialized URLConnection subclass belonging to one of the following packages or one of their subpackages: java.lang, java.io, java.util, java.net, the connection returned will be of that subclass. For example, for HTTP an HttpURLConnection will be returned,..."

  • Employee Assignment Termination status as 'Terminate Process Assignment'

    hi everybody ,
    can any body tell me what is the API i need to use to terminate an Employee Assignment with the status as 'Terminate Process Assignment' .currentely i am using "hr_assignment_api.actual_termination_emp_asg" but it is terminating the assignment with the status as 'Terminate Assignment' . please help me its urgent.
    Thanks in advance.
    Surfraz

    Final standard process is not used for US legislation, we use Final Process Date for US. You can use any kind of assignment status, which has SYSTEM_STATUS as TERM_ASSIGN.

  • How to remove or return status of Device on PC for find it?

    Remove Device from PC but My's iPhone was lost, How to remove or return status of Device on PC for find it?
    If it automatically reappears in the devices list. If you still have access to the device, you can prevent it from reappearing by turning off Find My iPhone?
    Please suggest me

    I did copy it to my desktop, but it still won't let me open it.  I think the file on the disc might be corrupt or something like that though the cd itself checks out fine as far as viruses go.  I was able to verify the disc, but that's about it.  My husband tried it on his iMac and we have the same issue.  It's unzipping the folder, but won't let us open the folder on both the Mac Book Pro or the iMac by double clicking, going to file/open or right clicking.  It just keeps saying the same message as I posted above.  I think I'm just going to have the client put the pictures on either a memory card or a USB memory stick so she won't have to compress the files for zipping purposes.  It's been too frustrating trying to open this folder on this cd she gave me.  She said she created/zipped the cd on her Mac Book Pro but it sure won't open on mine.

  • How do I track my return status?

    Hi,
    I bought T400 about two weeks ago. Everything was fine but I had to return it because it is too big to carry around. I called customer service to obtain RMA number and follow every details of instruction. My package was successfully delivered to Lenovo. But as of now I haven't received any email for refund confirmation yet. I called customer service so many times and seems like nobody had the answer for me. 
    So Mark or whoever working for Lenovo , could you please look up my return status? My RMA is C3100-07014878-001, Order name is Mingkwan Thongpruksa
    C3100-07014878-001
     Thank you very much,
    Mingkwan

    Hi Jacob
    Do you have 'Find My iPod' with MobileMe? If so, then go to https://www.me.com/find/
    If not, then you will not be able to track your iPod.

Maybe you are looking for

  • Excise values are not flowing  in MIGO

    Dear All, I am facing a problem during MIGO. THERE IS STOCK TRANSFER BETWEEN 2 PLANTS AND 2 PLANTS ARE UNDER DIFFERENT COMPANY CODES. 1 I have created a PO. 2.Delivery through VL10D 3.Picking-vl02n 4.Created Bill-VF01 5.Created Invoice and saved it W

  • Problem using Submit statement

    Dear Experts, I am trying to use submit statement in a report for transaction ML85. I have used the below code. submit RMSRVF00 with FRGCO = 'S1'                 with FRGGR = 'S1'                 with listu = 'ENTRY_REL'                 with ebeln =

  • Firefox 3 CSS issues.

    Hello, We haven't seen any big issues either with the Firefox 3 beta's or Firefox 3 but now that FF 3 is out in the wild and no longer beta there are many more people using it. If you see any strange new CSS issue , in the Application Builder , SQL W

  • Ocr and voting disk recreate

    Hi, I'm recreating ocr and voting disk as for a lab test on RHEL4(10gr2),for server side ons configuration for racgons ,what should be my port? below is the output from ons.config file .Should it be 6200 or 6101 for both nodes?Please let me know . ca

  • JDO or Entity Beans?

    I read on an article : " 1. entity beans are slow (due to RMI calls). 2. EJBQL is a weak language; complex operations are not permitted. 3. it is difficult to map into an entity bean complex data. You should utilize JDO instead of Entity Beans." What