Combined Queries in BO 4.0 WebI

Hi,
I am creating a combined query in the report query panel.  Query 1 has combined query 1 and combined query 2 with UNION Operator.
The combined query 1 has one dimension from Table1.Col1. The combined query 2 has one dimension from Table2.Col1.
When clicking the view script i am expecting the query to be as
select Table1.Col1
from Table1
union
select Table2.Col1
from Table2
But the webi is returning the query like below.
select Table1.Col1
from Table1, Table2
where Table1.Col1 = Table2.Col1
Union
select Table2.Col1
from Table1, Table2
where Table1.Col1 = Table2.Col1
Can anyone please suggest why it is joining both the tables? Any settings has to be done in the CMC to avoid this join?
when creating a union query in the universe with these tables no joins are formed.
Please help me on this. Thanks in advance.

This is really very strenge could you please check the parameter value in the file<Parameter
COMBINED_WITH_SYNCHRO
it should be yes.
Also, please check if this the universe spacific problem or happening with all the universe. Did you check with taking other dimention value in the combind query.

Similar Messages

  • Re : How to retrieve Combined Queries (RE Bean SDK) -XIR2 SP2

    Hello all,
    Hope all is well. I am kinda stuck here ...trying to retrieve Combined Queries from WebI Document. I just have 1 report , 1 DP, 1 combined query(union) with 2 nodes coming off of universe ( __NO__ Custom SQL).
    Could someone give me sample code as how to retrieve this...I was able get DP and then Query container...then kinda got lost.How do I retrieve individual query and then get more information of an individual query like DataSourceObject.
    QueryContainer qCont = dataProv.getCombinedQueries();
    int operator = qCont ();
    // getQueryContainerOperator
    // then how doi I proceed further to retrieve individual query.
    Thanks in advance,
    Sam.

    I don't have any code for retrieving the combined queries, however I have some code for retrieving the SQL from a dataprovider- it might give you an idea of how to get the combined query
    oInfoObject = (IInfoObject) oInfoObjects.get(0);
    // Initialize the Report Engine
    ReportEngines oReportEngines = (ReportEngines) oEnterpriseSession.getService("ReportEngines");
    ReportEngine oReportEngine = (ReportEngine) oReportEngines.getService(ReportEngines.ReportEngineType.WI_REPORT_ENGINE);
    // Openning the document
    DocumentInstance oDocumentInstance = oReportEngine.openDocument(oInfoObject.getID());
    DataProvider oDataProvider = null;
    SQLDataProvider oSQLDataProvider = null;
    SQLContainer oSQLContainer_root = null;
    SQLNode oSQLNode = null;
    SQLSelectStatement oSQLSelectStatement = null;
    String sqlStatement = null;
    out.print("<TABLE BORDER=1>");
    for (int i=0; i<oDocumentInstance.getDataProviders().getCount(); i++) {
         oDataProvider = oDocumentInstance.getDataProviders().getItem(i);
         out.print("<TR><TD COLSPAN=2 BGCOLOR=KHAKI>Data Provider Name: " + oDataProvider.getName() + "</TD></TR>");
         oSQLDataProvider = (SQLDataProvider) oDataProvider;
         oSQLContainer_root = oSQLDataProvider.getSQLContainer();
         if (oSQLContainer_root != null) {
              for (int j=0; j<oSQLContainer_root.getChildCount(); j++) {
                   oSQLNode = (SQLNode) oSQLContainer_root.getChildAt(j);
                   oSQLSelectStatement = (SQLSelectStatement) oSQLNode;
                   sqlStatement = oSQLSelectStatement.getSQL();
                   out.print("<TR><TD>" + (j+1) + "</TD><TD>" + sqlStatement + "</TD></TR>");
    out.print("</TABLE>");
    oDocumentInstance.closeDocument();
    Shawn

  • Combined Queries

    Hi
    I have a query regarding combined queries. I am using BO XI R2 Deski. When i create combined queries, i have observed that BO is processing theses queries in the order from right to left i.e it is executing the last two queries first and then then the next right most and so on...
    For example if i want to calculate (A Union B) minus  (C Intersection D). I am unable to frame this query. When i see the SQL the order is different. Please advise how can i set this preference like first calculate ( A Union B) and ( C Intersection D) and then subtract bothe the result sets.
    Thanks,
    Raveendra

    Hi Raveendra,
    I Tried and able to perform operation Separately like (A union B) and (C Intersection D) and also succeed to put the result side by side but not able to succeed in finding the Minus of the results. Because as you said DESKI perform operations from left to right  for each combined query.
    I performed union and Intersection operations separately by using 2 data providers.
    I used demo universe eFashion  for union and intersection.
    The Steps followed are as follows:
    1. Select eFashion Take objects Year, Store Name, Sales revenue
    2. Click Combine Queries and Take same objects because Union operation requires both queries Must have have same objects.
    3. Union these 2 Queries Run The Report you will get the Union of 2 Queries. (A Union B)
    4.Select New Data Provider (Data New Data Provider)
    5. Select Universe you want  Take objects in Query C, I Took Same objects with different condition like (Year Inlist(2002,2003))
    6. Query D with Condition (Year Equalto(2002)) you will get Results (Query C intersection D). Results that contain only Year Equal to 2002.
    Now you have objects from 2 data providers together, Drag and Drop Objects from 2 data providers and put them at different places on Report now you can compare the results.
    Here we canu2019t Minus the results because when you click Edit Data Provider, DESKI will Prompt you to select the data provider to Edit and hence we can perform edit operation on One data provider one at a time and not together.
    I Hope this is useful.
    Thanksu2026
    Pratik

  • How to ensure that the queries are in sync between Web browser and Bex

    Hi All,
    I am struck with this issue for more than a month.  Can someone help me in understanding this and resolving?  Thanx!!
    "Ad hoc reports showing in web browser but not showing in BeX, if added to BeX then appearing twice on web browser"
    Edited by: RAMABHOTLA SHANKER on May 21, 2009 2:09 PM

    Hi,
    There is no difference in queries elements between BEx and Web Browser, the adhoc queries/analysis/variants you create in web analyser doesn't get save back to BI server; its saving only in EP server.
    Where as if you save any query view in BEx analyzer can also be viewed in Web analyzer, thats the reason you are able to see both of them. But actually meta data for both the query views are different.
    Hope it clarifies.
    Regards,
    Surya.

  • Combining 2 BEx queries into 1 for 2 WebI reports for different 0CALYEAR

    Hi all,
    I have the following requirement in BEx Query designer:
    I have two queries with 0CALYEAR infoobject in each.
    One query shows me the data of last 5 years and the other does not have any such condition, it shows me full data.
    I need to build a combined query based on these 2 queries.
    This combined query shall be used for 2 WebI reports:
    -     1 report showing the user, data for last 5 years
    -     2nd report showing full data
    Is it possible to handle this, without giving any date selection prompt for the user on the WebI report.
    If so, please let me know how.
    Thanks and Regards,
    Srilakshmi

    You have many options available. You can use structures and/or cells in  your single query to present one set of data for "5 years" and one set of data for "Forever". You can simply create the query using selection columns to limit one column to 5 years and one data to 'full data'.
    However... I always strongly advise my users to never, ever, ever create a query for 'everything'. You have no idea what the future will hold in terms of data volume. Creating an unlimited query will only produce performance issues and sadness. Users NEVER actually need 'all the data'. They just think they do. It's part of your job to keep them from creating requirements that they will regret later on.

  • Using queries from another universe in Webi; Functionality currently works in Deski

    Post Author: ck1938
    CA Forum: WebIntelligence Reporting
    I have a report in deski that was built using 2 queries and 2 universes.  One query is from a calendar universe since there is no calendar information in the reporting universe.  In deski I have the option of selecting the operand Select Query Results (All) and using the calendar universe to build a filter in the reporting uiverse that uses the results found in the calendar query to define a start date in the reporting query.  I'm trying to automate the report in Webi but am having issues since the operand is not available.  I only have the options for Constant, Values From List, Prompt, and Object.  Object will only give me objects in the reporting universe.  It apparently can't see the calendar universe query.  I've tried writing some sql statements but have had no luck so far.  Does anyone have any guidance they can offer. 

    Post Author: ck1938
    CA Forum: WebIntelligence Reporting
    You did get me thinking though.  I found another reporting universe with a calendar component and the SQL from that universe has pointed me in the right direction here.  I just replaced the manually input date in the sql for the query (2008-5-29 00:00:00) with trunc(sysdate) and the report ran without any manual intervention.  Thanks for your help. 

  • General queries related to implementing the web service

    Hi all,
    I am new to web services, so I would like to get some of the queries solved which I am facing as of now.
    - If in a function of web service, there are three parameters defined, in which one is input parameter while remaining others are output parameters, then from the client invoking that web service has to provide only the input parameter as an argument or all the three arguments should be provided?
    Please let me know.
    Thanks

    I really can't say about the input / output parameters. My guess is that you can't really have ByRef output variables, because the web method call is marshalled into XML and you only get a reply in XML based on the return type of the web method. What I'm trying to say is: only use the method's return value to receive output. Create complex Objects that can be mapped to XML to do that.
    The way to call the web service from java is to parse the WSDL document for the web service and see what kind of input messages the web service requires and what type of output messages it produces.
    As far as I know there are two ways to parse the WSDL.
    1) If you know the location of the WSDL during development you can use it as an input to tools like wsimport in order to create a Service Endpoint Interface.
    2) If you only know the WSDL location during runtime, you have to parse the document either by DOM/SAX etc either by using libraries such as wsdl4j
    http://sourceforge.net/projects/wsdl4j
    I hope I've helped.

  • Combine queries dynamically (union?)

    Hello Friends
    I got very tuff problem, plz help me out.
    I want to combine some some query's using "UNION" oprator of SQL Server. Supposed we name it as SET 1.
    Again I have to make UNION of output of SET1 with n number of SET 1 like query set.
    In short dynamically I have to create differnt UNION OF SOME QUERIES & AGAIN MAKE CHAIN of such queries.
    If any one have solution for it . Plz replay immdtly.

    Thanx For Rplay
    Actually I wan to get empids like id from multiple database. & Id Should not be repeated. I have used UNION option. But Dynamically database can be more or less if use more union query become so big. And StringBuffer Become so big. For execution it take time.
    So I got one solution for it. I am fetching id from database & storing it in TreeSet Object.
    Its very good idea to store record in TreeSet bcoz no Id get repeated.
    I got unquie Id & futher I can process. It took very few minutes. If I use UNION it took too much time.
    Thanx For ur response
    Dinesh

  • Combine Queries in one workbook

    Hi guys,
    I am looking for a way to combine multiple queries in one workbook.
    For example: If I set a filter in one query to the month November, the same filter (e.g. November) should apply to all other queries (which are on another worksheet or on the same worksheet).
    How can I do this?
    Many thanks,
    Sabin

    Hi Sabine,
    You have two options:
    1.  the easy one is to use same variables in the refresh screen for all queries in the same workbook; if you do this, then use the "refresh all queries" option, you will get the same restrictions applying to all queries in the workbook simultaneously.
    2.  the more difficult way to do this is to use a lot of Visual Basic.  Using Visual Basic, you can "read" the filter value set on a particular query, then "apply" that filter value to every other query in the workbook.  OR, you can use the "Copy Filter Value" function.  I prefer the latter for a number of reasons.
    From your earlier notes, I assume you want to use option 2.  To help you further, it would be useful to know what version of BW you are using, and how your users typically refresh queries (i.e., with a button in the workbook, or using the Business Explorer toolbar?).
    It would also be helpful to know your level of comfort with VBA in Excel.
    Here are some notes on the "Copy Filter Value" function:
    Function SAPBEXcopyFilterValue(fromCell As Range, Optional atCell As Range) As Integer
    • Return value of zero indicates that no errors were encountered.  Otherwise, function returns number of errors encountered.
    • If atCell is not specified, the active cell is used to determine which characteristic to return information for.  If the active cell is not part of a query definition, then function returns an error state.
    • Characteristics (fromCell and atCell) must have same technical name; for example, cannot copy filters for Ship-to (0SHIP_TO) in Sales cube to Ship-to (YCOCUSSH) in a Shipments cube
    • Queries (copying from and to) must be in same Excel Workbook.
    Sub CopyFilterOnce()
    Dim filterRng1 As Range, filterRng2 As Range
        'in this example, we are copying filters from query on sheet
        'with code name Query1 to query on sheet with code name Query2
        Set filterRng1 = Query1.Range("F10")
        Set filterRng2 = Query2.Range("D13")       
        retVal = Run("SAPBEX.xla!SAPBEXcopyFilterValue", filterRng1, filterRng2
    End Sub
    Hope this helps.
    - Pete

  • Combining queries.

    Hi,
    Is there a code when we can combine the following three queries in one and imprrove performance
    DATA: XAUFPL LIKE AFKO-AUFPL,
          XARBPL LIKE CRHD-ARBPL,
          XARBID LIKE V_QAPO-ARBID.
    SELECT SINGLE AUFPL FROM AFKO INTO XAUFPL WHERE AUFNR = '007200000059'.
    SELECT SINGLE ARBID  FROM V_QAPO INTO XARBID WHERE AUFPL = XAUFPL AND VORNR = '0020'.
    SELECT SINGLE ARBPL FROM CRHD INTO XARBPL WHERE OBJID = XARBID.
    WRITE: / XARBPL.

    you can try this:
    SELECT SINGLE CRHD~ARBPL
    FROM AFKO
    INNER JOIN V_QAPO ON V_QAPOAUFPL = AFKOAUFPL
    INNER JOIN CRHD ON CRHDOBJID = V_QAPOARBID
    INTO XARBPL
    WHERE AFKO~AUFNR = '007200000059'
      AND V_QAPO~VORNR = '0020'.
    WRITE: / XARBPL.
    Hope it will be helpful
    Thanks

  • Customer exit text variables form BW queries are not supported in Webi

    HI,
    so I need to  need to modify the headings manually in Web Intelligence.
    Please help me I'm looking for a formular that give me the following result:
    I'm using the next formular:
    =UserResponse([L01 Calendar/month];"CalendarMonth")
    The result is JUN2010.
    Now I want to change this result with a formular in Jun2009 (12 months ago)
    Can anyone help me how to build this formular?
    thanks Peter
    Edited by: P. Teussink on Oct 12, 2010 4:51 PM

    The question really is, what are you trying to achieve?
    If you only want to arrive at the string "Jun2009" based on the string "JUN2010"
    you can do this like this;
    =InitCap(Left(UserResponse("Calender Month");3))+FormatNumber(ToNumber(Right(UserResponse("Calender Month");4)-1);"0")
    Also if you have all month of last year in the report you can use a where logic based on the same principle to only show what the label says.
    However if you want to select this calendar month based on the month inputted by the user, then you will have to create a BEX variable that uses the user exit coding of the input ready calender month to select that month one year ago, like stated above.
    Good luck,
    Marianne

  • Queries are freezing in IR Web client

    When BQYs are opened with IR Web client, and queried, it gets stuck at 'Retreiving Rows'. Pressing Alt+ End doesn't make it stop, it just gets stuck, so the entire browser needs to be closed.
    After restarting EPM services, it works fine. But we can't risk this happening again and again.
    Could someone please help me out on this?

    I would suggest to open an SR with Oracle support.Might be there is problem with the query itself or may be the DAS process is running out of memory.A better analysis could you provided if you open an SR with Oracle support and provide the logs.
    Thx
    VIVEK

  • Join/from/where/ combine queries 3

    hello my query below is not working for my cf application can
    you help?
    thanks
    this is my previous question so i tried to do it my self.
    tcase_req.tcase_req_id is added
    tcase.case_id=tcase_req.case_id :note that this is not part of the
    inner join in the from clause. it does not depend on the rest of
    the inner join.
    the reaon for this is that i need to get
    WHERE tcase_req.case_req_typ_cd = cwc and
    tcase_req.case_req_typ_cd = cwnc
    here is the original question
    Hello ,
    I need help again on the inner join/and conditions in the
    where clause
    I have these 2 tables tcase and tcase_req where there common
    field Is the case_id.
    tcase is the parent table and the tcase_req is the child
    table.
    (1)I wanted to add this to the from clause using the inner
    join table . what do I do and where do I put it
    (2)I then need to put a condition in the where clause to
    replace
    WHERE TCASE.CASE_NBR Like '%HPOZ%'
    AND TCASE.CASE_NBR = 'DIR-2004-4269-HPOZ-CCMP'
    by
    WHERE TCASE.CASE_NBR Like '%CWC%' or TCASE.CASE _NBR Like
    '%CWNC%'
    AND TCASE.CASE_NBR = 'DIR-2004-4269-CWC'
    Or TCASE.CASE_NBR = 'DIR-2004-4269-CWNC'
    is this efficient??
    thanks
    SELECT TLA_PROP.PIN,
    TLA_PROP.ASSR_PRCL_NBR,
    TCASE.CASE_NBR,
    TLA_PROP.STR_NBR,
    TLA_PROP.STR_NBR_RNG_END,
    TLA_PROP.STR_FRAC_NBR,
    Tref_plan_area.plan_area_desc,
    TLA_PROP.STR_FRAC_NBR_RNG_END,
    TLA_PROP.STR_DIR_CD,
    TLA_PROP.STR_NM,
    TLA_PROP.STR_SFX_CD,
    TLA_PROP.STR_SFX_DIR_CD,
    TLA_PROP.STR_UNIT_TYP_CD,
    TLA_PROP.UNIT_NBR,
    TLA_PROP.UNIT_NBR_RNG_END,
    TLA_PROP.ZIP_CD,
    TLA_PROP.ZIP_CD_SFX,
    TLA_PROP.CNCL_DIST_NBR,
    TLA_PROP.PLAN_AREA_NBR,
    TLA_PROP.ZONE_REG_CD,
    TAPLC.PROJ_DESC_TXT,
    TCASE.CASE_ID,
    TCASE.CASE_NBR,
    taplc.aplc_id,
    tcase_req.case_req_typ_cd
    FROM TLA_PROP INNER JOIN tref_plan_area ON
    tla_prop.plan_area_nbr = tref_plan_area.plan_area_NBR INNER JOIN
    TLOC ON TLA_PROP.PROP_ID = TLOC.LOC_ID INNER JOIN TAPLC ON
    TLOC.APLC_ID = TAPLC.APLC_ID INNER JOIN TCASE ON TAPLC.APLC_ID =
    TCASE.APLC_ID
    WHERE TCASE.CASE_NBR Like '%CWC%'and
    tcase.case_id=tcase_req.case_id
    (3)To a tcase_req
    Suffix_id are equal to = cwc and cwnc ( in the tcase_req
    table)(Suffix_id is the field that cintains the suffix cwc and cwnc
    for the tcase_req)
    also,
    this is the original query and it works fine
    SELECT TLA_PROP.PIN,
    TLA_PROP.ASSR_PRCL_NBR,
    TCASE.CASE_NBR,
    TLA_PROP.STR_NBR,
    TLA_PROP.STR_NBR_RNG_END,
    TLA_PROP.STR_FRAC_NBR,
    Tref_plan_area.plan_area_desc,
    TLA_PROP.STR_FRAC_NBR_RNG_END,
    TLA_PROP.STR_DIR_CD,
    TLA_PROP.STR_NM,
    TLA_PROP.STR_SFX_CD,
    TLA_PROP.STR_SFX_DIR_CD,
    TLA_PROP.STR_UNIT_TYP_CD,
    TLA_PROP.UNIT_NBR,
    TLA_PROP.UNIT_NBR_RNG_END,
    TLA_PROP.ZIP_CD,
    TLA_PROP.ZIP_CD_SFX,
    TLA_PROP.CNCL_DIST_NBR,
    TLA_PROP.PLAN_AREA_NBR,
    TLA_PROP.ZONE_REG_CD,
    TAPLC.PROJ_DESC_TXT,
    TCASE.CASE_ID,
    TCASE.CASE_NBR,
    taplc.aplc_id
    FROM TLA_PROP INNER JOIN tref_plan_area ON
    tla_prop.plan_area_nbr = tref_plan_area.plan_area_NBR INNER JOIN
    TLOC ON TLA_PROP.PROP_ID = TLOC.LOC_ID INNER JOIN TAPLC ON
    TLOC.APLC_ID = TAPLC.APLC_ID INNER JOIN TCASE ON TAPLC.APLC_ID =
    TCASE.APLC_ID
    WHERE (TCASE.CASE_NBR Like '%CWC%' or TCASE.CASE_NBR Like
    '%CWNC%')

    For guys like us that are not writing queries everyday you
    might try a query
    builder like the one MS Access has.
    "Coldfusionstudent" <[email protected]>
    wrote in message
    news:[email protected]...
    > hello my query below is not working for my cf
    application can you help?
    > thanks
    >
    >
    > this is my previous question so i tried to do it my
    self.
    >
    >
    > tcase_req.tcase_req_id is added
    tcase.case_id=tcase_req.case_id :note
    > that
    > this is not part of the inner join in the from clause.
    it does not depend
    > on
    > the rest of the inner join.
    >
    > the reaon for this is that i need to get
    > WHERE tcase_req.case_req_typ_cd = cwc and
    tcase_req.case_req_typ_cd =
    > cwnc
    >
    > here is the original question
    >
    > Hello ,
    > I need help again on the inner join/and conditions in
    the where clause
    >
    > I have these 2 tables tcase and tcase_req where there
    common field Is the
    > case_id.
    > tcase is the parent table and the tcase_req is the child
    table.
    >
    > (1)I wanted to add this to the from clause using the
    inner join table .
    > what
    > do I do and where do I put it
    >
    > (2)I then need to put a condition in the where clause to
    replace
    > WHERE TCASE.CASE_NBR Like '%HPOZ%'
    > AND TCASE.CASE_NBR = 'DIR-2004-4269-HPOZ-CCMP'
    > by
    > WHERE TCASE.CASE_NBR Like '%CWC%' or TCASE.CASE _NBR
    Like '%CWNC%'
    > AND TCASE.CASE_NBR = 'DIR-2004-4269-CWC'
    > Or TCASE.CASE_NBR = 'DIR-2004-4269-CWNC'
    >
    > is this efficient??
    >
    >
    >
    > thanks
    > --------------------
    >
    > SELECT TLA_PROP.PIN,
    > TLA_PROP.ASSR_PRCL_NBR,
    > TCASE.CASE_NBR,
    > TLA_PROP.STR_NBR,
    > TLA_PROP.STR_NBR_RNG_END,
    > TLA_PROP.STR_FRAC_NBR,
    > Tref_plan_area.plan_area_desc,
    > TLA_PROP.STR_FRAC_NBR_RNG_END,
    > TLA_PROP.STR_DIR_CD,
    > TLA_PROP.STR_NM,
    > TLA_PROP.STR_SFX_CD,
    > TLA_PROP.STR_SFX_DIR_CD,
    > TLA_PROP.STR_UNIT_TYP_CD,
    > TLA_PROP.UNIT_NBR,
    > TLA_PROP.UNIT_NBR_RNG_END,
    > TLA_PROP.ZIP_CD,
    > TLA_PROP.ZIP_CD_SFX,
    > TLA_PROP.CNCL_DIST_NBR,
    > TLA_PROP.PLAN_AREA_NBR,
    > TLA_PROP.ZONE_REG_CD,
    > TAPLC.PROJ_DESC_TXT,
    > TCASE.CASE_ID,
    > TCASE.CASE_NBR,
    > taplc.aplc_id,
    > tcase_req.case_req_typ_cd
    > FROM TLA_PROP INNER JOIN tref_plan_area ON
    tla_prop.plan_area_nbr =
    > tref_plan_area.plan_area_NBR INNER JOIN TLOC ON
    TLA_PROP.PROP_ID =
    > TLOC.LOC_ID
    > INNER JOIN TAPLC ON TLOC.APLC_ID = TAPLC.APLC_ID INNER
    JOIN TCASE ON
    > TAPLC.APLC_ID = TCASE.APLC_ID
    > WHERE TCASE.CASE_NBR Like '%CWC%'and
    tcase.case_id=tcase_req.case_id
    >
    >
    >
    >
    > (3)To a tcase_req
    > Suffix_id are equal to = cwc and cwnc ( in the tcase_req
    table)(Suffix_id
    > is
    > the field that cintains the suffix cwc and cwnc for the
    tcase_req)
    >
    > also,
    > this is the original query and it works fine
    > SELECT TLA_PROP.PIN,
    > TLA_PROP.ASSR_PRCL_NBR,
    > TCASE.CASE_NBR,
    > TLA_PROP.STR_NBR,
    > TLA_PROP.STR_NBR_RNG_END,
    > TLA_PROP.STR_FRAC_NBR,
    > Tref_plan_area.plan_area_desc,
    > TLA_PROP.STR_FRAC_NBR_RNG_END,
    > TLA_PROP.STR_DIR_CD,
    > TLA_PROP.STR_NM,
    > TLA_PROP.STR_SFX_CD,
    > TLA_PROP.STR_SFX_DIR_CD,
    > TLA_PROP.STR_UNIT_TYP_CD,
    > TLA_PROP.UNIT_NBR,
    > TLA_PROP.UNIT_NBR_RNG_END,
    > TLA_PROP.ZIP_CD,
    > TLA_PROP.ZIP_CD_SFX,
    > TLA_PROP.CNCL_DIST_NBR,
    > TLA_PROP.PLAN_AREA_NBR,
    > TLA_PROP.ZONE_REG_CD,
    > TAPLC.PROJ_DESC_TXT,
    > TCASE.CASE_ID,
    > TCASE.CASE_NBR,
    > taplc.aplc_id
    > FROM TLA_PROP INNER JOIN tref_plan_area ON
    tla_prop.plan_area_nbr =
    > tref_plan_area.plan_area_NBR INNER JOIN TLOC ON
    TLA_PROP.PROP_ID =
    > TLOC.LOC_ID
    > INNER JOIN TAPLC ON TLOC.APLC_ID = TAPLC.APLC_ID INNER
    JOIN TCASE ON
    > TAPLC.APLC_ID = TCASE.APLC_ID
    > WHERE (TCASE.CASE_NBR Like '%CWC%' or TCASE.CASE_NBR
    Like '%CWNC%')
    >

  • Combining multiple tabs into one long web page

    Lets say you have 12 tabs open. Can the html from each tab be combined into one flowing page kind of like Autopager does for repeating pages? Linky can grab the links of one tab at a time, but you have to repeat the process for the other 11 tabs. It would be cool to force all 12 tabs into one flowing/continuous tab, then Linky could read basically all 12 tabs at a time since they are really all in one new tab.

    welcome phiphika to the  board…
    in terms of convenience, I would indeed export/share all 6 movies.
    to tape, or as Quicktime/FullQuality…
    both methods create a lossless copy of your final movie(s).
    in step II, import all 6 project into a new iM project, as said above, you don't loose ay quality with that back'n forth copying... only some time ;-)… you can set then chapter markers etc....
    besides, your workflow is as mine on larger projects: not 678 clips into one monstrous project of some dozends Gigabytes, just segments…

  • Combined Queries in Crystal

    I need to create a report that answers multiple questions:
    Step 1: List markets where product is distributed by CompanyA
    Step 2: List top 250 markets based on overall product sales across all companies
    I then wish to create a report which contains a union of markets in Steps 1 and 2.  Is this possible, and if so how?
    All help is appreciated.

    Yes it can be done you need to use a command object in Crystal to create you union
    Select , field1, field2, field3 etc..
    from tablea where company = 'Compnay A'
    Union All
    Select Top 250 field 1, field 2, field 3, from table A
    not sure which database you are using but this could wourk for you with some modifications

Maybe you are looking for