Handle in the report layout structur.

Hi Team,
I have created a selection screen with two radio buttons one for Preq Details and another for PO Details.I am showing the output in ALV Report using(Reuse_alv_grid_display).Also i am saving the report layout variants  in the alv report using(Reuse_alv_variant_f4,REUSE_ALV_VARIANT_DEFAULT_GET and REUSE_ALV_VARIANT_EXISTENCE).I am getting the layout variant but Layout Variants saved for P-req report should not show up in PO report and vice versa.)what to do for that one?
i have read some postings saying that just we need to a Pass HANDLE in layout structure..but still i am not able to save them in specific report.
Thanks
Shakeer

Hi Friends,
Can any one Please help me..
Thanks,
Shakeer

Similar Messages

  • How to align object in the report layout

    Hello,
    I find it very difficult to aligin objects in the report editor or in the template editor. I know there are some alignment options, like aligning to the grid or aligning a group of objects, but they seem to work on the bounding rectangle for the object. For my text objects, those rectangles are arbitrarily sized. So aligning those rectangles does not correctly align the text baseline, for example.
    Does anyone have a tip on how you can align objects? I there maybe a way to alter the size of objects by changing a number in a property sheet somewhere?
    Regards,
    Frans

    The problems I am having now occur when I am editing the margin in the template editor. For some reason, the flex and confine options can not be turned off in the template editor. I believe they are turned on in this mode, at least in tools:options: paper layout they are turned on. But anyway, this really does not matter because I don't have nested objects in the margin. The objects that will go flying off are completely unrelated to the object I want to move or resize.
    Update: I have just tried editing the layout of a report that was based on the template I am working on. Turning flex off there had a positive effect. It seems indeed the 'flex' setting is to blame for the problems I am experiencing. Thanks for the tip!
    So now I would really like to know how to turn of flex in the template editor..

  • Portlets not coming as per layout for the Cutomized layout structure

    I have created new Customized layout for our application.
    I could see the cutomized layout properly in Workshop. When i am adding the portlets to all of the placeholders in layout and running the portal , out put i could see all the portlets are coming in vertical and not as per structure as per i defined.
    COuld not understand why it is happening when it is displaying properly in Workshop IDE.
    One more issue i could not define the Height attribute to the placeholders .How to have cutomized heights for the placeholders?
    Here are the My layout codes
    Homelayout.layout_
    <?xml version="1.0" encoding="UTF-8"?>
    <netuix:markupDefinition xmlns:netuix="http://www.bea.com/servers/netuix/xsd/controls/netuix/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/servers/netuix/xsd/controls/netuix/1.0.0 markup-netuix-1_0_0.xsd">
    <netuix:locale language="en"/>
    <netuix:markup>
    <netuix:layout title="homePageLayout" description="This layout is for home page of the portal"
    skeletonUri="homePageLayout.jsp" htmlLayoutUri="/framework/markup/layout/homePageLayout.html.txt"
    markupType="Layout" markupName="homePageLayout">
    <netuix:placeholder title="top" description="The top most placeholder in this layout."
    flow="vertical" usingFlow="true"
    markupType="Placeholder" markupName="custom_Top">
    </netuix:placeholder>
    <netuix:placeholder title="center" description="The left of center placeholder in this layout."
    flow="vertical" usingFlow="true"
    markupType="Placeholder" markupName="custom_center">
    </netuix:placeholder>
    <netuix:placeholder title="bottomLeft" description="The right of center placeholder in this layout."
    flow="vertical" usingFlow="true"
    markupType="Placeholder" markupName="custom_bottomLeft">
    </netuix:placeholder>
    <netuix:placeholder title="bottomCenter" description="The right most placeholder in this layout."
    flow="vertical" usingFlow="true"
    markupType="Placeholder" markupName="custom_bottomCenter">
    </netuix:placeholder>
    <netuix:placeholder title="bottomRight" description="The right most placeholder in this layout."
    flow="vertical" usingFlow="true"
    markupType="Placeholder" markupName="custom_bottomRight">
    </netuix:placeholder>
    </netuix:layout>
    </netuix:markup>
    </netuix:markupDefinition>
    homeLayout.html.txt_
    <table class="portalLayout" id="thePortalLayout" width="100%" height="100%">
    <tr height="40%">
    <td colspan="3" class="placeholderTD" valign="top" width="100%" >
    <placeholder number="0"/>
    </td>
    </tr>
    <tr height="10%">
    <td height="10%" colspan="3" class="placeholderTD" valign="top" width="100%">
    <placeholder number="1"/>
    </td>
    </tr>
    <tr height="50%">
    <td class="placeholderTD" valign="top" width="25%">
    <placeholder number="2"/>
    </td>
    <td class="placeholderTD" valign="top" width="50%">
    <placeholder number="3"/>
    </td>
    <td class="placeholderTD" valign="top" width="25%">
    <placeholder number="4"/>
    </td>
    </tr>
    </table>
    Skelnton JSP*
    <%@ page import="com.bea.netuix.servlets.controls.layout.PlaceholderPresentationContext,
    com.bea.netuix.servlets.controls.layout.BorderLayoutPresentationContext"%>
    <%@ page import="java.util.List" %>
    <%@ page import ="com.bea.netuix.servlets.controls.layout.LayoutPresentationContext"%>
    <%@ page session="false"%>
    <%@ taglib uri="http://www.bea.com/servers/portal/tags/netuix/render" prefix="render" %>
    <%
    LayoutPresentationContext layout = LayoutPresentationContext.getLayoutPresentationContext(request);
    List children = layout.getChildren("layout:placeholder");
    PlaceholderPresentationContext custom_Top =
    (PlaceholderPresentationContext) children.get(0);
    PlaceholderPresentationContext custom_center =
    (PlaceholderPresentationContext) children.get(1);
    PlaceholderPresentationContext custom_bottomLeft =
    (PlaceholderPresentationContext) children.get(2);
    PlaceholderPresentationContext custom_bottomCenter =
    (PlaceholderPresentationContext) children.get(3);
    PlaceholderPresentationContext custom_bottomRight =
         (PlaceholderPresentationContext) children.get(4);
    %>
    <render:beginRender>
         <table border="0" ... write style attributes ... cellspacing="0" >
              <tr>
                   <td colspan="3" class="bea-portal-layout-placeholder-container"
                        <render:writeAttribute name="width" value="<%=custom_Top.getWidth()%>"/>>
    <render:renderChild presentationContext="<%=custom_Top%>" /></td>
              </tr>
              <tr>
                   <td colspan="3" class="bea-portal-layout-placeholder-container"
                        <render:writeAttribute name="width" value="<%=custom_center.getWidth()%>"/>><render:renderChild
                        presentationContext="<%=custom_center%>" /></td>
              </tr>
              <tr >
                   <td class="bea-portal-layout-placeholder-container"
                        <render:writeAttribute name="width" value="<%=custom_bottomLeft.getWidth()%>"/>><render:renderChild
                        presentationContext="<%=custom_bottomLeft%>" />
                   </td>
                   <td class="bea-portal-layout-placeholder-container"
                        <render:writeAttribute name="width" value="<%=custom_bottomCenter.getWidth()%>"/>><render:renderChild
                        presentationContext="<%=custom_bottomCenter%>" />
                   </td>
                   <td class="bea-portal-layout-placeholder-container"
                        <render:writeAttribute name="width" value="<%=custom_bottomRight.getWidth()%>"/>><render:renderChild
                        presentationContext="<%=custom_bottomRight%>" />
                   </td>
              </tr>
         </table>
    </render:beginRender>

    Sanket,
    First test it using ADF Business Components tester. Does it work there?
    If not, check your view link definition.
    If so, make sure you have defined the correct View Object Usages in your application structure file.
    Steven Davelaar,
    JHeadstart Team.

  • Altering the report's format without destroying the report layout....{solv}

    Hi,
    I have developed a tabular report and the layout (lines, rectangles... etc as customer wants) ....
    Now , i want to alter only the report style.... that is to change it to group left....
    Is it possible... to select the group fields and the fields displayed in the report without redeveloping the report UI (lines , rectangles... e.t.c).
    I have tried the report wizard... but the layout destroyed... and have to do the UI from the beginning.....
    NOTE : I use Dev10g
    Thanks ,
    Sim

    Hi Sim,
    Group Left or Group Above means that you are grouping for 1 or more fields.
    In the Data model, you will have to create a new group and drag the group fields to this new group.
    In the Layout, you will need to add a new repeating frame below all the other repeating frame, frames, etc. ie. create a repeating frame over existing objects. You may need to move all existing objects down and to the right so that there is enough room to create a new repeating frame over these objects. With the repeating frame selected, from the Arrange Menu, select Send to back (F6) or Move Backwards (F8) several times so that the new repeating frame is below all the objects from the tabular layout.
    Also, fix up the source property for the repeating frame. Create a new field(s) inside this new repeating frame for your group left field(s).
    Good luck.
    John

  • Difficult to achive the report layout with dynamic column names

    I have a report layout as below.
    So here the column names are dynamic.And each fixed row group has different calculations. I have a date parameter. If I select July 2013, then I need to show data from July 2012 to July 2013 with Columns(Jul-12, Aug-12...Jul-13). How to achive below layout
    with dynamic columns?

    Hi Sarayu_CM,
    According to your description, you want to filter the records of prior year based on only one parameter selection. Right?
    In this scenario, we can create two parameters. The first one is for user to select. The second parameter is based on the first parameter selection. We don't need to specify Available Values for the second parameter, but we should use expression to specify
    Default Values based on the first parameter selection. Use the expression below:
    =DateAdd("m",-12,FormatDateTime(Parameters!param1.Value))
    Then we just need to apply a filter on the matrix/dataset to get the records which the date is between values in these two parameters.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Setting the report layout for HTML format

    hi friends
    when I generate my report to HTML file and open it to Internet Explorer it disturbs the actual report little bit like enlarging the fonts, hiding some graphical objects like Lines and wrapping the report. so can u tell me that how can I take the same output format in Internet Explorer as in reports previewer? I'm using Reports 6i and Micrsoft Internet Explorer 6.0. thanx.

    I think you should make some modification into main section
    e.g. increase height and width of the report....and then see...
    I had same problem with text output but this method solve my problem hope
    this will help u...
    Enjoy Oracle...

  • Limiting the Report Layout access other than Authorization Object S_ALV_LAYO

    Dear Experts,
    We have an issue of Layout Access limit to Users coz unwittingly these are being deleted.
    (Example: IW39 à after F8 à Settings à Layout.)
    The Authorization object S_ALV_LAYO which limits the access, has been defined in the multiple Roles, where every User been assigned with these Roles across Three Continents.
    Instead of hampering the existing Streamlined Roles, looking for other Options since if it may give odd behaviour after modifying the Roles then all the Users across the continents will be effected.
    It will be grateful if we get other options to limit the Layout access instead of controlling through Authorization Object.
    Thank you & Have a Great Day!

    Thank you Sebastian & Terence,
    The Global Roles has maintained with Authorization Object (S_LAYO_ALV) and these are been assigned to Every User coz all Users should access these reports.
    So now every User has maintained with the Authorization Object to access.
    Now we are trying to Control the Access to limited Users through without hampering the well maintained/streamlined  Roles, since if any adverse effects on the modified roles may impact to all the Users across the continents.
    Looking for other options.
    Thanks, I appreciate your time and efforts on this.

  • Format in the report layout

    Hi,
    when I create a report using Reports Builder, I can fix the number of decimal digit. For example I can fix two decimal digit (5,00). When I deploy the jsp create on the server and invoke it via URL with the following parameters:http://myHost:myPort/reports/rwservlet?desformat=SPREADSHEET&mimetype=application%2Fvnd.ms-excel&destype=cache&report=%2Fro%2Fsw%2Freports%2Freport_Azzeramenti.jsp&ENVID=IT&dateformatmask=DD%2Fmm%2Fyyyy
    the number in excel is 5
    Someone can help me to fix the number of decimal digit in excel?
    Thanks.
    Leonardo.

    All numeric values are coming out as asteriks '*'This usually happens when there is not enough space to show the value. The font on the server may be slightly bigger, OR you just have bigger numbers in your test environment compared to development. Try making the field a bit wider.
    Edited by: InoL on May 11, 2010 1:54 PM

  • Attribute "Report Layout" is missing in the "Print Attributes" tab for IR

    Hallo,
    The attribute “Report Layout” is missing in the “Print Attributes” tab for an interactive report?
    How to alter the report layout (xsl-fo) of an interactive report?
    Has someone any idea where to configure this?
    Btw, for the "classic" SQL Report the XSL-FO "Report Layout" can be cahnged in "Print Attributes" and this works fine for me. But I want to change the xsl-fo for the interactive report.
    "If you do not select a report layout, a default XSL-FO layout is used. The default XSL-FO layout is always used for rendering Interactive Report regions. ... Unlike classic reports, the Interactive Report Print Attributes can only utilize the default XSL-FO layout and is initiated from the Report Attributes, Download section rather than directly from this screen. Once configured, these attributes only apply only to the current region and cannot be used outside the context of the region."
    http://apex.oracle.com/i/doc/bldapp_rpt_print.htm
    How can the "default XSL-FO layout" be changed?
    Changing is necessary because the Apache FOP 1.0 reports the following error (for the transmitted default XSL-FO):
    "fo:simple-page-master", "fo:region-body" must be declared before "fo:region-before"
    http://www.w3.org/TR/xsl/#fo_region-before
    The default report layout is not saved in:
    select * from APEX_040000.WWV_FLOW_REPORT_LAYOUTS
    Thx, Willi

    I've found two workaround for getting Apache FOP 1.0 to work with Oracle Apex 4.0 for PDF printing of interactive reports:
    1, Use an application process to set your custom layout for interactive reports:
    [ ] grant all on APEX_040000.WWV_RENDER_REPORT3 to {YOUR_SCHEMA_NAME};
    [ ] Create an Application Process e.g. "Custom Report Layout" with constraint for request 'PDF' and Process Text:
    declare
    v_xsl varchar2(32767);
    begin
    v_xsl := '<?xml version = ''1.0'' encoding = ''utf-8''?>
    <xsl:stylesheet version="2.0"
      <fo:region-body region-name="region-body" margin-top="54.0pt" margin-bottom="54.0pt"/>
      <fo:region-before region-name="region-header" extent="54.0pt"/>
    </xsl:stylesheet>';
    APEX_040000.WWV_RENDER_REPORT3.g_prn_template := v_xsl;
    end;2, If you have some knowlege in Java change the sequnce of the the nodes in the apex_fop.jsp (or servlet), ie. changing the xsl before you use it for transformation.
    The code depends on the solution you are using to parse the xsl string.
    Hope this may help someone,
    Willi

  • How to get the SAVE Layout  ICON on ALV Grid display report

    Hi,
      I am using the standard ALV Layout, and I do not get the SAVE LAYOUT Icon on the Menubar, where I could save the report Layout.I am using the layout routine as,
    FORM layout_build USING   u_lf_layout TYPE slis_layout_alv.
      u_lf_layout-box_fieldname       = 'SELK'.  " Checkbox
      u_lf_layout-zebra               =  'X'.
      u_lf_layout-colwidth_optimize   =  'X'.
      u_lf_layout-confirmation_prompt =  'X'.
      u_lf_layout-get_selinfos        =  'X'.
      u_lf_layout-f2code              =  '&ETA' .
      u_lf_layout-detail_titlebar     =  'Delivery Due List'.
      u_lf_layout-key_hotspot         =  'X'.
      u_lf_layout-info_fieldname      =  'COL'.
    ENDFORM.                    " layout_build
    Is there anything that I am missing. Please suggest.Many thanks for your help.
    Regards,
    Mira

    Hi,
    i think you've forgotten param. <b>i_save</b>
      x_save = 'X'.
      gs_variant-report     = sy-repid.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
           EXPORTING
                I_STRUCTURE_NAME = 'ZTAB01'
                IS_VARIANT       = gs_variant
                IS_layout        = lay
                I_SAVE           = x_save
           TABLES
                T_OUTTAB         = gridtab
           EXCEPTIONS
                OTHERS           = 1.
    regards Andreas

  • Layout of the reporting services website looks 'strange'

    I have installed and configured SQL Server Reporting Services 2012 SP1
    When I navigate to http:// localhost/Reports, the layout of the site looks odd and does not look like how I am used to, see the following image
    (As I am new I cannot post images so uploaded here http:// postimg.org/image/d2jopp4g3/
    I have tried from several machines, all display the same, and from different browsers (IE and Firefox). I have also cleared cache and cookies
    On several installations on different machines, we see the same issue. Does anyone know what is wrong? Surely this is not how things are supposed to look?
    Thanks

    Hello,
    Did you get mess format of the report layout when you render the report in report server? Please try to put these tablix in a rectangle to resolve the issue. Alternatively, we can try to enable the compatibility view of the IE to troubleshooting the issue.
    Reference: http://support.microsoft.com/kb/2536204
    Since the image you’re posted above cannot view, you can refer to the thread below to verify your account to post image.
    http://social.technet.microsoft.com/Forums/en-US/1f541d13-8b01-4e95-831a-379ecabecb46/verify-your-account-14?forum=reportabug
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Custom report layout question...can't find any answers anywhere

    I am trying to build a report in Portal, using the custom report layout. The report displays like so, before I do any customization:
    COLUMN1 COLUMN2 COLUMN3
    COLUMN1 COLUMN2 COLUMN3
    COLUMN1 COLUMN2 COLUMN3
    COLUMN1 COLUMN2 COLUMN3
    where COLUMN1 is the same value, always per report; COLUMN2 and COLUMN3 vary.
    What I want is:
    COLUMN1
    COLUMN2 COLUMN3
    COLUMN2 COLUMN3
    COLUMN2 COLUMN3
    COLUMN2 COLUMN3
    In the report layout editor, Body section, this is what I see:
    <TD ALIGN="LEFT"><#COLUMN1.FIELD#></TD>
    <TD ALIGN="LEFT"><#COLUMN2.FIELD#></TD>
    <TD ALIGN="LEFT"><#COLUMN3.FIELD#></TD>
    so #COLUMN1.FIELD# must be some kind of array, but I am not finding any documentation anywhere on how to reference the individual values. All I need is the very first value of the COLUMN1 variable. Once I have that value, I can put it where I need it, but I can't get at that value, just the array.
    I have searched portal center, the app server documentation, html documentation. I have googled everything I could think of, but came up with nothing. I found a similar question on this forum, but no one responded with an answer. Any help would be greatly appreciated.

    Helen,
    The best way for your case is to use a content folder and customize it whichever way you like.
    however, your question is about reports. the problem in reports is this that you have to use just one single query and the layout of the results of this query are displayed in a peculiar way.
    anyway. something similar but not exactly the same as what you wanted do is the following.
    use a query like the following: (with a union in between)
    SELECT COLUMN1,NULL , NULL ,NULL ,NULL
    FROM my_source_table
    WHERE myCriteria LIKE 'SoAndSo%'
    UNION
    SELECT NULL,COLUMN2 , COLUMN3, COLUMN4, COLUMN5
    FROM my_source_table
    WHERE myCriteria LIKE 'SoAndSo%'
    ---------- Now, have the following codes in the layout segments:
    <!--- header --->
    <table border="0" cellpadding="1" cellspacing="1" width="20%" align="center">
    <!--- body --->
    <tr align="center">
    <td><table border="0" cellpadding="1" cellspacing="0" width="30%" align="center">
    <tr align="center">
    <TH><#COLUMN1.FIELD#></TH>
    </tr>
    </table>
    </td>
    <TD class="report_cell" ALIGN="LEFT"><#COLUMN2.FIELD#></TD>
    <TD class="report_cell" ALIGN="LEFT"><#COLUMN3.FIELD#></TD>
    <TD class="report_cell" ALIGN="LEFT"><#COLUMN4.FIELD#></TD>
    <TD class="report_cell" ALIGN="LEFT"><#COLUMN5.FIELD#></TD>
    </tr>
    <!--- footer --->
    <TR><TD></TD></TR>
    this should produce a report with a table structure (you may see the whole if you give BORDER="1" in the main table tag). Within this table, the first column of the first row should be showing top-leftmost column value once (COLUMN1 value) and then the next rows would show last four column values as a table block on the right-bottom part.
    with kind regards,
    naqvi

  • Process/stpes to modify the report painter reports...

    Hi,
        I want to modify the report painter report. Could anybody tell me how can we do this. Where can we do this and it would be helpful if any body advise with the steps.
    The requirement is to add one line in the current report painter report and remove one line from it.
    Regards....

    Hi,
    Modifying a report painter report is very similar to creating the report itself. Below mentioned are the steps in general, please use them as per your requirement.
    From the relevant application, choose Tools->Report Painter->Report->Create.
    The Report Painter: Create Report screen appears.
    You can also create Report Painter reports from any Report Writer screen. To do so, choose Report Writer->Report Painter-> Create report.
    Enter the name of the library the report is to use, and a name and description for the report. The report name can be a maximum of eight characters long. If you want to create your report using an existing Report Painter report as a basis, enter the name of the report that you want to copy under Copy from. Both reports must use the same library.
    Choose Create.The next screen displays an empty report containing four rows and four columns (this is the basic structure for a report). You define your report on this screen.
    Enter or change the description for the report by double-clicking the report description field.
    A dialog box appears in which you can enter a short, medium, and long text for the report description.
    Define the rows of your report.Rows contain a combination of characteristic values or formulas. Note the lead column at the first position of the rows. The Report Painter uses the lead column to access the rows. You can replace the description Lead column with a different term.
    Define the columns of your report. Columns contain a combination of a basic key figure and optional restricting characteristic values. You can also use predefined key figures to present key figures and characteristics that make business sense. For example, a number of predefined key figures are delivered for the libraries in Overhead Cost Controlling that can be copied directly into the reports, where they can be modified as required.
    Define general data selection criteria. The general data selection criteria restrict data selection for the report.
    Choose Save and then Execute to create the report. Assign the report to a report group.
    You have to display the report before you execute it, so that you can later change the report layout directly from the report list. Once you have defined a report, you can display and print out a table of contents with Extras->Overview.
    The overview contains the characteristics and characteristic values used in the individual sections, column blocks, and general data selection criteria. It also provides general information such as the user who last changed the report, the report name, and the standard layout assigned to the report, as well as details on the report formats.
    If you double-click an individual characteristic, you can see where this characteristic is used in the report definition.
    Hope this helps you. Let me know if you need an specific information.
    Rgds
    Manish

  • Report Layout in report Painter

    I created a Report in reportPainter. In the report layout, lead column section..I select Group Name to display the group name (set's id) in the report's lead column but not all the set's keys appear. It only appears children's ids but not the father's ids.
    I also need the father's ids....why do I do to have the father's ids too?
    Thanks...
    Example
    father set:
    A    Inventories
    chidren sets:
    A1 Raw Materials
    A2 Obsolete Materials
    In the report I only see the A1 and A2 ids and its descriptions. I also see the Inventories word. But I dont see the A key next to the Inventories description....why?

    Hi,
    Check whether the field in the internal table used for displaying ID is getting pouplated or not

  • Crystal Report Layout

    Hi Expert.
    I created a report layout in crystal report that I will be attaching in an add-on program which is a document type for report viewing via PLD.  However, as i was setting up my layout in the report layout manager, I cannot point my layout in the document addon that I created.
    Is there a way to add my addon in the list of modules in the report layout manager?

    No it is not possible.
    What you can do: import you crystal layout as "normal report" and active the menu when you would like to print out the document. You can pass parameters, and show the print preview. then you can click on print button via code.
    Regards
    J

Maybe you are looking for