Cfgrid edit working, delete is not working

When I select a row and try to delete it, I get "Error invoking CFC _admin_cfc_contacts.cfc : OK [Enable debugging by adding 'cfdebug' to your URL parameters to see more information]"
Here is my cfgrid code...
<cfset args = structNew()>
<cfset args.name = "contact_grid">
<cfset args.format = "html">
<cfset args.query = "biz_contacts">
<cfset args.stripeRows = "yes">
<cfset args.bgcolor = "FFFFFF">
<cfset args.colheaderalign = "left">
<cfset args.colheaderbold = "yes">
<cfset args.delete = "yes">
<cfset args.griddataalign = "left">
<cfset args.multirowselect = "yes">
<cfset args.insert = "yes">
<cfset args.selectcolor = "FF6633">
<cfset args.height = "500">
<cfset args.selectmode = "edit">
<cfset args.autowidth = "yes">
<cfset args.onchange = "cfc:_admin_cfc_contacts.edit_grid({cfgridaction},{cfgridrow},{cfgridchanged})">
<div style="padding-top: 20px; padding-left: 20px; padding-right: 20px;">
    <cfform name="test">
    <cfgrid attributeCollection="#args#">
        <cfgridcolumn name="id" display="false">
        <cfgridcolumn name="business_name" header="Biz Name">
        <cfgridcolumn name="name" header="Contact Name">
        <cfgridcolumn name="address" header="Address">
        <cfgridcolumn name="link" header="Link">
        <cfgridcolumn name="city" header="City">
        <cfgridcolumn name="state" header="State">
        <cfgridcolumn name="phone" header="Phone">
        <cfgridcolumn name="email" header="Email">
        <cfgridcolumn name="website" header="Website">
        <cfgridcolumn name="contacted" header="Contacted">
    </cfgrid>
    </cfform>
</div>
And here is my .cfc code...
<cffunction name="edit_grid" access="remote">
    <cfargument name="gridaction" type="string" required="yes">
    <cfargument name="gridrow" type="struct" required="yes">
    <cfargument name="gridchanged" type="struct" required="yes">
    <cfset var colname = "">
    <cfset var value = "">
    <cfswitch expression="#arguments.gridaction#">
        <!--- update --->
        <cfcase value="U">
            <cfset colname = StructKeyList(arguments.gridchanged)>
            <cfset value = arguments.gridchanged[colname]>
            <cfquery datasource="mydsn">
            UPDATE mytable
            SET #colname# = '#value#'
            WHERE id = <cfqueryparam value="#arguments.gridrow.id#" cfsqltype="cf_sql_integer">
            </cfquery>
        </cfcase>
        <!--- delete --->
        <cfcase value="D">
            <cfquery datasource="mydsn">
            DELETE FROM mytable
            WHERE id = <cfqueryparam value="#arguments.gridrow.id#" cfsqltype="cf_sql_integer">
            </cfquery>
        </cfcase>
    </cfswitch>
</cffunction>

Did you ever resolve this issue?
I know your post is pretty old, now - I'm old, too - but I had the same problem and, I think, for the same reason.
I also think I just found a fix, that I can't recall having been shared in any of my recent searches on this topic.
Using your cfc code, these are comments and these are revisions ...
<cffunction name="edit_grid" access="remote">
    <cfargument name="gridaction" type="string" required="yes">
    <cfargument name="gridrow" type="struct" required="yes">
    <cfargument name="gridchanged" type="struct" required="yes">
    <cfset var colname = "">
    <cfset var value = "">
    <!--- *** Add/init' this variable; name it whatever_works_for_you. *** --->
     <cfset var row_pk_id = ""/>     
    <cfswitch expression="#arguments.gridaction#">
        <!--- update --->
        <cfcase value="U">
            <cfset colname = StructKeyList(arguments.gridchanged)>
            <cfset value = arguments.gridchanged[colname]>
          <!--- *** Add this statement to assign the value from "my_pk_column"; `id` in this case, but it was `quantity_tracking_id` in my case. *** --->
         <cfset row_pk_id = arguments.gridrow.id />
            <cfquery datasource="mydsn">
            UPDATE mytable
            SET #colname# = '#value#'
          <!--- *** Change this line ... *** --->
          <!---
            WHERE id = <cfqueryparam value="#arguments.gridrow.id#" cfsqltype="cf_sql_integer">
          --->
          <!--- *** ... to this. *** --->
          WHERE id = <cfqueryparam value = "#row_pk_id#" cfsqltype="cf_sql_integer">
            </cfquery>
        </cfcase>
        <!--- delete --->
        <cfcase value="D">
               <!--- *** Likewise ... *** --->
              <cfset row_pk_id = arguments.gridrow.id />
            <cfquery datasource="mydsn">
            DELETE FROM mytable
          <!--- *** ... and ... *** --->
          <!---
            WHERE id = <cfqueryparam value="#arguments.gridrow.id#" cfsqltype="cf_sql_integer">
               --->
           WHERE id = <cfqueryparam value = "#row_pk_id#" cfsqltype = "cf_sql_integer">
            </cfquery>
        </cfcase>
    </cfswitch>
