Question of Clickjacking - addition of several models of url in a single filter mapping

It's on Clickjacking issue. To avoid this problem of clickjacking I've added the following in the config file (web.xml).


< filter mapping >
< filter-name > CFClickJackFilterDeny < / filter-name >
< url-pattern >https://abcd.rw.xyz.com/mer/nao/app_v4/* < / url-pattern >
< / filter-mapping >


I have a doubt here. I need prevent this problem of clickjacking for another application as well (say, https://abcd.rw.xyz.com/mer/nao/app_v5/*). But I did it by adding a filter plus-cartographie, apart from the one mentioned above, in the config file. I can achieve this by adding several models in the same filter mapping URL? If possible, which is the best method? I want to say the creation of a new filter-mapping or add several models of url in the same filter mapping?


Any ideas or thoughts appreciated?

In this case, you can use a set of with several elements of . This design is actually better than the one in which you define a url for each item in model. In the design of the latter, the underlying Java code will create additional objects to represent the additional filter mappings, unnecessarily.

Tags: ColdFusion

Similar Questions

  • Addition of several xml using Insertxmlbefore in a single query. Help, please.

    Oracle version

    Oracle Database 11 g Enterprise Edition Release 11.2.0.4.0 - 64 bit Production

    PL/SQL Release 11.2.0.4.0 - Production

    CORE Production 11.2.0.4.0

    AMT for Linux: Version 11.2.0.4.0 - Production

    NLSRTL Version 11.2.0.4.0 - Production

    I have an xml where I need to insert a new xml basedupon the partyID.

    for each partyid in the need to xmoutput to insert representative data.

    with t as (
    select 1 source_no , xmltype('<report>
                       <partyReported partyId="1">
                         <name> TEST123</name>
                      </partyReported>
                      <partyReported partyId="2">
                         <name> TEST456</name>
                      </partyReported>
                   </report>')
                   xmloutput
                   from dual
                )
              ,
              t_member as (
               select 1 candidate_no, xmltype('<Representative>
                                           <name> rep123 </name>
                                  </Representative>') rep_xml from dual
              union all
              select 2 , xmltype('<Representative>
                                           <name> rep456 </name>
                                  </Representative>') from dual
            )
            , t_rep_member as(
            SELECT
              source_no
            , X.*
            , xmloutput
         FROM
              t
            , XMLTABLE ('/report/partyReported' passing xmloutput COLUMNS candidate_no INTEGER PATH '@partyId', candidate_idx FOR ordinality ) AS X
         )
         , all_data
         as (
         select sourcE_no, a.candidate_no, xmloutput, rep_xml from t_rep_member a, t_member b
         where a.candidate_no = b.candidate_no
         )
         select source_no, MergeRepXml(repxml(candidate_no,rep_xml,xmloutput)) final_xml from all_data
         group by sourCe_no;
    
    

    source_no, candidate_no, candidate_idx, xmloutput
    
    1    1    1    "<report>                   <partyReported partyId="1">                     <name> TEST123</name>                  </partyReported>                   <partyReported partyId="2">                     <name> TEST456</name>                  </partyReported>                </report>"
    1    2    2    "<report>                   <partyReported partyId="1">                     <name> TEST123</name>                  </partyReported>                   <partyReported partyId="2">                     <name> TEST456</name>                  </partyReported>                </report>"
    
    
    
    

    I solved this problem, but I get an error message when I try to do 1000 of them.

    ERROR:

    ORA-22813: value of the operand is greater than the limits of the system

    create or replace
    type RepXml as object( candidate_no number, rep_xml xmltype, output xmltype)
    /
    create or replace
    type RepXmltab as table of RepXml
    /
    
    
    
    
    
    create or replace
    type MERGEREP as object
    (
      -- string varchar2(4000),                  -- deleted
      val_table  RepXmltab ,           -- added
    
    
      static function ODCIAggregateInitialize
        ( sctx in out MERGEREP )
        return number ,
    
      member function ODCIAggregateIterate
        ( self  in out MERGEREP ,
          value in     RepXml
        ) return number ,
    
      member function ODCIAggregateTerminate
        ( self        in  MERGEREP,
          returnvalue out xmltype,
          flags in number
        ) return number ,
    
      member function ODCIAggregateMerge
        ( self in out MERGEREP,
          ctx2 in     MERGEREP
        ) return number
    );
    
    
    create or replace
    type body MERGEREP
    is
    
      static function ODCIAggregateInitialize
      ( sctx in out MERGEREP )
      return number
      is
      begin
    
         sctx := MERGEREP( repxmltab(null,null,null) );
         --val_table:= repxmltab(null);
    
        return ODCIConst.Success ;
    
      end;
    
      member function ODCIAggregateIterate
      ( self  in out MERGEREP ,
        value in     RepXml
      ) return number
      is
      begin
    
        self.val_table.extend;
        self.val_table(self.val_table.count) := value;
    
        return ODCIConst.Success;
      end;
    
      member function ODCIAggregateTerminate
      ( self        in  MERGEREP ,
        returnvalue out xmltype ,
        flags       in  number
      ) return number
      is
    
        v_data  xmltype ;
    
      begin
    
    v_data:= null;
    
    for x in (
         select candidate_no,rep_xml,output
          from   table(val_table)
          )
          loop
          v_data:= x.output;
    
          end loop;
               
       
        for x in
        (
    select candidate_no,rep_xml,output
          from   table(val_table)
          )
        loop
        select insertxmlbefore(v_data,'/report/partyReported[@partyId="'||x.candidate_no||'"]', x.rep_xml) into v_data from dual;
    null;
        end loop;
    
        returnValue := ( v_data) ;
    
    v_data:= null;
    
        return ODCIConst.Success;
    
      end;
    
      member function ODCIAggregateMerge
      ( self in out MERGEREP ,
        ctx2 in     MERGEREP
      ) return number
      is
      begin
    
        for i in 1 .. ctx2.val_table.count
        loop
          self.val_table.extend;
          self.val_table(self.val_table.count) := ctx2.val_table(i);
        end loop;
    
    
    
        return ODCIConst.Success;
    
            end;
      end;
    /
    
    create or replace
    function MergeRepXml
      ( input RepXml )
      return xmltype
      deterministic
      parallel_enable
      aggregate using MERGEREP
    ;
    /
    
    

    With my limited knowledge, I tried to write recursive with clause and achieve the expected results, but many lines are displayed.

    WITH
         t1 AS
         ( SELECT * FROM aps_extendedoutput WHERE source_no = 261177
         )
         --     select * from t1;
       , t AS
         (SELECT
              source_no
            , X.*
            , xmloutput
         FROM
              t1
            , XMLTABLE ('/report/role/partyReported' passing xmloutput COLUMNS candidate_no INTEGER PATH '@partyId', candidate_idx FOR ordinality ) AS X
         )
         --     select * from t;
       , all_data AS
         (SELECT
              /*+ materialize */
              t.candidate_no
            , rep_xml
            , source_no
            , t.candidate_no
            , xmloutput
         FROM
              t
            , aps_reppartyxml t_p
         WHERE
              t.candidate_no = t_p.candidate_no
         )
         --   select * from all_data;
       ,recursive_data(candidate_i, xmloutput, source_no, candidate_no) AS
         (SELECT
              1 candidate_i
              , xmloutput
            ,  source_no
            , 0 candidate_no
         FROM
             t1
         UNION ALL
         SELECT
              candidate_i + 1
              , insertxmlbefore(rd.xmloutput,'/report/role/partyReported[@partyId="'
              ||ad.candidate_no
              ||'"]', ad.rep_xml) xmloutput
            , ad.source_no
            , rd.candidate_no
         FROM
              all_Data ad
            , recursive_data rd
         WHERE
              ad.sourcE_no        = rd.source_no and
               candidate_i     < 3
         )
    SELECT *  FROM recursive_data;
    
    

    for example

    SQL> create table t_member as (
      2  select 1 candidate_no, xmltype('
      3                                rep123 
      4                      ') rep_xml from dual
      5  union all
      6  select 2 , xmltype('
      7                                rep456 
      8                      ') from dual
      9  );
    
    Table created.
    
    SQL>
    SQL> set long 5000
    SQL>
    SQL> with t (source_no, xmloutput) as (
      2    select 1
      3         , xmltype('
      4                      
      5                          TEST123
      6                      
      7                      
      8                          TEST456
      9                      
     10                   ')
     11    from dual
     12  )
     13  select t.source_no
     14       , xmlserialize(document
     15           xmlquery(
     16             'copy $d := .
     17              modify (
     18                for $i in $d/report/partyReported
     19                  , $j in fn:collection("oradb:/DEV/T_MEMBER")/ROW
     20                where $j/CANDIDATE_NO = $i/@partyId
     21                return insert node $j/REP_XML/* before $i
     22              )
     23              return $d'
     24             passing t.xmloutput
     25             returning content
     26           )
     27           indent
     28         ) as final_xml
     29  from t ;
    
     SOURCE_NO FINAL_XML
    ---------- --------------------------------------------------------------------------------
             1 
                 
                    rep123 
                 
                 
                    TEST123
                 
                 
                    rep456 
                 
                 
                    TEST456
                 
               
    
  • problem with the connectivity of customers after mixing several models with WLC 5508 Setup WLAN ap

    Hello

    I have 2 5508 wlc and AP 1130 and 1200 in my test harness.

    Currently, WLAN set is in place and works very well but the customer become a frequent problem with the power of the weak signal same AP is installed very near the place of the customer.

    I have my doubts, if I have a question because I use several models of AP in my set-up?

    How to rectify the same question?

    Some time customer gets limited connectivity, means that they usually get IP also.

    What are all the parameters to check in WLC?

    (1) very difficult for a person on a forum to respond. Check if your AAA server was indeed seen as inactive at the same time for other devices.

    If this is not the case, check the network connectivity between the 2. Maybe packets are lost between wlc and aaa server...

    (2) as I mentioned, it may have nothing to do with clent near or far from the AP. What happens if your DHCP server is not responding to the client? What happens if the dhcp request never reaches the level of the DHCP server for some reason any?

    You must investigate all along path to find out why the customer is not getting an ip address.

    Troubleshooting involves trace of sniffer, debug, client, etc...

  • Several models available for single data model?

    Hi all

    Currently I'm working on the XML Editor, here I need information on how to create a multiple page layouts for the unique data model using RTF.
    Please provide me with information, such as, how we can load several files of patterns page/how we can save and the process to select the specific provision based on the
    requirement.

    Thanks in advance...

    Kind regards
    Gopi.CH

    If you had heard a little more on the requirement, you could get best suggestions for your needs.
    Now it is not clear on what you expect, anyway here's my entries too.

    In addition to the submodel logic suggested by user928059, you can also create several models of XMLP liability provision.
    These models can have the same data source as your data model.
    At runtime, you can choose the desired model of the 'Options' tab in the screen SRS.

    Or if this is for a series of reports, then select the custom layout created in the configuration screens.

  • With the help of several models of breaking

    Hello

    We use BEEP 10.1.3.4, I have 2 questions regarding the breakup:

    1. is it possible to use several models of bursting - to give a quick explanation of our requirement, I need to burst a report with the destination file, but I want to have 2 different models based on a criterion in the application - that is to say if the category is X, then use A burst, the use of other model model B. Is this possible?

    2. I have planned another report to place every day, but I want the report to run only if there is no data output, it should not work if the output result set is empty - is there a way to remove the regular run when there is no data?

    I tried searching forums for the 2 question above, but could not find the right answers... Any comments will be highly appreciated.


    Concerning

    option 1:
    Use model PDF, burst them, you will get two different pdf output, use pdf merge into single output

    option 2:
    move to the rtf model to make the PDF model to the only two model RTF.
    It burst and get a single PDF output.

  • Question on the addition of LUNS to the disk group

    The GI version: 11.2.0.3.0
    Platform: OEL

    I have to add 2 TB for the following disk group. Each logic unit number is 100 GB in size.

    100 x 20 GB is 2 terabytes. Which means that I have to run 20 orders as below
    SQL> ALTER DISKGROUP DATA_DG1 ADD DISK '/dev/sdc1' rebalance power 4;
    Each ALTER DISKGROUP... Rebalancing of the command Add DISK takes about 30 minutes to complete.
    Thus, this operation will take 10 hours to complete.
    ie. 20 x 30 = 600 minutes = 10 hours !!!
    I have a 3-node RAC. Can I run DISKGROUP ALTER... Orders of DISK to be added in parallel with each node? Will ASM instance allows
    several operations of rebalancing in a single disk group?

    http://docs.Oracle.com/CD/E11882_01/server.112/e18951/asmdiskgrps.htm

    Oracle ASM can rebalance of Group of disk at once on a given instance. If you launched balances multiple groups of different drives on a single node, Oracle then processes these operations simultaneously on additional nodes if necessary; otherwise, the rebalancing is performed in series on the single node. You can explicitly run balances on groups of different disks on different nodes at the same time.

    Why do you need to run 20 of these commands?

    You can not only add 20 records at one time:
    ALTER DISKGROUP DATADG ADD DISK
    "diska5/devices / ' NAME disk1.
    "diska6/devices / ' NAME disk2.
    "diska7/devices / ' NAME disk3.
    ...
    .. .etc

    You will need to should not manually rebalance as Oracle will automatically do the rebalancing when configuration changes unless you want to use a default value of such power as defined by the ASM_POWER_LIMIT parameter. You can run the command above with an option of rebalancing so if you you need to do.

  • How to open the pdf 3D with selection of specific models of url link

    I assumed that this feature is not supported, but let me ask you one thing.

    I'm looking for a way to open the pdf 3D with selection of specific models of url link.

    For example, the following link is opened, if LC to open 3d.pdf with automatic selection of the model 'abc' in the model tree?

    http://example.org/3D.PDF#model=ABC

    If this can be done in javascript, it is really useful.

    Impossible. There are only very limited for the Acrobat family command line options and you cannot change the.

  • Can we make several adjustments in each single filter "Gradient"?

    I am very familiar with Camera Raw in Camera Raw, we make many adjustments in single filter of Greadient, for example, I can raise the 'exposure', reduce the 'contrast' and add 'Color' in a gradient filter. However, in Lightroom, when I put 'Exposure' to-3.00, 'Color' to 80 for blue and the 'contrast' to 100, then I dragged to added a filter degraded in the picture, only the settings of "Contrast" worked on the image. I tried several times, it seems only the last setting implementation works.

    Okay, so after I added several filters degraded to this image, I chose the one that I mentioned above for editing, I chose 'Exposure' in the pop-up menu, and then lower the 'exposure' to-4.00, the 'color' parameter has gone and replaced by the exhibition"setting? WHY?

    I'm totally confused, I don't know how to use it

    It seems to me that you have already guessed. What you do is make your gradient

    filters with the Panel set to display all cursors. Then you select the filter

    you want to change (the gradient filter Panel should upgrade to the edition of)

    New) and adjust the exposure for the 2.0 and click on the swatches to change his

    green color. Change of exposure should be kept.

  • How to record several models of color

    Hello

    Im working with NOR-IMAQdx software, using a webcam I am seized of images & and I want to learn and save several of these images color model, I try with the write imaq vi file 2 but I was not able to record information.

    Here is my code & sorry for my English

    Hello

    "IMAQ write Image and Vision Info File.vi" aren't able to save PNG files, because only png supports additive information to store.

    Then you spend only a folder path instead of a path to the function.

    Try this:

    Concerning

  • REGEXP_REPLACE works with several models?

    Hi, im trying to do something like this:

    with t as)

    SELECT February 29, 2032 'dt', ^ (\d {2})(\d{2}) (\d {4}) $| ^(\d{2})-(\d {2})-(\d {4}) $ ' er, '\3\2\1' rep FROM dual

    )

    Select regexp_replace (t.dt, t.er, t.rep) in t;

    According to the documentation should not be an impediment to use several reasons. However, this always returns NULL.

    Any ideas?

    Thank you.

    This is exactly what im trying to do

    I want to validate a date string regardless of date model used.

    with t as)

    SELECT February 29, 2032 'dt,' ^(\d{2})-(\d {2})-(\d {4}) $| ^ (\d {2})(\d{2}) (\d {4}) $ ' er, "\3\2\1\6\5\4" union rep1 double all the

    SELECT '29022032' dt'^(\d{2})-(\d {2})-(\d {4}) $| ^ (\d {2})(\d{2}) (\d {4}) $ ' er, "\3\2\1\6\5\4" union rep1 double all the

    SELECT '29022032' dt'^(\d{2}) [-/] *(\d{2}) [-/] *(\d{4})$ ' er, '\3\2\1' rep1 dual FROM - another way I found to do

    )

    Select regexp_replace (t.dt, t.er, t.rep1) in t;

    Thank you Greg and Frank!

  • Several models are in vSphere

    All the

    I try to run a script that will create several VM to leave a template and then customize each using an OSCustomization.

    Also (very simple) script readings

    New-vm - vmhost xxx-xxxxxxxx-model name MODEL-2K8R2EEx64 - xxxxxxxxxx Datastore - OSCustomizationspec OSCust-TEMPLATE-2K8R2EEx64

    Is the error, I'm reacieving

    New virtual machine - the specified parameter 'Template' expects a single value, but your "MODEL 2K8R2EEx64" name criteria corresponds to multiple values.
    h\VMware\PowerCLI\scripts\MultiVMDeploy.ps1:1 character: 7
    < < < - vmhost (HostName) - name CEIVIRDAS0060-model-MODEL-2K8R2EEx64 - store of data VMFS08 - OSCustomizationspec OSCust-TEMPLATE-2K8R2EEx64
    That suggest that there are TWO models with the same name... so
    I ran Get-Template-TEMPLATE name-2K8R2EEx64 in PowerCLI I see in fact two TEMPLATES with the same name (see below).
    [vSphere PowerCLI] C:\Stash\VMware\PowerCLI\scripts > Get-Template-name TEMPLATE-2K8R2EEx64
    ID name
    ----                 --
    MODEL-2K8r2EEx64 VirtualMachine-vm-61686
    MODEL-2K8R2EEx64 VirtualMachine-vm-66484
    But in vSphere, there is only one model with the name "MODEL-2K8R2EEx64.
    I don't know where the 'other' model object with the same name. Help someone?

    This allows to see the blue folder where the model is supposed to be located.

    Get-Template | Select Name,@{N="Folder";E={(Get-View $_.ExtensionData.Parent).Name}}
    
  • Acrobat 9.3.4 question: unique PDF creation of several PDF

    Hey all,.

    My configuration:

    • Mac OS 10.6.4 / Mac Pro dual / 6 GB of RAM

    • Adobe CS5 Master Collection

    • Acrobat 9.3.4 Pro

    Just came across the (critical) question, I have not met before, but it is terribly reminiscent of the problem of the "policies of the Document" file issues and small caps Caps/All InDesign CS5. Here's the scenario:

    1. in a document of IDCS5 I used the command "Uppercase" to give a position this feature (font is future 95 black; type 1).

    2 export to PDF (Print) and receive a correct PDF, with the designation of all caps display/printing correctly.

    3. open in Acrobat 9.3.4 and Adobe Reader 9.3.4, and the file is correct (see attachment 1, below).

    4. I then do several other single-page PDF documents and keep them all in a new folder.

    ALL CAPS-Correct.jpg

    After you create these PDF files single page to review the customer, the customer asked that a random number of these PDF files be compiled into one PDF, which isn't a problem - it's a common request, we do all the time. The steps to do this are:

    1. launch Acrobat 9.3.4 Pro

    2. Choose file > create PDF > merge files into a single file PDF. dialog box appears.

    3. click on the 'Add files' button in the upper left corner of the dialog box (the single PDF button is selected at the top right of the box).

    4 navigation window opens, allowing me to choose the folder created in step 4, above, that contains PDF files, I need.

    5. turn on highlight PDF files you want and arrange them in the order you want. Click the 'Combine files' button in the lower right corner of the dialog box. 6 PDF files is generated, and I save the file PDF. I then open it in Adobe Reader 9.3.4 or Acrobat Pro 9.3.4 to check that all is well and to my great disappointment, note the misinterpretation of the line type "All Caps" (see attachment 2, below).

    All Caps-INCORRECT.jpg

    I checked a PDF file that is exported through IDCS5 works correctly, and making the PDF "combined" by a new document IDCS5 and add the necessary pages and export a single PDF works fine, as well. The problem is that the function of «Combine...» "in Acrobat Pro is our workflow, because it allows for a PDF one being combined into one WITHOUT having to set up a new IDCS5 specially for the final PDF document. to do this would require countless file IDCS5 in order to get the pages selected randomly in a single PDF.

    If someone has encountered this problem, and if I forgot one post, my apologies. Thanks in advance...

    See you soon!

    Mikey

    The problem is related to incorporations of fonts. If all of the PDF files contained the game rather than subsets of fonts fonts this would not be a problem. How to approach the problem is to use the PDF optimizer to remove all embeddings of fonts. Then use the preflight to re - integrate fonts.

  • Several model column CSS - NEED HELP

    Hello

    I'm trying months nowand it is drving crazy me...

    I have a table with DVD files on DVD.

    I used this basic CSS example:
    URL [URL] http://apex.oracle.com/pls/apex/f?p=23415:2:8

    I want a multi-column table, looking like that. But the only thing is that I need the DVD name on one line and all the files as in a table.

    I created a report based on the example.
    I used a breakdown on my 1st column

    and here's the result (see JPEG in the following link)
    [URL] http://www.orafaq.com/forum/fa/7350/146023/ [URL]

    My report is like this:
    Named column (row model) 
    
    ROW MODELE (1)
    <li>
      
        <span>#1##2#</span>
    
    </li>
    
    
    Before rows:
    <ul id="ul-table">
    
    After rows:
    </ul> 
    On my page, I've added in the header:
    <style type="text/css">
    
    
    #ul-table li a {
    background-color:#F4F7FA;
    font: 12px Arial, sans-serif;
    display:block;
    line-height:40px;
    }
    #ul-table a:link, #ul-table a:visited, #ul-table a:active {
    color: #255FDC; text-decoration: none;
    }
    #ul-table a:hover {
    background-color:#CCD9E9;
    color:navy;
    text-decoration: none;
    }
    #ul-table {
    width:562px;
    text-align:center;
    margin: 0px auto;
    padding:0;
    color: navy;
    list-style-type:none;
    clear:both;
    }
    #ul-table li {
    width: 139px;
    float:left;
    border:1px solid navy;
    border-right:none;
    text-align: center;
    }
    * html #ul-table li a {
    width: 100%;
    }
    #ul-table li.top {
    border-bottom:none;
    }
    #ul-table li.right {
    border-right:1px solid navy;
    }
    .clear {
    clear:both;
    margin-top:-1px;
    height:1px;
    overflow:hidden;
    }
    
    
    </style>
    Someone know how to change the report model to achieve that? I want the DVD NAME on 1 line and less, a table, have the list of the file name as in my JPG

    Maybye I need to use a DIV instead of LI?

    Thank you

    Roseline

    My query:

    Select DVD, FILES
    table
    where PROJECTID = 79
    Group of DVD FILES
    DVD drive

    I used a breakdown on my 1st column

    [I don't think that means what you want | http://en.wiktionary.org/wiki/ventilation]. I'm afraid that I can't relate to this declaration to the general content of the message, or APEX...

    I want a multi-column table, looking like that. But the only thing is that I need the DVD name on one line and all the files as in a table.

    "Several columns? Yes. "In a table? # All the interest to score it as a list it is only + data are not tabular +, which is organized by the relationship of lines and columns.

    I may need to use a DIV instead of LI?

    Nested lists are what to I - list of files on each DVD in a DVD list. Here is an example.

    >
    and here's the result (see JPEG in the following link)
    http://www.orafaq.com/Forum/FA/7350/146023
    >

    If it's the actual data then I think that ease of use is in general a bigger problem than the possible layout of the report. This data usable by any person (other than [Rain Man | http://en.wikipedia.org/wiki/Rain_Man])? How a supposed to identify a specific value in such a dense collection of similar items?

  • visualization iRecruitment Letter button offers to have several model to select

    Hello

    I got a requirement in recruitment generation letter offer get offer letter selection at several review page. I created a custom template and associate model business group and now I have 10 different models with different texts. I started the process of selection of candidates and then entered in the enter basic details, then see the page and display offer the letter key. Here, I need to select a template among the 10 custom template that I created, I have save this model 10 in the form of association model on everything that the radio button I kept forming only this result of the template is bedefault I need to select the model according to my future choice where. Kindly let me know is it y of the advice on this.

    Kind regards
    Abdul Samad

    You cannot select model right there. During the creation of the offer you just present the details of the offer. Once the application is approved, go to offer Workbench => click on the letter of offer. Once you click here you will be able to choose the model on the next screen.
    Save the letter of offer once you choose the model.

  • Creating a report with several models of data...

    Use of BI publisher for Word 10.1.3.4

    I'm trying to create a template in Word format with report parameters, that I created in BI Publisher.

    I created two data models, the two tables different references I need on the report itself. The question that I've seen is whenever I use the table, rowset Wizard is grayed and only the default data model (sql query) can be used.

    I looked around and was unable to find a solution to this.

    Hello

    You must set as main data Source of concatenated dataset. Otherwise, only one set of data is used.

    Concerning
    Rainer

Maybe you are looking for

  • Make Bing my default browser URL bar? Problem with Yahoo!

    Hello. For many, many months now, I had Bing as my default when browser the text typed in the URL bar. Now he's gone at Yahoo!, and I can't change it even go to keyword.url in the subject: box of configuration settings. Interestingly, all my (from th

  • Bluetooth for Satellite 1800-712

    What should I put bluetooth on my laptop (to 2002) to work with a wireless printer.Thank you.

  • Office Pro 6830 «problem Scanner»

    We bought the HP Office Pro 6830 a month ago and have had no trouble.  For the first time, I try to make a copy, probably the SIMPLEST function for this device to do!  I load the document, press on copy, select number of copies, hit enter and I get a

  • Xbox 360 communications to be able to communicate with the players an Xbox

    I was wondering that iv noticed that you can keep your friends from the Xbox 360 when you switch to Xbox one but why you can only message and not actually form a party with them it would be possible to do so that you can?

  • How to update a signature

    Hi all I'm new to ips ASA-SSM-10 First time connected to an ips module. Can someone give idea how to update the signatures. REDA