Displaying master/details in a single line by SELECT.

Hello,
In Oracle's typical Order/LineItem example tables, I would like to output the fields of an order followed by fields of all the items for that order in one line in a SELECT statement, without going for PL/SQL coding. All the fields in the output line are comma separated. I guess it can't be done in a SELECT statement. Am I right?
Thanks in advance.

Hi,
There might be some mistake in your layout. the print direction should be down.
Look at the below link for more information:
http://oracleapps4u.blogspot.com/2011/03/layout-mode-print-direction.html
Some guide lines in developing the report layout:
http://oracleapps4u.blogspot.com/2011/03/layout-guidelines-to-increase-report.html
If this didnt help you. detail more about your problem

Similar Messages

  • How to create a master detail form using single table

    Hi,
    how to create a master detail form using single table.
    Regards,
    M. Satish

    Hi
    how to create a master detail form using single table.Make the Master ur pks the details the rest of ur data base field in the detail it's a mater of organizing fields on a form M-Detail...
    Now What ?
    Regards,
    Amatu Allah

  • Master-detail UI  on single table

    Hi,
    Iam trying to build a master-detail UI for a denormalized flat interface table. the primary key is a combination of 2 attributes - external reference and reference id that are to be displayed in the master and 1 that is to be displayed in detail - line number. I've ruled out the option of using 2 EOs and 2 VOs because the PK cant be split across 2 tables. i am now considering a solution using a single EO and 2 VOs. Each VO can contain all attributes in the PK apart from those that are displayed in the master/detail table. Furthur a view link on external reference and reference id will acheive the master detail on the UI. However if in the physical table there are 2 records having different line numbers for a system reference and reference id pair then there is the problem of seeing duplicates in the master table of the UI. both the tables on the UI must be editable. Is there a way we could have a master detail UI on a flat table as in this case?
    Thanks,
    Sushmitha
    Edited by: 903697 on Mar 1, 2012 11:32 PM
    Edited by: 903697 on Mar 2, 2012 12:46 AM

    ADF Tree with Self Join
    http://mohammadjbyaseen.wordpress.com/2012/01/12/implement-herarichy-of-multiple-level-using-one-veiw-object/#comment-13

  • Create Master Detail on a single page

    I have a create page with both the master(header) as well as (lines) on the same page.
    Here is the page flow:
    User navigates to the search screen on which the create button is displayed along with Search/Results regions.
    User clicks on create button which takes them to Create Order Page.
    The Create Order Page is a master-detail page. I have the create part for the header (which was tested independently before
    the details table region is added) working fine which fetches and assigns the headerId from a sequence.
    However, when I add the details table region and include the create Row method for the details Row as well , without explicitly
    setting the headerId myself and render the page, I get the following exception. This exception is raised as soon as the control reaches the createRow
    method of the detail.
    This is probably due to the HeaderId being not yet available. How do I get around this issue.
    I was initially thinking of setting the attribute myself but the documentation says that when an Composition association
    exists between the Entity Objects, OA automatically does it for you.
    I included the detailVO in the AM via the view link.
    Exception
    oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidOwnerException: JBO-25030: Failed to find or invalidate owning entity.
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:862)
         at oracle.apps.fnd.framework.OAException.wrapperInvocationTargetException(OAException.java:985)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:210)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:152)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:692)
         at nih.oracle.apps.po.webui.NihPoStOrdCreateCO.processRequest(NihPoStOrdCreateCO.java:65)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:518)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:244)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:920)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1536)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:866)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:833)

    After creating your master entity row, use setCurrentRow(<newly created row obj.>)

  • Several reports on joined master-detail tables with single row source

    I have 1 master table (Fixed Assets) and several datail tables (Improvements, Depreciation, ...)
    I need to create several reports based on them all with criteria
    'Select ALL from Master and join details
    /1 total row from details for 1 master row/
    filtered by [on_date <= report_date]'
    How to do it better and not copy same code in every report?
    As mentioned on this forum, ApEx is not able to use RefCursor as row source for ApEx reports
    So I tried this Tom Kyte's example:
    create type apex_user.myRecordType as object
    (seq int,
    a int,
    b varchar2(10),
    c date
    Create Or Replace Type Apex_User.Mytabletype As Table Of Apex_User.Myrecordtype;
    create or replace function Apex_User.my_function return Apex_User.myTableType
    Is
    l_data Apex_User.myTableType;
    Begin
    l_data := Apex_User.myTableType();
    for i in 1..5
    loop
    L_Data.Extend;
    l_data(i) :=Apex_User.myRecordType(i, i, 'row ' || i, sysdate+i);
    end loop;
    Return L_Data;
    End;
    Select *
    from TABLE (cast(Apex_User.my_function() as Apex_User.mytableType))
    Where C > Sysdate+1
    Order By Seq Desc
    SEQ A B C
    5 5 row 5 22.08.2010
    4 4 row 4 21.08.2010
    3 3 row 3 20.08.2010
    2 2 row 2 19.08.2010
    4 Rows Selected
    - and it really works from ApEx reports.
    The questions are:
    1) is this the best solution for my task (one centralized code for several reports with parameter filtering detail tables)?
    2) how to change example properly to have here -
    loop
    L_Data.Extend;
    l_data(i) :=Apex_User.myRecordType(i, i, 'row ' || i, sysdate+i);
    end loop;
    - simple SELECT from my MASTER-DETAILS joined tables?

    Hi,
    if (row != null)
    Row masterRow = row;
    vo.setCurrentRow(masterRow);
    // not needed : getMesReponsesPourTiersVO1().executeQuery();
    You shouldnot execute the child VO after setting current row in master VO.
    When the current row is set in master VO, then the child rows will get refreshed automatically.
    Cheers,
    Prasanna

  • Report output displaying all rows in a single line

    Sometimes
    Edited by: 845142 on Mar 17, 2011 11:12 AM

    Hi,
    There might be some mistake in your layout. the print direction should be down.
    Look at the below link for more information:
    http://oracleapps4u.blogspot.com/2011/03/layout-mode-print-direction.html
    Some guide lines in developing the report layout:
    http://oracleapps4u.blogspot.com/2011/03/layout-guidelines-to-increase-report.html
    If this didnt help you. detail more about your problem

  • Reg : "Flattened" Master/Detail in a Single Row

    Hi All,
    I have a requirement as below :
    Structure Table. EO1
    Attirubtes Table. EO2
    The relation ship between two tables is one to one.
    My requirement is i need to show the data in Flattened Format in a table region.
    For display purpose i was able to display data.
    For performing DML operations : Like : Insert, Update , Delete. I have take a VO1 based on two EO's : EO1 and EO2' , AO for EO1 && EO2. and written query in Expert Mode.
    Here i struck, i could not understand how to proceed further. While performing update : only data in : EO1 is getting updated. EO2 data is getting committed.
    One more issue is : i could not understand how to perform insertRow() for above ?
    Please provide your suggestions.
    Regards
    Sridhar

    Hi All,
    I solved the above requirement by following the below link.
    HOWTO: Implementing a ViewObject with Multiple Updateable Dependent Entity Objects
    Thanks to AJ
    Regards
    Sridhar

  • Displaying of 2 records in a single line in report

    Hi Experts,
                      I have PO item data and PO schedule line items being stored in a Cube.
    I developed  a report which  is a combination of fields from both the datasources. so i am getting 2 records for the same line item Of a purchase order.Now my requirement is to Display the line item details in a single line.How can i achieve this.
    please help me Out in sorting this issue.
    thanks in Advance.
    Regards,
    Sandeep

    Hi
    make sure you have proper common fields or matching fields  in both datasources.
    Regards
    Sudeep

  • Second line item in Shoppin cart is not displaying the details

    Second line item's district  value is not displayed when the detailed button of second line item is clicked.
    In the shopping cart , there are two line items are added. ( before ordering )
    click on the detail button of first line item, then click on the Ship to address tab . it is displaying the details of the first line item ship to address.
    For getting the value in the district field, BBP_doc_change_badi is implemented .
    The problem is when i click on the detail button of second line itme , the value in the district field is cleard.
    When i click on refresh buttion after that, the value is there.
    I debugged BBP_DOC_CHANGE_Badi~bbp_SC_change method,
    When the second line item is clicked, it populates only the value of first line item . After that if i click on any other buttion, the it_item in the badi populates the second line item value.
    Is this a standard error in SRM or is there any way to display the value of second line item when it is clicked at the first time

    Hi,
    In item category details insure there is tickmark for Schedule line allowed,
    In sales order at item level under shipping tab see storage location ,plant is appearing or not,
    Kapil

  • Urgent !!! Master- Detail Search with Hide/Show option

    Hi,
    I have developed a master-detail OAF page with hide/show option.
    in my searching option i have both master and detail columns.
    How can i control detail level vo query.
    Eg. If i pass Item no in the searching option along with customer, i sould get only that item line for that CUST.
    I have created parameters in the main query and I am passing param values in a methos at AM.
    When i click on Show details its throwing exception.
    Can any one please help me how to acheive this. Its urgent...
    Thanks,

    Hi Gyan,
    Thanks for your reply.
    Master VO query:
    SELECT qfbp.pricing_attribute_context,
    qfbp.pricing_attribute,
    qfbp.comparison_operator_code,
    qfbp.pricing_attr_value_from,
    qfbp.pricing_attr_value_to,
    qfbp.adjustment_factor,
    qfbp.start_date_active,
    qfbp.end_date_active,
    qfbp.list_line_id,
    qfbp.factor_list_id
    FROM qpfv_factor_base_pricing_attrs qfbp
    WHERE qfbp.factor_list_id = NVL(:1,qfbp.factor_list_id)
    AND qfbp.pricing_attribute = NVL(:2,qfbp.pricing_attribute)
    AND qfbp.comparison_operator_code = NVL(:3,qfbp.comparison_operator_code)
    AND NVL(qfbp.pricing_attr_value_from,'xxxxx') = NVL(:4,NVL(qfbp.pricing_attr_value_from,'xxxxx'))
    AND NVL(qfbp.pricing_attr_value_to,'xxxxx') = NVL(:5,NVL(qfbp.pricing_attr_value_to,'xxxxx'))
    AND qfbp.adjustment_factor = NVL(:6,qfbp.adjustment_factor)
    Detail VO Query:
    SELECT qfapa.list_line_id, qfapa.pricing_attribute_context,
    qfapa.pricing_attribute, qfapa.pricing_attr_value_from,
    qfapa.pricing_attr_value_to, qfapa.factor_list_id,
    qfapa.comparison_operator_code, qfapa.pricing_attribute_id,
    qfapa.creation_date, qfapa.created_by, qfapa.last_update_date,
    qfapa.last_updated_by, qfapa.orig_sys_header_ref,
    qfapa.orig_sys_line_ref, qfapa.orig_sys_pricing_attr_ref
    FROM qpfv_factor_asso_pricing_attrs qfapa
    WHERE qfapa.pricing_attribute = NVL (:2, qfapa.pricing_attribute)
    AND qfapa.comparison_operator_code = NVL (:3, qfapa.comparison_operator_code)
    AND NVL (qfapa.pricing_attr_value_from, 'xxxxx') = NVL (:4, NVL (qfapa.pricing_attr_value_from, 'xxxxx'))
    AND NVL (qfapa.pricing_attr_value_to, 'xxxxx') = NVL (:5, NVL (qfapa.pricing_attr_value_to, 'xxxxx'))
    Iam using view link to display master detail results in one page.
    AM Code : Searcharttr method is for details VO.
    public void searchparams(OAPageContext pageContext, OAWebBean webBean)
    FactorListSearchVOImpl vo = getFactorListSearchVO1();
    String FactorlistName ="";
    String FactorListId ="";
    String PricingAttribute ="";
    String CompOperator ="";
    String PricingAttrValFrom ="";
    String PricingAttrValTo ="";
    String AdjustFactor ="";
    if (pageContext.getParameter("FactorListNameId")!=null&&!pageContext.getParameter("FactorListNameId").equals(""))
    FactorListId =pageContext.getParameter("FactorListId").toString();
    vo.setWhereClauseParam(0,FactorListId);
    else
    vo.setWhereClauseParam(0,null);
    if (pageContext.getParameter("BaseAttrTypeId")!=null&&!pageContext.getParameter("BaseAttrTypeId").equals(""))
    PricingAttribute =pageContext.getParameter("BaseAttrTypeId").toString();
    vo.setWhereClauseParam(1,PricingAttribute);
    else
    vo.setWhereClauseParam(1,null);
    if (pageContext.getParameter("BaseOperator")!=null&&!pageContext.getParameter("BaseOperator").equals(""))
    CompOperator =pageContext.getParameter("BaseOperator").toString();
    vo.setWhereClauseParam(2,CompOperator);
    else
    vo.setWhereClauseParam(2,null);
    if (pageContext.getParameter("BaseAttrValueFrom")!=null&&!pageContext.getParameter("BaseAttrValueFrom").equals(""))
    PricingAttrValFrom =pageContext.getParameter("BaseAttrValueFrom").toString();
    vo.setWhereClauseParam(3,PricingAttrValFrom);
    else
    vo.setWhereClauseParam(3,null);
    if (pageContext.getParameter("BaseAttrValueTo")!=null&&!pageContext.getParameter("BaseAttrValueTo").equals(""))
    PricingAttrValTo =pageContext.getParameter("BaseAttrValueTo").toString();
    vo.setWhereClauseParam(4,PricingAttrValTo);
    else
    vo.setWhereClauseParam(4,null);
    if (pageContext.getParameter("BaseAdustFactor")!=null&&!pageContext.getParameter("BaseAdustFactor").equals(""))
    AdjustFactor =pageContext.getParameter("BaseAdustFactor").toString();
    vo.setWhereClauseParam(5,AdjustFactor);
    else
    vo.setWhereClauseParam(5,null);
    public void searchattrparams(OAPageContext pageContext, OAWebBean webBean)
    FactorListSearchVOImpl vo = getFactorListSearchVO1();
    String AssoAttribute ="";
    String AssoOperator ="";
    String AssoAttrValFrom ="";
    String AssoAttrValTo ="";
    if (pageContext.getParameter("AsscAttrType1")!=null&&!pageContext.getParameter("AsscAttrType1").equals(""))
    AssoAttribute =pageContext.getParameter("AsscAttrType1").toString();
    vo.setWhereClauseParam(1,AssoAttribute);
    else
    vo.setWhereClauseParam(1,null);
    if (pageContext.getParameter("AsscOperator1")!=null&&!pageContext.getParameter("AsscOperator1").equals(""))
    AssoOperator =pageContext.getParameter("AsscOperator1").toString();
    vo.setWhereClauseParam(2,AssoOperator);
    else
    vo.setWhereClauseParam(2,null);
    if (pageContext.getParameter("AsscAttrValueFrom1")!=null&&!pageContext.getParameter("AsscAttrValueFrom1").equals(""))
    AssoAttrValFrom =pageContext.getParameter("AsscAttrValueFrom1").toString();
    vo.setWhereClauseParam(3,AssoAttrValFrom);
    else
    vo.setWhereClauseParam(3,null);
    if (pageContext.getParameter("AsscAttrValueTo1")!=null&&!pageContext.getParameter("AsscAttrValueTo1").equals(""))
    AssoAttrValTo =pageContext.getParameter("AsscAttrValueTo1").toString();
    vo.setWhereClauseParam(4,AssoAttrValTo);
    else
    vo.setWhereClauseParam(4,null);
    Iam getting below error:
    Error Page
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (SELECT qfapa.list_line_id, qfapa.pricing_attribute_context,
    qfapa.pricing_attribute, qfapa.pricing_attr_value_from,
    qfapa.pricing_attr_value_to, qfapa.factor_list_id,
    qfapa.comparison_operator_code, qfapa.pricing_attribute_id,
    qfapa.creation_date, qfapa.created_by, qfapa.last_update_date,
    qfapa.last_updated_by, qfapa.orig_sys_header_ref,
    qfapa.orig_sys_line_ref, qfapa.orig_sys_pricing_attr_ref
    FROM qpfv_factor_asso_pricing_attrs qfapa
    WHERE qfapa.pricing_attribute = NVL (:2, qfapa.pricing_attribute)
    AND qfapa.comparison_operator_code = NVL (:3, qfapa.comparison_operator_code)
    AND NVL (qfapa.pricing_attr_value_from, 'xxxxx') = NVL (:4, NVL (qfapa.pricing_attr_value_from, 'xxxxx'))
    AND NVL (qfapa.pricing_attr_value_to, 'xxxxx') = NVL (:5, NVL (qfapa.pricing_attr_value_to, 'xxxxx'))) QRSLT WHERE (LIST_LINE_ID = :1)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1145)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2970)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2767)
         at OA.jspService(OA.jsp:41)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.sql.SQLException: ORA-01008: not all variables bound

  • HOW TO CREATE 2 PARAMETER IN SINGLE LINE.

    Please do NOT POST IN ALL CAPITALS
    HI,
    HOW TO CREATE TWO PARAMETERS IN A SINGLE LINE AND THE INPUT HAS TO BE DISPLAYED IT IN A POP UP BOX. THIS IS MY TRAINING TASK HELP ME TO SOLVE IT.
    REGARDS,
    SREERAM
    Edited by: Matt on Mar 19, 2009 1:26 PM

    hi,
    SELECTION-SCREEN BEGIN OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(10) text-001.
    PARAMETERS:
    p_carrid TYPE spfli-carrid.
    SELECTION-SCREEN COMMENT 30(10) text-002.
    Parameter p_connid TYPE spfli-connid.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK b1.
    Radio buttons in a single line.
    SELECTION-SCREEN BEGIN OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(10) text-001.
    PARAMETERS p_rad RADIOBUTTON GROUP grp.
    SELECTION-SCREEN COMMENT 30(10) text-002.
    Parameter p_rad1 RADIOBUTTON GROUP grp.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK b1
    Thanks
    Sharath

  • Smartform address in a single line

    I am having a window where I have address as 3 lines..but I want to keep in the footer in a single line with comma.
    I am using the address node's for it.
    do you have any idea how to do it.

    Hi mark,
    Using ADDRESS NODE the text cannot not be displayed as per your requirement.If you want to display the address in a single line with comma then use TEXT NODE.
    Regards,
    Sravanthi

  • Master-Detail Report

    Hi Gurus,
    I am trying to implement master-detail report in single window without navigating to other window in OBI 10g by following the below link
    http://108obiee.blogspot.in/2010/02/obiee-master-detail-requests-navigation.html
    but i am facing problem in creating iframe column and including that column in the report
    Can we achieve this requirement in OBI 10g if yes please suggest me how can we do this.
    Thanks,

    Hi Muram,
    For implementing Master-detail for the product report when we click on Prod-Cat from master report(Year, Prod-Cat, Tot-Sales) it as to show the detail report (Prod-SubCat,Tot-Sales) in the same window without navigation to the other window for this scenario I implemented the steps as per the below URL which was send in the previous post.
    http://obiee10grevisited.blogspot.in/2012/05/master-detailed-report-on-same-page.html
    but I am facing problem in 5th,6th,7th steps could you please suggest me on these.
    1>First I created master report with columns (Year, Prod-Cat, Tot-Sales)
    2>Second I created detail report with columns(Prod-SubCat,Tot-Sales)
    3>I have created two prompts Year and Prod-Cat
    4>Now in the dashboard page I kept prompts and two reports in separate sections
    5>To build intermediate report for validation which columns I have to take in that report and what I have to give in the fx.
    6>In the detail report sections in the edit dashboard how to give the reference to the intermediate report and how to make the report not visible at the initial view of the user.
    7>In the main report how to give the navigation to the same page which consist of main and detail report together we can navigation either main report or detail report how we can navigation which consist of both.
    Thanks,
    Rafi
    Edited by: Rafi.B on Aug 29, 2012 11:42 AM

  • Master Detail on the same page PHP - MySQL

    Hi,
    Is it possible to create a page using spry master region and call MySQL data into a Spry detail region, like you do with xml data?
    Basically, is there a way to have master detail regions on the same page without using frames?
    Thanks
    Bert

    Thanks for that, very useful indeed.
    But isn't it going to be slow, first transferring the MySQL data to XML then reading XML to display the records.
    What is the advantage other then displaying master detail on the same page?
    Thanks
    Bert

  • ADF: Hide expendable icon in Master-Detail treetables

    Hello,
    We are using a treetable in order to display Master-detail data. The problem here is that not all the master (parents) rows have details (childs). In fact we do not want to display the expandable symbol for the master rows which do not have childs.
    Since it is a treetable we use facets nodeStamp and pathStamp. However this facets as I understand do not accept the attribute rendered. We have already a EL expresion ready to be used on the rendered attribute, but we do not find the way to disable the icon.
                      <f:facet name="nodeStamp">
                         <af:column id="c15" width="12"/>
                      </f:facet>
                      <f:facet name="pathStamp">
                         <af:outputText value="#{row}" id="ot23"/>
                      </f:facet>We are using JDEV: 11.1.1.5.0
    Any solution? Any recommendations?
    Thanks a lot
    Edited by: 914395 on 2012-nov-15 13:18
    Edited by: 914395 on 2012-nov-15 13:32

    Thanks a lot codigoadf for your help.
    The example that you send helped me to find out the solution to my problem. However this solution it seems to me just a work around, since we just put an image on the top of the icon instead to disable it or remove it.
    Since I'm using tree table the code solution is a bit different than the described in the link example.
    <f:facet name="nodeStamp">
       <af:column width="12">
          <af:group id="g1">
             <af:image id="i1" source="/resources/images/whiteIcon.png"rendered="#{node.children == null}"
                inlineStyle="position: absolute; margin-left:-17px; border: 2px solid white; width: 12px; height: 10px;"/>
          </af:group>
       </af:column>         
    </f:facet>

