How to show three showdetailheaders of first level in a page

Hi
I am using JDeveloper version 11.1.1.5.0.
I have to show three af:showDetailHeader one after another in one page.
All the showdetail headers have to be of the first level, i.e. I cannot keep all the three showDetailHeaders inside another showDetailHeader.
I tried using a panelStrechlayout inside which I will embed all the three showDetailsHeader, but adf is not allowing that.
Also if I use one showDetailHeader each in top, bottom, center facet of panelStrechlayout, i am facing alignment issues.
Any help on how to do this.
Thanks
Anup

This component cannot be stretched by a parent layout component that stretches its children, panelStretchLayout.

Similar Messages

  • How to show modal window without popup in a web page using javascript

    Hi,
    How to show modal window without popup in a web page using javascript, means when the modalwindow is opened it should not ask for popup blocker alert......
    pls help me.....

    Thanx for ur reply,
    Actually the senario is when i click on a button, another jsp page should be displayed in a modal window without popup, but the functions alert() and confirm() will not accept the url path of the another jsp page...

  • How to show all the search result in a report page

    I have a report page which the user can enter first or last name to find the matched employees. The current report only show maximum of 15 matched results. How to show all of them in one page if more than 15.
    Also, the employee name on the report is a link, how to make the link to be conditional. ( I mean it can be a link or not based on another column)
    Thanks.
    Jen

    Hi, you can change the number of rows on the report definition page (15 is the default value)- that's also where you can change pagination and max. number of rows etc.
    About the second question - you will have to use Case or Decode in your report query and have the value as link or not based on the condition column, something like:
    Select Decode(condition_column, 'link_value', '<a href="f?p=YOUR_APP:PAGE_TO_LINK_TO:'  || :SESSION || ':::::">display_column</a>' , display_column) From .....
    Hope this helps.

  • How to show description instead of code on a view page?

    I'm new so this is probably basic, but I didn't find an answer when I tried searching.
    I'm using JDeveloper 10.1.3.3, ADF Business Components, ADF Faces.
    In my application, I have both view pages and edit pages (some users will only have read access). Many of the fields will be populated from LOV and the code will be stored in the database.
    The edit page is no problem - I have read-only VO for the LOV and I use af:selectOneChoice and display the description. But how do I display the same description on the view page? By defaiult the code is displayed when the entity based VO is dropped as a ADF Read Only Form.
    I assume I need to do something in the BC, but I'm not sure how to get values from read-only VO into my entity based VO. Or do I have to make all my VO for LOVs entity based even though they will never be edited? Or is there something I can do in the view to get the description instead of the code?
    Thank you for your help.
    Karen Helt
    Sr IT Programmer/Analysit
    Hach Company

    So if I understand you properly, I need to create EOs for all my list of values (which are based on views of Oracle apps tables) and base my VO on those EOs. And then I setup associations between these EOs and the Item EO. Then I include the these EOs in my Items VO and add the description attributes to my list of attributes. I had done this for the list of users, but for the views of Oracle I had just created read only VO. Sounds like that won't work if I want to display the description. I know what to do - I guess I was hoping there was a way to use the read only VO.
    Thanks
    Karen

  • How to Show Different set of  Blob images in every page

    Hi i am using Crystal Report Server XI RAS Embedded Edition to built Dynamic Reports.
    Now i  have two datasets
    1. Main query with imageid field
    2. list of image blobs.
    this two datasets are linked with imageid  field and binded to ReportClientDocument.
    i have to show different image fields in every page of the report.  this images are differ in width and heights.
    i am able to show a single constant image field object from blob database field.
    but i could not able to find the solution to show different set of multiple images in different pages of the report.
    is there any formulas can be written or kindy give me a solution to achieve this.
    Regards,
    Padmanaban V
    Edited by: Padmanaban Viswanathan on Mar 15, 2010 11:59 AM

    See RAS samples [here|https://wiki.sdn.sap.com/wiki/display/BOBJ/NETRASSDK+Samples]. Look for "NET-CS2003_RAS-Managed_BE115_Add_Image" or "NET-VB2003_RAS-Managed_BE115_Add_Image-From-File".
    Ludek

  • How to show field at item detail level (purchase requisition layout)?

    Hi, gurus!
    We're trying to get field "processor" shown at item detail level (release strategy tab) when we create, modify or display
    a purchase requisition.
    We click on right button, select "Show" and get column name "Processor" in displayed columns and save layout as default,
    but that field is not visible when entering again transactions ME51N, ME52N or ME53N.
    Could anyone help us?
    Thanks in advance
    Regards,
    J Madariaga

    J,
    This field on the release strategy tab is linked to workflow.  You can maintain the "Processor" data by each release group and release code in the IMG menu path:  Materials Management -> Purchasing -> Purchase Requisition -> Release Procedure -> Set Up Procedure with Classification.'
    Here you enter a processor's entry under Workflow:
    Grp: Release group
    Code: Release code
    Plant: Plant
    Agent type: US is user
    Agent ID: UserID
    Once this is maintained, you return to the Release Codes section and enter a "1" by each Grp/Code where a workflow entry was created in table T16FW.  When you look at the release tab in the PR that has the same code as the one you created in the configuration, you will see the Workflow username (First and Last Name) in the "Processor" field.
    Hope this helps.

  • How to show three more than one row as single row

    for example there are two tables employee and department.
    emp id dept_id
    101 1
    101 2
    101 3
    Due to different dept id i am getting three rows for same emp id. Is there anwyay i can show one row and all three departments into one line.
    output like this 101 1/2/3
    Please help!
    Thanks

    864470 wrote:
    However, I am not getting any distinct values for that.Are you sying there are multiple records for same emp_id, dept_id combination? If so:
    SQL> with t as (
      2             select 101 emp_id,1  dept_id from dual union all
      3             select 101,2 from dual union all
      4             select 101,2 from dual union all
      5             select 101,3 from dual
      6            )
      7  -- end of on-the-fly data sample
      8  select  emp_id,
      9          rtrim(xmlagg(xmlelement(d,dept_id,'/').extract('//text()') order by dept_id),'/') dept_list
    10    from  t
    11    group by emp_id
    12  /
        EMP_ID DEPT_LIST
           101 1/2/2/3
    SQL> with t as (
      2             select 101 emp_id,1  dept_id from dual union all
      3             select 101,2 from dual union all
      4             select 101,2 from dual union all
      5             select 101,3 from dual
      6            )
      7  -- end of on-the-fly data sample
      8  select  emp_id,
      9          rtrim(xmlagg(xmlelement(d,dept_id,'/').extract('//text()') order by dept_id),'/') dept_list
    10    from  (
    11           select  emp_id,
    12                   dept_id
    13             from  t
    14             group by emp_id,
    15                      dept_id
    16          )
    17    group by emp_id
    18  /
        EMP_ID DEPT_LIST
           101 1/2/3
    SQL> SY.

  • How to show all records by default on search result page?

    Hi
    I am trying to make a search page that would execute the search in the database based on one or more field constraints.
    (Using MySQL,PHP)
    I have  2 columns in the database "vm_ip" (primary key) <IP address>, "Operating_System" <Any, Windows, Solaris, AIX>
    need to search vm_ip based on other two fields.
    PROBLEM: Need to show all the record when I select "Any" in the Operating_System  drop down menu.
    <p>Operating System:
        <select name="os_select" id="os_select">
        <?php
    $os_count=1;
    foreach($os_type as $value) //(os_type is array with possible values of OS)
    echo "<option value=".$os_count.">".$value."</option>";
        $os_count++;
    ?>
          <option value=" " selected="selected">Any</option>
        </select>
      </p>
    this code POSts  NULL value to the search page.
    Below code is of recordset on  search page
    $varOS_virtual = "Operating_System"; // recordset variable set to same as column name (default value)
    if (isset($_POST['os_select'])) //this should not be true
      $varOS_virtual = $_POST['os_select'];
    mysql_select_db($database_xyz_db, $xyz_db);
    $query_virtual = sprintf("SELECT table.VM_IP FROM table
    WHERE table.Operating_System=%s", GetSQLValueString($varOS_virtual, "int"));
    $virtual = mysql_query($query_virtual, $xyz_db) or die(mysql_error());
    $row_virtual = mysql_fetch_assoc($virtual);
    $totalRows_virtual = mysql_num_rows($virtual);
    I expected the 'os_select' field to be null and default value of Operating_System to be "Operating_System" so that the Query shows all records.
    But instead the value being passed in the Query is "0". and no records are shown.
    What can I do to show all records?
    As probably obvious I am new to php/MySQL so all the help is most welcomed .
    Thanks

    Hi
    Thanks for the prompt reply but this does not solve my problem.
    First thing I appologise for giving you incorrect info. Actually I have many more constraints on the search apart from OS.
    Didn't think I would get single constraint specific ans.
    Here is what all i tried and problems I faced:
    1. I cannot use seperate queries cause I have around 7-8 other constraints on the search.
    2. I cannot play around with the Record set code. For some reason even if I mess with it a little bit Dreamweaver stops recognising the recordset. for eg i tried the below code:
    $query_virtual = sprintf("SELECT table.VM_IP FROM table WHERE
    table.Operating_System=%s ,($_POST['os_select']=="")? TRUE:GetSQLValueString($varOS_virtual, "int"));
    this ran well for the first time, and then the record set was screwed up. kept on asking me to "Discover" the links, which it couldn't do.
    3.  take a look at this code:
    $varOS_virtual = "Operating_System";
    if (isset($_POST['os_select'])) {
      $varOS_virtual = $_POST['os_select'];
    $varState_virtual = "State";               //second constraint
    if (isset($_POST['state_select'])) {
      $varState_virtual = $_POST['state_select'];
    mysql_select_db($database_xyz, $xyz);
    $query_virtual = sprintf("SELECT table.VM_IP FROM table AND table.Operating_System=%s AND State=%s",
    GetSQLValueString($varOS_virtual, "int"),GetSQLValueString($varState_virtual, "int"));
    $virtual = mysql_query($query_virtual, $xyz) or die(mysql_error());
    $row_virtual = mysql_fetch_assoc($virtual);
    $totalRows_virtual = mysql_num_rows($virtual);
    here on passing NULL value for "Any"  GetSQLValueString($varOS_virtual, "int") functions returns NULL and though the Default value of
    varOS is set to 'Operating_System" query takes NULL value only which when executed shows no records.
    My problem majorly revolves around how to put something like "WHERE Operating_System= Operating_System" OR  "WHERE Operating_System= TRUE" in the query, when passed through variable they are sent as Strings or NULL.
    Thats why WHERE 1=1 also doesnt work, because it has "WHERE Operating_System= NULL" in AND.
    Logically when NULL is passed default value of variable should comeinto picture, but tha isnt happening.
    Thanks again for answering. hope I was able to explain my problem.

  • How to show or hide portlets dynamically on a Portal Page

    Dear All
    1. I have a Portal Page with One Portlet in the top having like 5 Buttons. Each button click should display a separate portlet in the bottom on this same page.
    2. I have Top Portlet. For bottom I have 5 Portlets P1, P2, P3, P4 and P5. On my .portal file, I dragged and dropped top portlet and all these 5 Portlets one below each other.
    3. Now, I am trying to use BackingFile approach at PageLevel/Portlet level, to get the details of button clicked in top portlet (like name etc), and then show only one portlet at a time in the bottom section (using portlet backingcontext show/hide APIs). I do need to compare the bottom portlets defintion_label etc. which is fine for now.
    Is this the right approach...?
    Or do I have to use Portlet Custom Event approach. So top portlet will trigger event everytime button is clicked with some payload. And bottom 5 portlets listen to that event and show/hide accordingly. But in this approach, I have to attach backingfile to all the bottom portlets to listen to them.
    All the portlets are Pageflow based Portlets. Any ideas or any other simpler approaches, are highly appreciated.
    Thanks
    Ravi Jegga

    Hi Kevin
    1. Thanks a lot for the pointers. I will go with Events. So for bottom Portlets, I will use the same BackingFile. But still it is going to be custom Event. Because only one portlet will be shown. So its like my payload will be portlet def label. In Backing File, I will compare this payload with actual dynamic value and if same, show or hide that portlet. Please let me know if this is correct approach.
    2. Now each one of the Bottom Portlets is a complex pageflow portlet with many buttons of their own. So everytime a button is clicked or action is invoked, the Backing File gets called. And I had to somehow know that the same portlet has to be shown or the show/hide logic should not be called. Is there any way, where backing file gets called or just listen for Events triggered only from main top portlet.
    Thanks for the other message, where looks like you already gave lots of pointers. I will go through them.
    I will design and test this out and will keep you posted with my results.
    Thanks a lot again
    Ravi Jegga

  • How to show a date field in OIM self-registration page

    Hello gurus,
    I want to add a date field in the self-reg page. I added lines in FormMetaData.xml and tjspSelfRegistrationTiles.jsp. The user creation page (delegated administration) shows the right date field, but the self-reg page is not working. I am using uix.tld dateField tag and don't know what attributes to pass to this. Is this the right tag or there is some other one in the tld, and what attributes should I pass?
    Could someone tell me how to do this?
    Thanks
    SK

    It should be much simpler than what you are doing.
    You should be able to create a User Defined Field for the value. Then update the FormMetaData.xml file. Create an entry in the section for user information that creates the attribute value. Just copy one of the existing and give it a new unique number identifier. Also change the field it references to be your user defined field. Then update the Self Registration section to include the new attribute. If you want to update what the approver sees, then also update the section for the approver.
    -Kevin

  • How to show current logged in user image in Master Page

    Hi,
    I am trying to show logged in user image next to his name, following this article 
    http://erikswenson.blogspot.in/2011/04/display-user-profile-picture-next-to.html
    I am trying to do this in SharePoint 2013, so i put Reference
    in .Master file & Control in . html file
    Picture is not visible and when i tried to find whether the control has been loaded or not, the control also hasn't been loaded.
    Please tell me, how could i do this?

    This is not that hard to do, simply go into your masterpage (Design Manager) and copy and paste this on the top of the page:
    <%@ Register tagprefix="SPSWC" namespace="Microsoft.SharePoint.Portal.WebControls" assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    Once that is done, you can now add this:
    <SPSWC:ProfilePropertyLoader runat="server" />
    <SPSWC:ProfilePropertyImage PropertyName="PictureUrl" ResizeToFit="115" ShowPlaceholder="true" id="PictureUrlImage" runat="server"/>
    To the location where you want the image to be shown. If you have a custom HTML page that you built out, just add it the same way. Let me know if you have any questions.
    -G

  • How to show the User Name on the Cart.aspx page when a user is connected.

    Hi,
    I am trying to find how I can get the User Name and display it in the top of the Cart.aspx.
    For the diplay point of view, this is fine (I have created a <Literal> with a property ID, and specified it in the prerender.)
    However, i can not find anywhere how to take the UserID from.
    Do you know if there is a way to get this Data?
    Thanks.

    I use something like this within the login control::
    <%@ Import Namespace="netpoint.classes" %>
    <%@ Import Namespace="netpoint.api.account" %>
    private NPBasePage _bp;
        protected void Page_Load(object sender, System.EventArgs e){
            bp = (NPBasePage)Page;
            NPUser u = new NPUser(bp.UserID);  
            Literal1.Text = u.FirstName + " " + u.Surname;

  • C# - How to show SPListItems in edit mode on Application (ASPX) page? Is it so difficult?

    Hi there,
    In my code-behind page - I have a collection of SPListItems. I need to display them in the application page (aspx page) in edit mode. How can I do that please?
    Thank you so much.

    Hello,
    Usually grid is the good option to update list item in bulk. You can use simple asp.net gridview as telerik is commercial product. Here is some good ref for you:
    http://sharepointparthiban.blogspot.sg/2013/04/sharepoint-list-item-update-using.html
    http://sharepoint.kerenapura.com/2013/10/update-sharepoint-list-data-gridview-part-1/
    You also need to clarify whether you want to update SPField or SPListItems because in thread title you have mentioned SPField.
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to show row border and column border on Print page using CL_DD_DOCUMENT

    Hiii to all,
    I'm facing one printing issue regarding CL_DD_DOCUMENT class. i'm displaying my internal table contents into table format using method DISPLAY_DOCUMENT. it's showing table border on output container screen. But if i take print on printer (using method PRINT_DOCUMENT)it's not showing table borders. which attribute or parameter i need to set so i'll see table borders on print also.
    Thanks..

    Hiii to all,
    I'm facing one printing issue regarding CL_DD_DOCUMENT class. i'm displaying my internal table contents into table format using method DISPLAY_DOCUMENT. it's showing table border on output container screen. But if i take print on printer (using method PRINT_DOCUMENT)it's not showing table borders. which attribute or parameter i need to set so i'll see table borders on print also.
    Thanks..

  • Oracle portal 11g- how to show content of a mounted folder in a page

    Hi there!
    We have installed oracle portal 11g on a server with cent os 5 on it. There is a certain shared folder in our network that we have mounted using autofs in a certain directory, on which every user has permissions of read and write, the contents of which we want to be able to access through a page in our portal. I have set up an alias in http server (Server configuration) to indicate the folder in discussion. However, when I press the link in that page, an error occurs (Forbidden-You are not authorized to see this page). What am I missing???? Is there a special configuration for shared folders in a domain?
    Thanks in advance!

    Hi Vinod,
    You can use cross site publishing feature of SharePoint 2013.
    http://blogs.msdn.com/b/justinvoels/archive/2012/09/24/sharepoint-2013-search-driven-publishing-and-cross_2d00_site-collection-publishing-overview.aspx
    https://technet.microsoft.com/en-us/library/jj635883.aspx
    Alternative to cross-site publishing in SP Online
    https://www.youtube.com/watch?v=chwHhEmIERg
    Best Regards,
    Brij K
    http://bloggerbrij.blogspot.co.uk/

Maybe you are looking for

  • Cannot connect to wifi, cannot change network settings [SOLVED]

    Asus EeePC. lspci -k shows Broadcom Corporation BCM4313 adapter is the hardware, and appears to be working. Kernel driver in use is bcma-pci-bridge In Gnome, Wi-Fi status shows "not connected" "Select Network" shows a list of available APs, I click o

  • Save as pdf option doesn't work

    I'm running OS X 10.3.9 and MS Word 2004. Whenever I try to use the new option in the Print dialog "Save as pdf" the button is always greyed out. I've gone through all of my on-line help options and can't find any help with how to make this work. Do

  • 1605 R - how to open a port

    I need to open a port for remote database access, and have no documentation or schematic for how this was set up by a volunteer ages ago. I have found some Cisco docs on how to get in to configure, but nothing on the process for opening a port. any a

  • Replacing T510 hard disk - 2 questions...

    Hello All, I have a T510 with 320Gb hard disk. I want to replace the hard disk with something with more capacity. I have 2 questions: Will this void my warranty - I have 500+ days left Can I take a complete copy of the hard disk and have all my appli

  • Muvo TX SE 1gb squeaks between tra

    hey, just bought the gb Muvo TX SE player. Everythings ok but it makes squeaking noises between tracks. Not sure if its cause I installed the firmware straight away. Anyone have this problem, can it be fixed or is defecti've? cheers