Possible to use parameters in MDX Studio?

Is it possible to use parameters in MDX Studio? I've tried using SSRS2008 for query design but...
SSRS2008 query designer complains that parameters do not exist when they quite obviously do ( in the report)
LaCie drives. Failing when you need them most."La" meaning "Terrible", "Cie" meaning "customer service"

You can declare parameters in XMLA format after the MDX query - see examples in this post:
Bug v2.9.1: Parametric queries parsing and debugging errors
WITH MEMBER [Measures].[Profit] AS '[Measures].[Sales Amount]-[Measures].[Standard Product Cost]' SELECT NON EMPTY { [Measures].[Internet Sales Amount], [Measures].[Internet Total Product Cost], [Measures].[Internet Order Quantity] } ON COLUMNS, NON
EMPTY { ([Sales Reason].[Sales Reason].[Sales Reason].ALLMEMBERS * [Sales Territory].[Sales Territory Group].[Sales Territory Group].ALLMEMBERS ) } DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME, [Sales Reason].[Sales Reason].[Sales Reason].KEY, [Sales
Territory].[Sales Territory Group].[Sales Territory Group].KEY ON ROWS FROM ( SELECT ( STRTOSET(@ProductCategory, CONSTRAINED) ) ON COLUMNS FROM [Adventure Works]) WHERE ( IIF( STRTOSET(@ProductCategory, CONSTRAINED).Count = 1, STRTOSET(@ProductCategory, CONSTRAINED),
[Product].[Category].currentmember ) ) CELL PROPERTIES VALUE, BACK_COLOR, FORE_COLOR, FORMATTED_VALUE, FORMAT_STRING, FONT_NAME, FONT_SIZE, FONT_FLAGS
<Parameters xmlns:xsi="www.w3.org/2001/XMLSchema-instance" xmlns:xsd="www.w3.org/2001/XMLSchema"
xmlns="urn:schemas-microsoft-com:xml-analysis">
<Parameter>
<Name>ProductCategory</Name>
<Value xsi:type="xsd:string">{ [Product].[Category].&amp;[1],[Product].[Category].&amp;[2] }</Value>
</Parameter>
</Parameters>
<PropertyList xmlns="urn:schemas-microsoft-com:xml-analysis">
<Catalog>Adventure Works DW</Catalog>
<LocaleIdentifier>1033</LocaleIdentifier>
<Format>Tabular</Format>
<Content>SchemaData</Content>
<Timeout>0</Timeout>
<ReturnCellProperties>true</ReturnCellProperties>
<DbpropMsmdFlattened2>true</DbpropMsmdFlattened2>
</PropertyList>
- Deepak

