Broken WWW UI on SPA504G

The problem is related to CISCO XML EXE Auth Mode option (tab 'Phone' section 'XML Service') on phone running firmware 7.5.5 in SIP mode.
As long as option is changed via WWW UI only, everything work as expected.
But if option changed using provisioning file, for example
<CISCO_XML_EXE_Auth_Mode ua="na">Remote credential</CISCO_XML_EXE_Auth_Mode>
then things become broken. Despite /admin/spacfg.xml show that option has value 'Remote credential'
the UI show 'Trusted':
In advance, WWW UI become unusable - any "SUBMIT All Results" will end with redirection to /admin/acisco.csc and broken connection - no further change of any option via WWW UI is possible:
Note that the WWW UI show "Trusted' not because it think it's valid current value - no option in the HTML source code has 'selected' attribute, so first option is displayed by browser. See relevant part of page source code:
<option value="Trusted" >Trusted</option>
<option value="Local Credential" >Local Credential</option>
<option value="Remote Credential" >Remote Credential</option>

Responding to myself - it has been corrected in 7.5.6 firmware.
Note, the default is still "Trusted" so anyone with IP access can order the phone to do anything.

Similar Messages

  • Broken links - webutil - aiming this primarily at a forum moderator

    The following links are broken:
    www.oracle.com/technology/products/forms/htdocs/webutil/howto_ole.html
    and
    www.oracle.com/technology/products/forms/htdocs/webutil/webutil.htm
    point to
    http://www.oracle.com/technetwork/developer-tools/forms/overview/index.html
    www.oracle.com/technology/documentation/9i_forms.htm
    points to
    http://www.oracle.com/technetwork/indexes/documentation/index.html
    www.oracle.com/technology/software/products/forms/files/webutil/webutil_106.zip
    points to
    http://www.oracle.com/technetwork/indexes/downloads/index.html
    I'm trying to find out how to use webutil to open/edit/close Word or Notepad in Forms 10g, storing as a BLOB and am sure the above links would be helpful.]
    Are the links likely to be fixed soon or should I look for other sources of information?
    Thanks,
    Simon

    simonjamison, the OTN Website moved to a new CMS some time ago; you are referring to legacy URLs.
    All the links you are looking for are found on http://www.oracle.com/technetwork/developer-tools/forms/overview/index.html, in one place or another. Specifically, if you are looking for WebUtil info:
    http://www.oracle.com/technetwork/developer-tools/forms/webutil-090641.html
    The How-To you reference is no longer available on OTN, but I have pasted the text below for your reference:
    HOW TO - Performing OLE on the client using WebUtil
    Introduction
    Many Forms applications utilize OLE to perform tight integration with the Windows desktop. However, when moving your Forms application to the Web,
    the calls to OLE are now running on the application server and not the client machine.
    Typically you need OLE to access the machine at which the user is sitting and integrate with the OLE services on the client.
    For example, loading data into an Excel worksheet and display for the user.
    WebUtil provides you the functionality to perform client side OLE integration from within the Forms Java applet.
    Set up
    For the steps to set up WebUtil, please refer to the WebUtil Familiarization Manual available as part of the software download.
    Changing code
    Consider the following code:
    DECLARE
    app OLE2.OBJ_TYPE;
    docs OLE2.OBJ_TYPE;
    doc OLE2.OBJ_TYPE;
    selection OLE2.OBJ_TYPE;
    args OLE2.LIST_TYPE;
    BEGIN
    -- create a new document
    app := OLE2.CREATE_OBJ('Word.Application');
    OLE2.SET_PROPERTY(app,'Visible',1);
    docs := OLE2.GET_OBJ_PROPERTY(app, 'Documents');
    doc := OLE2.INVOKE_OBJ(docs, 'add');
    selection := OLE2.GET_OBJ_PROPERTY(app, 'Selection');
    -- insert data into new document from long item
    OLE2.SET_PROPERTY(selection, 'Text', :long_item);
    -- save document as example.doc
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'c:\temp\example.doc');
    OLE2.INVOKE(doc, 'SaveAs', args);
    OLE2.DESTROY_ARGLIST(args);
    -- close example.doc
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 0);
    OLE2.INVOKE(doc, 'Close', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.RELEASE_OBJ(selection);
    OLE2.RELEASE_OBJ(doc);
    OLE2.RELEASE_OBJ(docs);
    -- exit MSWord
    OLE2.INVOKE(app,'Quit');
    END;
    This code opens a Word document to the user and inserts data from a Forms text field into that Word document before saving and closing the file. To perform
    the same functionality, but on the client side when deployed on the Web, attach the WebUtil object library and PL/SQL library,
    and replace any instance of OLE2 with CLIENT_OLE2.
    The resulting code will now work, as before, but write the file to the client machine.
    DECLARE
    app CLIENT_OLE2.OBJ_TYPE;
    docs CLIENT_OLE2.OBJ_TYPE;
    doc CLIENT_OLE2.OBJ_TYPE;
    selection CLIENT_OLE2.OBJ_TYPE;
    args CLIENT_OLE2.LIST_TYPE;
    BEGIN
    -- create a new document
    app := CLIENT_OLE2.CREATE_OBJ('Word.Application');
    CLIENT_OLE2.SET_PROPERTY(app,'Visible',1);
    docs := CLIENT_OLE2.GET_OBJ_PROPERTY(app, 'Documents');
    doc := CLIENT_OLE2.INVOKE_OBJ(docs, 'add');
    selection := CLIENT_OLE2.GET_OBJ_PROPERTY(app, 'Selection');
    -- insert data into new document from long item
    CLIENT_OLE2.SET_PROPERTY(selection, 'Text', :long_item);
    -- save document as example.doc
    args := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG(args, 'c:\temp\example.doc');
    CLIENT_OLE2.INVOKE(doc, 'SaveAs', args);
    CLIENT_OLE2.DESTROY_ARGLIST(args);
    -- close example.doc
    args := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG(args, 0);
    CLIENT_OLE2.INVOKE(doc, 'Close', args);
    CLIENT_OLE2.DESTROY_ARGLIST(args);
    CLIENT_OLE2.RELEASE_OBJ(selection);
    CLIENT_OLE2.RELEASE_OBJ(doc);
    CLIENT_OLE2.RELEASE_OBJ(docs);
    -- exit MSWord
    CLIENT_OLE2.INVOKE(app,'Quit');
    END;

  • Getting Started with Visual Composer...............

    Hi All,
      I want to learn <b>Visual Composer</b>. Plz send some documents to me to learn the Visual Composer from the Basic.And also send some real time scenarios(by the people, who are working on Visual Composer).
    Plz help me.
    Thanks in Advance,
    Munu...

    Hi Munu,
    Welcome to Visual Composer world. Please go through the following links to get started in VC....
    Following links will help you understand what VC is:
    What is Visual Composer ?
    visual composer
    Visual Composer: Finding the Documentation
    <a href="/people/judy.kestecher/blog/2006/07/11/visual-composer-finding-the-documentation:///people/judy.kestecher/blog/2006/07/11/visual-composer-finding-the-documentation
    Visual Composer Learning Map:
    <a href="https://www.sdn.sap.com/irj/sdn/visualcomposer?rid=/webcontent/uuid/0ac86a27-0e01-0010-99b4-e1d7de29ee5d">https [original link is broken]://www.sdn.sap.com/irj/sdn/visualcomposer?rid=/webcontent/uuid/0ac86a27-0e01-0010-99b4-e1d7de29ee5d</a> [original link is broken]
    Docs for starting development in VC:
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/42/c2ba85545e3116e10000000a1553f7/frameset.htm">Modeling Applications with SAP NetWeaver Visual Composer</a>
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/63f2052e-0c01-0010-b9a2-e1f7457a7fbe">SAP NetWeaver Visual Composer Modeler's Guide</a>
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/42/ef826a370a1bcae10000000a11466f/frameset.htm">SAP NetWeaver Visual Composer Reference Guide - help.sap.com</a>
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9326072e-0c01-0010-bc97-f72e93338101">SAP NetWeaver Visual Composer Reference Guide</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/01/4b7e40417c6d1de10000000a1550b0/frameset.htm">SAP NetWeaver Visual Composer: User Guide</a>
    <a href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/16244247-0a01-0010-3294-d81c21e7e86e">SAP NetWeaver Visual Composer - How to Guides</a>
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/f6/1ad642dfa9f340e10000000a1550b0/frameset.htm">Visual Composer - How to . . .</a>
    Bye
    Ankur
    Do reward points for helpful as well as solved answers!!

  • LIST_FROM_MEMORY error NOT_FOUND??

    Hi!
    i wonder why the <b>FM 'LIST_FROM_MEMORY' </b> raise error NOT_FOUND.
    function LIST_FROM_MEMORY.
      import LISTOBJECT from memory id '%_LIST'.
        if SY-SUBRC <> 0.
    ->    raise NOT_FOUND.
        endif.
    endfunction.
    my code to convert abap report to excel file is as below. It works fine when execute on frontend, but error exist when execute as background job.
    pls help...
    thanks
    * get all variants entered in the selection screen and store in seltab
      CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
        EXPORTING
          CURR_REPORT     = 'ZTEST'
        TABLES
          SELECTION_TABLE = seltab.
    * submit this report with seltab and export to memory
        SUBMIT ZTEST with SELECTION-TABLE seltab
                            EXPORTING LIST TO MEMORY
                            AND RETURN.
        CALL FUNCTION 'LIST_FROM_MEMORY'
          TABLES
            listobject = abaplist.      " <- Error above exists when execute this FM
    * convert abap report to ASCII and later convert to excel file
        CALL FUNCTION 'LIST_TO_ASCI'
          EXPORTING
            LIST_INDEX = -1
          TABLES
            LISTASCI   = record
            LISTOBJECT = abaplist.       

    hi
    good
    go through these links, i hope these ll give you good idea abou the 'LIST_FROM_MEMORY'
    http://www.synactive.com/docu_e/specials/webreport.html
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3090http [original link is broken] [original link is broken] [original link is broken] [original link is broken]://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/submit.htm
    thanks
    mrutyun^

  • Multiple Receivers one is sync, others async

    Hi,
    I have a scenario where sender is a third party system.
    Sender system sends XML Payload using HTTP to XI.
    This payload needs to be received by 3 receivers. 1. File, 2. Email and 3. RFC.
    (i.e. Once XML Payload is received into XI, XML File needs to be created, Email needs to be sent with attached XML payload and RFC needs to be called.)
    File and Email receivers are asynchronous but RFC needs to be called in synchronous mode and response from RFC is sent back to sender third party system.
    Third Party (XML Payload, using HTTP) --> XI --> File, Email, RFC
    RFC Response ---> XI --> Third party.
    How to achieve this complete scenario? Do I need to use BPM for this? If yes, how do I configure it? Its a case of parallel multiple receivers out of which only one receiver sends response back to the calling system.
    Thanks,
    Smita

    You need to use bpm.
    1. Http Sender sends  request to XI.
    2. XI converts it into XI Message.
    3. BPM receives the request through synchronous interface.(Opens S/A Bridge)
    4. BPM sends request to RFC through Synchronous interface and gets the response.
    5. Response is sent back to Http Client.(Closes S/A Bridge)
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken]
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1134http [original link is broken] [original link is broken] [original link is broken]://www.riyaz.net/blog/index.php/2008/04/16/a-step-by-step-guide-to-bpm-asynch-sync-bridge/

  • I need Documentation on Solution Manager

    Dear Consultants,
    I need documentation of Solution Manager, can any one help me out in getting solution manager documentation, mail me at [email protected]
    Thanks&Regards
    Hazi

    Hi..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ce89c290-0201-0010-5985-dd64605111fd
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ce89c290-0201-0010-5985-dd64605111fd
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2a92c290-0201-0010-4b8f-a2aaaa3b822e
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b298c290-0201-0010-19bb-b6d1356419f1
    /people/community.user/blog/2007/08/30/customizing-synchronization-using-sap-solution-manager-part-1
    /people/doreen.baseler/blog/2007/03/21/creating-and-assigning-blogs-to-topic-sap-solution-manager
    /people/sapna.modi/blog/2007/05/06/sap-solution-manager--roadmaps-introduction-part-i
    /people/community.user/blog/2006/12/07/organize-and-perform-testing-using-solution-managerhttps [original link is broken]://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ce89c290-0201-0010-5985-dd64605111fd
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ce89c290-0201-0010-5985-dd64605111fd
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2a92c290-0201-0010-4b8f-a2aaaa3b822e
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b298c290-0201-0010-19bb-b6d1356419f1
    /people/community.user/blog/2007/08/30/customizing-synchronization-using-sap-solution-manager-part-1
    /people/doreen.baseler/blog/2007/03/21/creating-and-assigning-blogs-to-topic-sap-solution-manager
    /people/sapna.modi/blog/2007/05/06/sap-solution-manager--roadmaps-introduction-part-i
    /people/community.user/blog/2006/12/07/organize-and-perform-testing-using-solution-manager

  • I need a copy of FaceRss.jar Please

    Hello every one ,
    Can you please me where I can I download a copy of FaceRSS.jar from because the homepage download is broken(www.codegravity.com)

        I'm sorry to hear about your moms experience stephanie.stallings2 and your recent experience with the store. We don't want neither you or mom to leave us. Is there anything we can do to keep you and your mom with us. Ann154 is correct, the final bill will be mailed to you but can also take some time depending on when the cycle ended and if she ported over. We can print you a final bill and mail it to you via customer service. Please keep us posted.
    KinquanaH_VZW
    Follow us on Twitter @vzwsupport

  • About visual composer

    HI,
    CAN ANY OME EXPLAIN THE VISUALCOMPOSER.
    Thanks&Regards,
    prasanna,

    Hi Prasanna,
    Please go through the following links to get started in VC....
    Following links will help you understand what VC is:
    What is Visual Composer ?
    visual composer
    Visual Composer: Finding the Documentation
    <a href="/people/judy.kestecher/blog/2006/07/11/visual-composer-finding-the-documentation:///people/judy.kestecher/blog/2006/07/11/visual-composer-finding-the-documentation
    Visual Composer Learning Map:
    <a href="https://www.sdn.sap.com/irj/sdn/visualcomposer?rid=/webcontent/uuid/0ac86a27-0e01-0010-99b4-e1d7de29ee5d">https [original link is broken]://www.sdn.sap.com/irj/sdn/visualcomposer?rid=/webcontent/uuid/0ac86a27-0e01-0010-99b4-e1d7de29ee5d</a> [original link is broken]
    Docs for starting development in VC:
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/42/c2ba85545e3116e10000000a1553f7/frameset.htm">Modeling Applications with SAP NetWeaver Visual Composer</a>
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/63f2052e-0c01-0010-b9a2-e1f7457a7fbe">SAP NetWeaver Visual Composer Modeler's Guide</a>
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/42/ef826a370a1bcae10000000a11466f/frameset.htm">SAP NetWeaver Visual Composer Reference Guide - help.sap.com</a>
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9326072e-0c01-0010-bc97-f72e93338101">SAP NetWeaver Visual Composer Reference Guide</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/01/4b7e40417c6d1de10000000a1550b0/frameset.htm">SAP NetWeaver Visual Composer: User Guide</a>
    <a href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/16244247-0a01-0010-3294-d81c21e7e86e">SAP NetWeaver Visual Composer - How to Guides</a>
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/f6/1ad642dfa9f340e10000000a1550b0/frameset.htm">Visual Composer - How to . . .</a>
    For any other query in Visual Composer, please post in the Visual Composer forum. You will get better replies over there. The link to VC forum is:
    [Forum: SAP NetWeaver Visual Composer|SAP NetWeaver Visual Composer;
    Bye
    Ankur

  • Using OCI

    Hi All,
    I am a J2ee developer and not very known to SAP.
    I came across the OCI document which speaks of making complaint catalogs for the SAP SRM servers.
    Can U plz clarify me, whether we can integrate OCI in our J2EE project ?
    Can U suggest me some websites where i can get the needed help for integrating OCI ?
    Thanks in advance.
    Sandeep

    Hi,
       Pls see the foll links:
    SAP Supplier Relationship Management - SAP SRM Open Catalog Interface (B2B-OCI) [original link is broken]
    www.attsuppliers.com/downloads/OCI_40_EN20030611.pdf
    BR,
    Disha.
    Pls reward points for useful answers.

  • Step by step processs

    in fact for the first time i'm trying to work with Visual composer.Plz guide step by step process.
    Regards,

    Hi Ghadoliya,
    Welcome to Visual Composer world. Please go through the following links to get started in VC....
    Following links will help you understand what VC is:
    What is Visual Composer ?
    visual composer
    Visual Composer: Finding the Documentation
    <a href="/people/judy.kestecher/blog/2006/07/11/visual-composer-finding-the-documentation:///people/judy.kestecher/blog/2006/07/11/visual-composer-finding-the-documentation
    Visual Composer Learning Map:
    <a href="https://www.sdn.sap.com/irj/sdn/visualcomposer?rid=/webcontent/uuid/0ac86a27-0e01-0010-99b4-e1d7de29ee5d">https [original link is broken]://www.sdn.sap.com/irj/sdn/visualcomposer?rid=/webcontent/uuid/0ac86a27-0e01-0010-99b4-e1d7de29ee5d</a> [original link is broken]
    Docs for starting development in VC:
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/42/c2ba85545e3116e10000000a1553f7/frameset.htm">Modeling Applications with SAP NetWeaver Visual Composer</a>
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/63f2052e-0c01-0010-b9a2-e1f7457a7fbe">SAP NetWeaver Visual Composer Modeler's Guide</a>
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/42/ef826a370a1bcae10000000a11466f/frameset.htm">SAP NetWeaver Visual Composer Reference Guide - help.sap.com</a>
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9326072e-0c01-0010-bc97-f72e93338101">SAP NetWeaver Visual Composer Reference Guide</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/01/4b7e40417c6d1de10000000a1550b0/frameset.htm">SAP NetWeaver Visual Composer: User Guide</a>
    <a href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/16244247-0a01-0010-3294-d81c21e7e86e">SAP NetWeaver Visual Composer - How to Guides</a>
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/f6/1ad642dfa9f340e10000000a1550b0/frameset.htm">Visual Composer - How to . . .</a>
    Bye
    Ankur
    Do reward points for helpful as well as solved answers!!

  • Triple Combo GUI tool for CUCM trace files analysis

    Hi folks,
    the link to the Triple Combo GUI tool to analyze CUCM trace files appears to be broken:
    www.employees.org/~tiryaki/tc
    any idea where the tool is gone or with whaht was is replaced?
    thanks
    best wishes
    Lucio

    Hi Lucio,
    you can try TranslatorX.
    http://translatorx.cisco.com/index.html
    //Suresh
    Please rate all the useful posts.

  • Product Costing Requirements Study

    Hi,
    I am looking for requirements study questionnaire for product costing module which can be used to gather the requirements from the business people. Please help me with this or atleast let me know the key questions we need to ask them to document the blueprint.
    If anybody has a product costing sample blueprint please let me know.

    Hi:
    These are the question that should be taken into consideration for product costing.
    Whether it is Discrete Manufacturing or repetitive manufacturing .
    What are the finished products,semi-finished products and raw materials.
    Whether moving price or standard price is used.
    Collect a list of primary cost elements and secondary cost elements.
    Define activity types ie. ex:labour hrs, machine hrs and setup hrs.
    Refer to this websites
    http://www.sap-topjobs.com/SpecialPP/samplepc.doc
    https://www.sdn.sap.com/irj/sdn/bpx-bp-in-practice?rid=/webcontent/uuid/4f0f6717-0b01-0010-949b-9ab68dd45fec [original link is broken]
    www.sap-img.com/financial/simple-overview-of-product-costing.htm
    help.sap.com/bestpractices/BBLibrary/Documentation/J74_BPP_EN_ZH.doc
    Please let me know if you need more information.
    Assign points if useful.
    Regards
    Sridhar M

  • New to Visual Composer....

    All,
    Our company is looking to develop applications using Visual Composer and would like to start with the basics. Could someone please direct us to some documentation that refers to 101 of VC development.
    A genral concern we had was where do the VC applications resides (WAS/portal PCD) once deployed? How does one transport a VC applications?
    SAP Partner

    Hi,
    Please go through the following links to get started in VC....
    Following links will help you understand what VC is:
    What is Visual Composer ?
    visual composer
    Visual Composer: Finding the Documentation
    <a href="/people/judy.kestecher/blog/2006/07/11/visual-composer-finding-the-documentation:///people/judy.kestecher/blog/2006/07/11/visual-composer-finding-the-documentation
    Visual Composer Learning Map:
    <a href="https://www.sdn.sap.com/irj/sdn/visualcomposer?rid=/webcontent/uuid/0ac86a27-0e01-0010-99b4-e1d7de29ee5d">https [original link is broken]://www.sdn.sap.com/irj/sdn/visualcomposer?rid=/webcontent/uuid/0ac86a27-0e01-0010-99b4-e1d7de29ee5d</a> [original link is broken]
    Docs for starting development in VC:
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/42/c2ba85545e3116e10000000a1553f7/frameset.htm">Modeling Applications with SAP NetWeaver Visual Composer</a>
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/63f2052e-0c01-0010-b9a2-e1f7457a7fbe">SAP NetWeaver Visual Composer Modeler's Guide</a>
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/42/ef826a370a1bcae10000000a11466f/frameset.htm">SAP NetWeaver Visual Composer Reference Guide - help.sap.com</a>
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9326072e-0c01-0010-bc97-f72e93338101">SAP NetWeaver Visual Composer Reference Guide</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/01/4b7e40417c6d1de10000000a1550b0/frameset.htm">SAP NetWeaver Visual Composer: User Guide</a>
    <a href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/16244247-0a01-0010-3294-d81c21e7e86e">SAP NetWeaver Visual Composer - How to Guides</a>
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/f6/1ad642dfa9f340e10000000a1550b0/frameset.htm">Visual Composer - How to . . .</a>
    Bye
    Ankur
    Do reward points if it helps!!

  • SPA504G not booting?

    Hey guys,
    one of our newly bought Cisco SPA504G worked for several days, then the employee moves the desks, so we unplugged the phone and replugged it on the new side. From then on it seems like it's not booting at all. If you plug in the AC the only thing that happens is, that the mute, headset and loudspeaker are constantly lit. It does not respond to any pressed buttons or resets.
    Do you have any ideas what might be the issues? Or is it just broken? I could not find any information about these three constantly lit buttons on the web...
    Best regards
    Marius

    Sounds like the software isn't booting all the way.
    Please contact support via phone to confirm.
    http://www.cisco.com/en/US/support/tsd_cisco_small_business_support_center_contacts.html

  • My Mac has broken and I want to sell it for parts. How can I be sure that my personal data that is/was on the hard drive is safe?

    My 2006 MacBook Pro has broken. There is a little bit of drive noise when I turn it on, but then nothing happens. It is no big deal. Most of my files were backed up. There are a few files I would like to recover if possible, but nothing worth a major effort.
    I have seen that broken MacBook Pro's go for about $300 on eBay for parts, so I would like to sell the MacBook Pro. However, I only want to do that after I am sure that my personal data is wiped out. Does anyone know how I can accomplish that? Does anyone know of an easy way to search the old hard drive for some of the data that I lost? Can a Genius Bar take care of this stuff for me (and how much do they charge?)?
    Thank you for your help.
    - Eric

    EricNY wrote:
    I only want to do that after I am sure that my personal data is wiped out. Does anyone know how I can accomplish that?
    The ONLY real secure way to be sure that noone may recover data from your drive is, to remove the drive, and drill one or two 1" holes thru the disk.
    A bit less secure but useful way is, to wipe out the data with a tool that's overwrite all sectors of the drive with randomized data in multiple runs.
    For example: Permanent Ereaser http://www.edenwaith.com/products/permanent%20eraser/
    Independent tests bring out, that even specialized recovery companies with forensic tools are unable to find useful data after such a run.
    EricNY wrote:
    Does anyone know of an easy way to search the old hard drive for some of the data that I lost?
    There are some recovery tools out there to fit your needs, e.g. MacKeeper http://mackeeper.zeobit.com/mac-data-recovery
    Lupunus

Maybe you are looking for