Migrate report model 6i to 10g

Hi all

I'm working on the report to Oracle 10 g.
but in my business, I have an older model that was made in 6i.
I have question that how to migrate report model 6i to 10g?
I read in the forum that I just compile the model in the report of 10g. which is the correct answer or not, I want to just make sure.

Thank you in advanced for your answer.

The best way to find out is to simply give it a try. ;-)

Tags: Oracle Development

Similar Questions

  • The mouse show details in a report model - jQuery

    Hello

    I could use some help on the below question. I am creating a report with a custom report model that will allow me to view the details of each line in a popup.

    The sample that I created can be verified using the sub workspace.

    URL: apex.oracle.com

    Workspace: Mon-samples

    Username: support

    Password: support1

    Application: 62495

    Page: 7

    What I did was to create a simple report model by passing the ID of each line. function jQuery and CSS to the page level.

    Now the problem:

    • As I've used ID in the report model and jQuery, this isn't showing the respective details but showing all the details. I think I should use class but don't know how I can change the function dynamically.
    • Once I got to the question above, I would like to add a few links from the context menu and make the popup stay when I move the cursor in the pop-up window and allow me to click.


    Ask an expert in this matter.


    Thank you

    Stephanie.

    Kalesh Ravi-Oracle wrote:

    I could use some help on the below question. I am creating a report with a custom report model that will allow me to view the details of each line in a popup.

    The sample that I created can be verified using the sub workspace.

    URL: apex.oracle.com

    Workspace: Mon-samples

    Username: support

    Password: support1

    Application: 62495

    Page: 7

    What I did was to create a simple report model by passing the ID of each line. function jQuery and CSS to the page level.

    Now the problem:

    • As I've used ID in the report model and jQuery, this isn't showing the respective details but showing all the details. I think I should use class but don't know how I can change the function dynamically.

    Indeed. Attributes ID must uniquely identify an element in the document. The problem, it is that the code is unable to tell the difference between the list items and therefore displays all items corresponding to the ID selector, only the last being visible on top.

    • Once I got to the question above, I would like to add a few links from the context menu and make the popup stay when I move the cursor in the pop-up window and allow me to click.

    This can actually be implemented purely in CSS without using JavaScript or jQuery at all. I created a demonstration of this in your application.

    Custom report template

    The report model is simplified and syntactically corrected by the replacement of the ID attributes in double with a single top-level class attribute. The semantics is improved by using a list of description in place of non-semantique div and inappropriate p elements.

    Front of the lines

    After the lines

