Modified  Servlet not visible

Hi,
I created a servlet & then ran it , it worked fine. After that I modified it so that it should display a different message on browser but its displaying the previous staff. Strangely even if I delete the servlet & then try to access it using a URL , I will see the same stuff which present in the servlet before starting the tomcat. However if I stop tomcat & hen restart it again I will see the modified servlet or error message if servlet not available. How can I get around with this prob of viewing the modified servlet without restarting the tomcat.
Zulfi.

add reloadable attribute to the Context entry in conf/server.xml. by default it does not include reloadable, change
    <!-- Tomcat Root Context -->
    <Context path="" docBase="ROOT" debug="0"/>to
    <!-- Tomcat Root Context -->
    <Context path="" docBase="ROOT" debug="0" reloadable="true"/>this will tell tomcat to reload the servlet after being modified without restarting server.

Similar Messages

  • Modified changes to ESS DC are not visible

    Hello Experts,
    I have imported the DC and checked out. I have modified essusfam~sap.com by adding a text field and input label. Saved all my changes and tried to deploy the code from the context menu in webdynpro explorer. NWDS prompts for SDM pasword and later I see the deployment sucessfull. But, the changes are not visible. Just want to know if I am missing any steps before deployment. or do I need to follow any more steps.
    I am trying not to use NWDI deployment process
    Thanks,
    Sharath.

    Hi Sharath,
    When building, choose project then right click and select build... from Development Component section.
    Regards,
    Raj

  • Captivate 5.5 published files are not visible in Fire Fox or open in new window.

    When I publish and post Captivate 5.5, the HTML or the swf files do not display in Fire Fox (latest version) without forcing the file to open in a new window (if it displays at all). If it does work, the Flash security blocks the swf on an ugly view until the user clicks.
    I thought it was because I have to assign a direct URL to each component, but all of the other Captivate sites I have reviewed have the same issue when viewing in Fire Fox.
    IE will display after the active x is authorized (I can live with that).
    You Tube and other Flash display properly in Fire Fox, just not Captivate products.
    I have disabled off all plugins, modified the protected settings, and everything I could find listed in the Fire Fox help. I have installed a previous version of Flash and Shockwave Player. Short of reinstalling windows, it is not working and that will not help because the published content is not visible on any other machine in the office or at home.
    The files are in a Portal, so I cannot share them unless you are in the DoD and have an AKO or DKO account.
    However, here is another example of the Captivate not working.
    https://clc.dau.mil/games (this displays on some computers, but not all)
    http://www.hartisd.net/pages/uploaded_files/Assignment_Search.mht (After allowing the mht, this displays in IE)
    I am not sure if it has something to do with the other 2 published xml files that are not directly referenced in the html, but I just need either the swf or html to display in the iframe without forcing another window to display and without a lot of dependecy issues with other add-ons in Fire Fox.
    - Thanks!

    Any of the DAU games, if they display. It is a government site, so they have the standard gov garbage (stuff not working like certificates), but nothing is harmful nor can they do anything to track other than the current session.
    It is kind of weird how the content is displayed... It is not an intranet, it goes to a limited access portal. When I store content, it uses an absolute path instead of relative path. Very aggrevating when using many of the tools for non-programmers (like me), and probably more aggrevating for programmers.
    Whether I point directly to the .swf or to the generated HTML, the content displays in IE, but not in FF.
    It may be a combination of FF and Captivate. FF seems rather flaky in dealing with swf files. There is the consideration for add-ons, but I tried on a newly imaged computer and it still was not working. Even after going through all of the FF steps to get it to work.
    Basically we had to create a new HTML file to display the content because the Captivate published files don't work. However, the new HTML does not reference the XML files.
    When I publish, I get 5 different files, .swf, .htm, .js, and 2 .xml. When I dig through the code (once again, not a programmer, soo I may be missing something), even round tripping to Flash, I do not see how the .xml files are referenced at all.
    These may be different topics, not sure, it came up because I am trying to get a simple solution from the product that can be easily transferred to our production servers and available for Solders to access.
    - Thanks
    Michael

  • Data in CSV uploads successfully, but it is not visible after upload.

    Hi,
    I am using Apex 3.2 on Oracle 11g.
    This is an imported application for which I am making changes as per my requirements. As I am new to Apex and even SQL, I request forum members to help me with this.
    Please find below the old code for uploading data from CSV. It displays only 6 columns - Database Name, Server Name, Application Name, Application Provider, Critical, Remarks. This was successfully uploading all the data from CSV and that data was visible after upload.
    OLD CODE:_
    --PLSQL code for uploading application details
    DECLARE
    v_blob_data      BLOB;
    v_blob_len      NUMBER;
    v_position      NUMBER;
    v_raw_chunk      RAW(10000);
    v_char           CHAR(1);
    c_chunk_len           NUMBER:= 1;
    v_line           VARCHAR2 (32767):= NULL;
    v_data_array      wwv_flow_global.vc_arr2;
    v_rows           NUMBER;
    v_count           NUMBER;
    v_dbid           NUMBER;
    v_serverid           NUMBER;
    v_sr_no          NUMBER:=1;
    v_last_char          varchar2(2);
    BEGIN
    -- Read data from wwv_flow_files
    SELECT blob_content INTO v_blob_data FROM wwv_flow_files
    WHERE last_updated = (SELECT MAX(last_updated) FROM wwv_flow_files WHERE UPDATED_BY = :APP_USER)
    AND id = (SELECT MAX(id) FROM wwv_flow_files WHERE updated_by = :APP_USER);
    v_blob_len := dbms_lob.getlength(v_blob_data);
    v_position := 1;
    -- For removing the first line
    WHILE ( v_position <= v_blob_len )
    LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    EXIT;
    END IF;
    END LOOP;
    -- Read and convert binary to char
    WHILE ( v_position <= v_blob_len )
    LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_line := v_line || v_char;
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    --removing the new line character added in the end
    v_line := substr(v_line, 1, length(v_line)-2);
    --removing the double quotes
    v_line := REPLACE (v_line, '"', '');
    --checking the absense of data in the end
    v_last_char:= substr(v_line,length(v_line),1);
    IF v_last_char = CHR(44) THEN
         v_line :=v_line||'-';
    END IF;
    -- Convert each column separated by , into array of data
    v_data_array := wwv_flow_utilities.string_to_table (v_line, ',');
    -- Insert data into target tables
    SELECT SERVERID into v_serverid FROM REPOS_SERVERS WHERE SERVERNAME=v_data_array(2);
    SELECT DBID into v_dbid FROM REPOS_DATABASES WHERE DBNAME=v_data_array(1) AND SERVERID=v_serverid;
    --Checking whether the data already exist
    SELECT COUNT(APPID) INTO v_count FROM REPOS_APPLICATIONS WHERE DBID=v_dbid AND APPNAME=v_data_array(1);
    IF v_count = 0 THEN
    EXECUTE IMMEDIATE 'INSERT INTO
    REPOS_APPLICATIONS (APPID,APPNAME,APP_PROVIDER,DBID,SERVERID,CRITICAL,LAST_UPDATE_BY,LAST_UPDATE_DATE,REMARKS) VALUES(:1,:2,:3,:4,:5,:6,:7,:8,:9)'
    USING
    APP_ID_SEQ.NEXTVAL,
    v_data_array(3),
    v_data_array(4),
    v_dbid,
    v_serverid,
    v_data_array(5),
    v_data_array(6),
    v_data_array(7),
    v_data_array(8);
    END IF;
    -- Clearing out the previous line
    v_line := NULL;
    END IF;
    END LOOP;
    END;
    ==============================================================================================================================
    Please find below the new code (which I modified as per my requirements) for uploading data from CSV. It displays 17 columns - Hostname, IP Address, Env Type, Env Num, Env Name, Application, Application Component, Notes, Cluster , Load Balanced, Business User Access Mechanism for Application, Env Owner, Controlled Environment, SSO Enabled, ADSI / LDAP / External Directory Authentication, Disaster Recovery Solution in Place, Interfaces with other application.
    This is successfully uploading all the data from CSV, But this uploaded data is not visible in its respective tab.
    _*NEW CODE:*_
    --PLSQL code for uploading application details
    DECLARE
    v_blob_data      BLOB;
    v_blob_len      NUMBER;
    v_position      NUMBER;
    v_raw_chunk      RAW(10000);
    v_char           CHAR(1);
    c_chunk_len           NUMBER:= 1;
    v_line           VARCHAR2 (32767):= NULL;
    v_data_array      wwv_flow_global.vc_arr2;
    v_rows           NUMBER;
    v_count           NUMBER;
    v_dbid           NUMBER;
    v_serverid           NUMBER;
    v_sr_no          NUMBER:=1;
    v_last_char          varchar2(2);
    BEGIN
    -- Read data from wwv_flow_files
    SELECT blob_content INTO v_blob_data FROM wwv_flow_files
    WHERE last_updated = (SELECT MAX(last_updated) FROM wwv_flow_files WHERE UPDATED_BY = :APP_USER)
    AND id = (SELECT MAX(id) FROM wwv_flow_files WHERE updated_by = :APP_USER);
    v_blob_len := dbms_lob.getlength(v_blob_data);
    v_position := 1;
    -- For removing the first line
    WHILE ( v_position <= v_blob_len )
    LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    EXIT;
    END IF;
    END LOOP;
    -- Read and convert binary to char
    WHILE ( v_position <= v_blob_len )
    LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_line := v_line || v_char;
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    --removing the new line character added in the end
    v_line := substr(v_line, 1, length(v_line)-2);
    --removing the double quotes
    v_line := REPLACE (v_line, '"', '');
    --checking the absense of data in the end
    v_last_char:= substr(v_line,length(v_line),1);
    IF v_last_char = CHR(44) THEN
         v_line :=v_line||'-';
    END IF;
    -- Convert each column separated by , into array of data
    v_data_array := wwv_flow_utilities.string_to_table (v_line, ',');
    -- Insert data into target tables
    --SELECT SERVERID into v_serverid FROM REPOS_SERVERS WHERE SERVERNAME=v_data_array(2);
    --SELECT DBID into v_dbid FROM REPOS_DATABASES WHERE DBNAME=v_data_array(1) AND SERVERID=v_serverid;
    --Checking whether the data already exist
    --SELECT COUNT(APPID) INTO v_count FROM REPOS_APPLICATIONS WHERE DBID=v_dbid AND APPNAME=v_data_array(1);
    IF v_count = 0 THEN
    EXECUTE IMMEDIATE 'INSERT INTO
    REPOS_APPLICATIONS (APPID,HOSTNAME,IPADDRESS,ENV_TYPE,ENV_NUM,ENV_NAME,APPLICATION,APPLICATION_COMPONENT,NOTES,CLSTR,LOAD_BALANCED,BUSINESS,ENV_OWNER,CONTROLLED,SSO_ENABLED,ADSI,DISASTER,INTERFACES) VALUES(:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12,:13,:14,:15,:16,:17,:18)'
    USING
    APP_ID_SEQ.NEXTVAL,
    v_data_array(1),
    v_data_array(2),
    v_data_array(3),
    v_data_array(4),
    v_data_array(5),
    v_data_array(6),
    v_data_array(7),
    v_data_array(8),
    v_data_array(9),
    v_data_array(10),
    v_data_array(11),
    v_data_array(12),
    v_data_array(13),
    v_data_array(14),
    v_data_array(15),
    v_data_array(16),
    v_data_array(17);
    END IF;
    -- Clearing out the previous line
    v_line := NULL;
    END IF;
    END LOOP;
    END;
    ============================================================================================================================
    FYI, CREATE TABLE_ is as below:
    CREATE TABLE "REPOS_APPLICATIONS"
    (     "APPID" NUMBER,
         "APPNAME" VARCHAR2(50),
         "APP_PROVIDER" VARCHAR2(50),
         "DBID" NUMBER,
         "CRITICAL" VARCHAR2(3),
         "REMARKS" VARCHAR2(255),
         "LAST_UPDATE_DATE" TIMESTAMP (6) DEFAULT SYSDATE NOT NULL ENABLE,
         "LAST_UPDATE_BY" VARCHAR2(10),
         "SERVERID" NUMBER,
         "HOSTNAME" VARCHAR2(20),
         "IPADDRESS" VARCHAR2(16),
         "ENV_TYPE" VARCHAR2(20),
         "ENV_NUM" VARCHAR2(20),
         "ENV_NAME" VARCHAR2(50),
         "APPLICATION" VARCHAR2(50),
         "APPLICATION_COMPONENT" VARCHAR2(50),
         "NOTES" VARCHAR2(255),
         "CLSTR" VARCHAR2(20),
         "LOAD_BALANCED" VARCHAR2(20),
         "BUSINESS" VARCHAR2(255),
         "ENV_OWNER" VARCHAR2(20),
         "CONTROLLED" VARCHAR2(20),
         "SSO_ENABLED" VARCHAR2(20),
         "ADSI" VARCHAR2(20),
         "DISASTER" VARCHAR2(50),
         "INTERFACES" VARCHAR2(50),
         CONSTRAINT "REPOS_APPLICATIONS_PK" PRIMARY KEY ("APPID") ENABLE
    ALTER TABLE "REPOS_APPLICATIONS" ADD CONSTRAINT "REPOS_APPLICATIONS_R01" FOREIGN KEY ("DBID")
         REFERENCES "REPOS_DATABASES" ("DBID") ENABLE
    ALTER TABLE "REPOS_APPLICATIONS" ADD CONSTRAINT "REPOS_APPLICATIONS_R02" FOREIGN KEY ("SERVERID")
         REFERENCES "REPOS_SERVERS" ("SERVERID") ENABLE
    ==============================================================================================================================
    It would be of great help if someone can help me to resolve this issue with uploading data from CSV.
    Thanks & Regards
    Sharath

    Hi,
    You can see the installed dictionaries and change between them by right-clicking and choosing '''Languages''' inside a live text box eg. the box you are in when replying or right-clicking on the '''Search''' box on the top right corner of this page and choosing '''Check Spelling'''.

  • Why is the placeholder Q&A for multiple choice not visible on screen?

    After inserting 6 Multiple choice quiz slides in Captivate 7, the placeholder Q&A text is not visible, so there's no way for me to modify them with my Q&A's. However, they are visble in Preview mode. Any suggestions?
    This is happeneing in a project that someone else created & I am editing. I made a new version & copy/pasted the quiz slides into a new file. Ever since then I've had this problem. When I open the original file, it's now doing the same thing there as well. What gives??
    Below is what I'm seeing. If you look at the slides on the filmstrip on the left, you can see that there is nothing there, however in the Preview, you can see the placeholder text.

    Hi Rod & Lily! Thanks so much for replying.
    OK - the screen shot below is what I see when I am in edit mode. Completly blank except for the "Multiple Choice" heading at the top. I've highlighted in red on the Properties & Filmstrip, which Master slide I'm using. Hopefully you can see that on the Master Slide the placeholder text is there, but not in the edit view.
    Lily - below is a screen shot of the Quiz Properties. Hopefully you can see it.

  • HCM P&F - Attachment section is NOT visible for the approver

    Hi
    Attachment possible in the process but after submission (with attachment), when approver opens the process, attachment section is not visible to them. We are using FPM forms.
    Appreciate your inputs.
    Thanks

    Thanks Chris,
    let me clarify.....
    I want that when a user click on "Back to Author" button, do_operations should trigger
    Your below part is really what what I want....
    "Now if you expect that when the user clicks "back to author" that you can "catch" that in your "do operations", then that is very wrong. "Do Operations" only gets triggered by the started "check", "user_event_check" and your "user events" set up as such. Things like "back to author" or "withdraw" are handled within the application itself.You would have to modify/enhance that in order to "catch" the "back to author" button press event."
    Any help on how to achieve this functionality would be greatly appreciated.
    Chohan

  • Button not visible in standard sap-toolbar

    Hi All,
    I have added a custom key to standad SAP tollbar using Aceess key in tr-M52N.
    But that custom buttom is still not visible in tool bar. Can anybody guide me?

    Hi,
    It may be that the function is being disabled by authorizations.  To prove this, you could do the following...
    Before you run the transaction you modified, go into debug with /h.
    Run your transaction code - you should start up in debug.
    Use menu option Breakpoints / Breakpoint At / Statement.  Input the command SET PF-STATUS.
    Hit F8 to continue until the SET PF-STATUS command is found.
    At this point, if the SET PF-STATUS statement ends with EXCLUDING tablename (where tablename is an internal table), then double-click on the internal table and display the entries in it.  If your function code is included in this table then that's the reason why you don't see the button.  You'd then need to work back to determine why your function code is included in the internal table.  This assumes the function code does indeed already exist in the GUI status used in the screen.
    Regards,  Andy

  • Default Web Application is not visible in Weblogic Console

    We are using Weblogic 5.1.0 SP7
              We moved our Application from the Implicitly Defined Default Web
              Application which is configurated by the
              weblogic properties to a Web Application. Because we don't want to
              change any URL in our Application, we
              decided to deploy it as Explicitly Defined Default Web Application.
              By this we recordniced that the weblogic.httpd.defaultWebApp property
              worked not that way descibed in the
              Weblogic Documentation. You have to write the path to the WebApp not the
              name!
              So we have the following Entry in the weblogic.properties:
              weblogic.httpd.defaultWebApp=i:/if_home2/web
              This works fine. The Server starts and serves the WebApp the way we
              expected. But wenn we start the Weblogic
              Console the WebApp ist not visible in the "myserver/HTTP/Servlet web
              applications" folder. This one is empty
              now! Previously the "General" Entry for the Implicitly Defined Default
              Web Application was shown here, which
              showed our Servlets and JSP's and their hit count and parameters.
              So there is no chance to monitor the Servlets and JSP's of the default
              Web Application.
              I tried to deploy our WebApp a secound time with
              weblogic.httpd.webApp.OurApp=i:/if_home2/web
              but this create a second independent WebApp. OurApp is shown in the
              Weblogic Console but it does not monitor
              the hits to the default WebApp. So this is not a solution!
              Any idea to make the default Web Application visible in the Weblogic
              Console?
              

    in my development environment i checked in site collection feature, it isn't available in site collection feature but still i am getting those web parts in web part gallery while adding it on page.
    Also, in Production environment, feature is available in /templates/features folder after deployment, but not available in web part gallery while adding it on page.
    I tried with uploading .webpart file which is available in /templates/features production environment as i mentioned, is running for one web part. Not for second web part and giving me security error.
    As, uploading .webpart file is not feasible solution, please tell me how could i do that with .wsp file?
    please tell me what could be another workaround. 
     

  • Adapter Engine not  visible in RWB

    Hi Guys,
             I coudnt find the Adapter engine in Component Monitoring and Message monitoring in RWB.
    while displaying the components of Integration Engine getting the below error. I am using PI 7.1
    Kindly let me know where to check if the components are not visible in RWB.
    java.lang.NullPointerException:
         at com.sap.aii.mdt.web.MonitorDynPage.setNewComponent(MonitorDynPage.java:635)
         at com.sap.aii.mdt.web.MonitorDynPage.process_go_button(MonitorDynPage.java:496)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sapportals.htmlb.page.DynPage.doProcessCurrentEvent(DynPage.java:172)
         at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:102)
         at com.sapportals.htmlb.page.PageProcessorServlet.handleRequest(PageProcessorServlet.java:62)
         at com.sapportals.htmlb.page.PageProcessorServlet.doPost(PageProcessorServlet.java:22)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:66)
         at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:32)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:431)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:289)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:376)
         at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:85)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:160)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:67)
         at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
         at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
         at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
         at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:295)
         at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.run(Processor.java:222)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:152)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:247)
    With Regards
    Pradeep N

    Check page 129 of this document:
    [SAP XI TroubleShooting Guide|https://websmp109.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000659947&_OBJECT=011000358700005909032005E]

  • SP 2010 Publishing - Rollup and Page Images not visible when entering page edit mode

    All:
    Hello, I have an odd issue recently appearing after installation of FEB 2013 CU install. When users select to Edit a Publishing Page the Rollup Image and also Page Image(Article Page Layout) are not visible. Only the "Click here to insert Image from
    SharePoint" link is visible.
    The issue has be confirmed in 5 servers across two farms
    DEV, QA, and PROD on client recently updated
    DEV and PROD in a completely separate client farm
    I have confirmed the issue does not exist in two separate farms running April 2012 CU. In both of those environments the image appears with issue even in Edit page mode.
    In the farms where the issue exists you can click the insert image link and simply hit OK to see the image again. An easy enough work around for tech savvy but my client's content admins are very confused/frustrated by.
    Is this a bug? I have confirmed in two separate farms including brand new web applications using out of the box publishing site templates.

    Hi.
    We have been facing the same issue in a 2013-environment (SP1), but in this case an upgraded 2010 Solution, which still runs in 2010-mode. Because of this, SharePoint still use resource-files in the 14-hive (as we have not performed an upgrade of Master
    Pages etc.) The problem is also reproduced on a clean 2010 Site Collection in the same 2013-environment.
    I have managed to find the cause of the problem (at least in our environment), and that is that as long as the selected picture/image has
    not defined an "AltText"/"Alternate Text" the problem seems to occur.
    In other words, try to define an Alternate Text and click OK in the "Edit Image Properties" Dialog.
    I don't know if this may be the case for everyone else, but give it a try.
    From this, I've further discovered (after hours of js-debugging) that there is a minor change (from 2010 to 2013) in a js-file called "SelectorControls.js" which is responsible for updating the various controls used in Page Layouts etc.
    The problem exist in a method called ASO_UpdateButtonsAndPanels(), which checks whether the Image Control in question has content or not (Url). The local variable "hasContent" is then determined of an if statement, if(this.AssetData.ManageLinkDisplayText)
    which in 2010 (14-hive) seems to be "true" regardless whether the Control is of type Image or Hyperlink. Further the code checks for AssetText (Alternate Text) which on an Image may be left empty.
    In 2013 (15-hive) however, this if statement has been changed to, if(this.SelectorType==ConstLinkSelectorType), which clearly states "Image" or "Link" depending on the type of control.
    I don't know if this is the cause of the problem in 2013, but in 2010 it seems to be exactly that.
    Pending a solution from Microsoft, we have modified SelectorControls.js to overcome this issue until the customer decides to do a Visual Upgrade to 2013.
    This is by all means not a supported nor a a permanent solution to the problem, as future Hotfixes, Service Pack etc. may "reset" our fix.
    Below is a copy of the working solution:
    function ASO_UpdateButtonsAndPanels()
    {ULSuBa:;
    var hasContent=!!this.AssetData.AssetUrl;
    //SharePoint 2010: ManageLinkDisplayText is always "True"
    //var hasContent=!!this.AssetData.AssetUrl;
    //if(this.AssetData.ManageLinkDisplayText)
    //hasContent=hasContent && !!this.AssetData.AssetText;
    //SharePoint 2013
    //var a=!!this.AssetData.AssetUrl;
    //if(this.SelectorType==ConstLinkSelectorType) a = a && !!this.AssetData.AssetText;
    //Fix for preventing existing selected image to disappear when saving page and/or editing a page with existing image.
    if(this.SelectorType!=ConstImageSelectorType)
    if(this.AssetData.ManageLinkDisplayText)
    hasContent=hasContent && !!this.AssetData.AssetText;
    if( hasContent )
    if (this.ClearAssetButton !=null)
    this.ClearAssetButton.EnableButton();
    this.GetAssetSelectedPanel().style.display="inline";
    this.GetEmptyPanel().style.display="none";
    else
    if (this.ClearAssetButton !=null)
    this.ClearAssetButton.DisableButton();
    this.GetAssetSelectedPanel().style.display="none";
    this.GetEmptyPanel().style.display="inline";
    I hope this helps anyone else struggling with the same problem.
    Thanks!
    Øyvind

  • Assets are not visible in BCC.

    Hi All,
          I modified child category and its product. The modified assets are visible from Content Administration Tab. But when we click on the project in merchandising the modified assets are not visible.
          When I change the site attributes and parent category attributes, the modified assets are visible from merchandising. I think this 10.1.2 feature.
          Could you please provide the information to resolve this.
    Thanks
    Bala.

    Hello Ralph,
    I'm afraid that you will have to do it all over again if you use the webdynpro UI. Workcenters are nothing to do with the CRM UI and thus the note 1357657 is not applicable.
    If you've already worked with the EEWB thus the data structures are already available then if you want to add a similar tab in the workcenter UI you will have to do a webdynpro component enhancement.
    Hope this helps.
    BR.
    Stéphane.

  • Cross References Not Visible in Panel

    Hi all,
    I have been enjoying the Cross References functionality in Indesign CS6 to use dynamic text that changes....until recently.
    When i first started using them, the Cross References (CR) would be listed in the Hyperlinks/CR panel.
    I can create a destination, create a hyperlink to that destination, change what it shows (I am using Paragraph Number) and it works as it should.
    The problem i am having is that the CRs are not visible in the Cross Reference panel (the hyperlinks too for that matter)
    This means i cant modify my cross references.
    Does anyone know why they wouldnt show in the panel? Or is there any other way to see them?
    I need to fix this. I have tried resetting the preferences as i found in other posts, but that didnt help

    SOLVED!
    The problem appeared to be with my Workspace profile. I changed from my personalised profile to "Interactive for PDF" ( which has the Hyperlinks panel) and it worked. All the Hyperlinks and cross-references show.
    I personalised my workspace again with the panels i require and then saved a new workspace with the same name. All works fine after saving a new profile. I am going to take a backup of the workspace file so i can restore it easily if it happens again.

  • Oracle.jdbc.driver.OracleTypes is not visible

    We are migrating one application from Weblogic 8.1 SP6 to Weblogic 10.3.
    Earlier in Weblogic 8.1 SP6 we have been used oracle.jdbc.driver.OracleTypes class which is there in ojdbc14.jar.
    But when i am trying use same class in Weblogic 10.3 getting error as oracle.jdbc.driver.OracleTypes is not visible.
    When i checked the ojdbc6.jar(replacement for ojdbc14) oracle.jdbc.driver.OracleTypes class is there.
    can anybody let me how can i resolve this?

    Hi i m sorry as i m asking my problem here
    Can u plz help as i getting this error while publishing my application
    <Error> <HTTP> <BEA-101020> <[weblogic.servlet.internal.WebAppServletContext@38230 - appName: '_auto_generated_ear_', name: 'BillingClaim', context-path: '/BillingClaim', spec-version: '2.5'] Servlet failed with Exception
    java.lang.NullPointerException
         at jsp_servlet._pages._jsp._wholesale._secure._systems._billingclaim.__bchome._jspService(__bchome.java:269)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         Truncated. see log file for complete stacktrace
    Thanks...

  • Data not visible in ODS though available in PSA

    Dear All,
    I am working on BW where data extraction is from CRM. The client needs reports after survey is carried out in a set of questionnairres containing questions and answer. Currently four set of questionnairres is created in the dev server and sample data is updated.
    Till last week we were getting all the transaction data for all the questionnairres, now one of the questionnairres is modified and after extraction we find that for the modified questionnairres we are able to extract the corresponding questions and answer option upto the PSA but the data is not visible in the ODS.
    what could be the reson for the same?
    Any help will be suitable awarded with points!
    K Dengupto

    Hi ,
    Are requests reaching the DSO...IF yes Try to check whether your request in DSO is getting activated .
    Check whether  new field is added and same has been mapped through transformation.
    Did you try to see the monitor at the time of loading and try to trace the cause there if the requests are not getting updateded to the DSO
    Regards
    Rahul Bindroo
    Edited by: Rahul Bindroo on Feb 7, 2008 12:05 PM

  • Field not visible on T-Code

    Hi,
    I have "Personnel number" field on the layout of some T-Code.
    But the field is not visible when the T-Code is executed.
    I checked for the Screen Modify statement. But no such statements are visible. And also the field is not assigned to any of the groups when checked in the field attributes.
    Also Checked the Display attributes. But still no clue.
    Please let me know how else the field might have been made invisible.
    Thank you.

    The field is COBL-PERNR on some screen of T-Code FB01.
    The Display parameters are normal. And its not a text element.
    I suppose there might be some Functional issue.
    Please let me know whether there can exist such functional issue, if so where such field level display configurations are done.

Maybe you are looking for

  • Error occurs during configuration of ESR in CE

    I'm doing the "Configuration of ESR in CE" senario in the NWA. In the final step: Importing XI content following error happened: Error: Password cannot be null or empty and I found following exception in log: importContentInput <importContentInput> <

  • New/Additional phone line question- help please!

    Hi I am after some advice, and every time I call BT I get passed around as I am not 100% on what to ask for, or who I should speak to. Basically, we have 2 phone lines coming into the house.  One line/number + broadband signal goes via a repeater to

  • Error during VF01

    Hi We are using one sales org. and one credit control area. The same is assigned to the company code under FI module. Now we have created another sales organization and we would like to use another credit control area for another business. Now, we wo

  • How can we move a member in a BSO cube other than the manual move in EAS?

    When I add a member to the dimension, it gets added at the bottom. Is there a way we can add at the top as a first child of that current member. I don't want to sort. Or is there a way we can move the member by any other means other than manually mov

  • How do I import Word 2007 Template (.dotx) into Pages '09?

    How do I import a Word 2007 template? Is there a one step solution, or do I just need to open the template file and re-save it as a Pages template?