Explanation on epmsys_registry tool 11.1.2.1

Hello,
after installing and configuring a second frameworkserver (and changing the path to the RM1 folder to a networkshare) I was missing all relevant framework menu's (like explorer and administer) in workspace.
I succesfully followed the instructions from reportID [ID 1325933.1] But I have not any idea what the epmsys_registry tool is doing. Perhaps someone can explain this a bit. That would be very welcome. :-)
1. Stop FoundationServices and RA framework webapps, and RA agent services
2. Execute the following query against the Shared Services registry database:
3. select application_id from css_provisioning_info where lower(application_id) like 'hava%';
o note this application id, e.g. HAVA:0000012b3072bf63-0000-6717-0acc1bac
4.Using the epmsys_registry tool, execute:
o epmsys_registry updateproperty RA_FRAMEWORK/@applicationId <the application Id returned from the query above>o example using ID above:_e.g. epmsys_registry updateproperty RA_FRAMEWORK/@applicationId HAVA:0000012b3072bf63-0000-6717-0acc1bac
5 Restart the processes above and try the user login to workspace again
Thanks in advance
Detlev

Have you seen this:
For EPM System Release 11.1.2.1, Reporting and Analysis services are installed on multiple boxes and share the repository on a shared drive. After the second set of Reporting and Analysis services is configured, Workspace does not show the Explorer listing after logging in. What is the cause of this issue?
This is a defect in EPM System Configurator in Release 11.1.2.1.
You need to apply Patch Set Exception 12552933 and follow the steps in the patch Readme.
In file: http://www.oracle.com/technetwork/middleware/bi-foundation/epm-tips-issues-73-up-399995.pdf
In Whitepaper Library: http://www.oracle.com/technetwork/middleware/bi-foundation/resource-library-090986.html