Model of line 1

  • #EMPNO#
    Name
    #ENAME#
    Job
    #JOB#
    Manager
    #MGR#
    Hire Date
    #HIREDATE#
  • Inline CSS page

    See comments below for the details of the CSS rules involved.

    /*
      Float list so that list items do not span full width of page.
    
      Apply padding top and bottom to ensure all pop-ups are fully visible.
    */
    .details-popup {
      float: left;
      clear: right;
      margin-right: 0;
      padding: 2em 0 2em 0;
    }
    
    /*
      Relative positioning on list items enables pop-ups to be dynamically positioned
      using only CSS.
    */
    .details-popup li {
      position: relative;
    }
    
    /*
      Style and initially position the detail pop-ups.
    
      For accessibility reasons the pop-up is not hidden using display: none, but is
      positioned outside the visible viewport. This means the detail information
      is still accessible to screen readers, but does not appear on visual displays.
    */
    .details-popup li dl {
      position: absolute;
      top: -3.6em;
      left: -10000em;
      margin: 0;
      border: 1px solid #e2e2e2;
      padding: 1em;
      width: 14em;
      background-color: #fcfcfc;
      font-size: smaller;
      opacity: 0;
    }
    
    /*
      Display the details pop-up for a list entry when the mouse pointer hovers over
      it.
    
      This is achieved by moving the element from its dormant off screen location
      to a position slightly to the right of the list entry.
    
      CSS animation is used to fade the pop-up in.
    */
    .details-popup li:hover>dl {
      left: auto;
      right: -13em;
      opacity: 1;
      transition: opacity 0.8s;
    }
    
    /*
      Style the detail terms and descriptions so they appear on the same line.
    */
    .details-popup li dt {
      display: inline-block;
      width: 5em;
      font-weight: 500;
    }
    .details-popup li dd {
      display: inline;
      margin: 0;
    }
    .details-popup li dd:after{
      display: block;
      content: "";
    }
    
    /*
      Additional rules to render CSS pointer on pop-up box.
    */
    .details-popup li dl:after, .details-popup li dl:before {
      right: 100%;
      top: 50%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none;
    }
    .details-popup li dl:after {
      border-color: rgba(252, 252, 252, 0);
      border-right-color: #fcfcfc;
      border-width: 10px;
      margin-top: -10px;
    }
    .details-popup li dl:before {
      border-color: rgba(226, 226, 226, 0);
      border-right-color: #e2e2e2;
      border-width: 11px;
      margin-top: -11px;
    }
    
  • Substitution strings do not fill in report models > header > before lines

    I'm unable to use the substitution string in report models > header > before lines

    < border tr = "1" >

    < class th = "header" align = "center" colspan = "2" > < /th > SYSDATE-3

    < class th = "header" align = "center" colspan = "2" > < /th > SYSDATE-2

    < class th = "header" align = "center" colspan = "2" > < /th > < /tr > SYSDATE-1

    I need to use something like below

    < border tr = "1" >

    < class th = "header" align = "center" colspan = "2" > & SYSDATE1. < /th >

    < class th = "header" align = "center" colspan = "2" > & SYSDATE2. < /th >

    < class th = "header" align = "center" colspan = "2" > & SYSDATE3 < /th > < /tr >

    SYSDATE1

    SYSDATE2

    SYSDATE3 are elements of my page.

    Version: Apex 4.2

    Theme: Red Simple

    Report model: Standard, change the line colors

    Report type: report Classic

    Is it possible to use these elements in the specified model?

    Thank you

    Chauvet

    The ampersand/dot substition works in report models. https://Apex.Oracle.com/pls/Apex/f?p=3568966:1

    Maybe the page item values are not saved in session state, before the report is rendered.

  • Migration reports, lots, etc.

    Gurus,
    Web site now I want to migrate reports and other artifacts such as prizes and books, research reports, etc. from one environment to the other. I think I can do is using the LCM tool, as is the system 11.
    Also, I also believe that I can do an export of the objects in the workspace that creates a zip file that I can use to import into the target environment.
    My question at this point is that, if I export the ROOT of the source environment, includes under her, as webanalysis reports, financial, lots, etc., and what I specify anythinig environmental target,
    and what about LCM?
    It is important all at once or I need to specify each artifact individually?
    Thank you

    LCM will export all (LCM should be same version source/target)
    Export to workspace will take items from financial reports and create a zip, web analytics is separated
    Why don't give you it a try and see.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Problem with a report model

    I have a report that uses a custom model.
    Light blue 15 theme it worked fine.
    I changed my theme to 21 scarlet and copied the model, but is no longer functions, that is to say the highlight is ignored

    My report is
    select owner, table_name, partition_name, subpartition_name, 
    to_date(to_char(latest,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss') update_time, 
    to_date(to_char(previous,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss') previous, 
    to_char(latest-previous,'dd.mm.yyyy hh24:mi:ss') duration,
    case when (to_date(to_char(latest,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss')-to_date(to_char(previous,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss'))*24*60 > 120 then 'CC0000'
         when (to_date(to_char(latest,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss')-to_date(to_char(previous,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss'))*24*60 > 90 then 'FF0000'
         when (to_date(to_char(latest,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss')-to_date(to_char(previous,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss'))*24*60 > 60 then 'FF6600'
         when (to_date(to_char(latest,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss')-to_date(to_char(previous,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss'))*24*60 > 30 then 'FF9900'
         when (to_date(to_char(latest,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss')-to_date(to_char(previous,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss'))*24*60 > 20 then 'FFCC00'
         when (to_date(to_char(latest,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss')-to_date(to_char(previous,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss'))*24*60 > 10 then 'FFFF00'
         else 'FFFFFF' 
    end BG_COLOUR
     from (
    select da.owner, da.table_name, da.partition_name, da.subpartition_name ,(da.stats_update_time) latest, 
    nvl((select 
    max(stats_update_time) 
    from DBA_TAB_STATS_HISTORY 
    where (owner like ('%ADMIN') or owner in (select username from dba_users where default_tablespace='USERS'))  and stats_update_time >= to_date(:P840_START_DATE,'dd.mm.yyyy hh24:mi:ss') and stats_update_time <= to_date(:P840_END_DATE,'dd.mm.yyyy hh24:mi:ss') and stats_update_time < (da.stats_update_time)),to_date(:P840_START_DATE,'dd.mm.yyyy hh24:mi:ss')) previous 
    from (
    select 
    owner, table_name, partition_name, subpartition_name, stats_update_time 
    from DBA_TAB_STATS_HISTORY 
    where (owner like ('%ADMIN') or owner in (select username from dba_users where default_tablespace='USERS'))  and stats_update_time >= to_date(:P840_START_DATE,'dd.mm.yyyy hh24:mi:ss') and stats_update_time <= to_date(:P840_END_DATE,'dd.mm.yyyy hh24:mi:ss') 
    order by stats_update_time asc) da)
    All the passes are passes standard report

    My model is
    Model name column Type (model line)
    Custom class 1 template
    Line Template1
    <tr style="background-color:#8#;">
    <td style="background-color:#8#;" class="t15data">#1#</td>
    <td style="background-color:#8#;" class="t15data">#2#</td>
    <td style="background-color:#8#;" class="t15data">#3#</td>
    <td style="background-color:#8#;" class="t15data">#4#</td>
    <td style="background-color:#8#;" class="t15data">#5#</td>
    <td style="background-color:#8#;" class="t15data">#6#</td>
    <td style="background-color:#8#;" class="t15data">#7#</td>
    </tr>
    Any help appreciated

    Gus

    Gus C wrote:
    I changed the template with your code, but still no formatting.
    It's the source of the page

    USER_TAB_STATS_HISTORY for 10-01-2013-21.00.04Edit
  • Several classes of 15-specific to the topic: Watch the report model theme Standard 21 and map the classes of equivalent items for custom report templates for the report to match the theme 21 L & F.

    Clearly some s ' # ' abandoned somewhere along the line. Should have

    and so on.

    The query or the model never understood s ' # ' in hexadecimal color values? If not maybe you used a previous version of the 15 without DOCTYPE theme and "#"-have been applied in quirks colors mode less, but do not conform to standards 21 theme...

    I would add the s ' # ' to the application as they are actually a part of the value of the color:

    ...
    case when (to_date(to_char(latest,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss')-to_date(to_char(previous,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss'))*24*60 > 120 then '#CC0000'
         when (to_date(to_char(latest,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss')-to_date(to_char(previous,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss'))*24*60 > 90 then #'FF0000'
         when (to_date(to_char(latest,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss')-to_date(to_char(previous,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss'))*24*60 > 60 then '#FF6600'
         when (to_date(to_char(latest,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss')-to_date(to_char(previous,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss'))*24*60 > 30 then '#FF9900'
         when (to_date(to_char(latest,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss')-to_date(to_char(previous,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss'))*24*60 > 20 then '#FFCC00'
         when (to_date(to_char(latest,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss')-to_date(to_char(previous,'dd.mm.yyyy hh24:mi:ss'),'dd.mm.yyyy hh24:mi:ss'))*24*60 > 10 then '#FFFF00'
         else '#FFFFFF'
    end BG_COLOUR
    ...
    

    However if this model is used by several reports you can change the model to avoid changing all queries:

    ...
    
    ...

    This is not a good solution, because it means that you can perfectly change color specifications in the request of hexadecimal values of named colors or values RGB etc..

  • Report model of column named with 2 lines/registration poster null in the top row

    I was able to create a report model of column named with 2 rows by record type for a tabular presentation, but it seems to hide only the first line of the original registration and displays the 2nd row, i.e. all NULL values. All other records appear correctly.

    Here is the HTML code for the page that results for the init_row of the report. I understand why he behaves this way, but I have no idea how to do the style of the first < tr > Reports to the 2nd line of the record.
    <tr id="init_row_R1009150109271352230" style="display:none;" >
    <td rowspan="2"><a href="javascript:ShowRegion('')" >(null)</a></td>
    <td rowspan="2">(null)</td>
    <td rowspan="2">(null)</td>
    <td rowspan="2"><label for="f04_0000" class="hideMeButHearMe">Completion Date#ROW_HEADER#</label><span style="white-space: nowrap;"><input type="text"  id="f04_0000" name="f04" maxlength="2000" size="12" value="" autocomplete="off"></span></td>
    <td>Premises</td>
    <td><label for="f07_0000" class="hideMeButHearMe">Vacant#ROW_HEADER#</label><input type="text" name="f07" size="5" maxlength="2000" value=""  id="f07_0000" /></td>
    <td><label for="f08_0000" class="hideMeButHearMe">Delinked#ROW_HEADER#</label><input type="text" name="f08" size="5" maxlength="2000" value=""  id="f08_0000" /></td>
    <td><label for="f09_0000" class="hideMeButHearMe">Soft Dt#ROW_HEADER#</label><input type="text" name="f09" size="5" maxlength="2000" value=""  id="f09_0000" /></td>
    <td><label for="f10_0000" class="hideMeButHearMe">Ull Poi#ROW_HEADER#</label><input type="text" name="f10" size="5" maxlength="2000" value=""  id="f10_0000" /></td>
    <td><label for="f11_0000" class="hideMeButHearMe">Ported#ROW_HEADER#</label><input type="text" name="f11" size="5" maxlength="2000" value=""  id="f11_0000" /></td>
    <td><label for="f12_0000" class="hideMeButHearMe">Blocked#ROW_HEADER#</label><input type="text" name="f12" size="5" maxlength="2000" value=""  id="f12_0000" /></td>
    </tr>
    <tr>
    <td>Path</td>
    <td><label for="f13_0000" class="hideMeButHearMe">Path Vacant#ROW_HEADER#</label><input type="text" name="f13" size="5" maxlength="2000" value=""  id="f13_0000" /></td>
    <td><label for="f14_0000" class="hideMeButHearMe">Path Delinked#ROW_HEADER#</label><input type="text" name="f14" size="5" maxlength="2000" value=""  id="f14_0000" /></td>
    <td><label for="f15_0000" class="hideMeButHearMe">Path Soft Dt#ROW_HEADER#</label><input type="text" name="f15" size="5" maxlength="2000" value=""  id="f15_0000" /></td>
    <td><label for="f16_0000" class="hideMeButHearMe">Path Ull Poi#ROW_HEADER#</label><input type="text" name="f16" size="5" maxlength="2000" value=""  id="f16_0000" /></td>
    <td><label for="f17_0000" class="hideMeButHearMe">Path Ported#ROW_HEADER#</label><input type="text" name="f17" size="5" maxlength="2000" value=""  id="f17_0000" /></td>
    <td><label for="f18_0000" class="hideMeButHearMe">Path Blocked#ROW_HEADER#</label><input type="text" name="f18" size="5" maxlength="2000" value=""  id="f18_0000" /></td>
    </tr>
    <tr>
    Any ideas to try would be greatly appreciated. I tried to use conditions on the values of #ROWNUM #, but the null line is still there...

    And yes I know I should not use the tabular forms, but sometimes what is wanted, it is not what is better... :-)

    See you soon,.
    Greg

    Published by: snowman on 4 December 2012 15:12

    Published by: snowman on 4 December 2012 15:13

    See + {: identifier of the thread = 1116477} +.

    Sorry, I forgot all that when I suggested that you can use a custom here report model (not surprisingly, since I did not use the tabular forms given that these changes have been made).

    I don't remember see potential customization discussed in 4.1 or 4.2 (but then I would not have all these tabular forms).

    If your options seem to be:

  • Using nested tables as suggested by mark, who introduced the downside to Peter about the width of the columns (you can try to remedy using CSS to create fixed-width tables/columns, but my last experience of this receipt very messy in terms of support of IE cross-browser and legacy...)
  • Build the page completely manually without the help of the features integrated in the form of the APEX.
  • Try to customize the behavior of line add to take into account the layout is customized using the dynamics of the actions/jQuery.
  • Do not use the tabular forms.

  • #PAGINATION # in the report model

    Hello

    (Apex 4.0.1)

    I'm changing the standard, the report model of alternation of the colors and line in the sections after lines I put:
    <tr><td class="pwc_ReportHeader">#PAGINATION#</td></tr></table>
    </table>
    In other words, I want the pagination to be displayed in the last line of the table, using a specific style.

    However, it is what is generated in the page:
    <tr>
      <td class="pwc_ReportHeader">
        <tr>
          <td colspan="7" align="right" >
            <table summary="">
              <tr>
                <td class="pagination"></td>
                <td class="pagination"></td>
                <td nowrap="nowrap" class="pagination"><span>1 - 2</span></td>
                <td class="pagination"></td>
                <td class="pagination"></td>
              </tr>
            </table>
          </td>
        </tr>
      </td>
    </tr>
    As you can see, it replace the placeholder #PAGINATION # with a table within a tr, which completely messes up the layout I want. These tags do not even have IDs or classes associated with them, so it is impossible to style them using CSS.

    Where did these tr and table come from? Is it possible to change what is generated?

    Thank you
    Luis

    Luis Cabral says:
    In other words, I want the pagination to be displayed in the last line of the table, using a specific style.

    However, it is what is generated in the page:

  • As you can see, it replace the placeholder #PAGINATION # with a table within a tr, which completely messes up the layout I want.

    Join the club:

    {: identifier of the thread = 333925}
    {: identifier of the thread = 1047198}

    (I'm sure there are others).

    Where did these tr and table come from?

    From the bowels of the APEX.

    Is it possible to change what is generated?

    Perhaps. Never done this or seen do:

    {: identifier of the thread = 1025125}

    Another approach would be to use a dynamic/JavaScript Action to change the items generated by APEX in the DOM.

    These tags do not even have IDs or classes associated with them, so it is impossible to style them using CSS.

    ID and classes are not the only one of the CSS selectors. Unless you're stuck in quirks on IE6/7/8 /(9?) mode, you can use the attribute, children, brothers of pseudo-class selectors and adjacent to target these elements.

    If you publish the report model full that we can try to identify the possible selectors.

  • How to extract the date parameter, which must appear in the report model?

    Hi gurus and Experts.

    I need to shoot the date setting, I chose at RANDOM to appear in my report model? How this code at RANDOM?

    Identifier are: dto and cdes
    Channel marker date: MM-DD-YYYY

    Kind regards

    JP

    Published by: user10955574 on November 10, 2010 02:38

    Published by: user10955574 on November 10, 2010 02:39

    Declare the parameter in the model as

    and use it as

  • Conditional HTML code in a report model

    Hello

    I would like to know HOW to have conditional HTML code when we create a model for a region of report.
    I have a report of area where I display the range of the DVD where associated files are stored.
    If there is only 1 DVD (IF ND (number of DVD) = 1), I want to hide a part of the HTML CODE.


    More details:

    This application where we have all the magazines and books that we scanned.
    My request for the region of report is:
    Select ID, TIT, SERIE, YEAR, DVD1, DVD2 from TABLE where
    TIT = 'National Geographic'
    
    Results
    ________________
    
    TIT                 SERIE     DVD1       DVD2          YEAR  ND       NF           FORMAT
    National Geographic     C     918       938         2006   20       24936         TIFF 8 bits, 200 bpp
    Then DVD1 is the 1 DVD1 and DVD2 series is the last DVD of the series


    This shows my model:
    C2006-0918 to C2006-0938
    Content: 24 936 files on  20 DVDs
    Here is the HTML code in my template

    <tr>
        <td>#SERIE# #YEAR# - #DV1# to #SERIE# #YEAR# - #DV2#</td>
      </tr>
      <tr>
        <td>Contenu:</strong></td>
        <td>#NF# files on #ND# DVD</td>
      </tr>
    If there is only 1 DVD, I want to hide this code in the model

    -#DV1 # to #SERIE # #YEAR #-#DV2 #.
    * How can I do?


    Thank you

    Roseline

    Models of conditional row/column in report models will work for you?

    Something like #ND # = 1 or #ND # > 1?

  • Rights of access to the BI Publisher 10g and 11g migrate reports

    Hi all

    I've migrated BI Publisher reports in 10G in the middle of 11 G environment. I installed both applications in local machine, to carry out this activity. Post, I moved a folder containing few reports (.xdo and .xdm) in OBIEE 11g environment installed in Linux environment.

    Report units are visible, but .xdo cannot be performed. I get the error on execution it below.

    "oracle.xdo.servlet.CreateException: oracle.xdo.servlet.CreateException: oracle.xdo.servlet.CreateException: oracle.xdo.servlet.CreateException: definition of data model not found: / report of Performance of the Bank-like of.xdm". "

    In addition, I don't have the access rights to change the datamodel (xdm) and report (xdo)

    I'm stuck with this problem for a few days and could not get much help from the available discussions.

    Thanks in advance

    Prasanna

    Hello

    I was able to retain the rights administrative everything on the new catalogue by doing the steps below

    1 run a fresh upgrade with destination as a separate folder (D:/dest) and not selecting "{BI_DOMAIN}... repository/bi_publisher /'."

    2 created a new catalog of presentation by specifying the path of the catalog in em ' in a new folder.

    3. copy the units OBI EE (file and files problemcs), upgraded in the shared folder in the folder newly created by Ms.

    4. go in BI Publisher 11 g-> Administration. Navigate to the directory of BI Publisher and point to the destination folder would be: / dest' and run 'Upload to the BI presentation catalog.

    5. now, all units are available in a shared folder with full rights for the user "weblogic.

    Concerning

    Prasanna

  • I need a code to run a report a forms on 10G...

    Hello!! I m 6i to 10G migration and I can not run a report... can someone send me a code example to run a report on a form in 10G?

    Thank you!!

    Kind regards!

    IAM using Javabean in oracle 10 g tun report forms...

    First, create a block with a name control and add a bean with a name
    userid_bean. Click the bean field and change its width and its height
    so that u can not see when you run the form.

    Now use the code when you code to run the report below.

    Declare
    rep_url varchar2 (2000);

    Start

    rep_url: = ' / reports/rwservlet? report = filepath\rep1. RDF' |
    «& desformat=htmlcss&destype=cache&userid=sample/sample@oracle» | '& paramform = yes;

    -Write Log messages to the console of JInitiator forms. The following line must
    -be disabled before running this code in any production environment.

    set_custom_property ('control.userid_bean', 1, 'ADD_USERID',)
    get_application_property (username) | » /'||
    get_application_property (Password). » @'||
    get_application_property (connect_string));

    -writes the cookie

    set_custom_property('control.userid_bean',1,'WRITE_USERID_COOKIE','10g');
    Web.show_document (rep_url, '_blank');

    end;

  • Report model sheet in

    We're heading TestStand 2012.  In 2010, I changed the sequential model so that after the trial, two reports have been generated.  The two have been the built in text reports but I changed the filter expression while a report was all the results and the other is only failed results.  It was easy to do with a loop around the section of report generation and just change the filter expression for each loop (as well as the path of the file to save).

    With 2012 and plug-in models, I'm trying to figure out how to do this.  I checked the example of a report in simple text format, but which does not apply here.  I want to use the construction in a report but to create two reports as above.  I also need to slightly modify the header.  In 2010, I just modified the ReportGen_txt.seq.  I think that now, it would be preferable to copy all this to a plug-in.  Can I copy the built in text file under stuff a plug-in then change?  And then, how to generate two reports with this new architecture?

    Thank you.

    Just insert two instances of report into the treatment result dialog box and configure each with a different filter expression.

    ReportGen_txt.seq is still part of the report of plug-in, so the same changes must have the same effect.

  • Custom report model - problem with summary

    Hello

    I've created a report with the custom template.  Everything seems okay except that the 'Sum' section (marked in red below) containing the header entries.  I think, I might have placed the scripts in the wrong places bu tnot able to understand.  What I expect is, the total value of the 9,920.00 show with label - "Total: '."

    img 1.png

    Only under sections are filled in the template, the rest is blank.

    Line 1 a - model

    <tbody>
    <tr> <th>Receipt No.: <td id="rpt_no" colspan="2">#RECEIPT_NO# <th id="rpt_dt">Receipt Date: <td>#RECEIPT_DATE#
    <tr> <th>Description: <td colspan="4">#DESCRIPTION# </br> #CHQ_DD#
    <tr> <th id="tab_head">A/c.CODE <th id="tab_head" colspan="3">HEAD OF ACCOUNT <th id="tab_head_amt">AMOUNT
    <tr> <td>#ACCOUNT_CODE# <td colspan="3">#ACCOUNT_NAME# </br> #INSTALMENT# </br> #PARTICULARS# <td class="num">#AMOUNT#
    

    Line 2 - model

    <tr> <td>#ACCOUNT_CODE# <td colspan="3">#ACCOUNT_NAME# </br> #INSTALMENT# </br> #PARTICULARS# <td class="num">#AMOUNT#
    

    Front lines-

    <div class="report-1" #REPORT_ATTRIBUTES# id="report_#REGION_STATIC_ID#">
    <table>
    <tr>  <th id="comp-name" colspan="5">&G_COMPANY_NAME.
    <tr>  <th id="comp-adr" colspan="5">&G_COMPANY_ADDRESS.
    <tr>  <th id="comp-adr" colspan="5">&G_COMPANY_PHONE.  &G_COMPANY_EMAIL.
    

    After the lines-

    <tbody class="uReportPagination">
          #PAGINATION#
      </table>
      <div class="CSV">#EXTERNAL_LINK##CSV_LINK#</div>
    </div>
    

    Please let me know how to solve my problem.

    Thank you and best regards,

    -Anand

    anand_gp wrote:

    And Yes, it is built in formatting of column sum-

    Who does not work with a named column template customized. You must calculate the sum in the report query and place the result in the report by using another conditional model.

    See the sample application I've created in your workspace apex.oracle.com.

  • How to migrate a model of data from 4.0.1 to 4.0.3?

    I just started to use to shape this week.  I have a data model that is registered in the default workspace under the 4.0.1 area.  I installed the 4.0.3 version in a separate area.  How can I migrate the data model to the 4.0.3 4.0.1?  Just copy the top-level .dmd file and the directory of the default in the 4.0.3 4.0.1 deafult workspaces?

    Thanks in advance.

    Hello

    There is no this term a "default workspace. You can copy the file design.dmd and design directory to another location and started working with DM 4.0.3 here or you can work at the place where he is now. In the latter case, don't forget to change not the same design with DM 4.0.1 - you will lose all the new properties introduced in version 4.0.3

    Philippe

  • model working in 10g RTF is divided in 11g

    A model containing tables and graphs work perfectly well in BI Publisher 10g, but throws an error in 11g

    The error message is the following:

    Further details < line 45, column 103 >: XML-23002: internal xpath (error)

    "[@Line 45 == > < xsl: for each select=".//ROW[position () = '1'] "xdofo:ctx ="17">

    I've identified the section in the template related to this code:

    <? for each: ROW [position () = '1']? > <? DBFIELD1? > <? end foreach? >


    When I delete this code, the model no error, but does not all graphics appear in the model.


    Advice would be appreciated.

    TO

    <>// ROW [position () =1]? >

    // LINE and '1' 1

  • Maybe you are looking for

    • Wireless is on but Satellite Pro A300-1EA says it is OFF

      I got this computer from April will be no problem. My wireless is on (on the switch key and func) but my computer does not connect to a network, the icon has a red x through it, and when I try and diagose I continues to told to turn on wireless. I re

    • Satellite A100-233 transfer to the category of goods "out of production".

      I recently bought the captioned Toshiba device. When buying has been marked as 'new' on the www.mytoshiba.ru site, and as has been posted on https://ru.computers.toshiba-europe.com in the category of standard product.Today, to my disappointment, I di

    • How to upgrade Ram on Acer Aspire ES1 - 531?

      I have Acer Aspire ES1-531 with 4 GB of Ram. How can I switch to 8 GB if anyone can give Me Instructions.

    • Error code: Ox00000005

      While trying to print, I received the following message is displayed: operation could not be completed (error Ox00000005).  What this means and how can I solve the problem.  (With the help of Windows Vista) Thank you.

    • Problem scanning with HP 6500 a Plus

      I had a brand-new HP 6500 has more and it prints well. However, when I tried to scan a document from the touch screen I get this message "connection error: the connection to the computer is down OR the HP scanning application cannot detect the OCR so

    OwnerTable NamePartition NameSubpartition NameStart TimeEnd TimeDuration
    DWHADMIN CPO_LOAD_STATISTIC - - 10.01.13 21:00:37 10.01.13 21:00:04 +000000000 00:00:33.346524
    1 - 2