Maybe you are looking for

  • Problem With Deploying a very simple Servlet

    HELP REQUIRED: Hi, I'm including code of a very simple Servlet application (I shd not call it an application): index.html ========== <html><body bgcolor="#FFFFFF">      <head>      <title> Rajeev Asthana </title> <form action = "/HelloWorldApp/HelloW

  • Not able to get the main page.

    Hi SDN, AM getting the 500 Internal server Error when i try to access my XI hope page: javax.xml.parsers.FactoryConfigurationError: Provider org.apache.xerces.jaxp.DocumentBuilderFactoryImpl not found. However i am able to access my sld exchangeProgi

  • How to keep original Uploaded File Name in SharePoint Document Library?

    HI, I have document library. After Uploaded the file in document library. I want to keep the file name in some other filed. Why because in future i may change the file name in document library so in order to know the original name of the file. I want

  • LR 5.4

    Nachdem ich von LR 5.3 auf 5.4 upgegraded habe, wird in meinen Bilderordnern unter  Windows 7 LR nicht mehr zum Öffnen angeboten, kann auch über"Standardrrogramm auswählen / Andere Programme" nicht hinzugefügt werden. Welches Unterprogramm von LR ist

  • Advice about buying a new hard drive

    I have a TOSHIBA Satellite L25-S1216. I have not been able to boot into Windows XP for 3 years using the factory Recovery and Applications/Drivers DVD and the Fully Recover procedure on the back of the DVD packae. I have been using Linux for the past