</cffunction>
I am unable to do little more than a weak SWAG at the why of the failure with the former and success with the latter, but, when I changed one line of code in the cfquery, my updates began working.
My expertise is, shall we say, limited, perhaps "wading-depth", at best, but, while trying to figure it out yesterday ...
I located the point-of-failure, the query, even though the err_msg was SO different from any cfquery/SQL fault message I've yet seen.
I tried to look at and understand (a bit more of the former than the latter, to be sure) the debugging content generated by Firebug, which seemed to have more to do with the inability to find a resource; I think it was a something.gif.
I saw that the resource was sought in a folder (our folks) installed (wisely or not) under the CFIDE folder.
I know that our folks had recently locked down access to CFIDE,as well as any of its "children", cfgrid libraries/resources included.
I knew that, after the lockdown, our folks created some sort of virtual-folder when I asked them to make the cfgrid functionality available to us again.
Well, all this started me wondering about what, exactly, was going on that would fit into this particular scenario.
That's when I looked at the query again and wondered if the issue might be direct use/reference in the cfquery of values residing in the more-complexly-structured arg's.  So, I decided to try what I suggest above, assignment to a simple variable and use of that variable in the cfquery.
I'm sure that there are plenty of way-deeper folk than I who could go into particulars.
I'm just tickled that I'm "back in business"!
HTH,
Steve in Memphis