Similar Messages

  • Can't get "Type Mask Tool" to work

    I'm a newbie to the program and have been able to understand how to use all the tools so far EXCEPT the Type Mask Tool. The Product Help in the Adobe Help Center is very brief and vague. I searched all the online avenues and didn't see my problem addressed.
    With my photo as the background layer, I created a new layer and did a New Fill Layer / Gradient. I then used the Type Mask Tool to create some text I wanted to cut out of the gradient layer to paste onto a new layer. I can type the outlined text on the gradient layer but that's it. I can't get it to separate the text from the rest of the layer. If I switch to the photo (background) layer, the outline text is there too and it will cut out the text from the photo/background. But I don't want it affecting the photo/ background layer.
    Does the type mask tool only work on the background layer? I tried gradient, solid color, and pattern filled layers and result was the same: I could type the type mask text but it had no effect on those layers, only on the background layer. The Product Help (as vague as it is) doesn't say it only works on the background layer. I'm obviously using the tool wrong, but can't figure out how to use correctly following the limited Product Help explanation for the tool. Can someone give a more thorough explanation of what the tool can and can not do and how to use it? Thanks!

    Scott,
    You can use the Type Mask on an adjustment/fill layer's layer mask... you just need to fill the selection or the area outside the selection with the appropriate gray-shade to give the degree of transparency/opacity you want.
    For a simple example, if you have a background layer, and a gradient fill layer over it, and have selected the gradient fill's layer mask - when you use the type mask, once you have the marching-ants marquee, fill the selection with black to allow the background to show through the gradient in the shape of the text mask. Or, invert the selection and then fill with black to hide all of the gradient fill except the text shape.
    While this may seem more complicated at first, a bit of practice will demonstrate that the added flexibility is well worth the time it takes to understand the concept.
    HTH,
    Byron

  • 인증되지 않은 TOOLS 의 ACCESS 제한하기

    제품 : SQL*PLUS
    작성날짜 : 2003-02-03
    인증되지 않은 TOOLS 의 ACCESS 제한하기
    ===========================
    PURPOSE
    이 자료는 Database 에 인증되지 않은 tools 의 접근을 막는 방법에 대한 설명이다.
    Explanation
    SQL*Plus 나 기타 다른 tools 의 접속을 제한할 필요가 발생할 수 있다.
    단지 지정한 tools 만 사용하는 user 만 access 허용을 원한다면
    예를 들어, forms 나 Reports 또는 다른 tools 만 사용하는 환경에서
    SQL*Plus 나 다른 software 의 tools 을 사용하는 end user 의 접속을
    제한하고, 단지 인증된 tools 만 접속이 되도록 하려고 한다.
    그럴 경우에 PRODUCT_USER_PROFILE 테이블을 사용하여 SQL*PLUS 을 실행하는
    session 에 제한을 넣을 수 있다. 어떻게 수행되는지는 <Note:2181.1> 를
    참조해 보면 된다.
    그러나 이 제한은 단지 SQL*PLUS 에서만 작동하고 다른 tools 에서는 동작을
    하지 않을 수도 있다. Oracle8i 에서는 logon trigger 를 이용하면 이 기능을 사용할 수 있다.
    Example
    인증되지 않은 access 를 검사하는 테이블을 생성한다.
    SQL> conn sys/manager
    Connected.
    SQL> DROP TABLE LOGONAUDITTABLE CASCADE CONSTRAINTS;
    SQL> CREATE TABLE LOGONAUDITTABLE (
    EVENT VARCHAR2 (10),
    TIMESTAMP DATE,
    SCHEMA VARCHAR2 (30),
    OSUSERID VARCHAR2 (30),
    MACHINENAME VARCHAR2 (64),
    SID NUMBER,
    SERIAL# NUMBER,
    PROGRAM VARCHAR2 (100));
    Table created.
    scott schema 에 아래의 trigger 를 생성한다.
    SQL> CREATE OR REPLACE TRIGGER logonauditing
    AFTER LOGON ON scott.SCHEMA
    DECLARE
    machinename VARCHAR2(64);
    osuserid VARCHAR2(30);
    sid NUMBER;
    serial# NUMBER;
    program VARCHAR2(100);
    CURSOR c1 IS
    SELECT osuser, machine , sid , serial# , program
    FROM v$session
    WHERE audsid = USERENV( 'sessionid' );
    BEGIN
    DELETE LOGONAUDITTABLE;
    COMMIT;
    OPEN c1;
    FETCH c1 INTO osuserid, machinename, sid , serial# , program ;
    INSERT INTO LOGONAUDITTABLE VALUES ( 'LOGON', SYSDATE,
    USER, osuserid, machinename , sid , serial#, program);
    CLOSE c1;
    COMMIT;
    dbms_job.isubmit(12345,'sys.killsession;',SYSDATE);
    END;
    Trigger created.
    log on trigger 로 부터는 같은 session 을 kill 시킬 수는 없다. 이 SESSION 은
    DBMS_JOB PACKAGE 를 사용하여 매 10 초마다 해당하는 SESSION 을 찾아서
    KILL 시키는 SCHEDULING 을 걸어서 사용할 수 있다.
    Sys 나 System schema 로 아래의 procedure 를 생성한다.
    SQL> conn sys/manager
    Connected.
    SQL> CREATE OR REPLACE PROCEDURE KILLSESSION AS
    sid NUMBER;
    serial# NUMBER;
    timestamp DATE;
    CURSOR c1 IS SELECT sid , serial# , timestamp FROM scott.LOGONAUDITTABLE WHERE
    INSTR(UPPER(program),UPPER('C:\Documents and Settings\All Users\시작 메뉴\프')) > 0;
    /* 위의 부분에서 session 의 program column 값에서 원하는 application 의 value 를
    지정한다. */
    BEGIN
    FOR i1 IN c1 LOOP
    dbms_output.put_line('alter system kill session ' ||''''||i1.sid||','||i1.serial#||'''');
    execute IMMEDIATE 'alter system kill session ' ||''''||i1.sid||','||i1.serial#||'''';
    DELETE scott.LOGONAUDITTABLE WHERE sid = i1.sid AND serial#=i1.serial# AND timestamp = i1.timestamp;
    END LOOP;
    COMMIT;
    END;
    Procedure created.
    위의 procedure 를 수행하기 위해서는 init.ora 파일에 아래의 parameters 를
    적용해 주어야 한다.
    job_queue_process = 1
    job_queue_interval = 10
    위와 같이 setting 을 하면 아래의 PL/SQL block 을 사용하여 인증되지 않은
    sessions 들을 매 10 초 마다 KILLSESSION procedure 를 fire 시킬 수 있다.
    SQL> connect sys/manager
    begin
    dbms_job.isubmit(2345,'KILLSESSION;',sysdate,'sysdate+1/(24*60*6)');
    end;
    위의 명령을 실행하면
    Client sqlplus 에서 아래의 메시지가 떨어진다.
    SQL> select * from logonaudittable;
    EVENT TIMESTAMP SCHEMA OSUSERID
    MACHINENAME SID SERIAL#
    PROGRAM
    LOGON 03-FEB-03 SCOTT Administrator
    BKCHEON 11 43911
    C:\Documents and Settings\Administrator\시작 메
    LOGON 03-FEB-03 SCOTT Administrator
    BKCHEON 11 43923
    C:\Documents and Settings\All Users\시작 메뉴\프
    LOGON 03-FEB-03 SCOTT Administrator
    BKCHEON 15 55572
    C:\Documents and Settings\All Users\시작 메뉴\프
    SQL> select * from tab;
    select * from tab
    ERROR at line 1:
    ORA-00028: your session has been killed
    Reference Documents
    NOTE:105438.1
    Note:70679.1 PL/SQL Example: How to Audit Logon Events with Triggers

  • Problem in the package or classpath

    Hello every body
    I want to add a module at "jhove" which is open source: http://hul.harvard.edu/jhove/index.html
    When I launch jhove like this: ./jhove -k file.pdf, it shows me more informations about this pdf.
    I want that it re-knows me anathor type of file.(warc format)
    Then I have to write a new module.
    I try to do it following the link: http://hul.harvard.edu/jhove/writingamodule.html
    I added my java code in :/home/jhove/classes/edu/harvard/hul/ois/jhove/module/Project/
    The compilation works well.
    I add : EXTRA_JARS=/jhove/classes/edu/harvard/hul/ois/jhove/module/Project/WarcModule.jar
    At the file: jhove.tmpl
    I also add this code at jhove.conf like they montionned in document:
    <module>
    <class>WarcModule</class>
    </module>
    I also try with this solution:
    <module>
    <class>edu.harvard.hul.ois.jhove.module.Project.MonModule</class>
    </module>
    But I have this error:
    edu.harvard.hul.ois.jhove.JhoveException: cannot instantiate module: WarcModule
    at edu.harvard.hul.ois.jhove.JhoveBase.init(Unknown Source)
    at Jhove.main(Unknown Source)
    I think that is problem in the classpath.
    There is my code:
    package edu.harvard.hul.ois.jhove.module.Project;
    import java.io.File; 
    import java.util.*;
    import java.io.*;
    import edu.harvard.hul.ois.jhove.*;
    import edu.harvard.hul.ois.jhove.ModuleBase;
    import edu.harvard.hul.ois.jhove.RepInfo;
    import org.archive.io.warc.*;
    public class MonModule extends ModuleBase
             private static final String NAME = "Warc-hul";
             private static final String RELEASE = "1.7";
             private static final int [] DATE = {2008, 9, 23};
             private static final String [] FORMAT = { "warc"};
             private static final String COVERAGE =
                 "PDF 1.0-1.6; PDF/X-1 (ISO 15930-1:2001), X-1a (ISO 15930-4:2003), " +
              "X-2 (ISO 15930-5:2003), and X-3 (ISO 15930-6:2003); Tagged PDF; " +
              "Linearized PDF; PDF/A (ISO/CD 19005-1)";
             private static final String [] MIMETYPE = {"application/warc"};
             private static final String WELLFORMED = "A PDF file is " +
                 "well-formed if it meets the criteria defined in Chapter " +
                 "3 of the PDF Reference 1.6 (5th edition, 2004)";
             private static final String VALIDITY = null;
             private static final String REPINFO = null;
             private static final String NOTE = "This module does *not* validate " +
              "data within content streams (including operators) or encrypted data";
             private static final String RIGHTS = "Copyright 2003-2007 by JSTOR and " +
              "the President and Fellows of Harvard College. " +
              "Released under the GNU Lesser General Public License.";
             private static final String ENCRYPTED = "<May be encrypted>";
    protected MonModule(String NAME, String RELEASE, int[] DATE, String[] FORMAT, String COVERAGE, String[] MIMETYPE, String WELLFORMED, String VALIDITY, String REPINFO, String NOTE, String RIGHTS, boolean x)
             super  (NAME, RELEASE, DATE, FORMAT, COVERAGE, MIMETYPE, WELLFORMED,VALIDITY, REPINFO, NOTE, RIGHTS, true);
    * PRIVATE INSTANCE FIELDS.
    /* First 6 bytes of file */
    protected byte _sig[];
    /* Checksummer object */
    protected Checksummer _ckSummer;
    /* XMP property */
    protected Property _xmpProp;
    /* Input stream wrapper which handles checksums */
    protected ChecksumInputStream _cstream;
    /* Data input stream wrapped around _cstream */
    protected DataInputStream _dstream;
    /* Flag for presence of global color table */
    protected boolean _globalColorTableFlag;
    /* Size of global color table */
    protected int _globalColorTableSize;
    /* Count of graphic control extensions preceding
    * something to modify */
    protected int _gceCounter;
    /* Top-level metadata property */
    protected Property _metadata;
    /* Blocks list property */
    protected List _blocksList;
    /* Total count of graphic and plain text extension blocks */
    protected int _numGraphicBlocks;
    public void checkSignatures (File file,  InputStream stream, RepInfo info)
    throws IOException
    int sigBytes[] = { 'W', 'A', 'R', 'C'};
    int i;
    int ch;
    try {
        _dstream = null;
        _dstream = getBufferedDataStream (stream, _je != null ?
                    _je.getBufferSize () : 0);
        for (i = 0; i < 4; i++) {
            ch = readUnsignedByte(_dstream, this);
            if (ch != sigBytes) {
    info.setWellFormed (false);
    return;
    info.setModule (this);
    info.setFormat (_format[0]);
    info.setMimeType (_mimeType[0]);
    info.setSigMatch(_name);
    catch (Exception e) {
    // Reading a very short file may take us here.
    info.setWellFormed (false);
    return;
    Please can any one help me.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Daniel, not sure if everything is clear now, but the way you are validating a WARC file is seriously flawed! I strongly suggest you use an existing WARC tool to do the actual parsing/validating.
    I've seen more and more people on JHove's mailing list posting problems on how to create their own modules, so I decided to write a small how-to-write-your-own-module-guide.
    Perhaps you'd like to give it a shot. I'll also post it on the mailing list.
    ================================================================================
    This is a step-by-step tutorial that will enable you to compile and run a
    custom made module for Harvard's idetification tool JHove [1]. This is not
    a tutorial on Java programming! For a thorough explanation of this tool and
    extensive documentation, please see:
    [http://hul.harvard.edu/jhove/documentation.html]
    ================================================================================
    = Setp 1 =
    Download and unzip JHove 1.1f [2]. The unzipped folder will be called
    JHOVE_HOME from now on.
    ================================================================================
    = Step 2 =
    In this example I will construct a very elementary ARC module and will be using
    Heritrix' [3] ARCUtils class, so download Heritrix 1.14 [4] and unzip it. After
    unzipping, locate the file 'heritrix-1.14.1.jar' (it might be a different
    version) and place it in the directory 'JHOVE_HOME/bin'.
    ================================================================================
    = Step 3 =
    Create a folder 'JHOVE_HOME/bin/test' and create a new file in it called
    'ArcModule.java'. Paste the following contents in that file:
    package test;
    import java.io.IOException;
    import java.io.InputStream;
    import edu.harvard.hul.ois.jhove.ModuleBase;
    import edu.harvard.hul.ois.jhove.RepInfo;
    import org.archive.io.arc.ARCUtils;
    public class ArcModule extends ModuleBase {
        private static final String NAME = "ARC-hul";
        private static final String RELEASE = "0.1";
        private static final int[] DATE = {2008, 11, 11};
        private static final String[] FORMAT = {"ARC"};
        private static final String COVERAGE = null;
        private static final String[] MIMETYPE = {"application/arc"};
        private static final String WELLFORMED = "...";
        private static final String VALIDITY = null;
        private static final String REPINFO = "...";
        private static final String NOTE = null;
        private static final String RIGHTS = "GNU LGPL";
        public ArcModule() {
            super (NAME, RELEASE, DATE, FORMAT, COVERAGE, MIMETYPE, WELLFORMED,
                    VALIDITY, REPINFO, NOTE, RIGHTS, false);
            // Optionally set some Agent information: see the other Modules how
            // this can be done.
        @Override
        public int parse(InputStream stream, RepInfo info, int parseIndex) {
            info.setModule(this);
            boolean wellFormed = false;
            try {
                if(ARCUtils.testCompressedARCStream(stream)) {
                    wellFormed = true;
            } catch (IOException e) {
                e.printStackTrace();
            info.setWellFormed(wellFormed);
            return 0;
    }================================================================================
    = Step 4 =
    Compile this ArcModule by opening a shell (command prompt) and cd-ing to
    'JHOVE_HOME/bin' and executing the following command:
    *nix & Mac OS:
    javac -cp .:JhoveApp.jar:heritrix-1.14.1.jar test/ArcModule.javaWindows:
    javac -cp .;JhoveApp.jar;heritrix-1.14.1.jar test\ArcModule.java
    (Note, if you're using JDK 1.4, replace '-cp' with '-classpath')
    You shouldn't get any messages if all goes well.
    ================================================================================
    = Step 5 =
    Open the file 'JHOVE_HOME/conf/jhove.conf' and add the following right beneath
    the line <bufferSize>?????</bufferSize>, where ????? is a number:
    <module>
      <class>test.ArcModule</class>
    </module>Save the file.
    ================================================================================
    = Step 6 =
    Create a folder called 'JHOVE_HOME/arcs' and copy two compressed ARC files in
    them. If you don't have any compressed ARC files laying around, you can
    download two small [5]. The file 'A.arc.gz' is a valid compressed ARC file,
    while 'B.arc.gz' is the same as 'A.arc.gz' but I removed the ARC-header from
    the latter, making it an invalid ARC file.
    ================================================================================
    = Step 7 =
    Open a shell, cd to 'JHOVE_HOME/bin' and execute the following command:
    *nix & Mac OS:
    java -cp .:JhoveApp.jar:heritrix-1.14.1.jar Jhove -c ../conf/jhove.conf -m ARC-hul ../arcsWindows:
    java -cp .;JhoveApp.jar;heritrix-1.14.1.jar Jhove -c ..\conf\jhove.conf -m ARC-hul ..\arcsWhich will cause JHove to scan everything that is in 'JHOVE_HOME/arcs' folder
    and throws it through your newly create ArcModule. The output will be as
    follows:
    Jhove (Rel. 1.1, 2008-02-21)
    Date: 2008-11-14 22:29:51 CET
    RepresentationInformation: .../jhove/arcs/A.arc.gz
      ReportingModule: ARC-hul, Rel. 0.1 (2008-11-11)
      LastModified: 2008-08-24 20:23:20 CEST
      Size: 130870
      Status: Well-Formed and valid
    RepresentationInformation: .../jhove/arcs/B.arc.gz
      ReportingModule: ARC-hul, Rel. 0.1 (2008-11-11)
      LastModified: 2008-11-14 21:53:15 CET
      Size: 116136
      Status: Not well-formedWhich is the expected result: A is valid and B is not.
    ================================================================================
    = Final remarks =
    As I said, this is not a programming tutorial, nor is it the best way to
    validate ARC files: more meta data should be extracted from the file. But I
    leave that for you. This was only a guide to show you how to get started on
    writing and running your own modules. You can have a look at the source
    of the existing modules to see the "best practices" w.r.t. writing a module.
    Best of luck!
    Regards,
    Bart.
    ================================================================================
    = References =
    [1] [http://hul.harvard.edu]
    [2] [http://hul.harvard.edu/jhove/download.html]
    [3] [http://crawler.archive.org]
    [4] [http://sourceforge.net/project/showfiles.php?group_id=73833&package_id=73980]
    [5] [http://iruimte.nl/arcs]

  • CC and Photoshop CC just do not want to properly work.

    Okay so this is starting to become a major problem which I am getting stressed out about and it is taking a huge chunk out of my ability to work.
    OS: Win 7 (x86)
    Last Thursday I purchased CC and downloaded Photoshop CC, everything installed fine aside from this weird glitch that CC causes to "explorer".
    ---- After CC finishes installation it crashes "explorer". The toolbars are gone, you cannot right-click the desktop or do anything. Basically I have to go in to Task Manager, end the "explorer" process and restart it to get it all to come back.
    After CC shows back up and that is out of the way I download Photoshop CC without problems (right? yeah, whoo hoo...kinda.)
    ---- All I have to say is that thank god that my plugins (Eye Candy and brushes do not get removed when I have to use this damn cleaner tool every time. See below for explanation on cleaner tool...)
    Photoshop finishes downloading, I launch it and everything is fine. At least for that night. The problem starts when I shut my computer down and start it back up in the morning. From Friday till Sunday I did not turn the computer on or do anything (as I was away for the weekend), yet when I turned everything on Sunday night I come to find out that the applications just do not work for whatever reason. CC refuses to launch and it's icons are blank, Photoshop refuses to launch and it's icons are blank. I go into my computer to find the folders to see what has happened and sure enough the files for all that stuff are still there but anything ending with .exe has a blank application icon and will not launch whatsoever. Strange, right? Hell I even tried to open everything in Administrator mode and it still wouldn't fix it. The only difference between trying to run it normally and trying to run it through Administrator mode is that with Photoshop it says this: "Windows cannot access the specified device, path, or file. You may not have the appropriate permissions." then asks me if I want to remove all the icons.
    Uh...what? Seriously?
    So I figured there was a botched install. I remove all of CC and Photoshop CC using the Adobe Cleaner tool to get rid of everything and start over with reinstalling everything again. Same issue happened with CC crashing "explorer" and all that, installed Photoshop CC without an issue... everything ran fine then I shut the computer down for the night only to reboot Tuesday and the same thing happens. At this point enough is enough, I contact support and deal with a huge process of checking files and all that for almost FOUR HOURS with this lady on tech support, including having her remote desktop my computer to watch. We basically did the same thing from the night before to remove all the files and redownload everything. I figure at the end of the session that we actually got it fixed - I mean come on, the tech person went out of their way for four hours to help resolve this. (And yes, the lady was great about it.) She figured that the Application Manager file was corrupted and wasn't accepting my license or something; thus we also redownloaded a new version of that.
    Yeah...no... I got back on today and the SAME thing happened.
    I cannot work with this product in this way, something has to be changed/patched/updated or something to resolve this issue asap. I literally cannot do my work, I cannot progress with my projects or do anything with this mess.
    None of the people that I have spoken to can figure out what this issue is. I have done no updates to my computer system or any of that in between installs either. I literally remove the products, install the products, and then shut the computer down. I honestly am about to give up...

    Touchdown has that option. It is a great app and worth the money.

  • Importing Microsoft Word doc to InDesign with embedded EPS art ~ scaling issue

    Hi, my workflow calls for creating content in Microsoft Word 2010 with embedded EPS art, in this case MathType 6.7a math objects. When I import these manuscripts (after saving as Word 97/2003 format) into my Adobe InDesign CS5.5 templates, the embedded inline graphics have been resized. Strangely, InDesign is keeping the container frame at the correct dimensions and then upsizing or downsizing the art inside that box.
    When I export a sample graphic from the Word file and unembed the same graphic after import it into InDesign, the two graphics are different sizes. InDesign might increase the size of one embedded graphic by 400% and then scale it down to 25% inside the anchored picture box and then in the next anchored picture box it might decrease the size the art to 50% and scale it to 200%.
    I did a test and created a graphic in Adobe Illustrator, saved it as EPS, placed the graphic into a Microsoft Word 2010 document, saved it out to 97/2003 format, imported that doc into an empty Adobe InDesign CS5.5 file. Again! InDesign changed the size of the art and re-scaled it to appear the same.
    I've been able to duplicate this issue on InDesign CS4 also, on both Windows XP and Windows 7.
    Has anyone else run into this issue? Does anyone know why the InDesign import filter doesn't import inline art in a Word document at 100%? Thanks for the help!

    My solution for this is:
    1. Place *.docx (yes, docx) word document with mathtype equations into indesign. This will set correct baseline for equations which is very important.
    2. download this scalegraphics script http://in-tools.com/downloads/indesign/scripts/ScaleGraphics.zip
    3. copy script from zip folder to C:\Program Files\Adobe\Adobe InDesign CS4\Scripts\Scripts Panel\Samples\JavaScript
    4. open palet (window/autoamtion/scripts) scripts, find new sript and run it
    Voila, all equations is at 100%...
    Script explanation: http://in-tools.com/article/scripts-blog/scale-graphics-script/
    In links palete equations have eps extension but this is embeded wmf files so you cant open them in photoshop or distill it with distiller.-((( I use export to pdf option in indesign to make pdf file.
    If you want all this eps links to export from indesign use this method:
    1. in links palete select all links
    2. in palete menu choose "unembed link"
    3. on answer window choose "no"
    4. select folder where you want indesign save files
    5. press "select"
    6.  now you have all links in new folder unembed from indesign document and you can edit it with mathtype.

  • Solution to Errno:7 in MaxL for Essbase Studio redeployment scripts

    This is an answer to an archived forum post that I found via a Google search.  The forum post no longer accepts replies.  The forum post contained an unanswered question about how to resolve "Errno:7" in MaxL in release 11.1.2.3 when trying to redeploy an outline through Essbase Studio.
    I encountered the same error in a client environment and could not find any resolution or references to this in the Knowledge Base, patches, release notes, etc.
    I wanted to post the resolution that worked for me, in case someone else encounters Errno:7 in MaxL.
    In this particular instance, the MaxL "deploy outline" script worked fine until we upgraded 11.1.2.1 to 11.1.2.3.  After upgrading, we could still connect to the Essbase Agent via MaxL, but the "deploy outline" script fails with "Not able to connect to BPM Server. Errno:7" and "BPM Connect Status: Error".  No evidence of the error could be found in the logs for the Essbase Agent, the Essbase application in question, and Essbase Studio.  Using the Essbase Studio Console to redeploy the outline worked fine.
    The root cause was learned when we ran the EPM Registry Editor to view a registry report.  The report showed that while Essbase Studio was correctly listening on port 5300, the web port was still on the old 11.1.2.1 port (9080) instead of the port 11.1.2.3 was expecting (12080).  This port number is not exposed to us if we go back into the EPM Configuration tool and drill down to Essbase Studio.  The config tool only allows us to change the relational database connection and the "datafiles" folder location.  Running "netstat -na" from the command prompt confirmed that the server was listening to 9080 instead of 12080.
    Using the EPM Registry Editor command-line tool to update the port's property value and then restarting the Essbase Studio service fixed the issue for us.  If you read the Essbase Studio documentation as I did, you may have had the impression that editing a file on the server would do the trick.  But the Readme for Essbase Studio 11.1.2.3 provides the real answer:
    "Starting in Release 11.1.2.3, the following Essbase Studio server properties are stored in the
    Oracle Hyperion Shared Services Registry database.
    The 11.1.2.3 Oracle Essbase Studio User's Guide describes all server properties as being in the
    server.properties file. To view or modify the settings in Shared Services Registry, use the
    epmsys_registry utility, described in the Oracle Enterprise Performance Management System
    Deployment Options Guide."
    I hope this helps and good luck!

    Hi Santy,
    Here's the original forum post: Essbase Studio Cube deployment via MaxL error
    In that thread, someone had questioned if an 11.1.2.2 MaxL client could still connect and bypass the error.  I happened to have a laptop handy with the 11.1.2.2 MaxL client installed on it and was able to test that.  The 11.1.2.2 MaxL client got the error as well.
    In my 11.1.2.3 environment I tried both the 32-bit and 64-bit MaxL runtimes and verified both were on the latest available Essbase patch set for 11.1.2.3.  Again, they still got the Errorno:7 message.  The problem was only fixed after updating the "server.httpPort" property value via the epmsys_registry tool.
    Regards,
    - Dave

  • How to display values and new char line (blank line)

    Hi,
    In database, one field contains values followed by new character lines (blank lines) after blank lines there is no values. Finally, I would say the field contains values and blank lines. Every thing is fine in database.
    In Crystal Reports the field is displaying only values. Need to display values and blank line.
    User is asking after values new character lines (blank line) to be shown. They enter like that in an application. The user doubt is why report is not showing what they enter in the application.
    In detail explanation, front end tool is ASP.NET and backend is SQL Server.
    User enter some values in note field, after that they hit enter button in the same field, cursor will go next line...user may hit u2018enter buttonu2019 more than 5 times. So note field contain values and some blank lines which are created by after hitting enter button.
    If user opens the application, they could see values plus blank lines in the note field.
    They are fine with the application.
    In Crystal Reports, the note field shows only values.
    User is questioning that why we could not see in report we enter.
    I checked in .Net application and SQL server database it is fine. It is displaying values and blank line.
    Please help me out how to display values followed by blank lines in Crystal Reports - the way they enter in the application.
    Thanks and Regards,
    Manjunath N. Jogin

    Hi,
    Sharonmat,
    I tried as you suggested. It is still displaying only values.
    I would like to explain again.
    it is not exactly null values.
    In .Net application it is called 'new char line'.
    it shows those many lines look like null.
    it is working fine in database.
    Why it is not working in Crystal Reports? I am wondering...
    Thanks for your suggestion.
    Debi,
    User may enter any number of blank lines or they may not enter blank lines.
    That is the reason I can not always give more height or blank text object.
    Thanks for your suggestion.
    Please suggest me some more suggestions,
    Thanks and Regards,
    Manjunath N. Jogin

  • Hyperion Reporting and Analysis

    Hello Gurus,
    So I installed Hyperion (11.1.2.2) foundation services(all componants), essbase(all componants), planning (all componants. well, it was only one componant), Reporting and Analysis framework (web application, services and common libraries. i installed only these two because hyperion planning depends on them), financial management ADM driver (chosen by default when i want to install hyperion reporting and analysis). i installed them and configured them all togather. I'm using a Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production on Windows 2008 SP2 32bits.
    Configuration of Reporting and Analysis framework failed, and that caused several problems when i ran the EPM system Diagnosis. this is what i got. Note: I'm gonna list only the errors/warnings in anything other than reporting and Analysis. as for reporting and analysis, i'm gonna list everything. sorry it's so long....
    Hyperion Foundation
    FAILED HTTP: HTTP Checking availability of HTTP context http://DC-HYPERIONT01:19000/raframework/index.jsp
    Error: com.hyperion.cis.utils.BadResponseCodeException: Bad response code with GET method: 404
    Recommended Action: Check that the application is started
    0 seconds
    EPM System Registry
    FAILED REG: Registry Next issues are present:
    LOGICAL_WEB_APP (id: fa67b59381bd8c85S4cc267951398ff60006S73df):
    "webAppType" property missed
    "context" property missed
    "port" property missed
    "SSL_Port" property missed
    "isSSL" property missed
    "host" property missed
    "" child missed
    RA_FRAMEWORK (id: fa67b59381bd8c85S4cc267951398ff60006S7bc8):
    "applicationId" property missed
    "RA_PRODUCT" parent missed
    RA_FRAMEWORK (id: fa67b59381bd8c85S4cc267951398ff60006S74c6):
    "applicationId" property missed
    "DATABASE_CONN" child missed
    Error: Checker execution failed.
    Recommended Action: Refer to the validation logs for exception details.
    Financial Reporting
    FAILED REG: Datasource Checking if datasource property exists in the registry
    Error: ORA-00942: table or view does not exist
    Recommended Action: Refer to the validation logs for exception details.
    0 seconds
    Reporting and Analysis
    FAILED CFG: Configuration Validating that configuration tasks have been completed
    Error: EPMVLD-01004: The following configuration tasks have not been completed:
    FrameworkServicesConfiguration: Configuration Failed
    Recommended Action: Attempt to configure referenced tasks
    0 seconds
    PASSED DB: Database Connectivity Checking connection to database jdbc:oracle:thin:@dc-hypdbt01.nuqulgroup.loc:1521:hybdb
    0 seconds
    PASSED SVR: Essbase Java API Launch external checker with next command: D:\install03092012\user_projects\epmsystem1\config\validation\11.1.2.0\launchEssbaseJavaAPI.bat EssbaseJAPIConnect ****** DC-HYPERIONT01:1423 Embedded
    5 seconds
    PASSED EXT: External Authentication Check Native Directory external authentication provider configuration
    0 seconds
    PASSED REG: Configuration Checking if product has only one product node in registry.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Reporting and Analysis Services and corresponding Agent Modules belong to the same host.
    Reporting and Analysis Services and corresponding Agent Modules belong to the same host.
    0 seconds
    FAILED RA: Reporting and Analysis Check if all required RAF properties exist under the RAF Logical Web App component.
    Error: Some required properties are not found in the RAF Logical Web App component: WebClient.SmartPages.DefaultSmartPage.PreconfiguredCategories, WebClient.SmartPages.ColorScheme.ColorScheme1.BackgroundColor, WebClient.Applications.DAServlet.OpenNewWindow, WebClient.UserInterface.Localization.localLanguageCode, WebClient.SmartPages.ColorScheme.ColorScheme2.HeaderColor, WebClient.Cache.Objects.HeadlinesPageTTL, WebClient.SmartPages.ColorScheme.ColorScheme0.FooterColor, WebClient.Internal.Cookies.EncryptCookies, WebClient.UserInterface.PortalColor.MainFrame.General.ColorMainWizard, WebClient.SmartPages.ColorScheme.ColorScheme0.HeadingColor, WebClient.UserInterface.Localization.localCountryCode, WebClient.Cache.Domain.DomainInfoTTL, WebClient.SmartPages.ColorScheme.ColorScheme3.BCMessagesColor, WebClient.SmartPages.ColorScheme.ColorScheme2.BackgroundColor, WebClient.SmartPages.ColorScheme.ColorScheme1.Name, RCPDirectoryURL2, WebClient.Cache.Objects.CategoryCacheSize, WebClient.UserInterface.JobOutput.MIMETypeToDisplayForSQRProgramOutput, WebClient.Cache.Objects.TaskListingTTL, WebClient.Cache.Objects.CategoryTTL, SmartViewContext, WebClient.Internal.Transfer.PassDCByStream, WebClient.SmartPages.ColorScheme.ColorScheme2.FooterColor, WebClient.SmartPages.ColorScheme.ColorScheme2.LinkColor, WebClient.SmartPages.ColorScheme.ColorScheme1.BCMessagesColor, WebClient.SmartPages.ColorScheme.ColorScheme0.HeaderColor, OfficeAddinSupport, WebClient.SmartPages.ColorScheme.ColorScheme0.BackgroundColor, WebClient.SmartPages.ColorScheme.ColorScheme1.HeaderColor, WebClient.Applications.iHTML.PollingTimeSec, WebClient.SmartPages.ColorScheme.ColorScheme3.LeftColor, WebClient.Cache.Objects.CacheModifyTTL, WebClient.SmartPages.ColorScheme.ColorScheme1.LeftColor, WebClient.Cache.Objects.CacheListTTL, WebClient.UserInterface.Subscription.ShowSubscriptions, WebClient.SmartPages.ColorScheme.ColorScheme2.LeftColor, WebClient.Diagnostics.Log.Configuration, WebClient.UserInterface.JobOutput.ShowHTMLOutputForSQRPrograms, WebClient.UserInterface.Localization.ShowTimeOrder, WebClient.Applications.DAServlet.DASResponseTimeout, WebClient.Applications.DAServlet.PollingTimeSec, WebClient.UserInterface.Localization.localVariant, WebClient.SmartPages.ColorScheme.ColorScheme0.LinkColor, WebClient.UserInterface.SmartCut.ShowAsLink, WebClient.SmartPages.ColorScheme.ColorScheme3.BackgroundColor, WebClient.UserInterface.JobOutput.ShowSPFOutputForSQRPrograms, WebClient.SmartPages.ColorScheme.ColorScheme3.FontColor, WebClient.SmartPages.ColorScheme.ColorScheme3.LinkColor, WebClient.SmartPages.General.MaxNumberOfInitializedFromPublished, WebClient.Internal.Upload.MaxFileSize, WebClient.SmartPages.ColorScheme.ColorScheme2.RightColor, WebClient.SmartPages.ColorScheme.ColorScheme3.HeadingColor, WebClient.SmartPages.ColorScheme.ColorScheme1.LinkColor, WebClient.SmartPages.ColorScheme.ColorScheme1.HeadingColor, WebClient.SmartPages.ColorScheme.ColorScheme2.HeadingColor, WebClient.UserInterface.Localization.ShowDateOrder, WebClient.Cache.Objects.BrowseQueryTTL, RelatedContentProtocol, WebClient.Cache.Objects.PublishedSmartPagesQueryTTL, WebClient.CorporateWorkspage.Folder, WebClient.UserInterface.PortalColor.MainFrame.General.ColorMainFrame, WebClient.SmartPages.Publish.Location, WebClient.SmartPages.General.MaxNumberOfSmartPages, WebClient.SmartPages.ColorScheme.ColorScheme2.Name, WebClient.SmartPages.ColorScheme.ColorScheme3.Name, WebClient.SmartPages.DefaultSmartPage.DefaultColorScheme, WebClient.Cache.Objects.CacheListSize, WebClient.UserInterface.Configuration.EnableMSReportsIntegration, WebClient.SmartPages.ColorScheme.ColorScheme2.FontColor, WebClient.SmartPages.ColorScheme.ColorScheme2.BCMessagesColor, WebClient.SmartPages.ColorScheme.ColorScheme0.RightColor, WebClient.Internal.Temp.Location, WebClient.SmartPages.ColorScheme.ColorScheme0.BCMessagesColor, WebClient.Applications.iHTML.BQServiceResponseTimeout, RAFVersion, customSmartcutUrl, WebClient.UserInterface.PortalColor.MainFrame.Title.ColorMainTitleUnderline, WebClient.SmartPages.ColorScheme.ColorScheme1.FontColor, WebClient.Applications.iHTML.DiskCachePollingPeriod, WebClient.UserInterface.PortalColor.MainFrame.General.ColorMainWizardBorder, WebClient.Cache.Objects.JobTTL, WebClient.SmartPages.General.ShowHeadings, WebClient.SmartPages.ColorScheme.ColorScheme3.FooterColor, WebClient.Applications.DAServlet.ZAC, Folder0, WebClient.SmartPages.ColorScheme.ColorScheme3.RightColor, WebClient.Cache.Notifications.NotificationQueryTTL, WebClient.Internal.Cookies.KeepCookiesBetweenBrowserSessions, WebClient.SmartPages.DefaultSmartPage.ShowBookmarks, WebClient.SmartPages.DefaultSmartPage.PreconfiguredEmbeddedObjects, WebClient.Cache.Browse.JobOutputSummaryListing, WebClient.SmartPages.DefaultSmartPage.ShowExceptionsDashboard, WebClient.SmartPages.ColorScheme.ColorScheme0.Name, WebClient.UserInterface.PortalColor.MainFrame.Text.ColorMainLinkFont, WebClient.SmartPages.ColorScheme.ColorScheme3.HeaderColor, WebClient.Internal.Redirect.RedirectPolicy, WebClient.SmartPages.ColorScheme.ColorScheme0.LeftColor, WebClient.SmartPages.ColorScheme.ColorScheme1.RightColor, WebClient.UserInterface.PortalColor.MainFrame.Text.ColorMainFont, WebClient.SmartPages.ColorScheme.ColorScheme1.FooterColor, WebClient.UserInterface.Localization.Show24HourTime, WebClient.SmartPages.ColorScheme.ColorScheme0.FontColor.
    Recommended Action: Ensure that you ran the config tool and configured the RAF Web App component.
    0 seconds
    FAILED RA: Reporting and Analysis Check if the Agent (AGENT) components exist.
    Error: Components not found.
    Recommended Action: Ensure that you ran the config tool and configured the Reporting and Analysis Service component.
    0 seconds
    WARNING RA: Reporting and Analysis Checker execution failed.
    Check if RAF Services are available.
    No RAF Services (Agent Module) components found in Registry.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Job Factory data folder exists.
    Data file locations are valid.
    0 seconds
    PASSED RA: Reporting and Analysis Check if every Agent Module is associated with some Agent.
    Every Agent Module is associated with some Agent.
    0 seconds
    FAILED RA: Reporting and Analysis Check if the Reporting and Analysis Setup (RA_SETUP) component exists.
    Error: Components not found.
    Recommended Action: Ensure that you ran the config tool and configured the Reporting and Analysis component.
    0 seconds
    PASSED RA: Reporting and Analysis Check if the RAF Web App (RA_FRAMEWORK_WEB_APP) components exist.
    Found: 1. Hosts for the components: DC-HYPERIONT01.
    0 seconds
    FAILED RA: Reporting and Analysis Check consistency of the Service Agent sets between Registry and V8_SERVICEAGENT.
    Error: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
    Recommended Action: Ensure that you ran the config tool and configured the Reporting and Analysis Service component.
    0 seconds
    FAILED RA: Reporting and Analysis Check consistency of the Service Agent properties between Registry and database tables (V8_SERVICEAGENT, V8_SA_PROPS).
    Error: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
    Recommended Action: Ensure that you ran the config tool and configured the Reporting and Analysis Service component.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Agent Modules and corresponding Agents belong to the same host.
    Agent Modules and corresponding Agents belong to the same host.
    0 seconds
    WARNING RA: Reporting and Analysis Checker execution failed.
    Check if all required RAF properties exist under the Reporting and Analysis Setup component.
    The Reporting and Analysis Setup component is not found.
    0 seconds
    PASSED RA: Reporting and Analysis Check if every Agent Module (except IR Log) is associated with some Reporting and Analysis Service(s).
    Every Agent Module (except IR Log) is associated with some Reporting and Analysis Service(s).
    0 seconds
    PASSED RA: Reporting and Analysis Check if Service Broker data folder exists.
    Data file locations are valid.
    0 seconds
    FAILED RA: Reporting and Analysis Check if the Reporting and Analysis Service (RA_SERVICE) components exist.
    Error: Components not found.
    Recommended Action: Ensure that you ran the config tool and configured the Reporting and Analysis Service component.
    0 seconds
    FAILED RA: Reporting and Analysis Check if the Agent Module (AGENT_MODULE) components exist.
    Error: Components not found.
    Recommended Action: Ensure that you ran the config tool and configured the Reporting and Analysis Service component.
    0 seconds
    PASSED RA: Reporting and Analysis Check if all required Workspace configuration files exist under the RAF Logical Web App component.
    All required files exist.
    0 seconds
    WARNING RA: Reporting and Analysis Checker execution failed.
    Check if Agents are available.
    No Agent components found in Registry.
    0 seconds
    PASSED RA: Reporting and Analysis Check if every Reporting and Analysis Service is associated with some Agent Module.
    Every Reporting and Analysis Service is associated with some Agent Module.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Event Server data folder exists.
    Data file locations are valid.
    0 seconds
    PASSED RA: Reporting and Analysis Check if every Agent is associated with some Agent Module(s).
    Every Agent is associated with some Agent Module(s).
    0 seconds
    PASSED RA: Reporting and Analysis Check if the RAF Logical Web App (LOGICAL_WEB_APP) component exists.
    Found: 1.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Repository data folder exists.
    Data file locations are valid.
    0 seconds
    FAILED WA: Essbase connectivity Check connectivity between Web Analysis Server and Essbase Server.
    Error: An error occurred while running the check.
    Recommended Action: Ensure that: 1) Essbase Server is configured properly and started; 2) Web Analysis Web Application is configured and started.
    0 seconds
    FAILED WA: HFM connectivity Check connectivity between Web Analysis Server and Financial Management Server.
    Error: An error occurred while running the check.
    Recommended Action: Ensure that: 1) Financial Management Server is configured properly and started; 2) Web Analysis Web Application is configured and started.
    0 seconds
    FAILED WA: Login Check the possibility to login on Web Analysis Server.
    Error: An error occurred while running the check.
    Recommended Action: Ensure that Web Analysis Web Application is configured and started.
    0 seconds
    PASSED WEB: Web Application Availability of Web application context http://DC-HYPERIONT01:9000/WebAnalysis
    0 seconds
    Many Many thanks in advance,
    Zain

    Hello Krishna,
    yes, looks like i didn't have moduke 7 downloaded. however after i did and installed it, i still got the following errors that seemed to do with connectivity to RAFRAMEWORK and it's database. I am going to list errors in all modules, except for Reporting and Analysis, i'm going to post everythign else.
    Hyperion Foundation
    FAILED HTTP: HTTP Checking availability of HTTP context http://DC-HYPERIONT01:19000/raframework/index.jsp
    Error: com.hyperion.cis.utils.BadResponseCodeException: Bad response code with GET method: 404
    Recommended Action: Check that the application is started
    0 seconds
    EPM System Registry
    FAILED REG: Registry Next issues are present:
    LOGICAL_WEB_APP (id: fa67b59381bd8c85S4cc267951398ff60006S73df):
    "webAppType" property missed
    "context" property missed
    "port" property missed
    "SSL_Port" property missed
    "isSSL" property missed
    "host" property missed
    "" child missed
    RA_FRAMEWORK (id: fa67b59381bd8c85S4cc267951398ff60006S74c6):
    "applicationId" property missed
    "DATABASE_CONN" child missed
    Error: Checker execution failed.
    Recommended Action: Refer to the validation logs for exception details.
    Financial Reporting
    FAILED REG: Datasource Checking if datasource property exists in the registry
    Error: Datasource property raframeworkDatasource not found.
    Recommended Action: Fix failure manually with epmsys_registry tool.
    0 seconds
    FAILED REG: Datasource Checking if datasource property exists in the registry
    Error: Datasource JNDI property raframeworkDatasourceJNDI not found.
    Recommended Action: Fix failure manually with epmsys_registry tool.
    0 seconds
    Reporting and Analysis
    PASSED CFG: Configuration Validating that configuration tasks have been completed
    0 seconds
    PASSED DB: Database Connectivity Checking connection to database jdbc:oracle:thin:@dc-hypdbt01.nuqulgroup.loc:1521:hybdb
    0 seconds
    PASSED SVR: Essbase Java API Launch external checker with next command: D:\install03092012\user_projects\epmsystem1\config\validation\11.1.2.0\launchEssbaseJavaAPI.bat EssbaseJAPIConnect ****** DC-HYPERIONT01:1423 Embedded
    6 seconds
    PASSED EXT: External Authentication Check Native Directory external authentication provider configuration
    0 seconds
    PASSED REG: Configuration Checking if product has only one product node in registry.
    0 seconds
    PASSED RA: Reporting and Analysis Check if the RAF Web App (RA_FRAMEWORK_WEB_APP) components exist.
    Found: 1. Hosts for the components: DC-HYPERIONT01.
    0 seconds
    PASSED RA: Reporting and Analysis Check if every Agent Module (except IR Log) is associated with some Reporting and Analysis Service(s).
    Every Agent Module (except IR Log) is associated with some Reporting and Analysis Service(s).
    0 seconds
    PASSED RA: Reporting and Analysis Check if IR BI Services are available.
    All IR BI Services are available: IRBI_AGENT_MODULE (Agent on dc-hyperiont01).
    0 seconds
    PASSED RA: Reporting and Analysis Check if the Reporting and Analysis Service (RA_SERVICE) components exist.
    Found: 37.
    0 seconds
    PASSED RA: Reporting and Analysis Check if the Agent (AGENT) components exist.
    Found: 1. Hosts for the components: DC-HYPERIONT01.
    0 seconds
    FAILED RA: Reporting and Analysis Check consistency of the Service Agent properties between Registry and database tables (V8_SERVICEAGENT, V8_SA_PROPS).
    Error: There is inconsistency between Registry and V8_SERVICEAGENT for the following items: JF1, SB1, RM1, ES1.
    Recommended Action: Ensure that you ran the config tool and configured the Reporting and Analysis Service component.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Service Broker data folder exists.
    Data file locations are valid.
    1 seconds
    PASSED RA: Reporting and Analysis Check if the Agent Module (AGENT_MODULE) components exist.
    Found: 6.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Repository data folder exists.
    Data file locations are valid.
    1 seconds
    PASSED RA: Reporting and Analysis Check if IR Job Services are available.
    All IR Job Services are available: IRJOB_AGENT_MODULE (Agent on dc-hyperiont01).
    0 seconds
    PASSED RA: Reporting and Analysis Check if Reporting and Analysis Services and corresponding Agent Modules belong to the same host.
    Reporting and Analysis Services and corresponding Agent Modules belong to the same host.
    3 seconds
    PASSED RA: Reporting and Analysis Check if RAF Services are available.
    All RAF Services are available: RAF_AGENT_MODULE (Agent on dc-hyperiont01), RAF_AGENT_MODULE (Agent on dc-hyperiont01).
    0 seconds
    PASSED RA: Reporting and Analysis Check if IR Log Services are available.
    All IR Log Services are available: IRLOG_AGENT_MODULE (Agent on dc-hyperiont01).
    0 seconds
    PASSED RA: Reporting and Analysis Check if all required Workspace configuration files exist under the RAF Logical Web App component.
    All required files exist.
    0 seconds
    PASSED RA: Reporting and Analysis Check if every Reporting and Analysis Service is associated with some Agent Module.
    Every Reporting and Analysis Service is associated with some Agent Module.
    1 seconds
    PASSED RA: Reporting and Analysis Check consistency of the Service Agent sets between Registry and V8_SERVICEAGENT.
    Data in Registry and database are consistent.
    0 seconds
    PASSED RA: Reporting and Analysis Check if every Agent is associated with some Agent Module(s).
    Every Agent is associated with some Agent Module(s).
    0 seconds
    PASSED RA: Reporting and Analysis Check if every Agent Module is associated with some Agent.
    Every Agent Module is associated with some Agent.
    0 seconds
    FAILED RA: Reporting and Analysis Check if all required RAF properties exist under the RAF Logical Web App component.
    Error: Some required properties are not found in the RAF Logical Web App component: WebClient.SmartPages.DefaultSmartPage.PreconfiguredCategories, WebClient.SmartPages.ColorScheme.ColorScheme1.BackgroundColor, WebClient.Applications.DAServlet.OpenNewWindow, WebClient.UserInterface.Localization.localLanguageCode, WebClient.SmartPages.ColorScheme.ColorScheme2.HeaderColor, WebClient.Cache.Objects.HeadlinesPageTTL, WebClient.SmartPages.ColorScheme.ColorScheme0.FooterColor, WebClient.Internal.Cookies.EncryptCookies, WebClient.UserInterface.PortalColor.MainFrame.General.ColorMainWizard, WebClient.SmartPages.ColorScheme.ColorScheme0.HeadingColor, WebClient.UserInterface.Localization.localCountryCode, WebClient.Cache.Domain.DomainInfoTTL, WebClient.SmartPages.ColorScheme.ColorScheme3.BCMessagesColor, WebClient.SmartPages.ColorScheme.ColorScheme2.BackgroundColor, WebClient.SmartPages.ColorScheme.ColorScheme1.Name, RCPDirectoryURL2, WebClient.Cache.Objects.CategoryCacheSize, WebClient.UserInterface.JobOutput.MIMETypeToDisplayForSQRProgramOutput, WebClient.Cache.Objects.TaskListingTTL, WebClient.Cache.Objects.CategoryTTL, SmartViewContext, WebClient.Internal.Transfer.PassDCByStream, WebClient.SmartPages.ColorScheme.ColorScheme2.FooterColor, WebClient.SmartPages.ColorScheme.ColorScheme2.LinkColor, WebClient.SmartPages.ColorScheme.ColorScheme1.BCMessagesColor, WebClient.SmartPages.ColorScheme.ColorScheme0.HeaderColor, OfficeAddinSupport, WebClient.SmartPages.ColorScheme.ColorScheme0.BackgroundColor, WebClient.SmartPages.ColorScheme.ColorScheme1.HeaderColor, WebClient.Applications.iHTML.PollingTimeSec, WebClient.SmartPages.ColorScheme.ColorScheme3.LeftColor, WebClient.Cache.Objects.CacheModifyTTL, WebClient.SmartPages.ColorScheme.ColorScheme1.LeftColor, WebClient.Cache.Objects.CacheListTTL, WebClient.UserInterface.Subscription.ShowSubscriptions, WebClient.SmartPages.ColorScheme.ColorScheme2.LeftColor, WebClient.Diagnostics.Log.Configuration, WebClient.UserInterface.JobOutput.ShowHTMLOutputForSQRPrograms, WebClient.UserInterface.Localization.ShowTimeOrder, WebClient.Applications.DAServlet.DASResponseTimeout, WebClient.Applications.DAServlet.PollingTimeSec, WebClient.UserInterface.Localization.localVariant, WebClient.SmartPages.ColorScheme.ColorScheme0.LinkColor, WebClient.UserInterface.SmartCut.ShowAsLink, WebClient.SmartPages.ColorScheme.ColorScheme3.BackgroundColor, WebClient.UserInterface.JobOutput.ShowSPFOutputForSQRPrograms, WebClient.SmartPages.ColorScheme.ColorScheme3.FontColor, WebClient.SmartPages.ColorScheme.ColorScheme3.LinkColor, WebClient.SmartPages.General.MaxNumberOfInitializedFromPublished, WebClient.Internal.Upload.MaxFileSize, WebClient.SmartPages.ColorScheme.ColorScheme2.RightColor, WebClient.SmartPages.ColorScheme.ColorScheme3.HeadingColor, WebClient.SmartPages.ColorScheme.ColorScheme1.LinkColor, WebClient.SmartPages.ColorScheme.ColorScheme1.HeadingColor, WebClient.SmartPages.ColorScheme.ColorScheme2.HeadingColor, WebClient.UserInterface.Localization.ShowDateOrder, WebClient.Cache.Objects.BrowseQueryTTL, RelatedContentProtocol, WebClient.Cache.Objects.PublishedSmartPagesQueryTTL, WebClient.CorporateWorkspage.Folder, WebClient.UserInterface.PortalColor.MainFrame.General.ColorMainFrame, WebClient.SmartPages.Publish.Location, WebClient.SmartPages.General.MaxNumberOfSmartPages, WebClient.SmartPages.ColorScheme.ColorScheme2.Name, WebClient.SmartPages.ColorScheme.ColorScheme3.Name, WebClient.SmartPages.DefaultSmartPage.DefaultColorScheme, WebClient.Cache.Objects.CacheListSize, WebClient.UserInterface.Configuration.EnableMSReportsIntegration, WebClient.SmartPages.ColorScheme.ColorScheme2.FontColor, WebClient.SmartPages.ColorScheme.ColorScheme2.BCMessagesColor, WebClient.SmartPages.ColorScheme.ColorScheme0.RightColor, WebClient.Internal.Temp.Location, WebClient.SmartPages.ColorScheme.ColorScheme0.BCMessagesColor, WebClient.Applications.iHTML.BQServiceResponseTimeout, RAFVersion, customSmartcutUrl, WebClient.UserInterface.PortalColor.MainFrame.Title.ColorMainTitleUnderline, WebClient.SmartPages.ColorScheme.ColorScheme1.FontColor, WebClient.Applications.iHTML.DiskCachePollingPeriod, WebClient.UserInterface.PortalColor.MainFrame.General.ColorMainWizardBorder, WebClient.Cache.Objects.JobTTL, WebClient.SmartPages.General.ShowHeadings, WebClient.SmartPages.ColorScheme.ColorScheme3.FooterColor, WebClient.Applications.DAServlet.ZAC, Folder0, WebClient.SmartPages.ColorScheme.ColorScheme3.RightColor, WebClient.Cache.Notifications.NotificationQueryTTL, WebClient.Internal.Cookies.KeepCookiesBetweenBrowserSessions, WebClient.SmartPages.DefaultSmartPage.ShowBookmarks, WebClient.SmartPages.DefaultSmartPage.PreconfiguredEmbeddedObjects, WebClient.Cache.Browse.JobOutputSummaryListing, WebClient.SmartPages.DefaultSmartPage.ShowExceptionsDashboard, WebClient.SmartPages.ColorScheme.ColorScheme0.Name, WebClient.UserInterface.PortalColor.MainFrame.Text.ColorMainLinkFont, WebClient.SmartPages.ColorScheme.ColorScheme3.HeaderColor, WebClient.Internal.Redirect.RedirectPolicy, WebClient.SmartPages.ColorScheme.ColorScheme0.LeftColor, WebClient.SmartPages.ColorScheme.ColorScheme1.RightColor, WebClient.UserInterface.PortalColor.MainFrame.Text.ColorMainFont, WebClient.SmartPages.ColorScheme.ColorScheme1.FooterColor, WebClient.UserInterface.Localization.Show24HourTime, WebClient.SmartPages.ColorScheme.ColorScheme0.FontColor.
    Recommended Action: Ensure that you ran the config tool and configured the RAF Web App component.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Job Factory data folder exists.
    Data file locations are valid.
    1 seconds
    PASSED RA: Reporting and Analysis Check if IR DAS Services are available.
    All IR DAS Services are available: IRDAS_AGENT_MODULE (Agent on dc-hyperiont01).
    0 seconds
    PASSED RA: Reporting and Analysis Check if Event Server data folder exists.
    Data file locations are valid.
    1 seconds
    PASSED RA: Reporting and Analysis Check if the Interactive Reporting Product (INTERACTIVE_REPORTING_PRODUCT) component exists.
    Found: 1.
    0 seconds
    FAILED RA: Reporting and Analysis Check if the Reporting and Analysis Setup (RA_SETUP) component exists.
    Error: Found: 2, which is more than 1. This indicates some problem.
    Recommended Action: Ensure that you ran the config tool and configured the Reporting and Analysis component.
    0 seconds
    PASSED RA: Reporting and Analysis Check if all required RAF properties exist under the Reporting and Analysis Setup component.
    All required properties exist.
    0 seconds
    PASSED RA: Reporting and Analysis Check if the RAF Logical Web App (LOGICAL_WEB_APP) component exists.
    Found: 1.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Agent Modules and corresponding Agents belong to the same host.
    Agent Modules and corresponding Agents belong to the same host.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Agents are available.
    All Agents are available: Agent on dc-hyperiont01.
    0 seconds
    PASSED SDKC: SDK checker Launch external checker with next command: D:\install03092012\user_projects\epmsystem1\config\validation\11.1.2.0\launchChecker.bat PingBQService ****** localhost 6800
    11 seconds
    PASSED SDKC: SDK checker Launch external checker with next command: D:\install03092012\user_projects\epmsystem1\config\validation\11.1.2.0\launchChecker.bat FetchCategory ****** localhost 6800 /Sample Content
    16 seconds
    FAILED WA: Essbase connectivity Check connectivity between Web Analysis Server and Essbase Server.
    Error: An error occurred while running the check.
    Recommended Action: Ensure that: 1) Essbase Server is configured properly and started; 2) Web Analysis Web Application is configured and started.
    0 seconds
    FAILED WA: HFM connectivity Check connectivity between Web Analysis Server and Financial Management Server.
    Error: An error occurred while running the check.
    Recommended Action: Ensure that: 1) Financial Management Server is configured properly and started; 2) Web Analysis Web Application is configured and started.
    0 seconds
    FAILED WA: Login Check the possibility to login on Web Analysis Server.
    Error: An error occurred while running the check.
    Recommended Action: Ensure that Web Analysis Web Application is configured and started.
    1 seconds
    PASSED WEB: Web Application Availability of Web application context http://DC-HYPERIONT01:9000/WebAnalysis
    0 seconds
    Many many thanks in advance,
    Zain

  • Exception: dispatcher.forwardException

    Hi All,
    I have done some enhancements to xMAM3.0_ECLIPSE application. I have compiled this application with jdk1.4.2_08 with precompiled jsp option. Application was deployed to PDA having CrEme327a_AX_CE50_PPC_minimal.CAB. My application is running fine except while creating notification and order it has to go to the details page, there it was giving an exception
    Internal Servlet Error:
    javax.servlet.forwardException:cannot find message associated with key:
    dispatcher.forwardException at org.apache.tomcat.facade.RequestDispatcherImpl.doForward() at
    org.apache.tomcat.facade.RequestDispatcherImpl.Forward()  at.....................
    But when I replace the files notification_0005fdetail.class and order_0005fdetail.class it was working fine. I have not done any changes to these JSP files, both standard files and custom files having same code.
    But why it was worked when replaced these custom files with standard files. Is this because I am compiling it with J2SDK1.4.2_08 (or) JDK1.3.
    Can any body please tell me wich jdk version I have to use for compilation.
    As per my knowledge Creme3.27a is of JDK1.1 compability. I have downloaded the jdk1.1, but could not set the path in NWDS, because it not gave me tools.jar file.
    Please resolve this error...
    Regards,
    Murthy.

    Hi Murthy,
    first a reply to your JDK1.1.8 problem: if you install JDK1.1.8 on your PC, then you can take this one as the standard compiler, but you still take the Tools.jar from 1.3 or 1.4 version. This normally works fine. Be aware, that you can not debug in 1.1.8. But your problem normally does not have to to with this.
    The JSP handling for MAM exists at least of 3 files. The JSP itself, the .view file where you define the messages/appFlow and the .java Action controller with your actual coding. If I see your error message and look into your explanation: It seems that your event is either not handeled by the view file or by the controller. Have you pointed to the super class in both cases, so the existing handlers are used as well? And while you have changed the logic, have you really no missspelling and the action is handeled in all three files?
    Inside the JSP you define the event with something like:
    createAction.do?event=onCreate&...
    so in the Vie whandler you have  something like
    and in the Action controller you have a function starting something like
      public Forward onLoad(Forwards forwards) {
    Ok, there are a lot of things that could go wrong here, but look into this, normally you will find the problem there. And if you have used the wrong syntax, as I said, just use the 1.1.8 JDK with the 1.3 tools jar, this will point you to the error.
    And even if you say the pages are the same, I think you have changed something there.
    One explanation for the tools.jar and that area:
    You can precompile the JSP files and you have the option to not delete the JSP generated code. Have a look inside that generated $JSP folder. Is the file ok? Well, the funny thing there is: once a file is generated, it will not be generated again necessarily, even after a change. So you need to delete the $JSP folder to be sure to have the correct version. On the other hand this is a good test if anything with your coding or with the compiler is wrong. The TOOLS.jar generate this $JSP fólder. From there you use the JDK to compile the finished version. So the JDK comes after the TOOLS.jar and this is the reasin why you easily can use a newer version of the TOOLS.jar file.
    Another good test if your coding is really ok will be, to first compile the .WAR file but not delete the generated $JSP folder. Then do the copy you descibed above in there with the .JAVA generated JSP files. Now compile the stuff again and then test the WAR file. In my understanding, now you are using in both cases really the same (original) JSP page. If you do not have the problem now, I guess you have changed the handler for the create method and you missed to tell either the VIEW or the ACTION controller what to do with that action - but that I described above already.
    Hope this helps to solve your problem and I have not lost you somewhere in the middle.
    Regards,
    Oliver

  • Problem on multiple user of a page

    Hi I am working on developing a JSP to generate a report in term of Excel sheet for my organization and the brief explanation to this tool and my problem is as follows.
    I need to generate Excel sheet based on some inputs.
    There are two table used by this tool , XYZ and ABC
    Whenever a request is made for this JSP , all entries from table XYZ and ABC are deleted.
    Inputs are supplied by an input form within this JSP which receives the input and inserts them into a table 'XYZ'.
    Then I need to a execute a Stored Procedure which will get values form this XYZ table and do some calculation and execute query on another database and results are stored in the table 'ABC'.
    I generate the Excel sheet fetching the values inserted in the second table 'ABC'.
    Every thing runs well until there is only a single request for this JSP.
    If one user sends a request and while this request is under processing (which takes around 2 min ) another user send another request for the same JSP. It deletes all the entries (generated by the first request )from the table ABC. That's y when the first request tries to generate the Excel sheet it founds no record from the ABC record or founds records inserted by the second request. That's y generates a faulty report.
    So if any one of u have any idea how to overcome this problem it will help me a lot .
    Thanking u in advance.
    ---

    Sounds like this table ABC only used to hold the data temperarly until the excel file is produced.
    In that case you can use a temperary table (if that is supported in the DBMS that you are using) configure the table to erace itself when you commit (Read the DBMS help file to see how it can be done). Then turn autocommit off in your database connections so the changes done in one session will not affect another until you commit.
    Another way of doing this is adding another key column to the table ABC. That column will use a unique id for each request so the data entered in different requests will not be mixed up. You can do the cleanup of old records either after generating the excel file or you can leave that to a scheduled clean up process.
    Or just lock the tables before start processing and unlock them after generating the file. This will cause the users request to block if there is another request in progress. If the process takes a long time (several mins) this will not be a good idea because the browser will timeout.

  • Why does my keyboard controller keep cutting out after a few seconds?

    I Have an M-Audio controller.  It has worked fine before.  When I record a software instrument track,  It works fine for a few measures,  then it stops working.  the music continues to play, but my keyboard just doesn't work.  I unplug the usb cable and plug it back in.  Then It works again for a few seconds and again stops working.  What could cause this?

    Are you using the paintbrush and have a gradient assigned to a stroke in CS6?
    Double click on paintbrush, and enable keep selected.
    If not give us a better explanation of what tool & settings you are using. (eg: blob brush, shape builder)

  • Why is latest InDesign CC so slow?

    Upgraded to InDesign 2014 last week. Now my documents in my book files are incredibly slow to scroll through and some images do not display onscreen completely, but have white gaps. It's as though the application is requiring too many resources for the computer to deliver, which is amazing considering I'm running a hybrid drive on the latest model iMac with 16 GB of RAM. Get the spinning beach ball all the time.

    Technically - you should work on ongoing projects in the version it was created in.
    For example, I wouldn't switch to CC2014 and work in that if I was working on a project in InDesign CC.
    I'd continue to work in CC - until the project is finished. If I need to work on it again at a later date I'd do the IDML dance and open it all in the new version, creating new files for the new version of InDesign.
    That being said, the IDML route is a way of removing corruption/excess data from files and debloats them. It could simply be that one or more than one of your files had excess code build up - that could have been slowing down InDesign - or in fact confusing InDesign CC 2014 as it didn't know how to handle said code.
    The IDML route is always preferred when moving from one version of InDesign to another, whether that's going back a version or forward a version.
    Especially with Book files, I always recommend to start a new book file and convert the old files before importing them to the new book file.
    This is basically because each version of InDesign is slightly different - see here for a better explanation - http://in-tools.com/article/whats-with-back-save-to-earlier-versions-of-indesign/
    That explains why you can't open newer files in older versions - but it speaks to how the database changes for Indesign in each version.
    Hope that makes sense.

  • Why does my cable selfie stick stop working after upgrading to iOS8.2?!

    I have an iPhone 6. My cable selfie stick stopped working after upgrading to iOS8.2.
    My friend's iPhone 6 is still iOS8.1, and the seflie stick works fine for him!
    How do I solve this?

    Are you using the paintbrush and have a gradient assigned to a stroke in CS6?
    Double click on paintbrush, and enable keep selected.
    If not give us a better explanation of what tool & settings you are using. (eg: blob brush, shape builder)

  • How to use long texts in explanation tool tip?

    Hi ,
         Can anyone tell me how to add long text in Explanation tool tip?
    I am able to use short OTR texts in explanation tool tip but not able to use long OTR texts.
    Thanks and regards,
    Vivek Shetty.

    For long text
    method1
    Create TEXT node- general attributes change text type to include text
    then you can input text name/text object/text id/language
    method2
    create PROGRAM LINE node - use FM READ_TEXT to read it to a internal table
    then use LOOP or TABLE node to display it
    For TEXT module(For foreign language)
    Tr-code:smartforms -- choose Text module(not choose form)--create a text module object
    then enter smartform Create TEXT node- general attributes change text type to text module
    input the text module name which created by above
    btw SO10 is just for Scriptform, in smartforms we use text module to replace SO10

Maybe you are looking for

  • HT1399 Installed ITunes 11.1.0.126 now updating podcasts no longer works correctly.

    I use ITunes for my subscribed podcasts.  The daily podcasts I get comes in three separate podcasts for the whole show and gives me the option to download all shows that I have not downloaded in the past.   Hour 1, 2 & 3 would update when I selected

  • Problem With Mac Book

    KCNcrew 07-15-07 pack after installing this my programs quits or programs don't load plz help install there APE Patcher

  • Quality Lost On Preview/Edit

    I have captured several scenes and saved them as avi files. These files play perfectly in Windows Media Player. However as soon as I preview these files within PE the quality of the video degrades significantly. When paused the shot looks fine, howev

  • What are the tables for Partner Fuction regarding the Vendors Purchasing ?

    Hello Gurus, What are the tables for Partner Fuction regarding the Vendors Purchasing Organisation. I need the Partner Function Key, Parner Function Name, Number and the Name of the Number. Thanx in advance, Ramona

  • Options / strategies for implementing subportals

    I am currently working to create a "subportal" for a specifically intended only for a subset of our portal users. I am trying to determine if creating a different URL for the subportal would be better or simply base the experience definition on which