Panel Stretch Layout is not a valid child of PanelTabbed Component

With reference to the use case shown here(' [Table with Header Left,Footer Right|http://www.oracle.com/technetwork/testcontent/thlfrpattern-083015.html] ") :
I tried to embed the table inside the tabbed pane.
Here is the code for the same:
<f:view>
<af:document id="d1">
<af:form id="f1">
<af:panelSplitter id="ps1" orientation="vertical" splitterPosition="47">
<f:facet name="first"/>
<f:facet name="second">
<af:panelSplitter id="ps2" splitterPosition="144">
<f:facet name="second">
<af:panelTabbed id="pt1">
<!---- point of error here i get the error message ---------->
<af:showDetailItem text="Embedded in a Tab" id="sdi1"/>
<af:panelStretchLayout id="psl1" bottomHeight="31em" topHeight="62em" >
<f:facet name="bottom">
<af:panelStretchLayout id="psl2" endWidth="103em">
<f:facet name="end">
<af:panelGroupLayout id="pgl2" valign="middle" halign="end" layout="horizontal" >
<af:commandButton text="Save" id="cb1" accessKey="S"/>
<af:commandButton text="Cancel" id="cb2" accessKey="C"/>
<af:spacer width="6" height="31" id="s2"/>
</af:panelGroupLayout>
</f:facet>
</af:panelStretchLayout>
</f:facet>
<f:facet name="center">
<!-- here the table will be displayed i have omitted the code from here------->
</f:facet>
<f:facet name="top">
<af:panelGroupLayout id="pgl1" layout="horizontal">
<af:spacer width="6em" height="31em" id="s1"/>
<af:image source="/coffee.bmp" shortDesc="demo icon" id="i1"/>
<af:outputText value="List of Cool Employees" id="ot1"
inlineStyle="color:Black; font-weight:bold; font-size:large;"/>
</af:panelGroupLayout>
</f:facet>
</af:panelStretchLayout>
</af:panelTabbed>
</f:facet>
</af:panelSplitter>
</f:facet>
</af:panelSplitter>
</af:form>
</af:document>
</f:view>
Inside the PanelTabbed Component I cannot insert the PanelStretchLayout component.
The error it is displaying is that the Panel Stretch Layout is not a valid child of the PanelTabbed Component.
Please let me know how can I embed the 'Table with Header Left,Footer Right' in case of a PanelTabbed Component as shown in the use case in the documentation.

Hi,
Yes, children of af:panelTabbed must be af:showDetailItem - these represent each tab. You then add further components (e.g. your panelStretch, table etc.) as children to the af:showDetailItem.
Looking at your code, you have a showDetailItem but the panelStretch is not inside it. In fact nothing is inside the showDetailItem as the XML tag is self-closed (i.e. has a / at the end). You need to remove the / and add a closing tag (</af:showDetailItem) after your panelStretch.
Change your code to something like this:
<af:panelTabbed id="pt1">
  <af:showDetailItem text="Embedded in a Tab" id="sdi1">
    <af:panelStretchLayout id="psl1" bottomHeight="31em" topHeight="62em" >
    </af:panelStretchLayout>
  </af:showDetailItem>
</af:panelTabbed>Alternatively in the JDeveloper Structure view you could drag the panelStretch onto the showDetailItem so that it shows it as a child.
Kevin.

Similar Messages

  • Panel Stretch Layout - Center facet needs to be adjustable

    I am using JDev 11.1.1.3.0; building a public facing website.
    I have set up the basic page layout with a Panel Stretch layout with facets at the top, center abd bottom. The top is the header, the bottom is the footer, the center is the content.
    The payout needs to adjust based on how much content is contained within the center. Howeverm right now, that is not occuring. What is occuring is that if the content in the center exceeds the initial space, it creates a scoll bar.
    I have the PSL contain set for a specific width. If I do NOT specify a height, it simply collapses. If I specify a width, taht width remains fixed.
    Am I using the wrong container to define my variable content ?

    wait a second here. I am confused.
    When you have a normal web page, whether the content is contained within a <div> or a <table>, BOTH of those components strecth to allow the content flooding into them to show. If the content itself exceeds the height of a browser, the browser creates a scroll bar to allow the user to scroll up and down to vie wthe content. All very normal web protocol.
    Here, the "PSL" comonent seems to do neither. I created a test page. It has nothing more than a PSL on it, with a TON of text I added in a <verbatim> tag and I put that in the center facet of the PSL.
    Not only does the center facet NOT "push" the bottom facet down to reveal ALL of the content of the center div, (it just cuts right off mid-line) but if I remove the bottom facet, the broswer page does not stretch. the content simply runs off the page.
    Why?
    This should be MUCH easier than this. These ADF components are a joke. This is NOT web 2.0. What am I missing here? I want to design a simple web page where the center facet stretches top to bottom to grown with the content being added. This is my basic page layout:
    <markup>
    <af:panelStretchLayout startWidth="251px" id="pt_psl1"
    endWidth="0px" inlineStyle="width:1000px;">
    <f:facet name="start">
    <f:subview id="sv2">
    <jsp:include page="/fragments/home_side.jsff"/>
    </f:subview>
    </f:facet>
    <f:facet name="center">
    <af:panelStretchLayout id="pt_psl2" rendered="true"
    startWidth="0px" endWidth="0px"
    bottomHeight="0px" topHeight="99px">
    <f:facet name="center">
    <af:facetRef facetName="main"/>
    </f:facet>
    <f:facet name="top"><f:subview id="sv1">
    <jsp:include page="/fragments/head_top.jsff"/>
    </f:subview>
    </f:facet>
    <f:facet name="end"/>
    </af:panelStretchLayout>
    <!-- id="af_twocol_left_sidebar_stretched" -->
    </f:facet>
    </af:panelStretchLayout>
    <af:panelStretchLayout id="footer_psl" topHeight="30px"
    inlineStyle="width:1000px;height:30px;"
    bottomHeight="0px">
    <f:facet name="top">
    <f:subview id="sv3">
    <jsp:include page="/fragments/footer.jsff"/>
    </f:subview>
    </f:facet>
    </af:panelStretchLayout>
    </markup>
    the facetref named "main" is where I am dragging portlets. Some of those portlets contain a little data, some contain a lot. Either way, the page needs to strectj to accomodate the data.
    Can this even be DONE? If so, what am I missing?
    Pat

  • JDEV 11G R1 - Panel Stretch Layout

    Hi,
    I am using Jdev 11g R1. I would like to know how to set the size of the "Panel Stretch Layout" component to fit to the complete window.
    Whenever I add it it just render on some part of the window and I have to change the width and height to set the size accordingly. But thats really weird.
    Thanks,
    Kamleshwar

    have you tried inlineStyle="width:100%;height:100%;" ?

  • Panel Stretch Layout

    Hi. I'm a begginer in ADF's and Jdeveloper and need some help.
    If i have a Panel Stretch Layout and in the left facet i create a static menu with a pannel accordion and a panel list with some commandlinks, how can i show some info in the center facet qhen i click those commandlinks?
    in my faces-config.xml i have a index.jspx and a secondary page page1.jspx joined by a gotopage1 JSF navigation case.
    What i need is to click in the command link placed in the index.jspx page on the left facet of the panel strech layout and the result of clicking on it draws the page1.jspx in the center facet of the panel stretch layout.
    Sorry about my english, hope someone can help me.
    Thanks!

    sycko,
    There are a number of ways achieve what you describe. One method would be to set the rendered attribute on the panel you wish to render to "true" based on the selection in the left menu. In addition, you will need to set a partialPageTrigger on each panel. The trigger should identify the id of the link that should display the corresponding panel. The is probably the simplest approach.
    --RiC                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Partial Trigger is not working with Panel Group Layout using ADF 11g.

    Friends,
    I have a requirment , Based on the <af:selectBooleanCheckbox> value I have to render <af:panelGroupLayout> dynamically. If the check box is checked then I have to display panel group layout otherwise not. The problem what I am facing here is Partial Trigger is not working, If I Un check the boolean box and refresh the page then I see it is working. If I don't refresh the page I am not seeing this is working as expected.
    Below is the snippet
    <af:selectBooleanCheckbox value="#{bindings.ChkBoolean.inputValue}"
    shortDesc="#{bindings.OtherOptChk.hints.tooltip}"
    id="OtherOpt" immediate="true" autoSubmit="true"
    />
    <af:panelGroupLayout id="pgl11" partialTriggers="ChkBoolean"
    rendered="#{bindings.ChkBoolean.inputValue}"">
    Am I doing anything wrong here
    Thanks in Advance

    Hi,
    I started to document common pitfalls like this. The problem has been reported last month too and is documented in here: http://www.oracle.com/technetwork/developer-tools/adf/learnmore/oct2010-otn-harvest-183714.pdf
    Frank

  • Possible Bug: Rows & Column values are not honoured in panel form layout

                      <af:panelFormLayout id="pfl10"
                                                                                    binding="#{backingBeanScope.backing_AssemblyStarts.pfl10}"
                                                                                    rows="1" maxColumns="4"
                                                                                    fieldWidth="66%" labelWidth="34%">
    Even after Running, saving, deploying it shows the same 4 rows...
    I wanted to include image as well... how to insert image in the question ? I drag and drop image on this editor, but it did not allow me to submit the question.
    Here is the image I uploaded on google drive...
    https://docs.google.com/file/d/0B7Po4hB-u4BgS3ExWG5YdjRIS1E/edit?usp=sharing
    Thanks
    Rahul

    It is confirmed now...... I checked that this "Panel Form Layout" does not work on popup. It does not change rows and columns at all..... !!!!
    It works fine on the normal page... but not on the popup.
    Is it Bug or it is shortcoming of 'panel form layout' ???
    Anybody listening ??  anybody faced this earlier ???
    Thanks
    Rahul

  • I have Win7Pro64, tried to Un-Install Firefox control panel, no luck, tried running helper.exe from Uninstall folder and it says "Not a Valid Win-32 Application" What gives?? Just want to update to 3.6.4 and that didn't work either so I'm trying to remove

    Running Win7Pro64. Tried to update to 3.6.4 and it failed. It said to download the whole program so I did. Tried to install and says that the "License File" is missing. SO I go to un-install 3.6.3 myslef with Control Panel. All that did was remove Firefox as a listed program in control panel, all of it is still there in Explorer and it runs fine. So I go to use Helper.Exe under the Uninstall folder of Mozilla Firefox and when I click that, it says "Not a Valid Win-32 Application" What's up with that?? All I want to do is remove 3.6.3 so that I can clean install 3.6.4. I tried installing 3.6.4 two different ways with failures both times. I tried to remove 3.6.3 using two different ways, and that also failed both times.
    == This happened ==
    Just once or twice
    == I tried updating to 3.6.4. It failed both with the update and the full download, so tried to un-install 3.6.3 in control panel, then helper.exe with no luck.

    You don't want to update to 3.6.4, trust me. Stay with 3.6.3. If you need to download it again you can find it here:
    http://releases.mozilla.org/pub/mozilla.org/firefox/releases/3.6.3/win32/en-US/

  • I am trying to download icloud control panel via icloudsetup.exe to windows Toshiba laptop and get a message" \icloudsetup.exe is not a valid Win32 application. Can anyone help? I am new to Apple stuff.

    Need help for icloud photo stream, have activated ps on iphone 4 and set up icloud back up for email, contacts, iwork, and find my ihone. Need to find photos that we thought were being saved/shared as well but evidently not. Found on another search that I may need the icloud control panel so tried to download it but when try to install i get, C:\Users\Downloads\icloudsetup.exe is not a valid Win32 application. I am using a Toshiba laptop with windows 7, which the system requirements are met. I am new to Apple stuff, so any and all help would be greatly appreciated.

    It suggests the installer is getting damaged during the download.
    I'd first try downloading an installer from the Apple website using a different web browser:
    http://www.apple.com/quicktime/download/
    If you use Firefox instead of IE for the download (or vice versa), do you get a working installer?

  • Could not apply background image to the panel group layout in spaces application

    I tried to apply background image to the panel group layout with css class and also with inline style such as below
    background-image:url('/content/conn/intra-dot-content/path/mywebcenter/lever/backgroundmain.jpg');background-position:center; background-repeat:repeat-y;
    The background image does not show up. but it work with panel border layout. Is there any work around for the issue

    You can try styleclass, which is always better choice than inlinestyle
    page:
    <af:panelGroupLayout id="pgl30"
                                       styleClass="testPGbackground">
                    <af:outputText value="outputText5" id="ot8"/>
                  </af:panelGroupLayout>
    css:
    .testPGbackground {
        background-image:url('/images/unselectedTabStart.png');
    It works for me.
    I tried with inline style also and it worked.
    bac
    <af:panelGroupLayout id="pgl30"
                                       inlineStyle="background-image: url(/incview/images/unselectedTabStart.png);">
                    <af:outputText value="outputText5" id="ot8"/>
                  </af:panelGroupLayout>
    NOTE: You need to mention image url with context-name here, which could be a way of hard coding context name and in future it could be very difficult to change contextname. As recommended styleclass is better solution.
    Thanks
    Sanjeev

  • How to right align a read only numeric field in a panel form layout

    Hi, does anyone know how to right align a read only numeric field in a panel form layout? I am using: Style Class = AFFieldNumberMarker, but it only seems to work if the field is disabled. Disabling the field gives it a difference appearance that does not look right on our forms. These are calculated fields, which cannot be modified, so read only is necessary.
    I have looked online for some answers, and it seems that others are having similar issues.
    I have tried different combinations for the properties, but so far I cannot get it to work.
    Thanks
    Judy
    I am using JDEV 11.1.1.5

    Sorry for the delay in my response. Here is the code
    <af:inputText value="#{bindings.TotalAirlineCostEst.inputValue}"
    label="#{bindings.TotalAirlineCostEst.hints.label}"
    required="#{bindings.TotalAirlineCostEst.hints.mandatory}"
    columns="#{bindings.TotalAirlineCostEst.hints.displayWidth}"
    maximumLength="#{bindings.TotalAirlineCostEst.hints.precision}"
    shortDesc="#{bindings.TotalAirlineCostEst.hints.tooltip}"
    id="it20" readOnly="false"
    disabled="true"
    styleClass="AFFieldNumberMarker">
    <f:validator binding="#{bindings.TotalAirlineCostEst.validator}"/>
    <af:convertNumber groupingUsed="true"
    pattern="#{bindings.TotalAirlineCostEst.format}"
    type="number"
    maxFractionDigits="0"/>
    </af:inputText>
    thank you,
    Judy

  • ERROR java.sql.SQLException: ORA-01843: not a valid month

    This page is working fine for English Language. Once we change preference Lanuage to "French Candian" We are getting this issue.
    This is little urgent on this.
    ERROR
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: select
    ppf.person_id,
    ppf.employee_number,
    god.organization_id,
    ppf.full_name employee_name,
    (select full_name from per_people_x where person_id = paf.supervisor_ID ) manager_name,
    (select full_name from per_people_x where person_id = haou.attribute4 ) hr_name,
    --hr_general.decode_person_name(haou.attribute4 ) hr_name,
    haou.name organization_name,
    GEM.termination_date actual_termination_date,
    (select meaning from hr_lookups where lookup_type = 'LEAV_REAS' and lookup_code = GEM.Leaving_reason and enabled_flag = 'Y') leaving_reason,
    god.sub_business sub_business,
    god.business_segment business_segment,
    god.industry_focus_group industry_focus_group,
    pgd.segment2 corporate_Band,
    tl.territory_short_name country
    from per_people_f ppf,
    per_assignments_f paf,
    hr_all_organization_units haou,
    per_grades pg,
    per_grade_definitions pgd,
    per_addresses pa,
    fnd_territories_tl tl,
    XXsm_org_dtl god,
    XX_EXIT_TRANSACTION GET,
    XX_EXIT_MANAGER GEM
    where 1=1
    and paf.person_id=:1
    and paf.primary_flag='Y'
    and ppf.person_id = paf.person_id
    and paf.organization_id=haou.organization_id
    and paf.organization_id = god.organization_id
    and trunc(sysdate) between trunc(paf.effective_start_date) and trunc(paf.effective_end_date)
    and trunc(sysdate) between trunc(ppf.effective_start_date) and trunc(ppf.effective_end_date)
    and ppf.person_id=GET.employee_id(+)
    and GET.Transaction_id = GEM.transaction_id
    and paf.grade_id=pg.grade_id(+)
    and pg.grade_definition_id=pgd.grade_definition_id(+)
    and ppf.person_id=pa.person_id(+)
    and pa.primary_flag(+)='Y'
    and pa.country=tl.territory_code(+)
    AND tl.language = USERENV('LANG')
    AND trunc(sysdate) between trunc(pa.Date_from) and trunc(nvl(pa.Date_to, TO_DATE ('31-DEC-4712', 'DD-MON-YYYY')))
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:865)
         at oracle.apps.fnd.framework.OAException.wrapperInvocationTargetException(OAException.java:988)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:211)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:153)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:750)
         at ge.oracle.apps.per.selfservice.eexit.employee.webui.GEExitEmployeeCO.processRequest(GEExitEmployeeCO.java:112)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:587)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1136)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:959)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:926)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:646)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:959)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:926)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:646)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2348)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1747)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:511)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:432)
         at oa_html._OA._jspService(_OA.java:84)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:619)
    ## Detail 0 ##
    java.sql.SQLException: ORA-01843: not a valid month
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:590)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1973)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1119)
         at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2566)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2963)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:658)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:584)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:631)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:518)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3375)
         at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(OAJboViewObjectImpl.java:828)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4507)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:574)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:544)
         at oracle.jbo.server.ViewRowSetImpl.executeDetailQuery(ViewRowSetImpl.java:619)
         at oracle.jbo.server.ViewObjectImpl.executeDetailQuery(ViewObjectImpl.java:3339)
         at oracle.jbo.server.ViewObjectImpl

    Are you hard coding anything in code or VO ?
    AND trunc(sysdate) between trunc(pa.Date_from) and trunc(nvl(pa.Date_to, TO_DATE ('31-DEC-4712', 'DD-MON-YYYY')))Try some modification in the above nvl code and test.
    And refer:
    http://apps2fusion.com/apps/apps/430-string-to-date
    -Anand

  • INSTALLATION FAILED( ERROR: CreateProcess failed  ==   %1 is not a valid Wi

    Whats wrong here? I am unable install jScreator on my XP professional SP2.!!
    Below is the log file. System requirements are met but I get this error !!
    file type: 0
    file id: 0
    length: 178
    offset: 319579
    file name: instructions.txt
    file type: 5
    file id: 1
    length: 1009
    offset: 319757
    file name: Verify.jar
    file type: 2
    file id: 2
    length: 729
    offset: 320766
    file name: launch.txt
    file type: 4
    file id: 3
    length: 16766119
    offset: 321495
    file name: Windows-Sun-1.4.2_04.exe
    file type: 6
    file id: 4
    length: 249333158
    offset: 17087614
    file name: windows.jar
    ERROR: CreateProcess failed ==> %1 is not a valid Win32 application.

    Cause
    Windows ENV variable TEMP may result in this error.
    Solution
    To Correct this value: Start -> Settings -> Control Panel -> System -> Advanced -> Environmental Variables
    Set the value for TEMP to a real directory on the machine: C:\temp as an example.
    This corrected the behavior.

  • Adobe AIR Launchpad - Not a valid archived project

    I am trying to import the Adobe AIR Launchpad application into Adobe Flash Builder and receive "Not a valid archived project" error.
    I am using;
    Adobe AIR Launchpad      version   airlaunchpad_p8_3-0-1_081911
    Adobe Flash Builder          version   4.6 (Flex 4.6.0)
    Adobe Flash Player           version   11.4.402.287
    Adobe AIR Runtime          version   3.5.0.600

    You are talking about browser based AIR help and you are saying that in RoboHelp 9 you are not seeing AIR as an option to create the layout?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Layout is not defaulted in ESS My Expenses

    Hi,
    I have gone to transaction POWL_QUERY to maintain the layout variant
    for FITV_POWL_TRIPS_EXP. After I saved the variant to be the default
    variant for all, I logged into ESS and try to access the query.
    However, the newly created variant layout is not defaulted.
    I have also executed POWL_D01 to refresh the cache.
    Anyone encountered this issue before or tried changing the default variant?
    Thanks.

    Hello folks,
    I hope you don't mind me jumping in to rant a bit, since this thread concerns two of my favourit pet hates, the Admin Personalization Layer and POWL
    I am not suprised it doesnt work and not sure any OSS note will solve the problem... I think it is because POWLs for FI-TV are "strangely" developed
    This, exactly.
    1/ Launch your fitv_powl_trips web dynpro application from se80
    2/ Add &sap-config-mode=X at the end of the URL path and type enter.
    3/ Use option buton to create your ivew as you did it in the layout (store it in a customizing TR).
    4/ Launch POWL_D01 and it should be working now.
    @ Matthieu: I object. IMO the approach Yvonne described in her opening post is the cleaner one. Doesn't matter much though, since the technical outcome of Yvonne's approach and yours is identical, only the 'functional point of entry' differs. However, implicit WDA Personalization that is supposed to be valid system wide and for all users should never never never be issued via the Admin Personalization Layer, i.e. &sap-config-mode=X, because:
    the Layer is overall superfluous and unstable
    it is a User Specific customiziation, even if the user scope is "A"
    Transporting Admin Personalization is a mess and scarcely works stable
    @ Yvonne: What you should do now to clean things up is:
    1. Delete your Admin Personalizations you've created via WDA WD_ANALYZE_CONFIG_USER and Transport this Deletion (and hope the Transport works, otherwise delete the Personalizations on each subsequent system manually)
    2. Repeat what you wrote you did in your opening post, i.e. TA POWL_QUERY, Button Layout-Variant, but then before doing anything, in the URL change the parameter from "&sap-config-mode=X" to "&sap-config-mode=config". You'll notice that orange-like banner above the application changing from "Customizing-Mode" to "Configuration-Mode". Now repeat doing your adjustments, save them, make a Transport, enter the Layout IDs in the query (Note: enter them via the F4-help, not manually) and finally run POWL_D01.
    The outcome is an in-built component configuration that can be transported cleanly, isn't unstable and even works pretty well with the horrible POWL-technology. To verify that you've created configurations of the correct type, check WD_ANALYZE_CONFIG_COMP, your configurations should be here. Subsequently check that the entries are NOT in WD_ANALYZE_CONFIG_USER, if they are, things went wrong again.
    Hope that helps
    Cheers, Lukas

  • TREX 7.0 Httpserver %1 is not a valid Win32 application

    Hi all Gurus.
    After installation I try to access the URL http://ifprxxxx:30205/TREXHttpServer/TrexIsapiExt.dll (this is a copy to clip board from TREXAdmin  Landscape configuration   Service).
    What I have tried so far
    <BR>
    1) First checked all permissions for user required to access the website u2013 as per installation docs and forum post at SDN.
    <BR>
    2) Added the ServiceSAP<SID> user to the local administrators groups u2013 now able to restart the IIS from TREXadmin application.
    <BR>
    3) (Not required) Added  Local group Everyone to security/permissions to the folder (TREX root folder) selected inherit all parent permissions and replace all child permissions from this folder.
    <BR>
    4) Create a local user (member of Everyone ) and replaced default internet user on the TREX website properties dir security u2013 user
    <BR>
    5) Found a SAP note (sapnote_0000684106 Microsoft runtime DLLs ) that describes missing DLLs on the 64 bit machine so I executed R3DLLinst.exe u2013 this adds all required dlls for TREX. u2013 still not working
    <BR>
    6) Found SAP Note (sapnote_0001031193 TREX 7.0 Web Server not working on 64bit ) implemented still not solution.
    <BR>
    7) Restarted all applications and still not working.After changing the browser response type u2013 (not friendly display) I get this response to the URL above
    u201C%1 is not a valid Win32 application.u201D This is also visible in the TREX trace files.
    <BR><BR><BR>
    Trc files
    1)TREXNameserverAlert
    5376] 2009-06-17 11:14:45.829     e     NameServer     TREXNameServer.cpp(00833) :     Wrong response from http server: http://ifpxxxx:30205/TREXHttpServer/TrexIsapiExt.dll, status:500, response: <html><head><title>Error</title></head><body>%1 is not a valid Win32 application.
    <BR><BR>
    1)TREXIndexserverAlert
    3940] 2009-06-16 22:55:45.292     e     TNS     TNSClient.cpp(00599) :     sendRequest to ifprxxx:30201 failed with NetException. data=[setinactive](S)client_id=ifpr0xxxx:30203/4312/908|...
    [4172] 2009-06-17 10:16:03.862     e     TrexNet     Channel.cpp(00239) :     ERROR: reading from channel 2 <10.4xxxxx:30201> failed with rc=14 (connection broken)
    [4172] 2009-06-17 10:16:03.862     e     TrexNetBuffe     BufferedIO.cpp(01101) :     channel 2 from <10.41.xxxxx:30201>: read from channel failed; resetting buffer
    [4172] 2009-06-17 10:16:03.877     e     TNS     TNSClient.cpp(00599) :     sendRequest to ifprxxx:30201 failed with NetException. data=[setstopping](S)client_id=ifpxxxx:30203/4176/908|...
    [4172] 2009-06-17 10:16:03.877     e     TNS     TNSClient.cpp(00493) :     process is terminating -> aborting nameserver retries
    [4172] 2009-06-17 10:16:04.846     e     TrexNet     EndPoint.cpp(00243) :     ERROR: failed to open channel 10.41xxxxxx:30201! reason: connection refused
    [4172] 2009-06-17 10:16:04.846     e     TNS     TNSClient.cpp(00599) :     sendRequest to ifprxxx:30201 failed with NetException. data=[setinactive](S)client_id=ifpxxxxx:30203/4176/908|...
    [4172] 2009-06-17 10:16:03.862     e     TrexNet     Channel.cpp(00239) :     ERROR: reading from channel 2 <10.xxx:30201> failed with rc=14 (connection broken)
    [4172] 2009-06-17 10:16:03.862     e     TrexNetBuffe     BufferedIO.cpp(01101) :     channel 2 from <10.xxxx:30201>: read from channel failed; resetting buffer
    [Thr 4172] Wed Jun 17 10:16:03 2009
    [Thr 4172] *** WARNING => NiHdlGetStatus: invalid hdl -1 [nixx.c       2356]
    [4172] 2009-06-17 10:16:03.877     e     TNS     TNSClient.cpp(00599) :     sendRequest to ifpxxx:30201 failed with NetException. data=[setstopping](S)client_id=ifprxxxx:30203/4176/908|...
    [4172] 2009-06-17 10:16:03.877     e     TNS     TNSClient.cpp(00493) :     process is terminating -> aborting nameserver retries
    [Thr 4172] Wed Jun 17 10:16:04 2009
    [Thr 4172] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2823]
    [Thr 4172] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 2 / sock 720
        (SI_ECONN_REFUSE/10061; I4; ST; 10.xxxx:30201) [nixxi.cpp    2823]
    [4172] 2009-06-17 10:16:04.846     e     TrexNet     EndPoint.cpp(00243) :     ERROR: failed to open channel 10.xxxx:30201! reason: connection refused
    [4172] 2009-06-17 10:16:04.846     e     TNS     TNSClient.cpp(00599) :     sendRequest to ifpxxx:30201 failed with NetException. data=[setinactive](S)client_id=ifpr0xxxx:30203/4176/908|...
    <BR><BR>
    I suspect it might have something to do with DLLu2019s and 64 bit machine but cant think of anything to do.
    <BR><BR>
    If anyone has some tips / help it would be very appreciated.
    Thanks in advance
    Edited by: Juan Janse on Jun 17, 2009 11:42 AM

    Thanks for the reply, i did have a look at the link and did not help. Just also worth mentioning is that on the system drive for a 64 bit you will find the following folders.
    C:\Program Files (x86)
    and
    C:\Program Files
    i have also seen a mention about a folder containing a space " " in the folder name can cause this but it only relates to the folder as defined for a virtual directory ie C:\myWeps\app 1  where "app 1" has a space. The recommendation is that you should not have any spaces. ie
    E:\usr\sap\TXP\TRX02\exe\WebServer   as defined for TREX.
    I have this installed also on a 32 bit with no issue.
    Anyone else with some tips are well come

Maybe you are looking for

  • While playing a game, how do you turn the volume down???

    Sorry for the newbie question.  Thanks for the help!

  • DVD's burnt on my Mac are "blank" in windows xp

    I have a number of data dvd's which were created on my friends mac book pro's. They play fine on my imac, but I can't open them on my husbands dell laptop (windows xp), it says the disc is empty and asks if I want to format it. I have tried copying t

  • Modifying Approval Maintenance Report

    Hello, We have a requirement to add an extra field in the Approval Maintenance Report. Can you please guide us how to proceed with the same. From where we can get the code of this standard report. Is it possible to chnage the original code of the rep

  • IPhone email WAV file attachment

    Hello. My company uses a system for voicemail, that will send an email to me with an attached WAV file with the voicemail in it. When I check the email and then select the WAV file attachment to play, it pops up with an error that says "this movie co

  • Get  doc num and carcode in invoice

    Dear all. I want to get carname(cliente) and docnum when save invoice but I have error with the code: Dim text As SAPbouiCOM.EditText             strNrInvoice = oFormInvoice.Items.Item(8).Specific.value or for carcode: strCarcode = oFormInvoice.Items