Error in PO Response

Hello Experts.
I am using Extended Classic Scenario, When I do the accept the(EBP) PO response, the follow on document show that 'Error in PO response' with a PO response number, any body can help me why this happens? If you need any further information please get back to me.
Thanks and regards
Kasee Palaniappan

Customizing Problem.

Similar Messages

  • Constant script errors and non-responsive

    I receive constant script errors and non-responsive errors using Firefox, as do many of my friends. I am using Facebook and Mafia Wars by Zynga
    Here is an example of one:
    A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script: http://www.facebook.com/profile.php?id=508888121:7
    I have tried the instructions on this page
    http://support.mozilla.com/en-US/kb/Warning+Unresponsive+script?s=script+errors&as=s
    however, I get an error message when I try to access Config and enter:
    Navigation to the webpage was cancelled
    Please help fix this or I'm going to have to use a different browser and I like Firefox better than the other options.
    Thank you.

    Thank you Jeff for your response. However, that question is 1 year old and I no longer have that problem. I hope that your answer will help others.

  • Error with universalis responsive template. Prices appear with 163; code before them instead of £ sign. Does anyone know how to fix this problem?

    Error with universalis responsive template. Prices appear with 163; code before them instead of £ sign. Does anyone know how to fix this problem?

    Error with universalis responsive template. Prices appear with 163; code before them instead of £ sign. Does anyone know how to fix this problem?

  • Error code: HTTP_RESP_STATUS_CODE_NOT_OK error text: HTTP response contain

    Hi Gurus
    I got this error in Alert monitoring please any one can guide me how can i resove this...
    Error code: HTTP_RESP_STATUS_CODE_NOT_OK error text: HTTP response contains  status code 500 with the descri
    Thanks

    Hi Mohana,
    the major reason would be an internal access with pwd aunthentication
    Error: 500 Internal Server Errors
    Description: The server encountered an unexpected condition which prevented it from fulfilling the request.
    Possible Tips: Have a look into SAP Notes u2013 804124, 807000
    Thanx
    Sampath

  • Error:widget: CFGRID: Response is empty

    I've an error on the Coldfusion Ajax logger : "error:widget:
    CFGRID: Response is empty". The headings of the cfgrid appear but
    the contents not.
    Here the Coldfusion Ajax logger answer :
    - info:widget: Data loaded for grid, id: refTableau
    - error:widget: CFGRID: Response is empty
    - info:http: CFC invocation response:
    - info:widget: Creating window: cf_window1191833821003
    - info:widget: Created grid, id: refTableau
    - info:http: HTTP GET
    /bulte/admin/produits/gridDataManager.cfc?method=getData&returnFormat=json&argumentCollec tion=%7B%22page%22%3A1%2C%22pageSize%22%3A5%2C%22gridsortcolumn%22%3A%22%22%2C%22gridsortd irection%22%3A%22%22%2C%22idTableau%22%3A%22772%22%7D&_cf_nodebug=true&_cf_nocache=true&_c f_clientid=59BF758DB52E56355D649B34E232903B&_cf_rc=0
    - info:http: Invoking CFC:
    /bulte/admin/produits/gridDataManager.cfc , function: getData ,
    arguments:
    {"page":1,"pageSize":5,"gridsortcolumn":"","gridsortdirection":"","idTableau":"772"}
    - info:LogReader: LogReader initialized
    - info:global: Logger initialized
    Here my cfm page code:
    <cfparam name="URL.id" default="">
    <cfquery name="qRec" datasource="#APPLICATION.db#">
    SELECT *
    FROM Produits
    WHERE id=<cfqueryparam cfsqltype="cf_sql_integer"
    value="#URL.id#">
    </cfquery>
    <cfset FORM.refTableau=qRec.refTableau>
    <cfset MyXmlCode=FORM.refTableau>
    <cfset mydoc = XmlParse(MyXmlCode)>
    <cfset nbcolumns =
    ArrayLen(mydoc.table.tr.XmlChildren)>
    <cfset numLines = ArrayLen(mydoc.table.XmlChildren)>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <title>fdgdfgdfgdfg</title>
    <link rel="stylesheet" href="../admin.css" />
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    </head>
    <cfwindow width="900" height="600" center="true"
    resizable="false" draggable="true" initshow="true"
    closable="false">
    <cfform name="editForm" action="ifr_refTableau.cfm"
    method="post" format="html">
    <cfgrid format="html"
    name="refTableau"
    pagesize="5"
    sort="yes"
    selectmode="edit"
    delete="yes"
    bind="cfc:gridDataManager.getData({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgri dsortdirection},'#URL.id#')"
    onchange="cfc:gridDataManager.editData({cfgridaction},
    {cfgridrow}, {cfgridchanged})">
    <cfloop from="1" to="#nbcolumns#" index="k">
    <cfgridcolumn name="Col_#k#" header="#k#" display="yes"
    />
    </cfloop>
    </cfgrid>
    </cfform>
    </cfwindow>
    </body>
    </html>
    My cfc code :
    <cfcomponent>
    <cfset THIS.dsn="clients">
    <cffunction name="getData" access="remote"
    output="false">
    <cfargument name="page" required="yes">
    <cfargument name="pageSize" required="yes">
    <cfargument name="gridsortcolumn" required="no">
    <cfargument name="gridsortdirection" required="no">
    <cfargument name="idTableau" required="yes">
    <cfquery name="qRec" datasource="#THIS.dsn#">
    SELECT refTableau
    FROM Produits
    WHERE id=<cfqueryparam cfsqltype="cf_sql_integer"
    value="#ARGUMENT.idTableau#">
    </cfquery>
    <!--- Convert file to XML document object --->
    <cfset MyXmlCode=qRec.refTableau>
    <cfset mydoc = XmlParse(MyXmlCode)>
    <cfset numItems =
    ArrayLen(mydoc.table.tr.XmlChildren)>
    <cfset numLines = ArrayLen(mydoc.table.XmlChildren)>
    <!--- Process the order into a query object --->
    <cfset listHeader="">
    <cfloop from="1" to="#numItems#" index="i">
    <cfset listHeader=ListAppend(listHeader, "Col_#i#")>
    </cfloop>
    <cfset queryDatas = QueryNew(listHeader)>
    <cfset temp = QueryAddRow(queryDatas, numLines)>
    <cfloop index="i" from="1" to ="#numLines#">
    <cfloop from="1" to="#numItems#" index="j">
    <cfset temp = QuerySetCell(queryDatas,
    ListGetAt(listHeader, j), mydoc.table.tr
    .td[j].XmlText, i)>
    </cfloop>
    </cfloop>
    <cfquery name="qReturn" dbtype="query">
    SELECT *
    FROM queryDatas
    <cfif ARGUMENTS.gridsortcolumn neq "" or
    ARGUMENTS.gridsortdirection neq "">
    ORDER BY #ARGUMENTS.gridsortcolumn#
    #ARGUMENTS.gridsortdirection#
    </cfif>
    </cfquery>
    <cfreturn QueryConvertForGrid(qReturn, ARGUMENTS.page,
    ARGUMENTS.pageSize)>
    </cffunction>
    <cffunction name="editData" access="remote"
    output="false">
    <cfargument name="gridaction">
    <cfargument name="gridrow">
    <cfargument name="gridchanged">
    </cffunction>
    </cfcomponent>
    <body>
    I don't understand why the return is empty.

    I have the same problem. When the function is removed, the
    query return many line of data, but when the queryconverforgrid is
    added, the grid has the same number of line but all fields are
    empty. Can someone please help???

  • Error  :  Purchase Order  Response for Service items Different

    Hi ,
    We are getting Error  :  Purchase Order  Response for Service items Different  , when creating the PO in SRM 5.0.  what must be the reason ?
    Thanks & Regards,

    Problem solved

  • Error in server response

    I have an Ultra 60 running Solaris 8 and I'm trying to execute the pkg-add -U command (I really want to install a new gcc compiler but I'm getting the same message). The results are:
    Connecting to an_address.edu[000.0.00.000]:21... connected.
    Logging in as anonymous ... Logged in!
    ==> SYST ... done. ==> PWD ... done.
    ==> TYPE I ... done. ==> CWD /pub/packages/solaris/freeware/sparc/5.8 ... done.
    ==> PASV ...
    Error in server response, closing control connection.
    Retrying.
    This goes on for some time (20 times I believe is the the default) and just quits. What do I need to do to get pass this error?

    I have an Ultra 60 running Solaris 8 and I'm trying to execute the pkg-add -U command (I really want to install a new gcc compiler but I'm getting the same message). The results are:
    Connecting to an_address.edu[000.0.00.000]:21... connected.
    Logging in as anonymous ... Logged in!
    ==> SYST ... done. ==> PWD ... done.
    ==> TYPE I ... done. ==> CWD /pub/packages/solaris/freeware/sparc/5.8 ... done.
    ==> PASV ...
    Error in server response, closing control connection.
    Retrying.
    This goes on for some time (20 times I believe is the the default) and just quits. What do I need to do to get pass this error?

  • Error Parsing Server Response??

    Does anyone know what "error parsing server response, please re-sync" means?
    I have had the worst trouble with using my email on the phone. It works half the time. I finally got it set up to send using my mobile carrier as the outgoing, but now it fails on syncing email.
    Thanks!
    Post relates to: Centro (Sprint)

    ANY LUCK??  I've been havign the same problem for about 8 days or so after the phone and email worked perfectly for several weeks.  When in Account Setup the Communciation Check comes back successful but when I try to Get email it fails and I get the following error message, "Error Parsing Server Response.  Please re-sync."
    Any help or suggestions are appreciated.
    Post relates to: Centro (Verizon)

  • Error: CIM_ERR_FAILED: HTTP response code: 404 Not found

    Hi, we had finished to install Sap Netweaver Usage type PI (Abap +Java), now we are running Post Installation task, but we are getting an error when we ran "Configuration Wizard"
    In the step: Configure the integration server for sld
    Error: CIM_ERR_FAILED: HTTP response code: 404 Not found
    Any Idea?
    Thanks
    Elias Mendoza
    The following lines are part of the error log:
    Debug Events
    InvokeService:Configure the integration server for sld
    Library: sap.com/tclmctctemplateslevel1_4_tcc
    SourcePath ./PIPostInstallProcess/configureIntegrationServer8
    Time 2008/07/07 at 20:47:33
    WSDL /content/NetWeaver/PI/service/SLDConfig_configureIntegrationServer_configureIntegrationServer.wsdl
    Execute Java Service
    Library:sap.com/tclmctcutilbasic_ear
    Class:com.sap.ctc.util.SLDConfig
    Method:void com.sap.ctc.util.SLDConfig.configureIntegrationServer(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String)
    InvokeService- Result: Failed
    Exception Message:CIM_ERR_FAILED: HTTP response code: 404 Not found
    Exception Class:com.sap.sld.api.wbem.exception.CIMCommunicationException

    Dear
    Possibly CIM content is not uploaded to your SLD.
    Is your SLD running properly ?
    Did you install this SLD as a local SLD at the installation of your SAP system (along with other stuff using sapinst) ?
    <removed_by_moderator>
    Kind regards
    Tom
    Edited by: Julius Bussche on Jul 8, 2008 1:55 PM

  • Error :CIM_ERR_FAILED:HTTP response code:501 Not Implemented_Unsupporte

    Hello gurus
    iam facing the below error when trying to do the initial Setup on PI 7.1 running on Windows 64bit,Oracle
    Error :CIM_ERR_FAILED:HTTP response code:501 Not Implemented_Unsupported-protocol version
    i have checked the following notes 1115280,939592,764176,1309239 but cant find a solution to this.i have tried to add the  Businness systems manually and re excute the steps but no luck.
    any ideas are welcome

    Thanks for your response .I updated the CR content up to the latest but the problem still existed.
    I did a work around althought that was not part of the landscape.I reexecuted the post installation on to the local sld it works without a problem.
    There are notes that  states that you can use a remote sld  but tried all that  but still doesn`t work so  reinstalled the PI system several times on different boxes thinking that maybe a patch somewhere is causing the problem.
    I sent an OSS to SAP and they provided a link to help of which its just the same info that is in the notes.So then they came back later and said that i should reboot the server.......
    but  its now working as a local SLD not REMOTE (my sld on Solution manager not PI)

  • Every time I try to view the music tab on iTunes it states an error: new null response. Can someone please help?

    Hi,
    Could someone kindly please help with my iTunes Store error?  When attempting to view the music tab on iTunes store on my iPad 3 states the following error: new null response and cannot connect to iTunes Store.
    It's extremely annoying as I only bought a new album yesterday and its suddenly got an error.  I can use the films and tv programmes tabs which is strange, so its only the music tab not working.  I have tried everything from other websites and blogs but nothing is working for me. 
    I hope someone can help?
    Thanks

    Hello there Mattspur,
    I recommend sections 1, 3, and 5 of the iPad Troubleshooting Assistant found here http://www.apple.com/support/ipad/assistant/ipad/. If you get to section 3 I suggest closing ALL the apps.
    Here is section 1 to get you starrted:
    Restart iPad
    To restart iPad, first turn iPad off by pressing and holding the Sleep/Wake button until a red slider appears. Slide your finger across the slider and iPad will turn off after a few moments.
    Next, turn iPad on by pressing and holding the Sleep/Wake button until the Apple logo appears.
    Is iPad not responding? To reset iPad, press and hold the Sleep/Wake button and the Home button at the same time for at least 10 seconds, until the Apple logo appears.
    If your device does not turn on or displays a red battery icon, try recharging next.
    IF that does not resolve the issue, I would take a look at these articles next.
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    And
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/ts3297
    Regards,
    Sterling

  • ERROR: Backup message response: 212 Unable to backup until Setup is finished

    Dont backup iphone 8.1.2. Whats up?
    AppleMobileBackup[35473]: ERROR: Backup message response: 212 Unable to backup until Setup is finished (MBErrorDomain/212)

    Additional info since some searchs brought it up. I did install several versions of the iOS 6 beta when it was in beta at the time.

  • Can't access a mailbox - error message "unexpected response format"

    I went to look at mail message in one mailbox. At first it said that it was having difficulty downloading from the server. I closed and opened the mail program and then I couldn't even get that message. I went over to ".mac" to see if I could view the message there, and I am now seeing an error message - "unexpected response format".
    I have already tried to "rebuild" the mailbox. That didn't work. I've had some problems that were similar, and I've deleted a mail message that was causing the thing to be stuck. This time, I can't even get in. Need serious help, thanks.

    The thing is, this appears to be a .Mac issue that none of us can do anything about, and for which one of the .Mac Forums may be more appropriate...

  • SAP PI Sender Mail Adapter error : Unexpected User response

    Hello ,
              I developed a scenario which requires Sender mail Adapter to connect a Third party system to PI, by going thro the links .
    /people/michal.krawczyk2/blog/2005/12/18/xi-sender-mail-adapter--payloadswapbean--step-by-step
    and PDFs in SDN.
    When configured the sender mail adapter using POP Mail Server,faced the following error:gave the correct URL and Login credentials.
    +" exception caught during processing mail message; java.io.IOException: unexpected user response; read -ERR Command is not valid in this state."+
    Then used IMAP for the same mail server : error:
    "exception caught during processing mail message; java.io.IOException: unexpected login response; read 001F BAD Command received in Invalid state."
    Tried with another Mail server :
    "exception caught during processing mail message; java.net.ConnectException: Connection timed out".
    Can you please help, what be the cause? how to rectify it?

    Hi
    There might be an connectivity issue from PI server to mail server. Please check with your BASIS to resolve the issue.,
    Regards
    Ramg

  • Error when submitting responses

    Some respondents receive an error when submitting survey results.  Could there be a timing issue with the server if many responses are coming in at the same time?  Or could the error be caused at the senders location?

    we are trying to catch it.  It flashes quickly before results are submitted (via iPad) and communication is ended.  It may be a timing issue.  Let me look into this further.  Could be the user too!!!!!!!!!!!!!!!!!!
    Donna Dowdle
    IT Manager
    Dr. Scholl Foundation
    (847) 559-7430 - office
    (847) 602-0709 - cell
    DISCLAIMER!  The information contained in this e-mail message is confidential and is intended only for the use of the individual or entity to whom it is addressed.  If the reader of this message is not the intended recipient, you are hereby notified that any disclosure, copying, distribution, or the taking of any action in reliance on the contents of this communication is strictly prohibited.  If you have received this e-mail message in error, please contact the sender at (847) 559-7430 and delete this e-mail message.

Maybe you are looking for

  • The Text Tool is not working in Photoshop CC

    When I try to use the text tool nothing happens when I type even though the font size is 12, and the color is black, on a white background, and then when I try to get out of the text tool a progress bar shows up that says "Rendering type", and the pr

  • How do I change my default email preference to AOL?

    I would like to use AOL as my default email program when using Firefox, but I don't know how to change it?

  • Problems with built-in iSight

    I opened up photo booth today and noticed that the video camera isn't working properly. Instead, the screen is totally green. The video camera light on the top of the computer is green, indicating that the camera is on, but the screen is just a blank

  • APP for vendors to priority Basis

    Hi, I have a 10,000 vendors in my company  code . In That 500  premier vendors are there . While run F110  for payments system first make payments to 500 premier vendors after that it have to issue remaining vendors . how to make payments priority ba

  • Making table cells non-focusable

    I have a JTable in which some of the cells should never receive the keyboard focus. I want the TAB key to skip over these non-editable cells, but I'm having trouble. I've tried using a cell renderer where getTableCellRendererComponent calls setFocusa