Trouble w/ items button, request not being passed

I'm having trouble w/ a button created as a region's item.
I have a search box, and a P100_GO button.
The GO button generates a GO request.
I then have an branching that is conditional
on Request=Expression 1
and in Expression 1 I put GO.
but this request never gets picked up.
Any suggestions as to what I may be doing wrong?
Thanks,
Erik

Jeff,
Your situation does not even remotely resemble the original problem posted in this thread. But that's okay.
I recommend that you take a look at some of the how-tos at: http://otn.oracle.com/products/database/htmldb/howtos/index.html, download and go through the HTML DB User Guide (http://download-west.oracle.com/docs/cd/B13789_01/appdev.101/b10992/toc.htm) , and most importantly, request a workspace on our hosted site (htmldb.oracle.com). Then if you have a particular problem with your application, we can look at it directly and offer help. It's much more efficient than using the forum to communicate all the details of how your application is built, what's not working, etc.
Scott

Similar Messages

  • My notes are not being passed from one device to another

    My notes are not being passed from my ipad to my ipad mini.

    There can be several different accounts in the notes app if you have email account that allow you to sync notes. I do not use iCloud email, but I have two IMAP email accounts that sync notes. I wanted to know if you were selecting the correct account on the Mini.
    When you launch the Notes app, you can tap The Account button in the upper left corner in order to switch between accounts. If you do not have another Notes account, try turning Notes off on the Mini in Settings>iCloud>Notes>Off. Restart your iPad, go back in and turn Notes on again.

  • Where clause is not being passed to the report

    I just upgraded my crystal reports from 10.0 to 11 R2. Reports were working fine in 10.0 version,
    Reports are called from vb.net (vissual studio 2005). When I was running this reports using crystal 10.0 and visual studio 2005, it was working fine, After the upgrade report runs but I am noticing that where clause is not being passed to the reports.It generates report as there is no where clause and produces multiple pages report.

    I believe you are encountering an issue documented in [this|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bip/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do] note.
    Ludek

  • Item Texts Is Not Being Created in BAPI_BILLINGDOC_CREATEMULTIPLE

    Hi.
    I am Using Bapi TO Create Invoice, Every thing is created successfully , but item text is not being created. Code is as below.
    DATA: s_vbap TYPE vbap,
                t_billing TYPE STANDARD TABLE OF bapivbrk WITH HEADER LINE,
                t_datain TYPE STANDARD TABLE OF bapikomfktx WITH HEADER LINE,
                t_return TYPE STANDARD TABLE OF bapireturn1 WITH HEADER LINE,
                t_success TYPE STANDARD TABLE OF bapivbrksuccess WITH HEADER LINE.
          SELECT SINGLE * FROM likp
          WHERE vbeln = v_del_doc_no.
          SELECT SINGLE * FROM lips WHERE
          vbeln = v_del_doc_no.
          t_billing-salesorg = likp-vkorg.
          t_billing-ref_doc = likp-vbeln.
          t_billing-ref_item = lips-posnr.
          t_billing-doc_number = v_del_doc_no.
          t_billing-itm_number = lips-posnr.
    *      SELECT SINGLE fkarv FROM tvak
    *            INTO  t_billing-ordbilltyp
    *            WHERE auart EQ zsoa_so_header-auart.
          SELECT SINGLE auart FROM vbak
                      INTO  t_billing-ordbilltyp
                      WHERE vbeln EQ order_num.
          t_billing-price_date = sy-datum.
          t_billing-ref_doc_ca = likp-vbtyp.
          t_billing-material = lips-matnr.
          t_billing-plant = lips-werks.
          APPEND t_billing.
          BREAK-POINT.
          CLEAR: t_datain.
         t_datain-ref_doc = v_del_doc_no.
          t_datain-ref_item = '000010'.
          t_datain-applobject = 'VBBP'.
          t_datain-text_id    = '0001'.
          t_datain-langu      = sy-langu.
          t_datain-format_col = '*'.
          t_datain-text_line  = 'FSG 2829'.
          APPEND t_datain.
          CALL FUNCTION 'BAPI_BILLINGDOC_CREATEMULTIPLE'
            TABLES
              billingdatain = t_billing
              textdatain    = t_datain
              return        = t_return
              success       = t_success.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
            EXPORTING
              wait = 'X'.
          LOOP AT t_return.
            itab_msg-type = t_return-type.
            itab_msg-msg =  t_return-message.
            APPEND itab_msg.
            CLEAR  itab_msg.
          ENDLOOP.
          READ TABLE t_success INDEX 1.
          p_i_bill_doc = t_success-bill_doc.
        ENDIF.
      ENDIF.
      CLEAR: itab_so_items, itab_so_items[] , delivery_no , itab_return[].
    So Text FSG 2829 is not being created in Item Text.....

    Hi Tahir,
    You can check with the below thread
    A question of BAPI_BILLINGDOC_CREATEMULTIPLE
    Regards,
    Pawan

  • Session state is not being passed properly to another page

    Hello Gurus,
    I have a multi-page application which authenticates using a simple authentication page 101. Right now I have a generic authentication scheme which always returns true (Session Verify Function= return true; I will integrate LDAP later.) It works fine. The app remembers the username from one page to the next (popup pages mainly).
    My issue is that, after exporting the application and re-importing into a new workspace, the user/session state is no longer being preserved from page to page. It prompts for a login every new page that is opened (the popups). This ruins the flow and functionality of the app.
    I've checked every setting (I think) and cannot find any differences between the two workspaces or apps. Any ideas why this would work in one workspace and not the other?
    TIA!
    Jonathan
    I should also indicate that the issue seems to be specifically in calling "callmypopup" function. For some reason it isn't passing the session id properly to the popup page, where it did fine in the other workspace. function text:
    function callMyPopup (sourceItem, popuppagenum, targetItem, appid, appsession) {
    //opens popup pg and passes value in sourceItem to targetItem
    //sourceitem=calling text box, targetItem=text box in popup page
    var minlength = 3;
    if (CheckLength(sourceItem, minlength))
    var formVal1 = document.getElementById(sourceItem).value.toUpperCase();
    var url;
    url = 'f?p=' + appid + ':' + popuppagenum + ':' + appsession + '::::' + targetItem + ':' + formVal1;
    w = open(url,"winLov","Scrollbars=1,resizable=1,width=800,height=600");
    if (w.opener == null)
    w.opener = self;
    w.focus();
    else {alert('Please enter at least ' + minlength + ' characters in your search.');}
    Edited by: austindurant on Sep 5, 2008 7:02 AM
    Edited by: austindurant on Sep 5, 2008 7:46 AM

    It looks like your session id is not correctly passed to your popup page. Try using:
    javascript:popUp2('f?p=&APP_ID.:1:&SESSION.:::::', 600, 700);
    instead, which does the same thing. Put your parameters for the page items there if required.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Item level changes not being updated.

    Hi,
    I am implementing BADI BBP_DOC_CHANGE_BADI, method BBP_PO_CHANGE.
    The problem that I am facing is that whenever, I change anything at the Item level, after the PO has been created, (say for eg item quantity), it is not being updated to the database. I also noticed one thing. When I click on the order button (after changing the item quantity) the import parameter of the BADI it_item of the is empty. Also I am checking in transaction BBP_PD, whether the update has happened.
    Thanks in advance
    Pete

    Hi Yann,
    Below is the code in the BADI BBP_DOC_CHANGE_BADI.
    method IF_EX_BBP_DOC_CHANGE_BADI~BBP_PO_CHANGE.
    CLASS cl_exithandler DEFINITION LOAD.
    DATA: LV_CUF_BADI TYPE REF TO IF_EX_BBP_CUF_BADI, "ZCL_IM_SRM_TANDC_BADI, ",
      LV_CUF_BADI_ACTIVE.
    DATA: IV_MODE   TYPE xfeld,
            IS_CUF_HEADER  TYPE BBP_PDS_HEADER,
            IS_GETDET_HEADER TYPE BBP_PDS_PO_HEADER_D,
            ES_UPD_HEADER TYPE BBP_PDS_PO_HEADER_D,
            IS_UPD_HEADER TYPE BBP_PDS_PO_HEADER_U,
            LV_CHANGE TYPE C,
            IS_ITEM TYPE BBP_PDS_ITEM ,
            IS_ACC TYPE BBP_PDS_ACC,
            IV_DOC_TYPE TYPE CRMD_ORDERADM_H-OBJECT_TYPE VALUE 'BUS2201',
            LV_INCLUDE_NAME TYPE DD03P-TABNAME VALUE 'INCL_EEW_PD_HEADER_SSF_PO',
            LT_DDIC TYPE DD03TTYP,
            LV_REPID TYPE SY-REPID,
            LV_DYNNR TYPE SY-DYNNR,
            I_HEADER LIKE IS_CUF_HEADER,
            GV_CLAUSE_ID(256) TYPE C,
            LV_FLAG(1),
            LV_IMP(1),
            LS_COUNTER(1),
            LS_COUNT(1),
            LS_NUMB(1),
            LS_GUID(32),
            LS_GUID_INIT(32),
            LS_GUID_BLANK(32) TYPE C VALUE SPACE,
            LS_NUMB_BLANK(1) TYPE C VALUE SPACE,
            LS_CNT(1),
            LV_UCOMM(4),
            EV_OKCODE TYPE SY-UCOMM.
    DATA: WA_PDHSC TYPE BBP_PDHSC,
    WA_PDHSC_SEL TYPE BBP_PDHSC,
    *wa_it_item type BBPT_PD_PO_ITEM_ICU,
    WA_IT_ITEM TYPE BBP_PDS_PO_ITEM_ICU,
    wa_et_item TYPE BBP_PO_ITEM_BADI,
    WA_HCF TYPE BBP_PDS_HCF_PO.
    LS_COUNTER = LS_COUNTER + 1.
    IF SY-UCOMM = 'SAVE'.
    IMPORT LV_TEXT TO LV_IMP FROM MEMORY ID 'TEXT'.
    LV_IMP = LV_IMP + 1.
    EXPORT LV_TEXT FROM LV_IMP TO MEMORY ID 'TEXT'.
    ENDIF.
    IF SY-UCOMM = 'CHEC' OR SY-UCOMM = 'ENT1' OR SY-UCOMM = 'SAVE' OR SY-UCOMM = 'LIST'.
      GET PARAMETER ID 'NUMB' FIELD LS_NUMB.
      IF LS_NUMB IS INITIAL.
        MOVE IS_HEADER-GUID TO LS_GUID_INIT.
        MOVE LS_COUNTER TO LS_COUNT.
        SET PARAMETER ID 'GUID' FIELD LS_GUID_INIT.
        SET PARAMETER ID 'NUMB' FIELD LS_COUNT.
      ENDIF.
    ENDIF.
    MOVE-CORRESPONDING IS_HEADER TO I_HEADER.
    IMPORT LV_TEXT TO LV_IMP FROM MEMORY ID 'TEXT'.
    IF SY-UCOMM = 'SAVE' AND LV_IMP = 2.
    CALL METHOD cl_exithandler=>get_instance
    EXPORTING
    exit_name = 'BBP_CUF_BADI'
    IMPORTING
    act_imp_existing = LV_CUF_BADI_ACTIVE
    CHANGING
    instance = LV_CUF_BADI.
    MOVE SY-UCOMM TO LV_UCOMM.
    LV_REPID = 'SAPLZSRM_CUST_SCREEN'.
    LV_DYNNR = '1001'.
    GET PARAMETER ID 'GUID' FIELD LS_GUID.
    IF LS_GUID NE IS_HEADER-GUID.
      I_HEADER-GUID = LS_GUID.
    ENDIF.
    CALL METHOD LV_CUF_BADI->PUT_DATA
    EXPORTING
              is_header             = I_HEADER
              is_item               = IS_ITEM
              is_acc                = IS_ACC
              iv_doc_type           = 'BUS2201'
              iv_include_name       = lv_include_name
              iv_mode               = IV_MODE
              it_dd03p              = lt_ddic
              iv_caller_dynnr       = '1000'
              iv_caller_repid       = SY-REPID
            IMPORTING
              ev_repid              = LV_REPID
              ev_dynnr              = LV_DYNNR.
    CALL METHOD LV_CUF_BADI->GET_DATA
        IMPORTING
          ev_okcode = EV_OKCODE
        CHANGING
          es_header = I_HEADER
          es_item   = IS_ITEM
          es_acc    = IS_ACC.
    ENDIF.
    WA_PDHSC-GUID = IS_HEADER-GUID.
    WA_PDHSC-ZZ_OPT_TERM_COND = I_HEADER-ZZ_OPT_TERM_COND.
    MOVE-CORRESPONDING IS_HEADER to ES_HEADER.
    MOVE IT_PARTNER TO ET_PARTNER.
    loop at it_item into wa_it_item.
    MOVE-CORRESPONDING wa_it_item to wa_et_item.
    append wa_et_item to et_item.
    endloop.
    MOVE IT_ACC TO ET_ACC.
    MOVE IT_HCF TO ET_HCF.
    MOVE IT_ICF TO ET_ICF.
    MOVE-CORRESPONDING WA_PDHSC TO WA_HCF.
    APPEND WA_HCF TO ET_HCF.
    IF LV_UCOMM = 'SAVE' AND LV_IMP = 2.
      SELECT * INTO WA_PDHSC_SEL FROM BBP_PDHSC WHERE GUID = IS_HEADER-GUID.
      ENDSELECT.
      IF SY-SUBRC = 0.
        UPDATE BBP_PDHSC SET ZZ_OPT_TERM_COND = WA_PDHSC-ZZ_OPT_TERM_COND WHERE GUID = IS_HEADER-GUID.
        SET PARAMETER ID 'GUID' FIELD SPACE.
        SET PARAMETER ID 'NUMB' FIELD SPACE.
        CLEAR LV_IMP.
        EXPORT LV_TEXT FROM LV_IMP TO MEMORY ID 'TEXT'.
      ELSE.
        INSERT INTO BBP_PDHSC VALUES WA_PDHSC.
        SET PARAMETER ID 'GUID' FIELD SPACE.
        SET PARAMETER ID 'NUMB' FIELD SPACE.
        CLEAR LV_IMP.
        EXPORT LV_TEXT FROM LV_IMP TO MEMORY ID 'TEXT'.
      ENDIF.
      COMMIT WORK.
    ENDIF.
    endmethod.
    Let me know if you need any clarifications.
    Thanks,
    Pete

  • Click event on a item renderer stops data being passed

    Hi
    I'm trying to create a item renderer based on a Canvas, this renderer is then used in a List component. I'm trying to get a click event fired when the user clicks on one of the items in the List. I'm also formatting the data being passed into the item renderer to do this I'm overriding the set data property like this:
    override public function set data(value:Object):void
    title.text = value.marketName;
    sellPrice.text = value.sellPrice;
    buyPrice.text = value.buyPrice;
    change.text = value.percentageChangeOnDay;
    var i:String = "-";
    if(String(value.percentageChangeOnDay).indexOf(i))
    change.styleName = "PositiveChange";
    else
    change.styleName = "NegativeChange";
    When I add a click event to my item renderer like this,
    <view:DisplayItem click="itemClickedEvent( event )" />
    I get a null reference error in my set data function. If I remove the click event the data is passed correctly, I've also found that if I use a rollOut event like this,
    <view:DisplayItem rollOut="rolledOverEvent( event )"/>
    the data is passed fine and the event works too, it seems that click events cause the data not to be passed.
    Why does having a click event cause this problem? How can I have a click event on the item renderer and still format my data?
    Cheers
    Stephen

    Found out that I can use the itemClick event of the List component I'm using my item renderer in, so really my item renderer does not need a click event.

  • New Leave Request not being shown in UWL

    Hi ,
    I have an issue in which when manager tries to approve a  leave request from UWL ,in the Pop up i,e in Request Waiting for approval" table the latest requests are shown but the same request are not being shown in the UWL. 
    I checked in SWI5 for the user and whatever leave requests are shown in popup are there for the user but the same is not updated in UWL.The user has refreshed the UWL but still it didnt show the new leave requests
    I dont want to reregister the webflowconnector in UWL configuration as we generally use reregister to register a new task in the UWL .
    Can someone please help me in resolving the issue.
    Thanks,
    Satish Kumar

    Hi Siddharth,
    Thanks for your reply.
    DYNPARAM parameter value as suggested in the note 1140959  is already maintained against the tasks  TS12300097 ,TS12300116.
    we have done Refresh from the UWL iview but still its not showing the latest Leave Requests but it is coming in the popup window when one of the existing leave requests in UWL is selected.
    Thanks,
    Satish Kumar

  • Trouble opening documents in client application. Credentials not being passed through.

    I have 2 different farms with the same problem which recently popped up. All files either open as read only (Office Documents) or users get an access denied error (PDF Files). Users are able to download the file, make changes and then upload it
    again. It seems like there is a problem passing credentials to Office and Adobe.
    The "Open With Explorer" option no longer works either which leads me to believe it is a problem with WebDAV.
    2 different environments experiencing the problem:
    Server 2012, SharePoint 2013 Server
    Server 2008 R2, SharePoint 2010 Foundation.
    Both are using windows authentication and Kerberos. The two farms are on different networks leading me to believe it is a browser or client issue. However, there is an additional 2013 foundation farm that is functioning correctly. I have compared local security
    policies, IIS settings, SharePoint web application settings and cannot find anything different between the functioning farm and the ones that are having the problem.
    The URL's are already in trusted sites.
    Databases are not in read only mode.
    WebClient Service is running on the client.
    I feel like I can rule out most of the client side issues because I have one farm that is working. I have also tried accessing the site from outside the network with my personal computer and it does not work there either. I am running out of ideas to try
    and fix this. Any ideas would be appreciated.
    Thank You!

    Hi ,
    For this issue, I'm trying to involve someone familiar with this topic to further look at it.
    Thanks,
    Eric
    Eric Tao
    TechNet Community Support

  • Accepting Calendar requests, not being sent.

    When accepting calendar requests send by people, the status in the appointment shows that I have accepted, great! However, in the mail app, the acceptance email remains in the drafts folder. Even after going into the drafts folder and re-sending this acceptance, it acts like it is being sent (as in, there are no errors), but it remains in the drafts, and there is nothing in the sent items.
    My concern is that the original sender of the request, is not getting the confirmation that I have accepted.
    Thank you in advance.
    Dan

    I'm having the same problem. I've seen this happen when accepting or declining the invite. These invites are coming to me from an exchange account. Any info would be appreciated.

  • Down Payment Request not being listed on F110

    Hi Guys
    I have completed down payment config for Sp GL indicator A and F.
    I have set up the recon accounts and allocated the required SP GL indicator to the paying company code.
    I have posted a down payment request.
    The open item credit is lying against the vendor and is due for payment.
    When I run the payment proposal it does not recognise the down payment request.
    Any suggestions?
    Thanks
    Dennis

    hi Clinton,
    Please note that when there is <b>Balance </b>of line itme showing then only u can run the F110 and u can clear the payment.
    IF u want u can also cleate the Payment trough the F-58 and this is also through the Check method.
    Steps in F110
    Go to F111
    Enter parameters (tab on the application bar)
    Enter next payment run ( some other later date), company code, pament method and your GL
    account (rent account)
    Then click on payment medium, give variant under rffous_c
    Go back and click onl dynamic selections enter your housebank details
    Enter aditional log, check line items display and give your other gl account there (payable
    account)
    Then save, you got the message parameters have been entered...
    then click on proposal.. you will get message ...then press enter
    then click on payment medium ... you will get message... then press enter....
    save....
    Then go to SE38 give program variant rffous_c and enter remaining required fields and then
    execute F8
    assign the points...if need full..
    Ranjit

  • Spool Request Not being Generated.

    HI,
    when ever a PO is delivered as O/P spool request is not generated.
    if we choose LP01 as printer Spool is being generated. if client printer or LOCAL printer is selected spool
    is not generated. is there any settings to be done for generating the SPOOL request?
    i need to get the O/P as well as i need to view the O/P in Spool also... please help me on this.
    Regards,
    Dinesh R

    Hi,
    go to SPAD-->check the spool setting generally for some outputs the if you check delete spool after output
    then the spool will be deleted once the print is taken.
    remove the setting ..
    or go to t-code SU01 -->Under spool control -->remove the check mark for Delete after Ouput.
    Regrds,
    Prabhudas

  • ECC - Central contract via SRM - condition Item button does not work

    Hi,
    After the creation of a central contract via SRM, I checked if all the condition types are taken over to contract in ECC.
    When selecting the item line and clicking on the condition button, it works correctly. After going back, to the main screen where the items are displayed I click once again on the condition button. Now it does not show anything, nothing happens.
    I have been looking for an OSS Note but couldn't find any. May you an OSS Note that I can use to solve this issue.
    Regards,
    Alexander

    hi Alexander,
    Do you get any error message.Can you check the konp and konh tables if entries exist
    regards,
    Lalita

  • Radio button variable not being emailed through php file.

    Dear Forum,
    I have a contact form in a AS 2.0 file that sends the form data just fine to my email. But it doesn't send the radio button selection variable.
    I am definately doing something wrong here.  Either with the setup of the radio buttons in flash, or with the php file.
    I was wondering if someone can tell me the error in my ways.
    I have included a screenshot of flash page, download link with all files, and the php code below.
    Any advice or help would be greatly appreciated.
    Thanks
    Jeff
    Boise, ID
    email: aaajeff<at>hotmail.com
    http://www.thevodkarevolution.com/email.zip
    http://www.thevodkarevolution.com/flashscreenshot.jpg
    Email.php file:
    <?php
    $sendTo = "[email protected]";
    $subject = "revolution - message";
    $headers = "From: " . $_POST["firstName"] ." ". $_POST["lastname"] . "<" .
    $_POST["email"] .">\r\n";
    $headers .= "Reply-To: " . $_POST["email"] . "\r\n";
    $headers .= "Return-path: " . $_POST["email"];
    $body = $_POST["name"] ." ". $_POST["email"] ." ". $_POST["message"] ." ".
    $_POST["industry"];
    mail($sendTo, $subject, $body, $headers);
    ?>

    I solve that problem, you also have to add the property
    radioButton1.setOnClick("common_timeoutSubmitForm(this.form, 'rbID');");
    and with this method will call the othe method :D
    Hope this is not too latte. :D

  • Solution to Button Action not being called in IE

    All,
    Thought I'd post a solution to a problem I had recently. I have seen variations on a theme elsewhere on the net.
    IDE: Java Studio Creator 2, Update 1.
    Problem: The button action associated with a button component on a jspx page is not called when using IE 6, but is called using M. Firefox 1.5.
    Background: The jspx page is a combination of one core jsp page and four jsp fragments (header, main nav bar, module nav bar, authorization code). Several components are present on the core jsp page (layout components, table, buttons), several on the header, main nav bar, module nav bar fragments (images, hyperlinks, text), JSTL and a lonesome form on the authorization fragment. You can see where I'm going....
    Solution: The problem was with the authorization fragment. The authorization fragment is meant to be dropped on pages that I want to protect from users without the authorized role, perhaps by these users trying to navigate to it by URL manipulation. I added some JSTL code to specifically look at the role authorization for the current session user. If not in that role, they are redirected to the home page. Navigation links are secured by similar authorization using the rendered property bound to session data. The form was the problem. Unfortunately, I didn't give much thought to the additional component I would need on the fragment. I had to add something so I picked a layout one. The IDE appears to require a component. To correct the problem, I simply set the rendered property to "false". IE 6 now works fine, M. Firefox 1.5 was always happy. Code example below...
    Code Pre:
    <?xml version="1.0" encoding="UTF-8"?>
    <div style="-rave-layout: grid; width: 400px; height: 200px" xmlns:c="http://java.sun.com/jstl/core" xmlns:f="http://java.sun.com/jsf/core"
        xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
        <c:if test="${SessionBean1.monitor==false}">
            <c:redirect url="/faces/Welcome.jsp"/>
        </c:if>
        <ui:form binding="#{MonCheck.form1}" id="form1" />
    </div>
    Code Post:
    <?xml version="1.0" encoding="UTF-8"?>
    <div style="-rave-layout: grid; width: 400px; height: 200px" xmlns:c="http://java.sun.com/jstl/core" xmlns:f="http://java.sun.com/jsf/core"
        xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
        <c:if test="${SessionBean1.monitor==false}">
            <c:redirect url="/faces/Welcome.jsp"/>
        </c:if>
        <ui:form binding="#{MonCheck.form1}" id="form1" rendered="false"/>
    </div>

    Hi there,
    Great to know you were able to fix your problem. Thanks for posting the solution as well, Im sure It'll help the community.
    Thanks
    K

Maybe you are looking for

  • Include in Script

    hi all, i have written a statement in the editor as follow: - IN    &TTXIT-TDTEXT& /:     INCLUDE &T166K-TXNAM& OBJECT &T166K-TDOBJECT& ID &T166K-TDID& LANGUAGE &EKKO-SPRAS& In the display for the above include, statement item testing is getting disp

  • Oracle froms Developer vs JDeveloper

    I have to develop a 3 tier application using O9iAS WE as application server and Oracle 9i as database to access all the details invloved in a big hospital through PCs and Pocket PCs (Wirelessly). I have to decide between Oracle forms developer and Or

  • How to make Eclipse as a Default Editor against Xcode?

    The boring way with Get Info > Open with > Change All  bla .. bla .. bla .. doesn't work actually. When i set these way for a type .php (for example), it always open with XCode next time. I've set File Association inside Eclipse already. But whatever

  • Email sending in WDJ

    HI

  • ITunes 5: What is Remember playback position?

    ITunes 5 has a new option in the Get Info/Options Tab "Remember Playback Position". Does anyone know what this is for? I suspect that it may have something to do with the default playback start position, but I'm not sure. If i don't want the song to