Ajax:callback function not called for every readystatechange of the request

Author: khk Posts: 2 Registered: 2/17/06
Feb 17, 2006 11:04 PM
Hi
I am working with an ajax program.
In that i have defined a callback funtion
but that function is not being called for every readystatechange of the request object for the first request .
but it is working fine from the second request.
function find(start,number){
var nameField=document.getElementById("text1").value;
var starting=start;
var total=number;
if(form1.criteria[0].checked) {
http.open("GET", url + escape(nameField)+"&param2="+escape("exact")+"&param4="+escape(starting)+"&param5="+escape(number));
else if(form1.criteria[2].checked) {
http.open("GET", url + escape(nameField)+"&param2="+escape("prefix")+"&param4="+escape(starting)+"&param5="+escape(number));
http.onreadystatechange = callback2;
http.send(null);
function callback2(){
if (http.readyState == 4) {//request state
if(http.status==200){
var message=http.responseXML;
alert(http.responseText);
Parse2(message);
}else{
alert("response is not completed");
}else{
alert("request state is :-"+http.readyState);
}

Triple post.
You have been answered here: http://forum.java.sun.com/thread.jspa?threadID=709676

Similar Messages

  • Decode function not called for a custom component

    I know this problem happened in the past - in the EA2, EA4 and I believe the beta version as well, but does anyone know if it has been solved for the release ?
    In short - I'm working with the release, created a menuBar component and the decode method in the renderer is not called after I submit the page. In the past, there were rumors that this happened due to relative paths in the JSP (for js files, images, etc.).
    Does anyone else have this problem ? or better , know how to solve it ?
    Thanx,
    Netta.

    It's not that simple - The component is getting rendered, all the encode methods are called and the decode is called also , but only the first time the form is submitted.
    I added this custom component to the guessNumber application, and I have a menuBar in the greeting.jsp that leads to the response.jsp and vice versa. it looks like this in the greeting.jsp page -
    <!-- Start Menu -->
    <t:MenuBar id="bar1" styleClass="myClass" >
    <t:Menu id="menu1" name="menu1">
    <t:Menu id="menu2" name="menu2">
    <t:MenuItem id="item2_1" name="item2_1" action="/mytest/guess/response.jsp"/>
    <t:MenuItem id="item2_2" name="item2_2" action="http://www.msn.com"/>
    <t:Menu id="menu3" name="menu3">
    <t:MenuItem id="item3_1" name="item3_1x" action="http://www.msn.com"/>
    </t:Menu>
    </t:Menu>
    </t:Menu>
    <t:MenuItem id="item3" name="item3" action="http://www.cnn.com"/>
    </t:MenuBar>
    <!-- End Menu -->
    In the response it looks like this -
    <!-- Start Menu -->
    <t:MenuBar id="bar2" styleClass="myClass" >
    <t:MenuItem id="item3" name="item3" action="/mytest/guess/greeting.jsp"/>
    </t:MenuBar>
    <!-- End Menu -->
    and every time a menuItem is clicked on, the JS calls submit form.
    Since the menus are rendered, I assume there's nothing wrong with the rendererType and any other renderer problem. Since the decode is called only once, I assume the right form is being submitted.
    So, what can cause it to stop calling the decode ???
    Could it be that becase I go directly to the page and not through the navigation rules ( I call window.open directly from the JS), it creates a problem ??
    Please help, I've been wasting so much time on this !
    Netta.

  • "Function not authorized for License" error

    Hi All,
    I am getting "Function not authorized for License" error when i am retrieving details from a custom UI Map.
    The UI Map invokes a Business Service which calls a service program.
    I have written a page service for the service program.
    What License is this error indicating?
    I am using CCB 2.3.1 and Eclipse SDK 2.2.0.5.

    Check Admin Menu -> Installation Options Framework -> Accessible Modules to see if any module is turned off.
    Next go to Admin Menu -> Feature Configuration -> Feature Type = Module Configuration and remove an entry of a module which is turned off.
    Try the UI Map again

  • My MacBook Pro keeps making copies of a document that I am trying to save. I don't want to duplicate the file. I only want to save it on both my hard drive and my external hard drive. I do not want to change its name for every save, which the computer see

    My MacBook Pro keeps making copies of a document that I am trying to save. I don't want to duplicate the file. I only want to save it on both my hard drive and my external hard drive. I do not want to change its name for every save, which the computer seems insistent on doing. Help!!

    11lizzyp wrote:
    can't be saved because the file is read-only.
    I did not create the file to be read-only. I created to be able to continue to add to it as I work on it.
    More on versions here:
    http://support.apple.com/kb/ht4753
    local snapshots:
    http://support.apple.com/kb/HT4878
    Sounds like a permissions problem ie read only.
    If running repair permissions from your DiskUtility.app does not sort it,
    Someone should jump in here with erudite and concise fix.

  • "FUNCTION NOT AVILABLE FOR THIS RESPONSIBILTY. CHANGE RESPONSIBILITY ....

    We have a custom form developed based on Template.fmb, when we register in custom application top(XXLLP_TOP/forms/US folder), it is giving error "Function not avilable for this responsibilty. Change responsibility or contact sysadmin".
    In AOL responsibility , all we did was
    a) Registered custom form XXLLPINVPKWB for custom "LLP Custom Application",
    b) Registered a custom Fuction for the form
    c) Assigned the Function to the Inventory menu (INV_NAVIGATE)
    d) Wwitch Resp to the Inventory resp
    e) Click on the menu entry for our custom form and its giving and error that the Function is not available for this responsibility. Please contact system admininstrator
    My understanding is that when I click the menu it should atleast
    give an error that the fmx is not available in so and so path
    in the status bar and not the error message "Function is not available ...
    Please help us resolving this issues
    Thanks,

    Did you set the CUSTOM_TOP variable for this application in the env file? What does "echo $XXLLP_TOP" return after sourcing the env file as applmgr user?
    Are you able to access other forms in this responsibility?

  • Decode not called for all UIComponents in tree

    Many of the faces .jsp pages I have been working with in EA2 have not been updating their models properly.
    The symptom I have observed is that the decode method is not called for all of the UIComponents on the page.
    I think I have tracked this down to a bug in the class com.sun.faces.tree.TreeNavigatorImpl. This class appears to be used internally by some of the .jsf code to navigate the component tree.
    Studying various stack traces, it looks like the method TreeNavigatorImpl.getNextStart() is supposed to provide a preorder traversal of the component tree. Starting from the root of the tree, each call is expected to return the next node. Experimental evidence suggests that it is not doing that properly, and it fails to visit all the nodes in the tree.
    For example, if my component tree looks like this (this is a representation of the tree; not an example of a .jsp page):
    <node id = "/">
       <node id = "page">
          <node id = "carStoreForm">
             <node id = "ba0">
                 <node id = "ba1">
                     <node id = "ba3"/>
                     <node id = "br4"/>
                 </node>
             </node>
             <node id = "bold1"/>
             <node id = "more1"/>
          </node>
       </node>
    </node>A preorder traversal of these nodes should visit nodes:
    '/page'
    '/page/carStoreForm'
    '/page/carStoreForm/ba0'
    '/page/carStoreForm/ba0/ba1'
    '/page/carStoreForm/ba0/ba1/ba3'
    '/page/carStoreForm/ba0/ba1/br4'
    '/page/carStoreForm/bold1'
    '/page/carStoreForm/more1'
    However, when I write test code that calls TreeNavigatorImpl.getNextStart() directly, only the following nodes are returned:
    '/page'
    '/page/carStoreForm'
    '/page/carStoreForm/ba0'
    '/page/carStoreForm/ba0/ba1'
    '/page/carStoreForm/ba0/ba1/ba3'
    '/page/carStoreForm/ba0/ba1/br4'
    It looks to me like the method loses track of the state of the traversal, and prematurely returns null before all the nodes are visited. (It is failing to return the "bold1" and "more1" nodes.)
    This is all extremely speculative. Without jsf source or doc for any of the tree classes, it is difficult to know what is supposed to be going on. And, of course, I may just have a bug in my code.

    Okay, rather than wait for Max to respond, I decompiled the TreeNavigatorImpl class myself and studied the source code. The
    problem arises in the getNextStart() method. If the method returns
    a null value, then presumably the class has successfully traversed
    the entire tree in preorder. Unfortunately, there was a slight
    logic error that would halt traversal after you got to the last node
    of the last subtree at the beginning of your travels.
    The following code should correct this situation (let me know if I've
    introduced any new problems into the mix...). I tested this out using the simple example that Max describes above. The test code appears at the end of my revised method:
    public UIComponent getNextStart() {
    UIComponent cur = null;
    if (startTraversalDone) {
    return cur;
    if (startStack.empty()) {
    cur = root;
    Iterator iter = cur.getChildren();
    if (iter.hasNext()) {
    startStack.push(iter);
    else {
    while (!startStack.empty()) {
         Iterator iter = (Iterator) startStack.peek();
         if (iter != null && iter.hasNext()) {
         cur = (UIComponent) iter.next();
         Iterator childIter = cur.getChildren();
         if (childIter != null && childIter.hasNext()) {
         startStack.push(childIter);
         else {
         if (!iter.hasNext()) {
         startStack.pop();
         break;
    else {
         startStack.pop();
    if (startStack.empty()) {
    startTraversalDone = true;
    if (cur != null) {
    endStack.push(cur);
    return cur;
         public static void main(String[] args) {
              MyComp root = new MyComp("root");
              // build tree....
              MyComp page = new MyComp("page");
              root.addChild(page);
              MyComp csf = new MyComp("csf");
              page.addChild(csf);
              MyComp ba0 = new MyComp("ba0");
              csf.addChild(ba0);
              csf.addChild(new MyComp("bold1"));
              csf.addChild(new MyComp("more1"));
              MyComp ba1 = new MyComp("ba1");
              ba0.addChild(ba1);
              ba1.addChild(new MyComp("ba3"));
              ba1.addChild(new MyComp("ba4"));
              MyTreeNavigator nav = new MyTreeNavigator(root);
              MyComp comp = null;
              while ((comp = (MyComp) nav.getNextStart()) != null) {
                   System.out.println(comp.getComponentId());
    public class MyComp extends UIComponentBase {
         public MyComp(String id) {
              this.setComponentId(id);
         public String getComponentType() {
              return "MyComp";

  • CreateRowFromResultSet not called for first row

    Hi all,
    Jdev Version: 11.1.1.7.0
    I have an XML stored in DB as  a CLOB. I fetch this XML as a CLOB (using clobdomain) in my VO and need to populate a few other transient attributes. I attempted to achieve this by overriding (as per blog entry) method 'createRowFromResultSet'. I observe a weird behaviour where this method does not get invoked for the first row alone.
    A while back, I see another member suffer from a similar issue - forum thread. Is this a bug that appears when using clob and overriding this method?
    Thanks in advance,
    Srini

    Hi,
    we have the same problem. The method createRowFromResultSet() is not called for the first row. We don't have a CLOB. We have a primary key of type Raw. Maybe this is causing the problem.
    We are using JDev 11.1.1.6.
    Regards,
    Linda

  • IPhone 5 iOS 7.1.4 Call failed every time when the other person hung up before me

    iPhone 5 iOS 7.0.4 says Call failed every time when the other person hung up before me,
    Is there anything I can do to about that please?

    Hey there Yonidawit,
    It sounds like you are are getting a message saying that the call failed, when the person you are talking to hangs up. I have a few things to recommend here. First close all the open apps:
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app up to close it.
    When you have done that restart the phone and test it out again:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    If that does not resolve it, try resetting your network settings:
    Reset network settings by tapping Settings > General > Reset > Reset Network Settings. Note: This will reset all network settings including:
    previously connected Wi-Fi networks and passwords
    recently used Bluetooth accessories
    VPN and APN settings
    From: iOS: Troubleshooting Wi-Fi networks and connections
              http://support.apple.com/kb/ts1398
    If the issue persists, I would next backup your device to iTunes, and restore it:
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • I have an iphone4 and that I have had for four years and they are saying that I am not eligible for an upgrade until the end of July 2015. That is four years and 3 months after I purchased this phone. "Customer service" said I had an upgrade at the end of

    I have an iphone4 and that I have had for four years and they are saying that I am not eligible for an upgrade until the end of July 2015. That is four years and 3 months after I purchased this phone. "Customer service" said I had an upgrade at the end of July 2013, which I did not. She said that in the system my husband took an upgrade July 29th 2013. He didn't even have a Verizon phone, he had a work phone with T-mobile. I have asked what device he supposedly upgraded to since no phones have been activated and we all still have our same phones and numbers. Remember at the time, said husband had a work phone with T-mobile. I still have the very same phone as do all of the rest of my family members. No one has upgraded. I spoke with "customer service" for more than a half an hour today, Char promised me that her supervisor (Emily) would call me back by 7:30 tonight to clear up this problem. Well guess what? No call back so where should I go from here? Any advice or help would be greatly appreciated. Thank you for your help.

    someone swapped upgrades.  Phone could have been sold For quick cash. 

  • Access 2010 Chart - Report returns an identical chart for every record in the underyling query

    Hi there, I hope someone can help me with this. I've created a stacked column chart in a Report. The chart seems to be working fine but my report is returning a chart for every record in the source query.  The chart adds up the days each vehicle in
    a fleet was used in a given time frame.  I'm not a code writer so wizarded my way to the following:
    TRANSFORM Sum(QVehicleDaysUsed.[DaysOfUseThisMonth]) AS SumOfDaysOfUseThisMonth SELECT QVehicleDaysUsed.[YearMakeModelPlate] FROM QVehicleDaysUsed GROUP BY QVehicleDaysUsed.[YearMakeModelPlate] PIVOT QVehicleDaysUsed.VehicleUseForMonthStarting;
    The chart seems to be producing exactly what I want but it's repeated once for every record in the source query. I don't know if this is the issue but I don't have a Master/Child field linking the chart to the report it's in - chart is unbound and therefore
    won't allow me to link fields. I'd sure appreciate any help you can offer! Thanks!
    (Incidentally VehicleUseForMonthStarting is a date field - ideally it should be shown as a DatePart MMMM but for whatever reason Access is balking at the Format expression.)
    Thanks!

    GOT IT! Hurray.  Obvious after giving it more thought... I had to make the report the chart was in Unbound. :) Leaving post up in case it helps someone else out.

  • Build Plugin IS NOT DEFINED for this component or the defined Build Plugin

    Hello,
    we have upgraded our NWDI (nw04s) to SP13 and to DB2 V.9. We don't know if this has something to do with our problem. The NWDS developers called us. They can't activate the changes anymore. When I check the CBS I can see, that all components are broken. Any idea?
    REgards,
    Alexander
    Build number assigned: 487
    Change request state from QUEUED to PROCESSING
    REQUEST PROCESSING started at 2007-10-10 10:46:13.526 GMT
        BUILD request in Build Space "NW1_GPMS_D" at Node ID: 27,972,750
         [id: 473; parentID: 0; type: 2]
        Waiting for access: 33 ms
        ===== Pre-Processing =====  started at 2007-10-10 10:46:13.559 GMT
            Calculate all combinations of components and variants to be built...
            Analyze request DC BV... started at 2007-10-10 10:46:13.702 GMT
                    'zurich.com/gpms/jco_pool' variant 'default'
                    'zurich.com/gpms/jco_pool' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/yea' variant 'default'
                    'zurich.com/gpms/yea' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/chgpwd' variant 'default'
                    'zurich.com/gpms/chgpwd' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/rep' variant 'default'
                    'zurich.com/gpms/rep' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/model' variant 'default'
                    'zurich.com/gpms/model' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/idp' variant 'default'
                    'zurich.com/gpms/idp' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/ovt' variant 'default'
                    'zurich.com/gpms/ovt' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/arch' variant 'default'
                    'zurich.com/gpms/arch' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/myr' variant 'default'
                    'zurich.com/gpms/myr' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/div' variant 'default'
                    'zurich.com/gpms/div' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/ume' variant 'default'
                    'zurich.com/gpms/ume' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/com' variant 'default'
                    'zurich.com/gpms/com' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/ovw' variant 'default'
                    'zurich.com/gpms/ovw' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/obj' variant 'default'
                    'zurich.com/gpms/obj' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/chgpwdb' variant 'default'
                    'zurich.com/gpms/chgpwdb' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/pdata' variant 'default'
                    'zurich.com/gpms/pdata' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
            Analyze request DC BV... finished at 2007-10-10 10:46:14.049 GMT and took 347 ms
            Prepare build environment in the file system... started at 2007-10-10 10:46:14.049 GMT
                Synchronize development configuration... started at 2007-10-10 10:46:14.049 GMT
                Synchronize development configuration... finished at 2007-10-10 10:46:14.068 GMT and took 19 ms
                Synchronize used libraries... started at 2007-10-10 10:46:14.068 GMT
                Synchronize used libraries... finished at 2007-10-10 10:46:14.068 GMT and took 0 ms
            Prepare build environment in the file system... finished at 2007-10-10 10:46:14.068 GMT and took 19 ms
        ===== Pre-Processing =====  finished at 2007-10-10 10:46:14.069 GMT and took 510 ms
        Waiting for access: 3 ms
        ===== Processing =====  started at 2007-10-10 10:46:14.072 GMT
            No Components to be built.
            BUILD DCs
        ===== Processing =====  finished at 2007-10-10 10:46:17.407 GMT and took 3 s 335 ms
        ===== Post-Processing =====
        Waiting for access: 5 ms
        ===== Post-Processing =====  started at 2007-10-10 10:46:17.412 GMT
            STORE build results... started at 2007-10-10 10:46:17.413 GMT
                "zurich.com/gpms/jco_pool" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/jco_pool": store meta-data
                "zurich.com/gpms/jco_pool" in "default" variant  is PROCESSED
                "zurich.com/gpms/yea" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/yea": store meta-data
                "zurich.com/gpms/yea" in "default" variant  is PROCESSED
                "zurich.com/gpms/chgpwd" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/chgpwd": store meta-data
                "zurich.com/gpms/chgpwd" in "default" variant  is PROCESSED
                "zurich.com/gpms/rep" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/rep": store meta-data
                "zurich.com/gpms/rep" in "default" variant  is PROCESSED
                "zurich.com/gpms/model" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/model": store meta-data
                "zurich.com/gpms/model" in "default" variant  is PROCESSED
                "zurich.com/gpms/idp" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/idp": store meta-data
                "zurich.com/gpms/idp" in "default" variant  is PROCESSED
                "zurich.com/gpms/ovt" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/ovt": store meta-data
                "zurich.com/gpms/ovt" in "default" variant  is PROCESSED
                "zurich.com/gpms/arch" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/arch": store meta-data
                "zurich.com/gpms/arch" in "default" variant  is PROCESSED
                "zurich.com/gpms/myr" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/myr": store meta-data
                "zurich.com/gpms/myr" in "default" variant  is PROCESSED
                "zurich.com/gpms/div" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/div": store meta-data
                "zurich.com/gpms/div" in "default" variant  is PROCESSED
                "zurich.com/gpms/ume" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/ume": store meta-data
                "zurich.com/gpms/ume" in "default" variant  is PROCESSED
                "zurich.com/gpms/com" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/com": store meta-data
                "zurich.com/gpms/com" in "default" variant  is PROCESSED
                "zurich.com/gpms/ovw" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/ovw": store meta-data
                "zurich.com/gpms/ovw" in "default" variant  is PROCESSED
                "zurich.com/gpms/obj" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/obj": store meta-data
                "zurich.com/gpms/obj" in "default" variant  is PROCESSED
                "zurich.com/gpms/chgpwdb" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/chgpwdb": store meta-data
                "zurich.com/gpms/chgpwdb" in "default" variant  is PROCESSED
                "zurich.com/gpms/pdata" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/pdata": store meta-data
                "zurich.com/gpms/pdata" in "default" variant  is PROCESSED
            STORE build results... finished at 2007-10-10 10:46:17.440 GMT and took 27 ms
            Change request state from PROCESSING to SUCCEEDED
            Analyze effect of applied changes to buildspace state... started at 2007-10-10 10:46:17.440 GMT
                Skip check for build time dependency cycles. DC metadata is not changed.
                Determine components that have become DIRTY due to the results of this request started at 2007-10-10 10:46:18.601 GMT
                    No such components have been found.
                Determine components that have become DIRTY due to the results of this request finished at 2007-10-10 10:46:18.602 GMT and took 1 ms
                No Internal Build Requests are canceled by this request
            Analyze effect of applied changes to buildspace state... finished at 2007-10-10 10:46:18.642 GMT and took 1 s 202 ms
            Request SUCCEEDED
        ===== Post-Processing =====  finished at 2007-10-10 10:46:18.646 GMT and took 1 s 234 ms
    REQUEST PROCESSING finished at 2007-10-10 10:46:18.646 GMT and took 5 s 120 ms
        ===== Pre-Processing =====  started at 2007-10-10 07:16:55.069 GMT
            Calculate all combinations of components and variants to be built...
            Analyze request DC BV... started at 2007-10-10 07:16:55.104 GMT
                    'zurich.com/gpms/jco_pool' variant 'default'
                    'zurich.com/gpms/jco_pool' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/yea' variant 'default'

    Here are some things to have a look at:
    - Check your SC definitions and their Usage Dependencies in the SLD
    - Check that the basis SCA's have been imported into the track. You can quickly see this by having a look at the total nr of DCs for these SCs in CBS.

  • When i connect my ipad2 to iTune, it show "iTunes could not check for an update to the carrier settings for your iPad. An unknown error occured (1651)". What should i do to solve this problem? My iTune version is 10.1.4.10 and my ipad is 4.3.5.

    When i connect my ipad2 to iTune, it show "iTunes could not check for an update to the carrier settings for your iPad. An unknown error occured (1651)". What should i do to solve this problem? My iTune version is 10.1.4.10 and my ipad is 4.3.5.

    If you have iOS 7.1 then you must be a developer, so you should be posting in the developer forums : https://devforums.apple.com/index.jspa

  • I am trying to sync my ipad with my computer and keep getting the following message: iTunes could not check for an update to the carrier settings in your ipad.  an unknown error occurs (1631).  what do I do??

    am trying to sync my ipad with my computer and keep getting the following message: iTunes could not check for an update to the carrier settings in your ipad.  an unknown error occurs (1631).  what do I do??

    The search bar can be very valuable...........
    In using it, I found out other's have had this issue and it likely means you have a 3G iPad?  If you do, go into settings and turn off cellular data, then try to update again and you should be OK........

  • Serial Number Not Valid- new Windows 7pro/ fresh install of Creative Suite 5 Design Premium Win from download will not accept license key. This serial number is not valid for this product is the only response.

    Serial Number Not Valid- new Windows 7pro workstation / fresh install of Creative Suite 5 Design Premium Win from download will not accept license key to install. This serial number is not valid for this product is the only response being returned. What am I missing?

    The key is for Creative Suite 5 Design Premium the download is DesignPremium_CS5_5_LS1 and all associated files in the group.

  • Workflow mail not triggering for PO's to the Manager

    Dear Seniors,
      I am creating a PO and keeping in hold and later on saving the PO. But for those kind of PO's, the manager is not getting the mail for approval. But if i create a PO without keeping in hold with same data, system is triggering the mail to the manager. Why is it so? how can i make the settings to trigger the mail for hold-saved PO's. Please guide me.
    Regards,
    Prasath J

    Hello Prasath,
    Please check your configuration on ERP/ECC
    side in transaction SWETYPV. Here you can enable or disable the
    event type linkage for BUS2012 and for CL_SE_PUR_PO_WF_OUT or any
    customer-specific business object related to Purchase Orders which might
    be in use. If you disable the event linkage for CREATE and/or change
    event, no message will be triggered upon PO creation.
    If this is not sufficient for your business process the usual logic is
    that all Purchase Order message are being sent out when the event
    linkage is active (e.g. you want to send out only some of the message
    types possible). In this case you might want to make use of BAdI
    PUR_SE_PO_INTERFACE_OUT_SELECT (enhancement spot / BAdI)."
    Enhancement Spot: PUR_SPOT_SE_PURCHASE_ORDER
    BAdI Definition:  PUR_SE_PO_INTERFACE_OUT_SELECT
    Interface:        IF_PUR_SE_PO_IF_OUT_SELECT
    BADI definition   PUR_APPL_SE_POCONF_IN_ASYN
    Also in the standard, for the following messages
       PurchaseOrderChangedInformation_Out
       PurchaseOrderERPRequest_Out_V1
       PurchaseOrderERPConfirmation_Out
    we are sending out these information as soon as a purchase Order is
    created. We do not distinguish between the services all of them will be
    triggered.
    Hope this hepls
    Ray

Maybe you are looking for