Imported page changes not appearing

Hi
I made few changes to the standard page and ran import script, chnages are not appearing. Any idea why? I know this is not a correct way of making changes. But trying to to see the reason why. We need to change a item type from TextInput to MessageChoice. But I couldn't hide both the columns as edit icon is not available from peronslize option. Also, these items are part of swither. Any ideas?

First of all as you say you know that making changes to standard page is not correct, y r u doing it? Anyways, if you have done this for test purpose, do take the backup before.
Now, have you bounced the server after importing the page? Only then the changes will appear.
We need to change a item type from TextInput to MessageChoice. But I couldn't hide both the columns as edit icon is not available from peronslize option. Also, these items are part of swither. Any ideas?
In the controller you need to see the logic how the switcher is implemented.Most likey the switcher will be attached to a VO attribute or in process request according to some condition it would be rendering the child.If the first case is true you have to extend the VO and make a new attribute whose value you have to keep messagechoice item id and attach this to switcher through personilization.In the latter case you have to go for controller extension.--Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • The edit JSP page does not appear...

    Hi!
    I make a simple JSF application, I would like to show a DB table in a h:dataTable component and edit a given row after click, but the edit JSP page does not appear. I click the on link in the table, but the list is loaded again and not the edit page...:(
    (no exception in application server console)
    Please help me!
    my code:
    **************************************** listmydata.jsp***************************
                   <h:dataTable
                             value="#{myBean.myDataList}"
                             var="myDataItem"
                             binding="#{myBean.myDataTable}"
                   >
                        <h:column>
                             <f:facet name="header">
                                  <h:outputText value="Ajdi"/>
                             </f:facet>
                             <h:commandLink action="#{myBean.editMyData}">
                                  <h:outputText value="#{myDataItem.id}"/>
                             </h:commandLink>
                        </h:column>
    ********************************* MyBean.java *******************************
    package bean;
    import java.sql.Connection;
    import java.sql.SQLException;
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.component.html.HtmlDataTable;
    import javax.faces.context.FacesContext;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.sql.DataSource;
    import wrapper.MyData;
    public class MyBean {
         private List myDataList;
         private HtmlDataTable myDataTable;
         private MyData myDataItem;
         protected Connection Conn;
         // *********************** actions ***********************
         public String editMyData() {
              myDataItem = (MyData)getMyDataTable().getRowData();
              return "editmydata";
         public String saveMyData() {
              try {
                   updateDataInDB();
              catch (SQLException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              catch (NamingException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              return "listmydata";
         // *********************** setter ***********************
         public void setMyDataList(List myDataList) {
              this.myDataList = myDataList;
         public void setMyDataTable(HtmlDataTable myDataTable) {
              this.myDataTable = myDataTable;
         public void setMyDataItem(MyData myDataItem) {
              this.myDataItem = myDataItem;
         // *********************** getter ***********************
         public List getMyDataList() {
              if (myDataList == null || FacesContext.getCurrentInstance().getRenderResponse()) {
                   loadMyDataList();
              return myDataList;
         public HtmlDataTable getMyDataTable() {
              return myDataTable;
         public MyData getMyDataItem() {
              return myDataItem;
         // *********************** others ***********************
         public void loadMyDataList() {
              try {
                   getDataFromDB();
              catch (NamingException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              catch (SQLException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
         void getDataFromDB() throws NamingException, SQLException {
              myDataList = new ArrayList();
              java.sql.PreparedStatement PreStat = ownGetConnection().prepareStatement("SELECT id, name, value FROM BEA_JSF_SAMPLE");
              PreStat.execute();
              java.sql.ResultSet Rs = PreStat.getResultSet();
              while(Rs.next()) {
                   MyData OneRecord = new MyData();
                   OneRecord.setId(Rs.getLong(1));
                   OneRecord.setName(Rs.getString(2));
                   OneRecord.setValue(Rs.getString(3));
                   myDataList.add(OneRecord);
         void updateDataInDB() throws SQLException, NamingException {
              String sql = new String("UPDATE BEA_JSF_SAMPLE SET name=?,value=? WHERE id=?");
              java.sql.PreparedStatement PreStat = ownGetConnection().prepareStatement(sql);
              PreStat.setString(1,myDataItem.getName());
              PreStat.setString(2,myDataItem.getValue());
              PreStat.setLong(3,myDataItem.getId().longValue());
              PreStat.execute();
              ownGetConnection().commit();
         Connection ownGetConnection() throws SQLException, NamingException {
              if (Conn == null) {
                   InitialContext IniCtx = new InitialContext();
                   DataSource Ds = (DataSource)IniCtx.lookup("JDBCConnectToLocalhost_CRS");
                   Conn = Ds.getConnection();
              return Conn;
    ******************************* editmydata.jsp *****************************
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <html>
    <body>
    <f:view>
    <h:form>
         <h:panelGrid columns="2">
              <h:outputText value="Name"/>
              <h:inputText id="name" value="#{myBean.myDataItem.name}"/>
              <h:outputText value="Value"/>
              <h:inputText id="value" value="#{myBean.myDataItem.value}"/>
         </h:panelGrid>
         <h:commandButton action="#{myBean.saveMyData}" value="Save"/>
    </h:form>
    </f:view>
    </body>
    </html>

    I have put his lines in the faces-config.xml and now it works:
         <navigation-rule>
              <from-view-id>*</from-view-id>
              <navigation-case>
                   <from-outcome>editmydata</from-outcome>
                   <to-view-id>editmydata.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
         <navigation-rule>
              <from-view-id>*</from-view-id>
              <navigation-case>
                   <from-outcome>listmydata</from-outcome>
                   <to-view-id>listmydata.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
    I don't understand, that I define the next JSP page in the bean java file, which must be shown, but I must define this in the faces-config.xml as well.
    for example:
         public String editMyData() {
              myDataItem = (MyData)getMyDataTable().getRowData();
              return "editmydata";
    is it right or Do I make a mistake somewhere?

  • Excise Invoice Tab Page/ Document Info  Tab Page is not appearing in MIGO

    Dear Friend
    For a particular job work PO , with account assignment category F & item category L, non valuaated material, when we are doing migo, excise invoice tab page/ Document Info tab page is not appearing in document header. From The said tab page we can select the challan.
    In J1ID, I have maintained Vendor PAN number and also material chpter id combination.
    Thanks
    Chandra

    Hi
    I maintained material chapter Id combination & vendor Excise Details. We do not maintain any plant -vendor combination. This is a non valuated material with material type unbw. Do I need to maintain cenvat determination tab for this material?
    Thanks
    Chandra

  • Itunes 11.1.5 synchronization page does not appear when iphone is connected to imac !

    Today I updated itunes version 11.1.5  but when I connected my iphone 5c , the synchronisation page did not appear.  I could not synchronise my phone right away from the page that it used to appear once the phone is connected.
    i can see iphone appearing on the top right hand side tab  (where you disconnect the phone)
    I can see my phone from the file tab- Synch "Amani's iphone" where I synchronised the phone.
    But I want to see all the info about my phone, and I rreally need  this page back, is it called the synchronisation page? I am not sure
    Please help. I am so annoyed with this,
    my phone software is IOS7.1
    my imac peratin system is : 10.6.8 Snow Leopard

    Hello 51kFred,
    Here is a resource that should help resolve the iPhone not showing in iTunes.
    iPhone not appearing in iTunes
    http://www.apple.com/support/iphone/assistant/itunes/#section_1
    All the best,
    Sterling

  • Page numbers not appearing in PDF output past a certain point

    Hi.  I have a very large book layout in Aperture (> 300 pages) which I output to a PDF file (using the Print button followed by selecting PDF).  I have successfully done this many times in the past, but there have occasionally been times when Aperture's output just stops including page numbers past a certain point.  I think what it's doing is deciding on white page numbers for the rest of the book, which doesn't work so well when the background is white.  (I can see this because there are occasional pages which are full bleed, and the page numbers appear in white on those pages).
    Has anyone else come across this?  I have seen this problem for years (Aperture 1, Aperture 2).  The solution seems to be to carefully modify the page layout so that no elements impinge on the location of the page number.  But doing this does not always solve the problem.  Just this morning I duplicated a page, changed its content, then output and... the page numbers just stopped in the output 30 pages *after* this page.  I just changed the page to move a text element up, hoping that this would solve the problem, and now... page numbers stop at page 263 instead of page 98.
    This is a very bizarre and annoying bug.  Extremely annoying.  I am not going to print a book which has page numbers in only the first half or 3/4 of the book.  But if there is no workaround, and Apple seems not to have noticed the problem, I could be stuck.
    Has anyone else seen this?  Any suggestions?  How can I report the bug to Apple?  I can't very well give them the output as an example, as it's about 800 MB.

    Hi leonieDF.  Thanks for your reply!  I didn't know about the "Provide Aperture Feedback" link.
    Alas the Theme is a custom one, it's 9"x11.5" so that the result is 8.5x11" after chopping off 1/4" from all sides.  (The printer does "full bleed" with 1/4" margins).  I originally created it by hand for Aperture 1.5, by simply copying one of the themes and adjusting the dimensions.  (Custom themes weren't possible until Aperture 2, if I remember correctly).  Perhaps that's the source of the issue.  Though I'm not sure how...
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
        <key>pageNumberMargin</key> <string>{4.5,0.35}</string>
        <key>bottomMargin</key>     <string>0.6</string>
        <key>insideMargin</key>     <string>0.6875</string>
        <key>horizontalSpacing</key>    <string>0.05</string>
        <key>verticalSpacing</key>  <string>0.05</string>
        <key>size</key>         <string>(9.00,11.50)</string>
        <key>backSoftcover</key>
        <string>01_BackSoftcover</string>
        <key>defaultTextStyle</key>     <string>Baskerville/14/BlackBackground</string>
        <key>disableFrameScaleAndRotation</key>
        <true/>
        <key>frontSoftcover</key>
        <string>01_FrontSoftcover</string>
        <key>indexPages</key>
        <array/>
        <key>leadingPages</key>
        <array>
        </array>
        <key>repeatingPages</key>
        <array>
            <string>OnePageBleedLayout</string>
            <string>1UpLayout</string>
            <string>1Up2UpLayout</string>
            <string>2UpLayout</string>
            <string>1UpLayout</string>
            <string>OnePageBleedLayout</string>
            <string>1UpLayout</string>
            <string>1UpLayout</string>
            <string>4UpLayout</string>
            <string>5AcrossArrayLayout</string>
            <string>6AcrossArrayLayout</string>
            <string>TwoPageBleedLayout</string>
            <string>2Up1UpLayout</string>
            <string>1UpLayout</string>
        </array>
        <key>trailingPages</key>
        <array/>
        <key>type</key>
        <string>Custom</string>
        <key>version</key>
        <integer>1</integer>
    </dict>
    </plist>
    (Standard themes are in /Applications/Aperture.app/Contents/Resources/Book Themes, custom ones in ~//Library/Application Support/Aperture/Book Themes )

  • Style sheet changes not appearing in RH10

    Hello all,
    Searching for an answer before I posted, I saw this question from a member named Pam about RH11 posted almost a year ago, but I don't see an answer. I'm hoping there is an answer!
    After many years of working in RoboHelp and carrying on with inline styles, I'm now looking into changing over to style sheets. I've been tinkering with them in some test projects, and I'm having the same problem that Pam did. The process of creating and applying a style sheet is simple, as far as I can tell, yet I can't get the style sheet formatting to appear. It's in the HTML--I see the .css specified, and there are only heading tags and so on present instead of inline stuff--yet the fonts I've selected appear neither in the Styles and Formatting pod nor in the Design view of the topic. I searched Adobe for help and found this: ROBOHELP 10: Creating CSS for a Topic | Tech Comm Suite Highlights | Adobe TV. I did exactly the same steps, but my fonts and spacing do not change as they do in the video. They don't appear different, that is. When I go into the style sheet, my selections are in there; they're just not displayed on the screen. I compiled a chm file to see if by chance the changes might appear there, but no.
    I tried this both with existing and new topics in a test copy of an existing project and with a brand new project created in RoboHelp that had none of my usual baggage. Any ideas?
    Thanks,
    Beth

    When I opened your CSS it was written as below.
    /*Created with Adobe RoboHelp 10.*/
    @media only screen and (min-width: 1024px) and (max-width: 99999px){
      h1 {
      font-family: Arial;
      font-size: 18pt;
      x-next-class: ;
      x-next-type: p;
    @media only screen and (min-width: 1024px) and (max-width: 99999px){
      p {
      font-family: Arial;
    That was because, as Amebr had picked up, you must have had Desktop setting in the media dropdown when you applied the style. The result is that if you are viewing in any less than 1024px, Arial will not be applied and you will get the browser default on the user's machine.
    With media set to None, I defined h1 and p again using Rh's CSS editor and the following was appended.
    h1 {
      font-weight: bold;
      font-size: 22pt;
      margin-top: 14pt;
      margin-bottom: 14pt;
      margin-left: 0pt;
      margin-right: 0pt;
      page-break-after: avoid;
      font-family: Arial;
      x-next-class: ;
      x-next-type: p;
    p {
      margin-top: 14pt;
      margin-bottom: 14pt;
      margin-left: 0pt;
      margin-right: 0pt;
      font-family: Arial;
    Go back to your real project and define your styles with media set to None. Take a copy of the exising CSS first for safety. Delete any styles with media rules applied.
    Create the styles by right clicking and using CSS Editor. Clean up by right clicking and using HTML Editor (the css will open in Rh and you can work on it as if in a text editor.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Page Numbers Not Appearing in Data Merge Document?

    Hello, hopefully someone can help. I am pretty new to InDesign but learning a lot.  I am creating a member directory of about 200 pages (about 2800 records merged from .csv to InDesign 6). Everything is working fine with the merge, except generating the page numbers.  I tried adding page number at the bottom of the page to the master BEFORE merging. But if I do that, it greys out the "multiple records per page" option when trying to perform the Data Merge (using "Create merged Document").  So, I tried adding the page number to the A-master AFTER creating the merged document, but the page number is not appearing on any of the pages.  There must be a way to do this, can anyone help?
    (FYI - to generate the auto page numbers, I am going to the Type-Insert Special Character-Markers-Current Page Number, and placing that within a text field at the bottom of the page.  Thanks in advance. )

    Here is a screen shot.  I have placed it on the A-Master.  See Screenshot#1.  Screenshot #2 shows Page 70 with no page number (and no other pages have page numbers that I can see.  Thanks for your advice on fixing....
    Sorry, here is screenshot #2, (with personal details redacted but the records are there behind the grey boxes):

  • New tabs do not include the history icons as before.The option to show images on a page does not appear in upper right of page.

    The solution in the FAQ's is clear, but the small icon that is supposed to be showing in the upper right of a new Tab page are not showing up so that I can get the images to appear. I recently installed Java 7 and after that they had disappeared. Can you help me get them back? They are very helpful.

    You can reset the browser.newtab.url pref on the <b>about:config</b> page via the right-click context menu to the default value.
    You can open the <b>about:config</b> page via the location bar and you can accept the warning and click "I'll be careful" to continue
    You can use the SearchReset extension to reset some preferences to the default values.
    *https://addons.mozilla.org/firefox/addon/searchreset/
    Note that the SearchReset extension only runs once and then uninstalls automatically, so it won't show on the "Firefox > Add-ons" page (about:addons).

  • I created a book at the Ibooks author. But there are pages where the number of the page does not appear. How I can solve this problem? I thank you very much for any tip.

    I created a book at the Ibooks author. But there are some pages which the number of page is not visible. What can I do to see the number of the page?

    Have you changed the template?
    Some pages may not have numbers in place as default.  If you have changed the page or the template page, you may have added a object which as pushed the number out of view, or an image may be in a layer on top of the text.
    If you select one object on the page...then go to Edit, select all, you should see the outlines of any content no matter that content may not be seen. Look at the bottom for a page width rectangle outline.. IF its there, you need to shuffle the content until you find that box, and use Arrange > bring to front.

  • Page Fragment not appearing in Page Navigation!!

    My project contains a Page Fragment named Logo.jspf which is intended to be displayed on the top of every page in my project.
    I have a Link Action element on Logo.jspf and when clicked it should load Login.jsp only if the user is not loged in, and if the user is already loged in it should load some other page. I aware that I have to add codes in the action listener method in Logo.java.
    As the Page Fragment (in my case that is Logo.jspf) is not appearing in Page Navigaton window it is not possible to add code like following: (Because I cannot visually draw an arrow with name �login� from �Logo.jspf� to �Login.jsp�)
    public String linkAction1_action() {
    return �login�;
    Please anyone help to do this. Thank you very much.

    To forward to a particular page from a servlet we usually use codes similar to the following:
    request.getRequestDispatcher("/Login.jsp").forward(request, response);
    How can I get rhe request object (or the session object) from a bean in a JSC project?
    Any suggestions very much appreciated. Thank you very much.

  • Imported photos do not appear as events

    When I import photos into iPhoto, they appear in the Last Import file and they can be found in the photo library, but they do not appear as an event. What am I doing wrong?

    Sure they do
    either the event sort is wrong (correct in the view menu ==> sort events) or the camera date is wrong (correct by selecting the photos and using the adjust time/date command)
    LN

  • Imported songs do not appear in library (iTunes 10.0.1)

    When I import songs from a CD, the songs are not appearing under Music in iTunes.
    The track info is properly displayed for the mounted CD itself and the songs are correctly imported (green checkboxes appear, the MP3 files are placed in the correct folder under "Music/iTunes/iTunes Music", and the MP3 files are playable in Quicktime).
    I've tried re-importing the songs in iTunes using the File > Add to Library function, but no luck. This has happened with multiple CDs.
    Songs that I have bought through Amazon were successfully imported.
    Is this an iTunes 10.0.1 bug? I haven't successfully imported a CD since I upgraded.
    Is my library corrupt? Is there a way to rebuild it?
    Thanks for any suggestions.
    Details:
    iTunes 10.0.1
    Import settings: MP3 encoder, high quality (160kbps), use error correction

    It turns out that this is an identified issue. See the thread:
    http://discussions.apple.com/thread.jspa?threadID=2565869&start=0&tstart=0
    (I searched for a thread on this topic before posting, honest!)
    For what it's worth, the problem with the two CDs I tried importing before I posted this has magically healed itself and I can now see them in the library. No idea why. I haven't yet tried to import more.

  • RF Queue - Posting Changes Not Appearing

    Hi All,
    We are currently implementing RF in our warehouse.
    I have a problem with regards to posting changes -     I cannot get them to appear in a queue.  Every time I create a posting change TO, it does not adopt the queue (LTAK - QUEUE) as defined in customising, so therefore does not appear in the RF monitor.
    We do have a strange set up....in that we use a QM posting change as part of our goods in process, so it may be something to do with that.
    It may help if someone could explain how posting changes are handled within a normal RF environment.  What are they typically used for and how would the queue assignment be configured?
    Any help appreciated.
    Thanks
    Guy

    Hi,
    Thanks for your reply.
    Yes, I do have entries against transfer type 'U'. 
    May I ask which screen control setting should be used?  I have tried 'Preparation screen for placement into stock' - I can't get any TOs to appear with this setting.
    However, when I use ' Single item screen' I can at least get an entry in the RF monitor, although I can't make any queue differentiation.
    I think this issue may be of our own making, as we are effectively using posting changes to perform putaway -- I presume normally posting change TOs would not be moving stock from one place to another?
    Regards
    Guy

  • Transport of Query successful, but changes not appeared in the report

    Hi All,
    I have 2 Queries(Normal and Total stock reports on the same InfoProvider) in Prd.
    For that User asked me to add one characteristic to Free characteristics.
    I added one characteristic in Free Characteristics to both Queries in Dev and i collected the Transport requests for both the queries in RSA1->TRANSPORT CONNECTIONS and gave it to basis guy, he transported successfully to PRD and for both the reports the changes reflected in the
    query designer, while executed the Normal stock report the characteristic added in free characteristics appeared and while drill down the data is coming, but for the Total stock report the changes appeared in Query designer but on executing the report even  the characteristic added to Freecharacteristics is not appearing in Navigation Pane.
    Also with the same technical name of total stock report there are 2 reports appearing in query designer. what to do now.
    Help me here asap..
    Thanks,
    Chaitu.
    Edited by: chaithu218 on Jun 21, 2011 10:37 AM
    Edited by: chaithu218 on Jun 21, 2011 10:40 AM

    Hi Chaithu,
    As you mentioned that you can see 2 versions by the same technical name in designer for total stock report, it is highly probable that the query you are changing and the query you are executing are different.
    2 versions of a query can exist with the same technical name as the system identifies the queries by their UIDs, which would be different for both these versions of queries.Following are the things you need to check:
    1) In development system too, do you have 2 versions?
    2) In production system, check the UID for both verions of the query
    3) In Dev system, make sure you modify the query with UID which is being executed, if it is available there. Else, you need to replace the query in prod with the one you have in Dev system.
    2 versions by same technical name can exist if:
    1) Someone created a query directly in Prod, and transported a query by same technical name from Dev system
    2) or due to system refresh, copy, etc.
    Hope it helps.
    Thanks,
    Abhishek.

  • When-tab-page-changed not firing

    I have 2 seperate forms opened on a single page. One displays on left side of screen and has tabs. One display on right side. If I am currently on my right side form (no tabs) and click on a tab on the left side form, it seems the 'When-tab-page-changed; trigger is not firing the first time. I have tried this on 6i and 10g webforms. If I try it on client/server 6i it works. Any suggestions?

    I just tried this with 10gR2 in web. My form with the tabs only get focus and does not call when-tab-page-changed when you click on a tab after returning from the other form.
    A 2nd button press does then call the when-tab-page-changed.

Maybe you are looking for

  • How to change an applicationu00B4s URL for language ??

    Hello, I´m using runtime->construct_bsp_url in the INIT method of my main class for determining the URL of my application, which in time delivers: https://sap19230.os.fth.sbs.de/sap/bc/bsp/sap/it00/test.htm and I want to add the aggregate for the log

  • Need Help In JTAPI generating a Flash Hook Signal

    Hi all, I am currently involved in a project that requires me to transfer a incoming call to another call. However, the lines that they are using is phonenet. Thus if I am to transfer a call in this environment, the application will use up 2 of the c

  • Help with PowerShell to delete a date range of Calendar meetings

    I'm trying to delete all Calendar items within a date range, from a mailbox. But first I'd like to just make sure my date filter is actually working. Here is what i HAVE working: Search-Mailbox ME -SearchQuery "Received:01/01/2010..03/18/2010" -Estim

  • ITunes cannot launch.  An unknown error has occurred (-69)  Please help!

    I have tried everything I know to fix it. Never had a problem with iTunes before. It just won't open at all. With or without my iPod connected. I am at a loss. I've uninstalled, reinstalled.....Thanks for any help!! Jessica

  • Case sensitive password in ECC6.0

    Hi All, I'm using the below code to connect to SAP ECC6 system. The below code works fine when the SAP Logon  password is all caps. But, when the password is mixed case I get an Error Message. *     SAPHD hd = SapConnc(argv, sapsys, client, cadsys, u