Similar Messages

  • In iTunes 11.1 (I26) , I cannot find how to delete podcast listings showing undownloaded podcasts. Delete does not work. Option Delete does not work.  Dragging to the trash does not work. Under Edit, Delete is greyed out. Mac OS 10.6.8

    in iTunes 11.1 (I26) , I cannot find how to delete podcast listings showing undownloaded podcasts. Delete does not work. Option Delete does not work. Dragging to the trash does not work. Under Edit, Delete is greyed out. Mac OS 10.6.8.
    Tom at the Genius Bar told me that Option Delete would work. It does not.
    I had to upgrade to iTunes 11.1.(I26) because it is required with OS7 on my iPod Touch (5th Gen). I have tried shutting down iTunes, then shutting down the entire system. This is the first in many visits that the Genius Bar gave me a solution that did not work.
    This is a big awkward computer locked to my desk. I would rather not unlock it and then carry it through a shopping center to the Genius Bar if i can avoid oit.
    When I installed iTunes 11.1, I discovered that Ihad to resubscribe to virtually all of the podcasts that I had previously been subscribed to. That was a surprise.

    Hello Achates:
    I did not read the rather long post. If you wish to reinstall OS X 10.4, use your software install DVD. Backup is essential. To minimize your risk, I would use an archive and install:
    http://docs.info.apple.com/article.html?artnum=107120
    In that way, you will have a fresh copy of OS X and your current settings will be preserved.
    Incidentally, I do not agree that the printer problem is best solved by reinstalling OS X. I have had HP printers for sometime and, on one occasion, had difficulty after an upgrade. HP technical support walked me through uninstalling all traces of the HP driver and then reinstalling.
    Barry

  • At the top of my Mozilla home page, it lists the current URL site I am on. How do I delete them and the others in the drop down box? Highlighting and hitting delete does not work

    At the top of my Mozilla home page, it lists the current URL site, such as http://www.safeco.com, I am on plus the others in the drop down box. How do I delete them. Highlighting and hitting delete does not work.
    I am using windows Vista 007 and Mozila 3.6.1.3

    Do those entries have a yellow star at the far right?
    If they have then they are bookmarks. You can remove them if you open that link and click the star to open the Edit This Bookmark dialog and click the Remove button in that dialog.
    * [[Clearing Location bar history]]
    * [[Cannot clear Location bar history]]

  • HT3386 How do you remove part of a file. My thumbnail attach themselves then refuse to allow editing without deleting my complete work. I even scan in jpegs of my documents and it incessantly adds blanks I can't remove.

    How do you remove part of a file. My thumbnail attach themselves then refuse to allow editing without deleting my complete work. I even scan in jpegs of my documents and it incessantly adds blanks I can't remove.

    Pages documents are organized in sections. When you click on the thumbnail for a page, the section containing that page is selected. The Delete command applies to the selection, so if you press delete at this point, the selected section is deleted.
    You can separate a section into two or more sections by inserting a section break at the end of the page before the page you want ot be the first in the new section, then inseritng a second section break where you want the second section to end. Click on the thumbnail for any page in the new section, thenpress delete and the new section will be deleted.
    If desired, you can then reconnect the two remaining sections into one by deleting the section break between them.
    An alternate is to select any floating objects on the pages you want to delete, then press delete. After that, select the text on the pages you want to delete, then press delete.
    If all objects on these pages (and al objects on pages following these pages) have been placed as Inline objects, this deletion may be done in a single step. Floating objects placed below the deleted material will maintain their position relative to the top left corner of the first page of the section,m and will not be in the same place within the text as they were before the deletion.
    "I even scan in jpegs of my documents and it incessantly adds blanks I can't remove."
    If your jpegs are inserted as inline objects, each will be treated as a single, large character in the text. You will see the same space left and right of the object as you would create by increasing the height of one character in the line of text to the same size as the height of the jpeg image.
    If they are inserted as floating objects, then depending on the Wrap settings, they may force text out of the space to the left, right, or both sdes of the object, as well as forcing a small gap above and below the object. If the scan includes excess white space around the graphic, this white space will be included as part of the object
    Regards,
    Barry.

  • I cant copy/paste from an article to my web site, get a Mozilla Rich Text Editing demo page will not work.HELP

    Tried to copy/paste from an article to my web site and got a "cannot copy /paste " warning and was directed to a security perferences site that said that Mozilla Rich Text Editing demo page will not work.
    Tried to find my Firefox profile directory using the start menu and was directed to hit enter to go to web. Feel like i am getting run around.

    Let's start with something very basic, and that is, you do not need to use the paste button on most websites. The button just reads what is on your clipboard and sticks it into the form. You can do that yourself using Ctrl+v or right-click>Paste.
    For your security, I suggest using those standard Windows keyboard shortcuts (Ctrl+x cut, Ctrl+c copy, Ctrl+v paste) or the context menu.
    Occasionally you will find a paste button that runs a clean-up script or otherwise does something useful. That is where the (admittedly a bit complicated) instructions come in handy.
    To open your active profile folder, you can use:
    Help > Troubleshooting Information > "Show Folder" button
    Which help article are you using for the modifications?
    Finally, please be cautious in opening up your clipboard to sites. You may have stuff you copied from other pages or other programs that you do not want to share with most sites.

  • Lightroom 5.4, syncing photo settings edited in CS6 does not work. Maverick OS 10.9, Raw 8.3.0141

    I recently updated Lightroom to 5.4 and noticed that when the file comes back from CS6, the edit/sycn settings does not work. Selecting the gray area of the source file, and selecting another, clicking on the sync produces nothing. When I select a source image and another that has not visited CS 6 the sync works fine. I have used this simple technique for years with previous versions and never had a problem. Something has changed with the update and/or compatibility with the file coming back into Lighroom. Any thoughts about this would be appreciated.

    ssprengel, thanks for following up. I work with DNG files in Lightroom that have been converted from Raw CR2 files. They are exported from Lightroom to Photoshop as Tiff files and any files that i edited and traveled round trip could not be used to sync other files in Lightroom. Even simple edits like saturation or exposure have disabled the file from being able to sync the settings to other files. I do most of the syncing of develop settings in Lightroom, but occasionallly I will adjust basic settings in Photoshop for one reason or another and after updating to 5.4 I noticed that sync worked fine within Lightroom only. I have tried a few changes to preferences with regard to how develop settings are registered with the file and that hasn't made any difference. Any ideas?

  • Other database delete is not working on forall statement

    Dear all,
    My scenario is , i create a program, the program fetch the data from database x and i want to delete on the same x database but i am running this program at y database, so
    so i created a view
    create or replace view vw_ibs_pda_bills_x as
    SELECT *
            FROM ibs_pda_bills_x@testarch1my program
    Declare
          CURSOR c2 IS
          SELECT *
            FROM vw_ibs_pda_bills_x
           WHERE bill_month <= '31-dec-2008'; -- AND bpref_no = :cons;
           opr varchar2(10) := 'DELETE';
          TYPE tsch IS TABLE OF c2%ROWTYPE;
          vtsch      tsch;
          cnt        NUMBER := 0;
          stime      NUMBER;
          etime      NUMBER;
          DURATION   NUMBER;
          rcount     NUMBER;
          errorsd   PLS_INTEGER;
          ecode     NUMBER;
          val1   VARCHAR2 (100);
          val2   VARCHAR2 (100);
          val3   VARCHAR2 (100);
          val4   VARCHAR2 (100);
       BEGIN
          BEGIN
             stime := DBMS_UTILITY.get_time ();
             OPEN c2;
             LOOP
                FETCH c2
                BULK COLLECT INTO vtsch LIMIT 1000;
                IF vtsch.COUNT = 1000
                THEN
                   cnt := cnt + 1;
                END IF;
            If opr = 'INSERT' Then
                    FORALL i IN 1 .. vtsch.COUNT SAVE EXCEPTIONS
                          INSERT INTO dlul.ibs_pda_bills
                        VALUES vtsch (i);
            Else
                    FORALL i IN 1 .. vtsch.COUNT SAVE EXCEPTIONS
                        Delete from vw_ibs_pda_bills_x where bill_month = vtsch(i).bill_month;
            End if;
                EXIT WHEN c2%NOTFOUND;
             END LOOP;
             etime := DBMS_UTILITY.get_time ();
             DURATION := ((etime - stime) / 100) / 60;
             rcount :=
                 (cnt * 1000) + vtsch.COUNT - NVL (SQL%BULK_EXCEPTIONS.COUNT, 0);
         If opr = 'INSERT' Then
             INSERT INTO process_stage_log
                  VALUES (SYSDATE, 'IBS_PDA_BILLS', DURATION, rcount);
         Else
             INSERT INTO process_stage_log
                  VALUES (SYSDATE, 'IBS_PDA_BILLS-D', DURATION, rcount);
         End if;
             CLOSE c2;
             COMMIT;
          EXCEPTION
             WHEN OTHERS
             THEN
                errorsd := SQL%BULK_EXCEPTIONS.COUNT;
                IF errorsd > 0
                THEN
                   FOR j IN 1 .. errorsd
                   LOOP
                      ecode := SQL%BULK_EXCEPTIONS (j).ERROR_CODE;
                      val1 :=
                           vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).sch_code;
                      val2 :=
                           vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).bpref_no;
                      val3 :=
                         vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).bill_month;
                      val4 :=
                         vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).service_code;
                  If opr = 'INSERT' Then         
                      INSERT INTO process_error_log
                           VALUES (SYSDATE, ecode, 'IBS_PDA_BILLS', 'sch_code', val1,
                                   'bpref_no', val2, 'bill_month', val3, 'service_code', val4,'INSERT');
              Else
                      INSERT INTO process_error_log
                           VALUES (SYSDATE, ecode, 'IBS_PDA_BILLS', 'sch_code', val1,
                                   'bpref_no', val2, 'bill_month', val3, 'service_code', val4,'DELETE');
              End if;
                   END LOOP;
                END IF;
          END;
       END pda_insert;the program want to do the delet option for all delete is not working. The program executed successful but the operation delete is not happening
    how to solve this issue.
    please help me
    kanish

    No error encountered in my log table
    the new workaround you said, that is instead of for all , already i tried for i in 1.. to like
    instead of forall delete i tried the following way
    Declare
          CURSOR c2 IS
    SELECT *
            FROM ibs_pda_bills_x@testarch1
           WHERE bill_month <= '31-dec-2008'; -- AND bpref_no = :cons;
           opr varchar2(10) := 'DELETE';
          TYPE tsch IS TABLE OF c2%ROWTYPE;
          vtsch      tsch;
          cnt        NUMBER := 0;
          stime      NUMBER;
          etime      NUMBER;
          DURATION   NUMBER;
          rcount     NUMBER;
          errorsd   PLS_INTEGER;
          ecode     NUMBER;
          val1   VARCHAR2 (100);
          val2   VARCHAR2 (100);
          val3   VARCHAR2 (100);
          val4   VARCHAR2 (100);
       BEGIN
          BEGIN
             stime := DBMS_UTILITY.get_time ();
             OPEN c2;
             LOOP
                FETCH c2
                BULK COLLECT INTO vtsch LIMIT 1000;
                IF vtsch.COUNT = 1000
                THEN
                   cnt := cnt + 1;
                END IF;
            If opr = 'INSERT' Then
                    FORALL i IN 1 .. vtsch.COUNT SAVE EXCEPTIONS
                          INSERT INTO dlul.ibs_pda_bills
                        VALUES vtsch (i);
            Else
                   /* fORALL i IN 1 .. vtsch.COUNT SAVE EXCEPTIONS
                     Delete from vw_ibs_pda_bills_x where to_char(bill_month,'dd-mm-rrrr') = to_char(vtsch (i).bill_month,'dd-mm-rrrr');*/
                     for i in 1..vtsch.count loop
                       delete ibs_pda_bills_x@testarch1 where to_char(bill_month,'dd-mm-rrrr') = to_char(vtsch (i).bill_month,'dd-mm-rrrr');
                     end loop; 
            End if;
                EXIT WHEN c2%NOTFOUND;
             END LOOP;
             etime := DBMS_UTILITY.get_time ();
             DURATION := ((etime - stime) / 100) / 60;
             rcount :=
                 (cnt * 1000) + vtsch.COUNT - NVL (SQL%BULK_EXCEPTIONS.COUNT, 0);
         If opr = 'INSERT' Then
             INSERT INTO process_stage_log
                  VALUES (SYSDATE, 'IBS_PDA_BILLS', DURATION, rcount);
         Else
             INSERT INTO process_stage_log
                  VALUES (SYSDATE, 'IBS_PDA_BILLS-D', DURATION, rcount);
         End if;
             CLOSE c2;
             COMMIT;
          EXCEPTION
             WHEN OTHERS
             THEN
                errorsd := SQL%BULK_EXCEPTIONS.COUNT;
                IF errorsd > 0
                THEN
                   FOR j IN 1 .. errorsd
                   LOOP
                      ecode := SQL%BULK_EXCEPTIONS (j).ERROR_CODE;
                      val1 :=
                           vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).sch_code;
                      val2 :=
                           vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).bpref_no;
                      val3 :=
                         vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).bill_month;
                      val4 :=
                         vtsch (SQL%BULK_EXCEPTIONS (j).ERROR_INDEX).service_code;
                  If opr = 'INSERT' Then         
                      INSERT INTO process_error_log
                           VALUES (SYSDATE, ecode, 'IBS_PDA_BILLS', 'sch_code', val1,
                                   'bpref_no', val2, 'bill_month', val3, 'service_code', val4,'INSERT');
              Else
                      INSERT INTO process_error_log
                           VALUES (SYSDATE, ecode, 'IBS_PDA_BILLS', 'sch_code', val1,
                                   'bpref_no', val2, 'bill_month', val3, 'service_code', val4,'DELETE');
              End if;
                   END LOOP;
                END IF;
          END;
       END pda_insert;i am receiving the following error
    ORA-02055: distributed update operation failed; rollback required
    ORA-06531: Reference to uninitialized collection
    ORA-06512: at line 77
    ORA-06531: Reference to uninitialized collection
    kanish

  • Multiple delete is not working.

    Hi,
    Multiple delete is not working. Please find my backend bean code. Please let me know the issue in my code.
    Table:
    <af:table value="#{bindings.CmProcessParamValueView13.collectionModel}"
    var="row"
    rows="#{bindings.CmProcessParamValueView13.rangeSize}"
    emptyText="#{bindings.CmProcessParamValueView13.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.CmProcessParamValueView13.rangeSize}"
    rowBandingInterval="1"
    selectedRowKeys="#{bindings.CmProcessParamValueView13.collectionModel.selectedRow}"
    selectionListener="#{bindings.CmProcessParamValueView13.collectionModel.makeCurrent}"
    rowSelection="multiple"
    binding="#{backingBeanScope.backing_app_RunCalcPage.t1}"
    id="t1" width="720px" inlineStyle="height:140px;" partialTriggers="cb6 cb3"
    filterVisible="true" filterModel="#{bindings.CmProcessParamValueView13.queryDescriptor}" >
    <af:column sortProperty="ParamValue7"
    sortable="true" width="690"
    headerText="Comm Type"
    rowHeader="unstyled"
    id="c2" align="left" filterable="true">
    <af:outputText value="#{row.ParamValue7}"
    id="ot4"/>
    </af:column>
    </af:table>
    Backing Bean Delete Code:
    RowKeySet rowKeySet = (RowKeySet)this.t1.getSelectedRowKeys();
    CollectionModel cm = (CollectionModel)this.t1.getValue();
    System.out.println("RowKeySet is: "+ rowKeySet.getSize());
    for (Object facesTreeRowKey : rowKeySet) {
    cm.setRowKey(facesTreeRowKey);
    JUCtrlHierNodeBinding rowData =
    (JUCtrlHierNodeBinding)cm.getRowData();
    System.out.println("RowData is : "+rowData.getAttribute("ParamValue7"));
    rowData.getRow().remove();
    Thanks.

    Issue is resolved...
    Solution is,
    Remove selectionListener and selectedKey attributes from the table.
    Delete code is:
    DCBindingContainer dcBindings =
    (DCBindingContainer)getBindings();
    DCIteratorBinding dcIterator =
    dcBindings.findIteratorBinding("Iterator...");
    RowSetIterator rs = dcIterator.getRowSetIterator();
    RowKeySet rks = this.t1.getSelectedRowKeys();
    Iterator rksIter = rks.iterator();
    while (rksIter.hasNext()) {
    List l = (List) rksIter.next();
    Key key = (Key)l.get(0);
    Row row = rs.getRow(key);
    if(row != null)
    row.remove();
    }

  • HT1750 space.bar.and.delete.key.not.working.on.wireless.keyborad

    space.anddelte
    space.and.delete.keys.not.working.on.wireless.keyboard.help!

    Before replacing the keyboard do 2-3 SMC resets using the instructions in iMac SMC and PRAM reset

  • Is it possible to check automati all bookmarks, and delete the not working bookmarks

    Is it possible to check automatic all bookmarks, and delete the not working bookmarks

    Try this extension:
    *CheckPlaces: https://addons.mozilla.org/firefox/addon/checkplaces/

  • I have a MacBook Air using Maverick. I have files in the trash I want to recover. I do not have "Put Back" and Command   Delete does not work.

    I have a MacBook Air using Maverick. I have files in the trash I want to recover to their original files. I do not have "Back Up" and "Command + Delete" does not work.

    Drag them out of the Trash and put them in their original location. Put Back may work on one file at a time.

  • Disp+work.exe is not working

    Hi Gurus.........i have system ecc6.0 installed , unfortunatly the disp+work.exe is not working (gray in color) .Please help me out.
    below is the dev_dsp file details :
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      00
    sid        EC6
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    75
    intno      20050900
    make:      multithreaded, Unicode, optimized
    pid        2196
    Fri Sep 19 21:26:44 2008
    kernel runs with dp version 217000(ext=109000) (@(#) DPLIB-INT-VERSION-217000-UC)
    length of sys_adm_ext is 572 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 2196) [dpxxdisp.c   1237]
         shared lib "dw_xml.dll" version 75 successfully loaded
         shared lib "dw_xtc.dll" version 75 successfully loaded
         shared lib "dw_stl.dll" version 75 successfully loaded
         shared lib "dw_gui.dll" version 75 successfully loaded
         shared lib "dw_mdm.dll" version 75 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Fri Sep 19 21:26:49 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5273]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >gcecc6_EC6_00                           <
    DpShMCreate: sizeof(wp_adm)          18304     (1408)
    DpShMCreate: sizeof(tm_adm)          3994272     (19872)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    DpShMCreate: sizeof(comm_adm)          528064     (1048)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1440)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 05EF0040, size: 4653368)
    DpShMCreate: allocated sys_adm at 05EF0040
    DpShMCreate: allocated wp_adm at 05EF1E40
    DpShMCreate: allocated tm_adm_list at 05EF65C0
    DpShMCreate: allocated tm_adm at 05EF65F0
    DpShMCreate: allocated wp_ca_adm at 062C5890
    DpShMCreate: allocated appc_ca_adm at 062CB650
    DpShMCreate: allocated comm_adm at 062CD590
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 0634E450
    DpShMCreate: allocated gw_adm at 0634E490
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 0634E4C0
    DpShMCreate: allocated wall_adm at 0634E4C8
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    Fri Sep 19 21:26:50 2008
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation flat
    <EsNT> Memory Reset disabled as NT default
    <ES> 511 blocks reserved for free list.
    ES initialized.
    Fri Sep 19 21:26:52 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 2628
      argv[0] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = C:\usr\sap\EC6\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1044
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=EC6
      argv[7] = -DSAPMYNAME=gcecc6_EC6_00
      argv[8] = -DSAPPROFILE=C:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS00_gcecc6
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Fri Sep 19 21:26:55 2008
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1623]
    Fri Sep 19 21:27:06 2008
    ***LOG Q0K=> DpMsAttach, mscon ( gcecc6) [dpxxdisp.c   11586]
    Fri Sep 19 21:27:12 2008
    DpStartStopMsg: send start message (myname is >gcecc6_EC6_00                           <)
    DpStartStopMsg: start msg sent
    Fri Sep 19 21:27:20 2008
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    Fri Sep 19 21:28:30 2008
    CCMS: start to initalize 3.X shared alert area (first segment).
    Fri Sep 19 21:28:33 2008
    DpJ2eeLogin: j2ee state = CONNECTED
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 75
    Release check o.K.
    Fri Sep 19 21:28:52 2008
    ERROR => W0 (pid 2636) died [dpxxdisp.c   14241]
    ERROR => W1 (pid 2644) died [dpxxdisp.c   14241]
    ERROR => W2 (pid 2652) died [dpxxdisp.c   14241]
    ERROR => W3 (pid 1632) died [dpxxdisp.c   14241]
    ERROR => W4 (pid 908) died [dpxxdisp.c   14241]
    ERROR => W5 (pid 2660) died [dpxxdisp.c   14241]
    my types changed after wp death/restart 0xbf --> 0xbe
    ERROR => W6 (pid 2668) died [dpxxdisp.c   14241]
    my types changed after wp death/restart 0xbe --> 0xbc
    ERROR => W7 (pid 2676) died [dpxxdisp.c   14241]
    my types changed after wp death/restart 0xbc --> 0xb8
    ERROR => W8 (pid 2684) died [dpxxdisp.c   14241]
    ERROR => W9 (pid 640) died [dpxxdisp.c   14241]
    ERROR => W10 (pid 2692) died [dpxxdisp.c   14241]
    my types changed after wp death/restart 0xb8 --> 0xb0
    ERROR => W11 (pid 2700) died [dpxxdisp.c   14241]
    my types changed after wp death/restart 0xb0 --> 0xa0
    ERROR => W12 (pid 732) died [dpxxdisp.c   14241]
    my types changed after wp death/restart 0xa0 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1637
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Sep 19 21:29:02 2008
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Fri Sep 19 15:59:02 2008
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program  Cl  User         Action                    Table
    0 DIA     2636 Ended         no      1   0             0                                                             
    1 DIA     2644 Ended         no      1   0             0                                                             
    2 DIA     2652 Ended         no      1   0             0                                                             
    3 DIA     1632 Ended         no      1   0             0                                                             
    4 DIA      908 Ended         no      1   0             0                                                             
    5 DIA     2660 Ended         no      1   0             0                                                             
    6 UPD     2668 Ended         no      1   0             0                                                             
    7 ENQ     2676 Ended         no      1   0             0                                                             
    8 BTC     2684 Ended         no      1   0             0                                                             
    9 BTC      640 Ended         no      1   0             0                                                             
    10 BTC     2692 Ended         no      1   0             0                                                             
    11 SPO     2700 Ended         no      1   0             0                                                             
    12 UP2      732 Ended         no      1   0             0                                                             
    Dispatcher Queue Statistics               Fri Sep 19 15:59:02 2008
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    1
    2000
    1
    1
    --------++++--
    +
    DIA
    5
    5
    2000
    5
    0
    --------++++--
    +
    UPD
    0
    0
    2000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    2000
    0
    0
    --------++++--
    +
    SPO
    1
    1
    2000
    1
    0
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          10
    wake_evt_udp_now     0
    wake events           total     6,  udp     2 ( 33%),  shm     4 ( 66%)
    since last update     total     6,  udp     2 ( 33%),  shm     4 ( 66%)
    Dump of tm_adm structure:               Fri Sep 19 15:59:02 2008
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Fri Sep 19 15:59:02 2008
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1637
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Sep 19 21:29:07 2008
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >gcecc6_EC6_00                           < (normal)
    DpJ2eeDisableRestart
    MsIDelService: delete service J2EE for myself
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=161,pac=1,MESG_IO)
    MsINiWrite: sent 161 bytes
    send msg (len 110+51) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_DEL_PROPERTY ok
    Send 51 bytes to MSG_SERVER
    MS_DEL_PROPERTY : asynchronous call
    send MsDelService(J2EE) to msgserver
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=2628)
    killing process (2628) (SOFT_KILL)
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    NiBufISelUpdate: new MODE -- (r-) for hdl 4 in set0
    SiSelNSet: set events of sock 1508 to: ---
    NiBufISelRemove: remove hdl 4 from set0
    SiSelNRemove: removed sock 1508 (pos=2)
    SiSelNRemove: removed sock 1508
    NiSelIRemove: removed hdl 4
    DpDelSocketInfo: del info for socket 4 (type=8)
    NiICloseHandle: shutdown and close hdl 4 / sock 1508
    NiBufIClose: clear extension for hdl 4
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 3 in set0
    SiSelNSet: set events of sock 1536 to: ---
    NiBufISelRemove: remove hdl 3 from set0
    SiSelNRemove: removed sock 1536 (pos=3)
    SiSelNRemove: removed sock 1536
    NiSelIRemove: removed hdl 3
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/13
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 16)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 3 / sock 1536
    NiBufIClose: clear extension for hdl 3
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 2196) [dpxxdisp.c   10259]
    Good Bye .....

    The work process are dying
    ERROR => W1 (pid 2644) died [dpxxdisp.c 14241] *** ERROR => W2 (pid 2652) died [dpxxdisp.c 14241
    This lead the dispatcher to emergency shutdow:
    DISPATCHER EMERGENCY SHUTDOWN ***
    if the dispatcher cannot start the work process it force the shutdown.So, you need to check
    at the work process trace (dev_w*) files to find out the reason the they are dying.
    @deeptss     
    if you are talking about the WARNING
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0)took 5 seconds ***
    this is a normal situation if the reverse name resolution is not working.
    I have found this error when the DNS server has without the reverse zone configured.
    However this is not a problem to the dispatcher operation.
    Cheers
    Clebio

  • My camera is working but does not work on skype how do I turn the camera on for Skype

    My camer is working but does not work on skype how do I turn the camera on.

    See this thread:
    https://discussions.apple.com/thread/5306216?tstart=0
    FIX: 
    1. You need Time Machine
    2. Go to folder /Library/CoreMediaIO/Plug-Ins/DAL/
    3. Copy AppleCamera.plugin to good place (usb memory stick is the best place).
    4. Go to Time machine in date that skype work fine.
    5. Change AppleCamera.plugin with file from Time Machine
    6. Restart system, Now skype need to work with camera.
    If that doesnt pass,
    Suggest looking here, much success has been found:
    http://community.skype.com/t5/Mac/OS-X-10-8-5-broke-Video-on-MacBook-Air/td-p/18 91729/page/4

  • TS1718 I tried to update, did not work, unintstalled did not work.  Now when I try to install i get error message "The feature you are trying to use is on a network resource tha is unabailable.  Looking for itunes64.msi path.

    I tried to update, did not work, unintstalled did not work.  Now when I try to install i get error message "The feature you are trying to use is on a network resource tha is unabailable.  Looking for itunes64.msi path.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • People Picker/Edit Web Parts/More not working in IE11

    So, we just installed IE11 in our company and found the following issues with SharePoint 2010:
    People Picker not working
    At Search site, when you type in string(s) and hit Enter, nothing happens (you must click the search button)
    Cannot edit web parts on Wiki Page
    After doing some exhaustive homework (and installing Sep 2014 CU to see they were fixed), the only 2 solutions are:
    Run in compatibility Mode
    Fix the below tag in the Master Page and People Picker headers (14 hive)
    meta http-equiv="X-UA-Compatible" content="IE=8"
    So, I just want to know if others have encountered this and what they did to resolve (compatibility mode or change the tags or other).
    I have a ticket open with Microsoft, we installed Sept 2014 CU, and are still having these 3 issues.
    Godspeed,
    Herschel

    Hi,
    Thanks for posting your issue,
    We know that IE11 has compatibility issues. Kindly follow below mentioned steps to solve this issue
    1. Installed all the latest Update for IE 11
    2. Add the site in compatibility Mode (Tools> Compatibility view settings> type site name> add)
    3. Add the site in trusted sites and set the security Zone level to low ( IE> Internet Options> Security> trusted sites> sites>add your site there> ok> custom level> select low> reset> ok)
    Also, browse the below mentioned URLs for more details to fix this issue.
    http://www.proactivespeaks.com/2013/09/12/fixing-sharepoint-compatibility-issues-with-internet-explorer-ie-9-and-ie-10/
    http://saiabhilash.blogspot.in/2012/12/people-picker-to-add-users-to.html
    http://sinclairinat0r.com/2014/02/25/sharepoint-2010-people-picker-and-workflow-compatibility-fixes-for-ie10ie11/
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