Similar Messages

  • Is it possible to use parameters as variables in templates?

    Hi there,
    When you see a statement like the following in your template:
    <$defaultPageTitle=lc("wwNgEditFolder")$>
    Is there any way to replace lc("wwNgEditFolder") for something more dynamic? For instance, if I replaced the above with something like this:
    <$defaultPageTitle=myURLVariable$>
    and then use the url as follows:
    .../idc/idcplg?IdcService=MY_SERVICE&myURLVariable=mytitle
    Would that work? or what else can I do to dynamically give values to my page.
    Thanks!

    Any parameter you pass to a Service in the QueryString will be available to you as a variable in the template.

  • BC4J List Validation from SQL Query, using parameters?

    When adding validation to a business component, one of the options for the list validation rule is 'Query Result'.
    is it possible to use parameters??. e.g. for a student type registration application
    validation on studentEntry that the course is availabe for the term entered would be like :-
    Select course from courseCat where term = :pterm
    where :pterm is the current term that the student has entered, this exists on the current studentEntry row.
    how would I code the parameter in the select statement in 'edit validation rule' screen?

    When adding validation to a business component, one of the options for the list validation rule is 'Query Result'.
    is it possible to use parameters??. e.g. for a student type registration application
    validation on studentEntry that the course is availabe for the term entered would be like :-
    Select course from courseCat where term = :pterm
    where :pterm is the current term that the student has entered, this exists on the current studentEntry row.
    how would I code the parameter in the select statement in 'edit validation rule' screen? This is currently not available on the built in validators. However you can create a custom-validation rule and perform such bind params and execute queries. We do have plans to support named paramters in queries that will allow us to enable this feature on validators as well.

  • Is it possible to edit parameters of an object in the environment using a midi controller?

    Is it possible to edit parameters of an object in the environment (such as the key parameter of a chord memorizer) using a midi controller?

    Anyone know what I can do? Maybe even some kind of setup in the environment that will do this?
    Thanks

  • Is it possible to use a case statement when joining different tables based on input parameters?

    Hi,
    I have a scenario where my stored procedure takes 5 parameters and the users can pass NULL or some value to these parameters and based on the parameters, I need to pull data from various tables.
    Is it possible to use a case statement in the join, similar the one in the below example. I'm getting error when I use the below type of statement.
    select a.*
    from a
    case
    when parameter1=1 then
    inner join a on a.id = b.id
    when parameter1=2 then
    inner join a on a.id = c.id
    end;
    Please let me know, if this type of statement works, and if it works will it create any performance issues?. If the above doesn't work, could you please give me some alternate solutions?
    Thanks.

    Here's a technique for joining A to B or C depending on the input parameters. In theory, you are joining to both tables but the execution plan includes filters to skip whichever join is not appropriate. The drawback is that you have to do outer joins, not inner ones.
    CREATE TABLE A AS SELECT LEVEL ak FROM dual CONNECT BY LEVEL <= 100;
    CREATE TABLE b AS SELECT ak, bk
    FROM A, (SELECT LEVEL bk FROM dual CONNECT BY LEVEL <= 10);
    CREATE TABLE c(ak, ck) AS SELECT ak, bk*10 FROM b;
    variable p1 NUMBER;
    variable p2 NUMBER;
    exec :p1 := 1;
    exec :p2 := 20;
    SELECT /*+ gather_plan_statistics */ A.ak, nvl(b.bk, c.ck) otherk FROM A
    LEFT JOIN b ON A.ak = b.ak AND :p1 IS NOT NULL AND b.bk = :p1
    LEFT JOIN c ON A.ak = c.ak AND :p1 is null and :p2 IS NOT NULL and c.ck = :p2
    WHERE A.ak <= 9;
    SELECT * FROM TABLE(dbms_xplan.display_cursor(NULL,NULL,'IOSTATS LAST'));
    | Id  | Operation             | Name            | Starts | E-Rows | A-Rows |   A-Time   | Buffers |
    |   0 | SELECT STATEMENT      |                 |      1 |        |      9 |00:00:00.01 |       7 |
    |*  1 |  HASH JOIN OUTER      |                 |      1 |      9 |      9 |00:00:00.01 |       7 |
    |*  2 |   HASH JOIN OUTER     |                 |      1 |      9 |      9 |00:00:00.01 |       7 |
    |*  3 |    TABLE ACCESS FULL  | A               |      1 |      9 |      9 |00:00:00.01 |       3 |
    |   4 |    VIEW               | VW_DCL_5532A50F |      1 |      9 |      9 |00:00:00.01 |       4 |
    |*  5 |     FILTER            |                 |      1 |        |      9 |00:00:00.01 |       4 |
    |*  6 |      TABLE ACCESS FULL| B               |      1 |      9 |      9 |00:00:00.01 |       4 |
    |   7 |   VIEW                | VW_DCL_5532A50F |      1 |      9 |      0 |00:00:00.01 |       0 |
    |*  8 |    FILTER             |                 |      1 |        |      0 |00:00:00.01 |       0 |
    |*  9 |     TABLE ACCESS FULL | C               |      0 |      9 |      0 |00:00:00.01 |       0 |
    Predicate Information (identified by operation id):
       1 - access("A"."AK"="ITEM_0")
       2 - access("A"."AK"="ITEM_1")
       3 - filter("A"."AK"<=9)
      5 - filter(:P1 IS NOT NULL)
       6 - filter(("B"."AK"<=9 AND "B"."BK"=:P1))
       8 - filter((:P2 IS NOT NULL AND :P1 IS NULL))
       9 - filter(("C"."AK"<=9 AND "C"."CK"=:P2))
    You can see that table C was not really accessed: the buffer count is 0.
    exec :p1 := NULL;
    SELECT /*+ gather_plan_statistics */ A.ak, nvl(b.bk, c.ck) otherk FROM A
    LEFT JOIN b ON A.ak = b.ak AND :p1 IS NOT NULL AND b.bk = :p1
    LEFT JOIN c ON A.ak = c.ak AND :p1 is null and :p2 IS NOT NULL and c.ck = :p2
    WHERE A.ak <= 9;
    SELECT * FROM TABLE(dbms_xplan.display_cursor(NULL,NULL,'IOSTATS LAST'));
    Now table B is not accessed.
    | Id  | Operation             | Name            | Starts | E-Rows | A-Rows |   A-Time   | Buffers | Reads  |
    |   0 | SELECT STATEMENT      |                 |      1 |        |      9 |00:00:00.02 |       7 |      2 |
    |*  1 |  HASH JOIN OUTER      |                 |      1 |      9 |      9 |00:00:00.02 |       7 |      2 |
    |*  2 |   HASH JOIN OUTER     |                 |      1 |      9 |      9 |00:00:00.01 |       3 |      0 |
    |*  3 |    TABLE ACCESS FULL  | A               |      1 |      9 |      9 |00:00:00.01 |       3 |      0 |
    |   4 |    VIEW               | VW_DCL_5532A50F |      1 |      9 |      0 |00:00:00.01 |       0 |      0 |
    |*  5 |     FILTER            |                 |      1 |        |      0 |00:00:00.01 |       0 |      0 |
    |*  6 |      TABLE ACCESS FULL| B               |      0 |      9 |      0 |00:00:00.01 |       0 |      0 |
    |   7 |   VIEW                | VW_DCL_5532A50F |      1 |      9 |      9 |00:00:00.01 |       4 |      2 |
    |*  8 |    FILTER             |                 |      1 |        |      9 |00:00:00.01 |       4 |      2 |
    |*  9 |     TABLE ACCESS FULL | C               |      1 |      9 |      9 |00:00:00.01 |       4 |      2 |

  • Is it possible to use Speech Recognition with Final Cut Studio?

    Is it possible to use Speech Recognition with Final Cut Studio?
    Using either Speech, AppleScript, Automator or a 3rd party app
    like iListen, can I enable Final Cut Studio apps to respond
    to voice commands?
    (e.g. I say "I" in Final Cut Pro and it sets an in point)
    thanks

    Yes, I wish "Make it really good" and "Fix my rough cut"
    were commmands too
    I did hear from the folks at iListen that
    they are planning on releasing a ScriptPak
    for Final Cut Studio next year which could be
    cool
    and that yes, iListen has some capability to
    integrate Speech Recognition with Final Cut,
    guess I need to give it a try for a test ride

  • Is it possible to use dependent parameters in discoverer

    Dear All,
    Is it possible to use dependent parameters in discoverer... Like in RDF's(concurrent program)
    Reddy.

    Hi Hussain,
    I think In Discoverer 4i there is no optional parameters Option.I wrote in condition(Desktop addition) like Org = :Org_param or org = DECODE(:"Org Parameter 1",'All',Org) .
    At the time of running work book I am passing 'All' in parameter it's taking all orgs and giving org's data.
    But in application i am not able give 'All' in parameters.
    how to do optional parameters in 4i.
    In 10G Optional parametes are there.
    Regards,
    Reddy
    Edited by: Hanimi on Apr 15, 2009 5:39 AM

  • Using wildcard parameters for MDX and RSQL queries

    Hi,
    Passing parameters to MDX and RSQL queries works,but is there a way we can pass wildcard(%) parameters to MDX and RSQL
    Thanks,
    Hari Devarapalli

    Hari -- Try this Instr function -
    http://publib.boulder.ibm.com/infocenter/dzichelp/v2r2/index.jsp?topic=/com.ibm.dwe.cubemdx.doc/mdx_instr.html
    Thanks,
    Venkat

  • It´s possible to use Relax NG in Visual Studio?

    I want to build a schema for xml, and for what I´ve searched, Relax NG gives better solutions than xmlSchema (xsd). Is there any way
    to use it in Visual Studio instead of xmlSchema?

    Hi Ruben,
    Thank you for posting in MSDN forum.
    Since
    this forum is to discuss: Visual Studio WPF/SL Designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System, and Visual Studio Editor.
    As you said the Relax NG, it seems that it is a third-party tool, we are not support it.
    So I suggest you can consult this issue directly to this Relax NG : https://www.oasis-open.org/committees/tc_home.php?wg_abbrev=relax-ng
    , you will get better support.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Passing parameters from Design Studio to Explorer

    Is it possible to pass parameters (filter selections) from Design Studio to BO Explorer?
    Thanks,
    Anders

    Hi Andres,
    I could figure out the solution for all these options.
    I used if-esle statement to handle the blank parameter values
    To pass multiple values for the parameter, I converted the "; " separator to _]_ so as to convert the list in the format recognized by Explorer. Note that there is a space after ;
    To pass multiple parameters, I used the syntax "_;_" to include the second parameter in the url (refer to the last else statement in the below mentioned code)
    Hope this helps in case you haven't found any solution yet.
    //specify global variables for each filter and capture the filter selections in them
    var1=DS_1.getFilterText("Dim1");
    var2=DS_1.getFilterText("Dim2");
    //Use below mentioned code for the On Click event of the button
    if (var1.length <= 0 && var2.length <= 0)
        APPLICATION.openNewWindow("http://xxxx:8080/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=Aecg_Tff_55Oon3UKgf2BZ0");
    else if(var1.length <= 0 && var2.length > 0)
            APPLICATION.openNewWindow("http://xxxx:8080/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=Aecg_Tff_55Oon3UKgf2BZ0&fans=Dim2(Text)_:_" + Convert.replaceAll
    (DS_1.getFilterText("Dim2"), "; ", "_]_"));
        else if(var1.length > 0 && var2.length <= 0)
                 APPLICATION.openNewWindow("http://xxxx:8080/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=Aecg_Tff_55Oon3UKgf2BZ0&fans=Dim1(Text)_:_" +
    Convert.replaceAll(DS_1.getFilterText("Dim1"), "; ", "_]_"));
            else
                    APPLICATION.openNewWindow("http://xxxx:8080/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=Aecg_Tff_55Oon3UKgf2BZ0&fans=Dim1(Text)_:_" +
    Convert.replaceAll(DS_1.getFilterText("Dim1"), "; ", "_]_") +
                    "_;_Dim2(Text)_:_" + Convert.replaceAll(DS_1.getFilterText("Dim2"), "; ", "_]_"));
    Thanks & Regards,
    Tushar

  • Questions about Using Lightroom and Print Studio Pro

    I want to use Print Studio pro via the lightroom plugin since as I understand it, that is the only way to ensure a 16-bit file is being passed to the printer (on Windows).  However, I am a little confused about how the image is being rendered.  Is lightroom applying a default output sharpening to the file before handing it off to Print Studio Pro or Does Print Studio Pro manage resolution and Output sharpening based on the media and print size you choose?  
    So basically I am wondering if there is any output sharpening being applied, and when is it applied.  The possibilities I think would be:
    Lightroom is applying a default output sharpening when rendering the file to TIF for Print Studio Pro (If this is the case, what setting is being applied and is it possible to change it?)
    Print Studio Pro is applying output sharpening based on media type and print size, or applying a generiz amount of sharpening that does not take into account media or size.
    No Sharpening is being applied.  In this case, I should probably be exporting this file manually with output sharpening applied and then opening in Print Studio Pro
    The other question I have is if when using the plugin is the TIF file that is being generated in 16-bit pro-photo to ensure the maximum amount of color data?
    Because if Print Studio Pro is not applying sharpening I think it may just be better to print through the lightroom tool even though it renders down to 8-bit because the amount of control I have via the lightroom print module would be far more advantageous than any color data I am losing by printing in 8-bit.
    Anyone know the answer to all this?

    I had similar questions when I first got my Pro-100.
    1. You can call up PSP from any module, so I assume it is ignoring print module settings.
    2. If I select a Saved Print, which adjusts the print module settings specific to that print, and the open PSP the paper settings in PSP are not what is in LR, supporting the "ignore" conclusion.
    3. I ran some test prints using LR to print at three different output sharpening settings (Off, Standard, High) to ensure I could see a difference (I did).
    4. I ran four test prints: LR-Standard, XPS driver, LR-Standard regular driver, PSP using standard driver and PSP using XPS driver. I couldn't see any difference between the four prints.
    Since LR is such an easy printing process I haven't seen a reason to use PSP.
    John Hoffman
    Conway, NH
    1D Mark IV, Rebel T5i, Pixma PRO-100, MX472

  • When using TODATE function MDX query is not correctly generated

    Essbase 9.3.1.2 and OBIEE 10.1.3.4.1.
    When using TODATE function MDX query is not correctly generated.
    This leads to unexpected values not only on cumulative columns in report (generated with TODATE), but also other columns (calculated with AGO function or directly read from cube) have incorrect values.
    The problem occurs when you filter on a column that is not in the select list. If you filter on just one level of dimension, results are fine. You can filter on multiple dimensions as long as you filter on just one level of each dimension.
    If you filter on two or more levels of one dimension, than results are not correct. In some cases results for TODATE column are all zeros, in some cases it is a random value returned by Essbase (same random value for all rows of that column), and in some cases BI Server returns an error:
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. Essbase Error: Network error [10054]: Cannot Send Data (HY000).
    Here is generated MDX code:
    With
    set [Grupe proizvoda2] as '{[Grupe proizvoda].[N4]}'
    set [Grupe proizvoda4] as 'Generate([Grupe proizvoda2], Descendants([Grupe proizvoda].currentmember, [Grupe proizvoda].Generations(4), leaves))'
    set [Segmentacija2] as '{[Segmentacija].[RETAIL]}'
    set [Segmentacija4] as 'Filter(Generate({[Segmentacija2]}, Descendants([Segmentacija].currentmember, [Segmentacija].Generations(4),SELF), ALL), ([Segmentacija].CurrentMember IS [Segmentacija].[AFFLUENT]))'
    set [Vrijeme3] as '{[Vrijeme].[MJESEC_4_2009]}'
    member [Segmentacija].[SegmentacijaCustomGroup]as 'Sum([Segmentacija4])', SOLVE_ORDER = AGGREGATION_SOLVEORDER
    member [Accounts].[MS1] as '(ParallelPeriod([Vrijeme].[Gen3,Vrijeme],2,[Vrijeme].currentmember), [Accounts].[Trosak kapitala])'
    member [Accounts].[MS2] as '(ParallelPeriod([Vrijeme].[Gen3,Vrijeme],1,[Vrijeme].currentmember), [Accounts].[Trosak kapitala])'
    member [Accounts].[MS3] as 'AGGREGATE({PeriodsToDate([Vrijeme].[Gen2,Vrijeme],[Vrijeme].currentmember)}, [Accounts].[Trosak kapitala])'
    select
    { [Accounts].[Trosak kapitala],
    [Accounts].[MS1],
    [Accounts].[MS2],
    [Accounts].[MS3]
    } on columns,
    NON EMPTY {crossjoin ({[Grupe proizvoda4]},{[Vrijeme3]})} properties ANCESTOR_NAMES, GEN_NUMBER on rows
    from [NISE.NISE]
    where ([Segmentacija].[SegmentacijaCustomGroup])
    If you remove part with TODATE function, the results are fine. If you leave TODATE function, OBIEE returns an error mentioned above. If you manually modify variable SOLVE_ORDER and set value to, for example, 100 instead of AGGREGATION_SOLVEORDER, results are OK.
    In all cases when this variable was modified in generated MDX, and query manually executed on Essabse, results were OK. This variable seems to be the possible problem.

    Hi,
    Version is
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
    PL/SQL Release 10.2.0.5.0 - Production
    CORE    10.2.0.5.0      Production
    TNS for 64-bit Windows: Version 10.2.0.5.0 - Production
    NLSRTL Version 10.2.0.5.0 - Production
    Sorry, in my last post i forgot to mention that i already created a function based index but still it is not using because, there is a UNIQUE constraint on that column.
    Thanks

  • Is it possible to use BAPI-ALE to send an idoc using the message control?

    Hi Guys
    Is it possible to use BAPi-ALE to send an IDOC using a message control?
    I have configured the system to send an IDOC when a outbound delivery is saved in the system.
    I have done the following.
    1). I am using the std BAPI-ALE interface provided by the object type LIKP.
    2). I am using the method SAVEREPLICA for which an interface already exists in BDBG transaction.
    3). I hace created a distribution model in BD64 and added the BAPI - LIKP and SAVEREPLICA
    4). Created a partner profile ( using the generate partner profile option in the BD64 transaction )
    QUESTION:
    1). How do i associate the custom OUTPUT type created for Delivery ?
    2). I tried to associate the custom output type in the Partner profile definition under the message control tab but i am not sure which Process code to be used? Since the partner profile was generated automatically from BD64 it has an entry for SHP_OBDLV_SAVE_REPLICA as a message type in the outbound parameters. and i am unable to find a process code for this Message type in WE41. So what process code should i use in the Message control tab against the custom output type?
    3). Do i need to leave the message control tab empty without making any entry? If yes then how would the system come to know that it needs to trigger this partner profile when the custom output type is proposed by the system?
    will award points for useful answers
    Edited by: Workflow  learner on May 29, 2008 8:49 PM

    "any way"
    Applications such as ScreenRecycler, http://www.screenrecycler.com/ScreenRecycler.html, can do it.

  • Export and save a Crystal Report in PDF using parameters

    Hi @all!
    Is it possible to suppress the output of an Crystal Report in a window using parameters? Instead of that I want to save the pdf in a specified folder without using the publication-function.
    Fot the parameter I use these link:
    [http://devlibrary.businessobjects.com/businessobjectsxir2/en/en/boe_sdk/boesdk_dotnet_doc/doc/boesdk_net_doc/html/Report_Linking13.html]
    Best regards,
    Dirk

    Hi,
    this is the forum for the SAP Integration Kit. I would suggest you post your question into the Crystal Reports forum.
    the answer - yes you can use OpenDocument to show the report right away as PDF.
    Ingo

  • Link two reports using parameters

    Hi,
    We are using business object XI.
    I am trying to link two reports using parameters. I cannot use subreport option becuase inside the subreport I should link another report too. So,
    Report 1(High level summary)
    Report 2(Middle level summary)
    Report 3(Detail level)
    I tried to use hyperlink option and used following string.
    http://<server_name>/<Virtual Directory>/object.rpt?prompt0={?param1}&prompt1={?param2}
    Here is my question.
    1. Server name: Does it include port number??
    2. Virtual Directory: I am absolutely lost. I tried the "frsinput" directory the actual rpt file is storing. It is not working.
    Do you have general path??
    3. Parameters: I have 5 parameters to pass. 3 of them are Strings and the rest are DateTime.
    Basically, I need any tutorial about this kinds of things. The tutorial I have got only discribe link like "www.yahoo.com"
    BTW, is this even possible solution??

    Hi,
    I am trying to link two reports in the crystal report designer->deploy to the server->show in the DHTML viewer.
    When I create a URL from report A, it looks like "&" disapears. For example, I created a hyper link from report A using formula,
    http://server:port/........openDocument.jsp?sDocName=reportB&sType=rpt&paramName1="Trim(ToText({?param1},"#####"))"&paramName2="+Trim(ToText ({?param2},"#######"))
    But when I see the actual URL, all the "&" disappears so it looks like
    http://server:port/........openDocument.jsp?sDocName=reportBsType=rptparamName1="Trim(ToText({?param1},"#####"))"paramName2="+Trim(ToText ({?param2},"#######"))
    No wonder it is not working.
    I guess I need special protection for "&" sign. Do you know any?

Maybe you are looking for

  • Oracle Hangs on windows 2003 Server

    Oracle Database Hanging I have 32-bit Oracle Installed in Windoaws Server 2003 . If I left Oracle idel for cupel of hours then tried to connect it hangs. Task Manager shows me "Oracle Not Responding". The only obtion I left with is to restart the the

  • Add Page n of nn, date, current user name to aReport Footer on PDF Report

    Hello, I am very new to using Apex. I have a SQL Report which I can output to a PDF and works. I have a header and the contents of the report all appearing in the PDF OK. I would like to have a footer for each page which has the date & timestamp, cur

  • Photoshop Elements 10 Installed in 2 computers

    I accidentally installed this version of photoshop in 2 of my computers, so it doesn't work anymore (because of the Track Number). I unninstalled it in one of them, but it still doesn't work! What am I supposed to do?

  • PDF file is not Valid

    I work in an Architectural office, and we get consultant drawings in PDF all the time. Several of our engineers will sometimes send pdf files that cannot be opened by Acrobat 6.0, yet I can open them with Acrobat 8.0 Pro.  What would cause this, and

  • UTF-8 csv file generated by Java can't be displayed correctly on Excel 2000

    Hi, I have a question about the file geneated by Java in UTF-8 format. If I have a file named "foo.csv" generated by my java code like this: writer = new OutputStreamWriter(new FileOutputStream("foo.csv"), "UTF-8"); Then I write some data loaded from