Using Union in the query pannel should work.
In the query pannel, select CM1 and ADDR
Press the "Combine Query" button.
This will create a second query.
On this second query, replace CM1 with CM2.
A Combined query works as long as the number of fields and the types match.
If you are using ORACLE you could try to create an object in the universe for each result by using INSTR (to search for the character position) and DECODE to return a 1 if it exists and 0 if not.
e.g. For a
decode(instr(RESULT,'a'),0,0,1)
If you don't want to create a universe object then...
Looks like you are missing a bracket after the Left command.
Try :
=If Min(<Locationname>) > "G59346A" AND Min(<Locationname>) < "G59348F" Then "LIQUOR" Else If Min(Left(<Locationname>,1)) = "G" THEN "GROCERY" Else "No"
Is the field a Date format on the database as it sounds like it isn't.
If it is a text field then alter the universe to take this as a date.
e.g. in Oracle : to_date(field_name,'yyyymmdd')
since this is now a date field, changing the format in the report will work.
Note: Before doing this...
Have you tried using the OUTLINE option?
If you Section the report by Nominal Code, have the summary data in the section header and the details below.
Select "Outline" from the View Menu and collapse the sections by using the small buttons which appear on the bottom of the Outline...
If your on Oracle 8.1.x I've found that fully analyzing the table and indexes gives ORACLE a better chance of choosing the correct path.
Plus if I never want an index to be used, I use an opperator on the join. e.g. upper(a.Supplier_id) = b.supp_id.
I've found using Hints a pain as they can...
Our repository is created on Oracle.
Exporting the tables owned by the repository user and importing them into another database (using the same username) worked fine.
I did this so I could test a repository upgrade.
Try the following :
1) tnsping80 <db>
2) Is the connection in the supervisor set to Oracle 8.1?
3) Is tnsnames.ora and sqlnet.ora in the correct directories (c:\orant\network\admin or c:\orant\net80\admin)
4) Is there another tnsnames.ora file hanging around that does not have your database...
Have a look at thread393-88021 (VBA in BOB) there is a v4 example of how to do this. v5 will automatically convert this to VBA with no problems.
You will have to change the html export to "Call myDoc.SaveAs(HtmlFile + ".pdf")"
I don't think you can force this when you 1st create the data provider but you can set the Variable in the report.
Click on the "View Data" button (Cube Icon on the top tool bar), select the Year variable, go to the "Definition" tab and set it to a Dimension.
In the report, Select Data -> Variables
Click on Customer
Press the Group button
Give the Group a name "Cust Group"
Then select Customers from the Left and press Add
Give the group on the right a name
Uncheck the "Create Group for unused values".
The "Cust Group"...
Incompatible combination of objects(QP004) usually means you have not got a "Context" for the objects you have selected.
I assume you've used contexts to remove any loops from the structure.
If you select objects that do not fall into one of the contexts the query will fail as...
Create the required Alerter.
Highlight the row by Clicking in the left of the 1st column in the table (when the mouse pointer becomes a Black Right Arrow)
Select Format -> Alterters and check the alter box.
This will set the alerter to all columns.
This works fine for one alerter but if you...
I have done this by creating a view and then a synonymn for the view and it works fine.
The only time I've ever had problems with not seeing tables is when using a Microsoft ODBC driver to link to an Oracle database (God knows WHY I would try something so Daft!!).
Only thing I can suggest is...
You can only do this by editing the formula in the cell.
Double click the header so that you are editing the formula in the cell.
to put the line break in you need to press <CTRL> + <RETURN> in a string.
e.g. "Heading 1" + "<CTRL><RETURN>" + "Heading 2"
This...
If you select a specific cell in the heading, it can be resized or deleted and not affect the main table.
You can then alter the formula in the heading to concatenate the require headings/values.
e.g. =NameOf(<Item>) + "/" NameOf(<Description>)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.