Caching Issue with Java Portal....Need Help ASAP!

We are deploying a JAVA & .NET enviornment. We have a Java Portal Server that connects to the .NET enviornment. We seem to have a problem with the caching on the JAVA portal...any help you could provide would be much needed!!

We are running Apache 2.0.48 with TomCat 4.1.18LE using JK2 as a conduit between them. We are not using mod_cache at all. we are using mod_proxy in the Apache Server. We have disabled caching in Tomcat:<Host name=..................... <Context path=............................ <Logger className=........................... <Manager className=.............................. <Resources cached="false" caseSensitive="false" /> This didn't seem to help the problem. Now am wondering if the browser is caching even though it's set to get a new page each time. The symtoms are: create a community page edit the pagecreate a portletfinishthe portlet shows upfinishfinishportlet is not on the pageclick refresh......the portlet is on the page.edit the communityedit the pagethe portlet is not on the edit pageclick refreshthe portlet is on the page..... regards and respect... Rod

Similar Messages

  • Serious Issue with Linkage..Need help ASAP!

    OK, I have big deadline for Monday and I can't figure this
    out. I have a bunch of movieclips that are set up with linkage for
    actionscript and set to export in first frame. Everything was fine
    and dandy for a week. Now all of a sudden Flash hangs when I try to
    export the swf. If I turn off the export in first frame everything
    is fine. The problem then is that my move clips aren't available
    for the attachmovie call. What I don't understand is why it was
    fine, then all of a sudden this happened for no apparent reason.
    Has anyone got a workaround or solution for this? I need help with
    this ASAP. Thanks.
    --Paul

    Sadly nothing you can do. The file must be corrupted.
    sometimes files that need saving corrupt themselves (product of
    voltage variations or some other physical things) making some
    objects "BAD", maybe you can save your work if you determine what
    is the only object that is corrupting all the file and delete and
    and redraw it.

  • Error when extracting data with extractor 2lis_04_matnr - NEED HELP ASAP !!

    Hi experts!
    Got an error when extracting data with extractor 2lis_04_matnr.
    System says (short dump):
    DUMP TEXT START----
    Runtime error:    CONNE_IMPORT_WRONG_COMP_TYPE
    Exception:   CX_SY_IMPORT_MISMATCH_ERROR
    Error when attempting to import object "MC04P_0MAT_TAB".
    The current ABAP program "SAPLMCEX" had to be terminated because one of the statements could not be executed. This is probably due to an error in the ABAP program. When attempting to import data, it was discovered that the data type of the stored data was not the same as that specified in the program.
    An exception occurred. This exception is dealt with in more detail below. The exception, which is assigned to the class 'CX_SY_IMPORT_MISMATCH_ERROR', was neither caught nor passed along using a RAISING clause, in the procedure  "MCEX_BW_LO_API" "(FUNCTION)".                                                                             
    Since the caller of the procedure could not have expected this exception      
    to occur, the running program was terminated.                                
    The reason for the exception is:  When importing the object "MC04P_0MAT_TAB", the component no. 5 in the dataset has a different type from the corresponding component of the target object in the program "SAPLMCEX". <b>The data type is "D" in the dataset, but "C" in the program.</b>
    DUMP TEXT END----
    Please, can someone explain me how to solve it? 
    Really need help ASAP!
    Thanks in advance,
    Jaume
    Message was edited by:
            Jaume Saumell
    Message was edited by:
            Jaume Saumell

    Hi,
    Check this note: 328181
    So you need to delete entries in SM13/LBWQ for application and also detup table content.
    And then refill teh set up table.
    If you are in production clear the entries by running collective run no of times for this application 04.
    With rgds,
    Anil Kumar Sharma .P

  • 2 issues with my phone need help !!

    I am having problems with my app store, when I am downloading an app it is always stuck on 92% that's 1 issue,  my second issue is my messages when I send a message it keeps saying sending I don't know why. I need help with these 2 issues Please & Thank You

    What phone?

  • Problem with FocusTraversalPolicy.. need help  asap!!!!

    I have Panel with six text fields. I have another subpanel with another three text fields placed on this main panel. I want to create a FocusTraversalPloicy in a way .. that the focus goes to the first field in the subpanel from the third text field of the main panel. And from the last text field of the Subpanel the focus should go to the 4th text field of the Main Panel. Help needed asap.
    TIA,
    BT

    Hi,
    main panel
    - text field 1
    - text field 2
    - text field 3
    - text field 4
    - text field 5
    - text field 6
    - sub panel ( text field 7, text field 8, text field 9 )
    focus seguence:
    text field 1 ->text field 2 ->text field 3 ->
    text field 7 ->text field 8 ->text field 9 ->
    text field 4 ->text field 5 ->text field 6 ...
    //----------------- CODE ----------
    import java.awt.*;
    import javax.swing.*;
    public class TraversalPolicyDemo1 extends JFrame
    JPanel mainPanel = new JPanel();
    JTextField txtField1 = new JTextField();
    JTextField txtField2 = new JTextField();
    JTextField txtField3 = new JTextField();
    JTextField txtField4 = new JTextField();
    JTextField txtField5 = new JTextField();
    JTextField txtField6 = new JTextField();
    JPanel subPanel = new JPanel();
    JTextField txtField7 = new JTextField();
    JTextField txtField8 = new JTextField();
    JTextField txtField9 = new JTextField();
    public TraversalPolicyDemo1()
    this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    this.mainPanel.setFocusCycleRoot(true);
    this.subPanel.setFocusable(false);
    this.mainPanel.setFocusTraversalPolicy(new MyFocTrPol());
    init();
    private void init()
    JPanel contentPane = (JPanel) this.getContentPane();
    GridLayout gridLayout = new GridLayout();
    gridLayout.setRows(7);
    gridLayout.setColumns(1);
    gridLayout.setHgap(10);
    gridLayout.setVgap(10);
    mainPanel.setLayout(gridLayout);
    txtField1.setText("11111");
    txtField2.setText("22222");
    txtField3.setText("33333");
    txtField4.setText("44444");
    txtField5.setText("55555");
    txtField6.setText("66666");
    txtField7.setText("77777");
    txtField8.setText("88888");
    txtField9.setText("99999");
    this.subPanel.add(txtField7);
    this.subPanel.add(txtField8);
    this.subPanel.add(txtField9);
    mainPanel.add(txtField1, null);
    mainPanel.add(txtField2, null);
    mainPanel.add(txtField3, null);
    mainPanel.add(txtField4, null);
    mainPanel.add(txtField5, null);
    mainPanel.add(txtField6, null);
    mainPanel.add(subPanel, null);
    contentPane.add(mainPanel, null);
    public static void main(String[] args)
    try
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    catch(Exception e)
    e.printStackTrace();
    TraversalPolicyDemo1 frame = new TraversalPolicyDemo1();
    frame.pack();
    frame.setVisible(true);
    }// end class TraversalPolicyDemo1
    import javax.swing.*;
    import java.awt.*;
    public class MyFocTrPol extends LayoutFocusTraversalPolicy
    public Component getComponentAfter(Container focusCycleRoot, Component aComponent)
    Component ret=null;
    Component first = focusCycleRoot.getComponent(0);//txtField1
    Component second = focusCycleRoot.getComponent(1);
    Component third = focusCycleRoot.getComponent(2);
    Component fourth = focusCycleRoot.getComponent(3);
    Component fifth = focusCycleRoot.getComponent(4);
    Component sixth = focusCycleRoot.getComponent(5);//txtField6
    Container seventh = (Container)focusCycleRoot.getComponent(6);//sub panel
    Component sub_first = seventh.getComponent(0);//txtField7
    Component sub_second = seventh.getComponent(1);//txtField8
    Component sub_third = seventh.getComponent(2);//txtField9
    if (aComponent.equals(first))
    ret = second;
    else if (aComponent.equals(second))
    ret = third;
    else if (aComponent.equals(third))
    ret = sub_first;
    else if (aComponent.equals(fourth))
    ret = fifth;
    else if (aComponent.equals(fifth))
    ret = sixth;
    else if (aComponent.equals(sixth))
    ret = first;
    else if (aComponent.equals(sub_first))
    ret = sub_second;
    else if (aComponent.equals(sub_second))
    ret = sub_third;
    else if (aComponent.equals(sub_third))
    ret = fourth;
    return ret;
    }// end getComponentAfter
    public Component getComponentBefore(Container focusCycleRoot, Component aComponent)
    Component ret=null;
    Component first = focusCycleRoot.getComponent(0);//txtField1
    Component second = focusCycleRoot.getComponent(1);
    Component third = focusCycleRoot.getComponent(2);
    Component fourth = focusCycleRoot.getComponent(3);
    Component fifth = focusCycleRoot.getComponent(4);
    Component sixth = focusCycleRoot.getComponent(5);//txtField6
    Container seventh = (Container)focusCycleRoot.getComponent(6);//sub panel
    Component sub_first = seventh.getComponent(0);//txtField7
    Component sub_second = seventh.getComponent(1);//txtField8
    Component sub_third = seventh.getComponent(2);//txtField9
    if (aComponent.equals(first))
    ret = sixth;
    else if (aComponent.equals(second))
    ret = first;
    else if (aComponent.equals(third))
    ret = second;
    else if (aComponent.equals(fourth))
    ret = sub_third;
    else if (aComponent.equals(fifth))
    ret = fourth;
    else if (aComponent.equals(sixth))
    ret = fifth;
    else if (aComponent.equals(sub_first))
    ret = third;
    else if (aComponent.equals(sub_second))
    ret = sub_first;
    else if (aComponent.equals(sub_third))
    ret = sub_second;
    return ret;
    }// end getComponentBefore
    public Component getDefaultComponent(Container focusCycleRoot)
    return focusCycleRoot.getComponent(0);//txtField1
    public Component getFirstComponent(Container focusCycleRoot)
    return focusCycleRoot.getComponent(0);//txtField1
    public Component getLastComponent(Container focusCycleRoot)
    return focusCycleRoot.getComponent(5);//txtField6
    public Component getInitialComponent(Window window)
    Component def = getDefaultComponent(window);
    if (def == null && window.isFocusableWindow())
    def = window;
    return def;
    }// end class MyFocTrPol

  • Issue with corrupted document, need Help !

    Dear all,
    In our company we use daily Indesign 7.5 (cs 5.5 package) and when we export the .ind document to .pdf the system crash.
    Above this the original document (.ind) is corrupted and we're not able to open thedocument.
    We loosed a lot of work and we're not able to restore de document.
    When we try to open the corrupted document this message appear :
    Can somebody help me?
    Thx and have a nice day.

    Thank you, yes, we at Markzware can try to help with your corrupt InDesign documents, for sure.
    From as far as we can see when dealing with the odd corrupt InDesign file from time to time, is that it comes down to three main reasons why these InDesign documents have issues:
    Font(s)
    Image(s)
    PowerOutage or Forced Stopped
    Fonts can indeed be a corrupt font itself, but also corrupt, over-loaded or otherwise odd-balled font caches. Here is a video on how to clear font caches in InDesign and although for a Mac in this video, I think you'll get the idea on how to do that on a PC as well:
    One highly corrupted image can ruin the show for your entire file. Check all images individually till you find the bad one and remove that. Also, more times then I can count, InDesign users drag-and-drop images from a web browser while visiting a web page, right into an InDesign layout. That is a big no-no. Not saying your are doing that, but just covering what can happen in the images category and a bad InDesign file.
    As for the odd power outage, well that is something maybe Tesla could have helped us with, but until a time when we are not dependant on AC/DC currents, it will remain a sore point. Power in your cases is likely not the issue though.
    Always report issues like these to Adobe though. They can also often help and if not right away, at least they may gather important details to help stop that type of corruption in the future.
    If all else fails and as mentioned, we as Markzware can help try and fix your files - Bad InDesign or Quark File Recovery Service
    Friendly Regards,
    David
    Markzware

  • Issues with N80. Need help badly!!

    I got my N80 as a gift a week ago. It was purchased in dubai ( which is in the middle east). 2 days ago i transferred some files from my phone to the computer and ever since the next morning my phones been acting weird. applications close, its slow, battery life is really bad (like 5 hours), my signal bar and batter life bar disappear for a while and the phone powers off by itself. Today I removed the memory card and tried the phone and it seems to be working fine now and I am not having any issues. I am assuming and hoping that the card got affected when i was uploading the files from my phone and that there is no problem with the phone. I have been advised to send the phone back to the middle east to get it checked and possibly repaired. this is something I dont want to do at the moment because i like the phone and it will be a long time before i get it back. My question is if anyone else has had a similar problem, is it the memory card that is faulty and should I just get a new card or should I actually send the phone back to get it checked totally, in case its the phone that is faulty? also I have read that a new firmware is out. Can i get that off the net or it has to be uploaded at a local service centre ( which unfortunately is in the middle east again and not in Canada where I am at the moment)? The firmware on my phone is V 3.0617.0.6 and was updated on 03-05-06 RM-92 Nokia N80 (08). Is this firmware ok for now as I will be going to the middle east in december and can get it done then. Or should i just send the phone now and get the firmware updated and also get the memory card problem sorted out?

    07-Sep-2006
    07:07 AM
    manta wrote:
    I have not experienced similar behaviour, but if you connected phone via cable to a PC and used the data transfer mode to move the files to PC, that equals to mass storage mode that shows the memory card as expernal memory in Windows Explorer and it is important to remove the phone then safely using the remove harware option in Windows, di dyou do that ?
    If not, the memory card can get corrupted and corrupted memory card can mak the phone behave badly.
    I would just go and buy a new memory card and then when connecting to PC always use the safe removal before disconnecing the phone.
    Or install PC Suite, the´connection method is different and no safe removal needed.
    I did use PC suite while transferring the files which makes it even more weirder. But yes i did not do that safely remove hardware thing. I thought that it wouldnt be needed since im using PC suite. do u have any idea about the firmware? should i get it updated now back in dubai or wait till i go back myself in december?

  • Issue with GREP.  Need help to solve it pls...

    Hi,
    I have set a GREP as follow:
    Paragraph style: numbered + capital letters
    GREP:  \(.+?\) so that everything between () is written italic.
    When the list of ingredients is too long, I need to go to the next line (shift + enter).  Then it is like if the GREP gets broken...
    I have tried to put a \n but it doesn't work...
    Going crazy here
    Can anyone help?
    Thank you so m uch!

    Solution found...
    FYI here is the correct grep: \(.+\)

  • Issue with Java Decompiler, please help

    I'm using Mocha to decompile a *.class file from the standard OAF. I'd like to reuse some logic which Oracle has previously developed. I'd like to decompile DetailDataInputCO.class but Mocha errors out with "Ignoring field attribute Synthetic".
    If anyone has a good decompiler, could you please decompile a class file for me. Please contact me at [email protected] and I can send you the file. It would be greatly appreciated.
    Thanks,
    -Scott

    // Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
    // Jad home page: http://www.kpdus.com/jad.html
    // Decompiler options: packimports(3)
    // Source File Name: DetailDataInputCO.java
    package oracle.apps.ap.oie.webui;
    import com.sun.java.util.collections.HashMap;
    import java.io.Serializable;
    import java.util.Vector;
    import oracle.apps.ap.oie.entry.AttendeeRuleUI;
    import oracle.apps.ap.oie.server.DetailAMImpl;
    import oracle.apps.ap.oie.utility.OIEConstants;
    import oracle.apps.ap.oie.utility.OIEUtil;
    import oracle.apps.fnd.common.MessageToken;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.flexj.*;
    import oracle.apps.fnd.framework.*;
    import oracle.apps.fnd.framework.webui.*;
    import oracle.apps.fnd.framework.webui.beans.*;
    import oracle.apps.fnd.framework.webui.beans.form.OAChoiceBean;
    import oracle.apps.fnd.framework.webui.beans.form.OASubmitButtonBean;
    import oracle.apps.fnd.framework.webui.beans.layout.*;
    import oracle.apps.fnd.framework.webui.beans.message.*;
    import oracle.apps.fnd.framework.webui.beans.nav.OANavigationBarBean;
    import oracle.apps.fnd.framework.webui.beans.nav.OAPageButtonBarBean;
    import oracle.apps.fnd.framework.webui.beans.table.*;
    import oracle.cabo.ui.*;
    import oracle.cabo.ui.beans.*;
    import oracle.cabo.ui.beans.form.*;
    import oracle.cabo.ui.beans.layout.*;
    import oracle.cabo.ui.beans.message.MessageStyledTextBean;
    import oracle.cabo.ui.beans.message.MessageTextInputBean;
    import oracle.cabo.ui.beans.nav.NavigationBarBean;
    import oracle.cabo.ui.beans.table.ColumnBean;
    import oracle.cabo.ui.beans.table.TableBean;
    import oracle.jbo.domain.Number;
    // Referenced classes of package oracle.apps.ap.oie.webui:
    // ExpensesCO, NavigationUtility
    public class DetailDataInputCO extends OAControllerImpl
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    if(oapagecontext.isLoggingEnabled(2))
    oapagecontext.writeDiagnostics(this, "start processRequest", 2);
    boolean flag = false;
    super.processRequest(oapagecontext, oawebbean);
    OAApplicationModule oaapplicationmodule = oapagecontext.getRootApplicationModule();
    OAApplicationModule oaapplicationmodule1 = oapagecontext.getApplicationModule(oawebbean);
    String s = (String)oaapplicationmodule.invokeMethod("getMultipleCurrenciesFlag");
    String s1 = (String)oapagecontext.getTransactionValue("ApWebTaxEnable");
    String s2 = (String)oapagecontext.getTransactionValue("PaymentCurrencyCode");
    String s3 = (String)oapagecontext.getTransactionValue("ApWebDescFlexName");
    String s4 = (String)oapagecontext.getTransactionValue("CCPage");
    boolean flag2 = s4 == null || s4.equals("Y");
    boolean flag3 = ((String)oapagecontext.getTransactionValue("IsProjectEnabled")).equals("Y") || ((String)oapagecontext.getTransactionValue("IsProjectEnabled")).equals("R");
    String s5 = (String)oapagecontext.getTransactionValue("ApWebEnableGrantsAccounting");
    boolean flag4 = flag3 && s5 != null && s5.equals("Y");
    boolean flag5 = ((Boolean)oaapplicationmodule.invokeMethod("isVATEnabled")).booleanValue();
    String _tmp = (String)oapagecontext.getTransactionValue("ApWebEnableLineLevelAccounting");
    oapagecontext.getParameter("ButtonLink");
    String s6 = "N";
    oracle.apps.ap.oie.setup.OIESetup.Setup setup = (oracle.apps.ap.oie.setup.OIESetup.Setup)oaapplicationmodule.invokeMethod("getSetup");
    OADescriptiveFlexBean oadescriptiveflexbean = null;
    OAStackLayoutBean oastacklayoutbean = (OAStackLayoutBean)createWebBean(oapagecontext, "STACK_LAYOUT");
    oawebbean.addIndexedChild(oastacklayoutbean);
    OATableLayoutBean oatablelayoutbean = (OATableLayoutBean)createWebBean(oapagecontext, "TABLE_LAYOUT");
    oastacklayoutbean.addIndexedChild(oatablelayoutbean);
    oatablelayoutbean.setWidth("100%");
    OASpacerRowBean oaspacerrowbean = (OASpacerRowBean)createWebBean(oapagecontext, "SPACER_ROW");
    if(flag5)
    OARowLayoutBean oarowlayoutbean = (OARowLayoutBean)createWebBean(oapagecontext, "ROW_LAYOUT");
    oatablelayoutbean.addRowLayout(oarowlayoutbean);
    OACellFormatBean oacellformatbean = (OACellFormatBean)createWebBean(oapagecontext, "CELL_FORMAT");
    oarowlayoutbean.addIndexedChild(oacellformatbean);
    OARawTextBean oarawtextbean = (OARawTextBean)createWebBean(oapagecontext, "RAW_TEXT");
    oacellformatbean.addIndexedChild(oarawtextbean);
    oacellformatbean.setHAlign("start");
    oacellformatbean.setColumnSpan(2);
    oarawtextbean.setText(oapagecontext.getMessage("SQLAP", "OIE_MERCHANT_HEADING", new MessageToken[0]));
    oarawtextbean.setStyleClass("OraInstructionText");
    oatablelayoutbean.addIndexedChild(oaspacerrowbean);
    OARowLayoutBean oarowlayoutbean1 = (OARowLayoutBean)createWebBean(oapagecontext, "ROW_LAYOUT");
    oatablelayoutbean.addRowLayout(oarowlayoutbean1);
    OACellFormatBean oacellformatbean1 = (OACellFormatBean)createWebBean(oapagecontext, "CELL_FORMAT");
    oarowlayoutbean1.addIndexedChild(oacellformatbean1);
    OATableLayoutBean oatablelayoutbean1 = (OATableLayoutBean)createWebBean(oapagecontext, oawebbean, "DRRequiredIconText");
    oacellformatbean1.addIndexedChild(oatablelayoutbean1);
    oatablelayoutbean.addIndexedChild(oaspacerrowbean);
    OARowLayoutBean oarowlayoutbean2 = (OARowLayoutBean)createWebBean(oapagecontext, "ROW_LAYOUT");
    oatablelayoutbean.addRowLayout(oarowlayoutbean2);
    OACellFormatBean oacellformatbean2 = (OACellFormatBean)createWebBean(oapagecontext, "CELL_FORMAT");
    OACellFormatBean oacellformatbean3 = (OACellFormatBean)createWebBean(oapagecontext, "CELL_FORMAT");
    oarowlayoutbean2.addIndexedChild(oacellformatbean2);
    oarowlayoutbean2.addIndexedChild(oacellformatbean3);
    OATableLayoutBean oatablelayoutbean2 = (OATableLayoutBean)createWebBean(oapagecontext, "TABLE_LAYOUT");
    OATableLayoutBean oatablelayoutbean3 = (OATableLayoutBean)createWebBean(oapagecontext, "TABLE_LAYOUT");
    oacellformatbean2.addIndexedChild(oatablelayoutbean2);
    oacellformatbean2.setVAlign("top");
    oacellformatbean3.addIndexedChild(oatablelayoutbean3);
    oacellformatbean3.setVAlign("top");
    oatablelayoutbean2.addIndexedChild(createWebBean(oapagecontext, oawebbean, "DetailStartDate"));
    oatablelayoutbean2.addIndexedChild(oaspacerrowbean);
    oatablelayoutbean2.addIndexedChild(createWebBean(oapagecontext, oawebbean, "DetailDailyRate"));
    oatablelayoutbean2.addIndexedChild(oaspacerrowbean);
    oatablelayoutbean2.addIndexedChild(createWebBean(oapagecontext, oawebbean, "DetailDays"));
    oatablelayoutbean2.addIndexedChild(oaspacerrowbean);
    if(flag2)
    OAMessageStyledTextBean oamessagestyledtextbean = (OAMessageStyledTextBean)createWebBean(oapagecontext, oawebbean, "DetailDisplayReceiptAmount");
    oatablelayoutbean2.addIndexedChild(oamessagestyledtextbean);
    oatablelayoutbean2.addIndexedChild(oaspacerrowbean);
    oamessagestyledtextbean.setText(oamessagestyledtextbean.getText(oapagecontext) != null ? oamessagestyledtextbean.getText(oapagecontext) + " " : "");
    if(oamessagestyledtextbean.getText(oapagecontext) != null && !oamessagestyledtextbean.getText(oapagecontext).equals(""))
    OAStyledTextBean oastyledtextbean = (OAStyledTextBean)createWebBean(oapagecontext, "TEXT");
    oastyledtextbean.setViewUsageName("OneReceiptBasedVO");
    oastyledtextbean.setViewAttributeName("ReceiptCurrencyCode");
    oastyledtextbean.setCSSClass("OraDataText");
    oamessagestyledtextbean.setEnd(oastyledtextbean);
    } else
    OAMessageTextInputBean oamessagetextinputbean = (OAMessageTextInputBean)createWebBean(oapagecontext, oawebbean, "DetailReceiptAmount");
    oatablelayoutbean2.addIndexedChild(oamessagetextinputbean);
    oatablelayoutbean2.addIndexedChild(oaspacerrowbean);
    if(s.equals("N"))
    OAStyledTextBean oastyledtextbean1 = (OAStyledTextBean)createWebBean(oapagecontext, "TEXT");
    oastyledtextbean1.setViewUsageName("OneReceiptBasedVO");
    oastyledtextbean1.setViewAttributeName("ReceiptCurrencyCode");
    oastyledtextbean1.setCSSClass("OraDataText");
    oamessagetextinputbean.setEnd(oastyledtextbean1);
    } else
    OAChoiceBean oachoicebean = (OAChoiceBean)createWebBean(oapagecontext, "POPLIST", null, "CurrencyPopList");
    oachoicebean.setViewUsageName("OneReceiptBasedVO");
    oachoicebean.setViewAttributeName("ReceiptCurrencyCode");
    oachoicebean.setPickListViewObjectDefinitionName("oracle.apps.ap.oie.server.CurrenciesVO");
    oachoicebean.setListValueAttribute("CurrencyCode");
    oachoicebean.setListDisplayAttribute("CurrencyCodeName");
    OAStaticStyledTextBean oastaticstyledtextbean = (OAStaticStyledTextBean)createWebBean(oapagecontext, oawebbean, "Currency");
    oachoicebean.setShortDesc(oastaticstyledtextbean.getLabel());
    oamessagetextinputbean.setEnd(oachoicebean);
    if(flag2 || s.equals("N"))
    OAMessageStyledTextBean oamessagestyledtextbean1 = (OAMessageStyledTextBean)createWebBean(oapagecontext, oawebbean, "DetailDisplayExchRate");
    oatablelayoutbean2.addIndexedChild(oamessagestyledtextbean1);
    oatablelayoutbean2.addIndexedChild(oaspacerrowbean);
    } else
    OAMessageTextInputBean oamessagetextinputbean1 = (OAMessageTextInputBean)createWebBean(oapagecontext, oawebbean, "DetailExchRate");
    oatablelayoutbean2.addIndexedChild(oamessagetextinputbean1);
    oatablelayoutbean2.addIndexedChild(oaspacerrowbean);
    oamessagetextinputbean1.setRequired("yes");
    OAMessageStyledTextBean oamessagestyledtextbean2 = (OAMessageStyledTextBean)createWebBean(oapagecontext, oawebbean, "DetailReimbursAmt");
    oatablelayoutbean2.addIndexedChild(oamessagestyledtextbean2);
    if(oamessagestyledtextbean2.getText(oapagecontext) != null)
    oamessagestyledtextbean2.setText(oamessagestyledtextbean2.getText(oapagecontext) + " " + s2);
    oatablelayoutbean2.addIndexedChild(oaspacerrowbean);
    OAMessageCheckBoxBean oamessagecheckboxbean = (OAMessageCheckBoxBean)createWebBean(oapagecontext, oawebbean, "DetailReceiptMissing");
    oatablelayoutbean2.addIndexedChild(oamessagecheckboxbean);
    oatablelayoutbean2.addIndexedChild(oaspacerrowbean);
    Integer integer = (Integer)oaapplicationmodule.invokeMethod("getNumberOfTaxCodes");
    String s7 = (String)oaapplicationmodule1.invokeMethod("getTaxCodeUpdateable");
    OAWebBeanDataAttribute oawebbeandataattribute;
    if(s7 == null || s7.equals("Y"))
    oawebbeandataattribute = (OAWebBeanDataAttribute)createWebBean(oapagecontext, oawebbean, "DetailTaxCode");
    else
    oawebbeandataattribute = (OAWebBeanDataAttribute)createWebBean(oapagecontext, oawebbean, "DetailTaxCodeDisplay");
    OAMessageCheckBoxBean oamessagecheckboxbean1 = (OAMessageCheckBoxBean)createWebBean(oapagecontext, oawebbean, "DetailAmtInclTax");
    if(s1 != null && s1.equals("Y") && integer.intValue() > 0)
    oatablelayoutbean2.addIndexedChild(oamessagecheckboxbean1);
    oatablelayoutbean2.addIndexedChild(oaspacerrowbean);
    oatablelayoutbean2.addIndexedChild(oawebbeandataattribute);
    oatablelayoutbean2.addIndexedChild(oaspacerrowbean);
    String s8 = (String)oaapplicationmodule1.invokeMethod("getExpTypeWebPrompt");
    Object obj = null;
    Object obj1 = null;
    Boolean boolean1 = (Boolean)oaapplicationmodule1.invokeMethod("isExpTypeInPoplist");
    if(flag4 && !boolean1.booleanValue())
    oaapplicationmodule1.invokeMethod("resetWebParameterId");
    String s11 = (String)oaapplicationmodule1.invokeMethod("getAwardNumber");
    MessageToken amessagetoken[] = {
    new MessageToken("EXP_TYPE", s8), new MessageToken("AWARD_NUM", s11 != null ? s11 : "")
    OAException oaexception = new OAException("SQLAP", "OIE_DEFAULT_EXPENDITURE_TYPE", amessagetoken, (byte)1, null);
    oaexception.setApplicationModule(oaapplicationmodule1);
    oapagecontext.putDialogMessage(oaexception);
    OAMessageLovInputBean oamessagelovinputbean = (OAMessageLovInputBean)createWebBean(oapagecontext, oawebbean, "DetailProjectNumber");
    OAMessageLovInputBean oamessagelovinputbean1 = (OAMessageLovInputBean)createWebBean(oapagecontext, oawebbean, "DetailTaskNumber");
    if(flag3)
    oatablelayoutbean3.addIndexedChild(oamessagelovinputbean);
    oatablelayoutbean3.addIndexedChild(oaspacerrowbean);
    oatablelayoutbean3.addIndexedChild(oamessagelovinputbean1);
    oatablelayoutbean3.addIndexedChild(oaspacerrowbean);
    String s12 = (String)oaapplicationmodule1.invokeMethod("getProjectNumber");
    if(s12 != null)
    oamessagelovinputbean1.setRequired("yes");
    else
    oamessagelovinputbean1.setRequired("no");
    if(flag4)
    OAMessageLovInputBean oamessagelovinputbean2 = (OAMessageLovInputBean)createWebBean(oapagecontext, oawebbean, "DetailAwardNumber");
    oatablelayoutbean3.addIndexedChild(oamessagelovinputbean2);
    oatablelayoutbean3.addIndexedChild(oaspacerrowbean);
    oatablelayoutbean3.addIndexedChild(createWebBean(oapagecontext, oawebbean, "RBWebParam"));
    if(s3 != null && ("Y".equals(s3) || "B".equals(s3)))
    oadescriptiveflexbean = (OADescriptiveFlexBean)createWebBean(oapagecontext, oawebbean, "DetailFlex");
    oatablelayoutbean3.addIndexedChild(oadescriptiveflexbean);
    oatablelayoutbean3.addIndexedChild(oaspacerrowbean);
    if(flag4)
    OAStyledTextBean oastyledtextbean2 = (OAStyledTextBean)createWebBean(oapagecontext, "TEXT");
    oatablelayoutbean3.addIndexedChild(oastyledtextbean2);
    String s9 = oapagecontext.getMessage("SQLAP", "OIE_EXPENDITURE_TYPE_TIP", null);
    oastyledtextbean2.setText(oapagecontext, s9);
    oastyledtextbean2.setStyleClass("OraInlineInfoText");
    OAWebBeanDataAttribute oawebbeandataattribute1 = null;
    if(oapagecontext.getParameter("_FORMEVENT") == null || !oapagecontext.getParameter("_FORMEVENT").startsWith("FLEX_CONTEXT_CHANGED"))
    if(!boolean1.booleanValue() && s8 != null)
    oadescriptiveflexbean.setFlexContext(oapagecontext, null);
    Serializable aserializable[] = {
    null
    oapagecontext.getApplicationModule(oawebbean).invokeMethod("onChangeExpenseDFFContext", aserializable);
    } else
    oadescriptiveflexbean.setFlexContext(oapagecontext, s8);
    oadescriptiveflexbean.processFlex(oapagecontext);
    oawebbeandataattribute1 = (OAWebBeanDataAttribute)oadescriptiveflexbean.getIndexedChild(null, 0);
    oadescriptiveflexbean.setFlexTableRendered(false);
    oatablelayoutbean3.addIndexedChild(oawebbeandataattribute1);
    oatablelayoutbean3.addIndexedChild(oaspacerrowbean);
    if(!boolean1.booleanValue() && s8 != null)
    oawebbeandataattribute1.setRequired("no");
    else
    oawebbeandataattribute1.setRequired("yes");
    DescriptiveFlexfield descriptiveflexfield = (DescriptiveFlexfield)oadescriptiveflexbean.getAttributeValue(OAWebBeanConstants.FLEXFIELD_REFERENCE);
    int i = descriptiveflexfield.indexOfContextSegment();
    if(oapagecontext.getParameter("_FORMEVENT") != null && oapagecontext.getParameter("_FORMEVENT").startsWith("FLEX_CONTEXT_CHANGED"))
    String s14 = descriptiveflexfield.getSegment(i).getValue().getDisplay();
    Serializable aserializable2[] = {
    s14
    oapagecontext.getApplicationModule(oawebbean).invokeMethod("onChangeExpenseDFFContext", aserializable2);
    } else
    OAMessageChoiceBean oamessagechoicebean = (OAMessageChoiceBean)createWebBean(oapagecontext, oawebbean, "DetailExpType");
    oatablelayoutbean3.addIndexedChild(oamessagechoicebean);
    oatablelayoutbean3.addIndexedChild(oaspacerrowbean);
    oamessagechoicebean.setPickListViewUsageName("DetailExpenseTypesVO");
    if(flag4)
    OAStyledTextBean oastyledtextbean3 = (OAStyledTextBean)createWebBean(oapagecontext, "TEXT");
    oatablelayoutbean3.addIndexedChild(oastyledtextbean3);
    String s10 = oapagecontext.getMessage("SQLAP", "OIE_EXPENDITURE_TYPE_TIP", null);
    oastyledtextbean3.setText(oapagecontext, s10);
    oastyledtextbean3.setStyleClass("OraInlineInfoText");
    if(flag3)
    String s13 = (String)oaapplicationmodule1.invokeMethod("getExpenditureType");
    boolean flag7 = ((String)oapagecontext.getTransactionValue("IsProjectEnabled")).equals("R") && s13 != null;
    if(flag7)
    oamessagelovinputbean.setRequired("yes");
    oamessagelovinputbean1.setRequired("yes");
    boolean flag6 = ((Boolean)oaapplicationmodule1.invokeMethod("isLocationSchedule")).booleanValue();
    boolean flag8 = flag5 || flag6;
    if(setup.getReceiptBasedLocation() != null)
    flag8 = setup.getReceiptBasedLocation().booleanValue() || flag8;
    if(flag8)
    if(flag6 || flag5)
    OAMessageLovInputBean oamessagelovinputbean3 = (OAMessageLovInputBean)createWebBean(oapagecontext, oawebbean, "LocationName");
    oatablelayoutbean3.addIndexedChild(oamessagelovinputbean3);
    oamessagelovinputbean3.setRequired("yes");
    oatablelayoutbean3.addIndexedChild(createWebBean(oapagecontext, oawebbean, "LocationId"));
    } else
    OAMessageTextInputBean oamessagetextinputbean2 = (OAMessageTextInputBean)createWebBean(oapagecontext, oawebbean, "RBLocation");
    oatablelayoutbean3.addIndexedChild(oamessagetextinputbean2);
    oatablelayoutbean3.addIndexedChild(oaspacerrowbean);
    if(flag2)
    OAMessageStyledTextBean oamessagestyledtextbean3 = (OAMessageStyledTextBean)createWebBean(oapagecontext, oawebbean, "TransactionLocation");
    oatablelayoutbean3.addIndexedChild(oamessagestyledtextbean3);
    oatablelayoutbean3.addIndexedChild(oaspacerrowbean);
    Object obj2 = null;
    Object obj3 = null;
    String s17 = null;
    if((OAMessageTextInputBean)oawebbean.findIndexedChildRecursive("RBLocation") != null)
    OAMessageTextInputBean oamessagetextinputbean5 = (OAMessageTextInputBean)oawebbean.findIndexedChildRecursive("RBLocation");
    s17 = (String)oamessagetextinputbean5.getValue(oapagecontext);
    } else
    if((OAMessageLovInputBean)oawebbean.findIndexedChildRecursive("LocationName") != null)
    OAMessageLovInputBean oamessagelovinputbean4 = (OAMessageLovInputBean)oawebbean.findIndexedChildRecursive("LocationName");
    s17 = (String)oamessagelovinputbean4.getValue(oapagecontext);
    OAMessageStyledTextBean oamessagestyledtextbean5 = (OAMessageStyledTextBean)oawebbean.findIndexedChildRecursive("TransactionLocation");
    String s19 = (String)oaapplicationmodule1.invokeMethod("getTransactionLocation");
    if(s19 != null && !s19.equalsIgnoreCase(s17))
    oamessagestyledtextbean5.setValue(oapagecontext, s19);
    oamessagestyledtextbean3.setRendered(true);
    boolean flag1 = true;
    } else
    oamessagestyledtextbean3.setRendered(false);
    if(flag2)
    OAMessageStyledTextBean oamessagestyledtextbean4 = (OAMessageStyledTextBean)createWebBean(oapagecontext, oawebbean, "DetailDisplayMerchantName");
    oatablelayoutbean3.addIndexedChild(oamessagestyledtextbean4);
    oatablelayoutbean3.addIndexedChild(oaspacerrowbean);
    } else
    OAMessageTextInputBean oamessagetextinputbean3 = (OAMessageTextInputBean)createWebBean(oapagecontext, oawebbean, "DetailMerchantName");
    Serializable aserializable1[] = {
    getLocationId(oapagecontext, oawebbean)
    Class aclass[] = {
    oracle.jbo.domain.Number.class
    if(((Boolean)oaapplicationmodule1.invokeMethod("isMerchantRequired", aserializable1, aclass)).booleanValue())
    oamessagetextinputbean3.setRequired("yes");
    oatablelayoutbean3.addIndexedChild(oamessagetextinputbean3);
    oatablelayoutbean3.addIndexedChild(oaspacerrowbean);
    }

  • Having an issue with GoLive - I need help!?!

    I need to figure out how to "reset" setting on Adobe Go Live (CS2).
    The other day all of a sudden, I lost all of the 'preview pane' buttons.  It has layout and source still, but the two preview (pdf and regular) are missing.  Also - all of the images are still there in the source and when you view the html in a browser, but in the main screen - all of the images now show a "broken image" icon. 
    What happened and how do I fix?
    Thanks in advance.

    *Im wondering if theres a way get the song information on the library, rather than having to go through and to have to type every artist and title?*
    Are you importing commercial CDs or CD-Rs? If they are ones you made yourself the track names will be seen as Track 01, Track 02 etc. and the information has to be keyed in again by hand. For commercial CDs, you have to connect to the internet as iTunes picks up the track information from an online database. It will do this automatically if you are connected while you are importing or you can do it afterwards by connecting to the internet, highlighting the tracks and going to Advanced>Get CD Track names:
    iTunes for Windows - I don't see the names of songs
    How iTunes remembers Audio CDs

  • Stuttering flv playback issue- need help asap

    We need help asap. Have a project is due to deliver today (5/14).
    We have a video to go on a dvd-rom, live action with Motion Graphics behind.
    When output is done thru Projector the Motion Graphics stutter as they scroll.
    Here is more technical info:
    Stuttering flv playback issue:
    Prores 422 timeline 29.97fps 1280x720 output from fcp using current settings.
    Mov file is approx 7gb, plays relatively smooth on a mac pro with no raid.
    Frame by frame analysis shows all frames are present with no jumps tears or skips.
    Tried several output paths, programs and settings to create a smooth flv file to no avail.
    We adjusted data rates from 2k, 3.5k, 4k and 8k, no luck
    We adjusted keyframe rates from low to all frames, no luck.
    We tried cs3 flash encoder, cs5 media encoder, squeeze ect, same results.
    Playback in the flash projector seems to choke slightly no matter what we do.
    Have also posted in the Director Forum.
    Any help much appreciated!

    Here are a few ideas off the top of my head:
    Try playing the file using a different xtra, sometimes different ones will work better.  If you have Director 11.5, there is a native flv playback xtra.
    You can build a player easily in Flash using the flvPlayback component, then bring that into Director as a swf.
    Once you have the video in Director, try making the member Direct To Stage (DTS).  If it is already DTS, try making it not DTS.
    Make sure the video is not transparent, and nothing in Director overlaps the video... in fact, when the video is playing, nothing should be moving at all, and try to keep the amount of code that is running to a minimum.
    Try lowering your video's data rate further or try using a different codec.
    Using VBR (Variable Bit Rate) compression often makes the video appear to play smoother.
    Try compressing the flv with different software.  FFMpeg, for example, is free and does a very good job, often better than the Flash Video Encoder that comes with Flash/Creative Suite.

  • How do you overlap PDF's and finish with one PDF file? Need help ASAP

    how do you overlap PDF's and finish with one PDF file?
    Need help ASAP

    I'm not sure if you can do that with CreatePDF.  Try it; you got one free use when you sign up with Acrobat.com
    If not, you will have to use Adobe Acrobat; there is a full-use 30 days trial.

  • User with a paid CC acct, getting "Print.ai" is an unknown format' when trying to open new file. Computer was recently attacked by ransomeware and wonder if I need to re-install Creative cloud software....need help asap!!

    User with a paid CC acct, getting "Print.ai" is an unknown format' when trying to open new file. Computer was recently attacked by ransomeware and wonder if I need to re-install Creative cloud software....need help asap!!

    First, ask in the forum for the program you are using
    This forum is about the Cloud as a delivery process, not about using individual programs
    If you start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll
    Second, do a complete scan with a good anti-virus program to be sure your computer is clean... I use Norton, there are others

  • I am  having  issues  with java

    OK well I finally got  the java update to full load and it stated that it was corrupt or something like that and now I can not get into my favorite chat room it says I need to get java ..   when I go to the link to  re get a update to java it says I am updated.. so I called apple and they sent me a patch or something and it did not help .. anyone have any ideas what is happening?
    my old chatroom I think I remember someone talking about java issues there and how you had to have a old java  or something like that ..  can somehelp please!

    golam wrote:
    I am having issues with java encoding in Gentoo Linux environment. I am using java 1.6. When I ran the following test application to print french accent with encoding type, all I get is wrong character. Please provide me with some pointers. When I try this in Windows, it works perfectly. Many Thanks in advance
    //test.txt file contains the following string
    àäèéêëîïôùûüÿ
    ///TEST CODE to find which encoding to use
                              System.out.println("encoding:"+encoding[i]+"line===>"+inputLine);
    This is the problem.
    Don't assume the console character set can display these characters,
    use a swing component.
    This is also why it happens to work in on some boxes and not on others.
    ///////////////OUTPUT after running the test app
    java Test encoding:Big5line===>???????
    encoding:Big5-HKSCSline===>???????
    encoding:EUC-JPline===>???????
    encoding:EUC-KRline===>???????
    encoding:GB18030line===>???????
    encoding:GB2312line===>???????
    encoding:GBKline===>???????

  • My Curve 9300 lost service need help ASAP

    I lost all serivce on my blackberry curve 9300 and the only way I get service is if I go outside my house. Sometimes I get service in my house but it's for 5 seconds and then I get "searching for network" then it goes to "SOS" I need help ASAP.

    yankeegirl32491 wrote:
    My carrier won't do anything about it because I'm not an authorized user of the account which is stupid. I wasn't having a problem with service for about a year and yesterday my service just cuts out for no apparent reason.
    Hello...well, that's a bit disconcerting...aiding and abetting what could be an unethical use of service...but I'm hopeful that there are further details that mitigate that suspicion. In any event, review this KB for perhaps helpful information:
    KB03448 Network status indicator shows "SOS" on the BlackBerry smartphone
    It is possible that they have a tower out, and you now are receiving service from a more distant tower, which does not have adequate signal strength to work through the walls of your house. But, sadly, there is no way for you to actually find out if such is the case or not.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • Logic Pro X In, Most Other Functions Out

    Anyone else have this problem?  Since installing Logoc Pro X onto my MacBook Pro (purchased March 2013, 2.3 GHz Intel Core i7, 8 GB, OS 10.8.4) I've lost use of my Epson printer, Toast Titanium, and my internal disc drive.  Suggestions?

  • Keyboard issue after coffee spill.

    I've problem. I've spilled a bit of coffee (sugar+milk) on my W500's keyboard - (Enter key area). And now, there are such problems: After pushing keys: F5, F9, Backspace, backslash, Space the behaviour is like hitting the Enter. Could anyone help me

  • EDI1(vendor confirmation price) in PO can set to green light?

    I have setup the condition EDI1 for the vendor confirmed price. I set as default, when I create PO, the EDI1 condition will show up in the condition tab with price 0. But I found out that EDI1 condition is in "Red light" in stead of green light. Alth

  • Dynamic user profile

    I have installed and configured Kanaka plug-in and my nds users can now login and see their home folders. However, they cannot launch any local applications eg. TextEdit generates a message "TextEdit quit unexpectedly" and so does Opera, Firefox alwa

  • Macbook Pro - screen not working

    Hi all, Please help! I have a 2 year old macbook pro that's in great condition. It hasn't been dropped/nothings been spilled on it etc. Suddenly, my screen has started to almost 'short out' - it goes blank so I can't see the desktop or film I'm watch