Maybe you are looking for

  • How do I make my wireless internet password protected?

    I set up my wireless router and went to the 192.168.1.1 to set up everything. But how do I make it password protected, so unwanted people can't access my wireless internet? I did it before but can't figure it out again, haha. I went to Wireless>>>Wir

  • Transfer apps from iPhone to iTunes not working

    I have tried this on iTunes 8.0.1, 8.0.2 and 2.1, 2.2 firmware without success. For a good while now, I installed apps directly onto to my iPhone and never bothered to sync up regularly. As a result, I have over 20 apps on my phone that are not on iT

  • File adapter - delete empty/small files

    Hi, are there any way to configure the sender file adapter to delete and not pick up empty files or files with, say, max. 4 bytes of size? Thanks!

  • JDBC Driver at 'lh setup' Problems on MYSQLDB

    I just installed a small IdM showcase in my company wanting a remote MYSQLDB as index Database for IdM. When runnig setup I try to access the JDBC Driver which is installed in my Tomcat/common/lib directory as well a in my /idm/WEB-INF/lib directory

  • How do I stop PSE 13 organizer from quitting unexpectedly when working with the PSE editor

    Every time I'm working in the editor I get  the error message "the organizer has quit unexpectedly" I have uninstalled and reinstalled as per chat supports recommendation with no improvement. I have studied the Adobe support information and don't see