IMPORT/EXPORT through classes

Hi,
I have to export dynamic internal tables to another program, but client has asked not to use import/export.
Searched on google and SDN, got to know that it may be acheived through classes.
Please help me if someone has worked on that, also if some has sample code for that, please let me know.
Thanks and Regards
Manu

You can use the Shared Objects instead of the IMPORT/EXPORT to shared buffer. But, the Shared Objects is not the ultimate solution to replace the IMPORT/EXPORT to memory ID.
Check this WIKI on Shared Objects: http://wiki.sdn.sap.com/wiki/display/ABAP/ABAPObjectsShareMemoryEnable+%28SHMA%29
Regards,
Naimesh Patel

Similar Messages

  • Colours trouble with a psd file after import/export through Lightroom 4

    I'm working with CS5, and I just bought LR4. I took a psd file (in Adobe 98 space) and I imported it in LR 4, and the exported as psd file in Adobe 98 colour space. Both files, the original one and the other after import/export, are quite different. The saturation of the res is not the same... When I repeat this experinece with a psd file in sRGB or in Prophoto, I have no difference betwwen both files.
    I then conclude that LR doesn't recognize the adobe 98 pprofile of my psd file.
    Is that normal, have you tried this experience, is there a bug in LR or a bug in the way, I proceed?
    Best regards

    When you import there is an Advanced button in one of the dialogs. Click that and you will be able to Paginate against chosen styles. That will break your document into topics.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Custom HTML importer/exporter, how to preserve HTML id, class, style

    I need to implement a custom XHTML importer/exporter and CSSFormatResolver.
    If I for example have a p-element: <p id="p1" class="xyz" style="margin:0.7em; color:#3300FF">lorem ipsum</p>
    How do I map the HTML attributes: id, class and style in order to preserve them in the ParagraphElement in order to use them during the custom CSS cascade process and for custom HTML export purposes (the exporter needs to spit out <p id="p1" class="xyz" style="margin:0.7em;  color:#3300FF">lorem ipsum</p> again.
    1. is this mapping correct or will this interfere with internal TLF formatting:
    HTML attribute
    ParagraphElement property
    id
    id
    class
    styleName
    style
    userStyles
    2. What is the purpose of FlowElement.coreStyles (where are those styles applied)?
    3. What is the actual purpose of FlowElement.userStyles, are those styles just for non TLF (end developer custom) purposes or does TLF use them at any point to set the element format properties?
    4. Any other pointers or related (non flex framwork) examples are welcome
    Thanks.
    Cheers, Benny

    Your mapping looks correct to me for id and styleName.
    I think what you are saying about style mapping to userStyles is correct.  Yes userStyles is an object of key value pairs holding all the non-TLF styles for a FlowElement.  coreStyles holds all the TLF styles for a FlowElement. TLF does use userStyles itself for the linkHoverFormat, linkActiveFormat and linkNormalFormat styles.
    Setting FlowElement.userStyles TLF will replace the current set of userStyles with those in the supplied Object.  That Object will be treated as a dictionary of stylenames and values.
    Normally I'd expect you'd use the FlowElement.setStyle API which figures out if a particular style belongs to coreStyles or userStyles and then sets the new style appropriately without changing the others.
    Richard

  • SLD - import and Export through Java Program

    Hi Exports,
    Can you please guide how we can do SLD import and export through java program? additionally wanted to export Landscape(technical system,Landscape,business system),software catalog(products,s/w components),Development(Name Reservation)
    Note: Manually we are doing through  http://<server host>:<port>/sld and navigate into administration-->import and Export
    Regards,
    Manivannan P

    closed

  • Report group : 8a26 : what is the purpose of import export parameter ?

    Hi ,
    I am using report group 8a26. I need to add company code in selection criteria, but when i dbl clk on one of the profit center to see the line items, those are getting dislayed irrespective of the company code i select even though i have passed the BUK parameter using set command.
    Do I need to do something in import and export parameters?
    How does this report group works actually?
    Is there any thing more i need to do which i have missed out to pass the company code to the program  rcopca02?
    Please help
    rgds,
    Madhuri

    Hi Joey,
    went through the tutorial with the "Import Java Classes".Do you mean the Barcode sample in Building Reports Manual?
    The purpose of Java Importer is this: suppose you have written your business logic in Java, eg, you convert currency from Dollars to Euros. Suppose the currency convertor is a Java class. You first import this Java class using "Import Java Classes". Now you can use this Java class in a Formula Column in your report to provide the input currency in Dollars and you will get the output in Euros. So the Java Importer provides a way for you to write your business logic in Java. You don't need to write all your logic in PL/SQL. You can just use PL/SQL to provide the input to Java, and get the output.
    To answer your specific Q: the PL/SQL packages (package spec and package body) are created automatically to reflect your imported Java classes. One package is created per imported Java class with the same name as the Java class, and it performs the same function as the Java class. However, you do not need to worry about these packages, and do not edit them.
    As a user, you only need to perform these steps:
    1. Import Java classes
    2. Use the Java classes in PL/SQL in your report, eg, in a Formula Column
    Navneet.

  • How to pass import/export parameters while event handler call in OOABAP?

    Hi Experts,
    Is it possible to use export parameter in set handler method?
    Actually my requirement is while creating customer through XD01 after committing to data base i want that customer.
    So i exporting  customer no. in one of the badi before commit  and importing in my custom class (zabc) after commit.
    Using event TRANSACTION_FINISHED and checking KIND eq C.
    My question is instead of using import export abap command  is it possible to pass those parameters in ??
    Sample : SET HANDLER zcl_sd_after_commit=>get_kunnr.
    Regards,
    Raj....

    Yes it can
    but the event should be defined in the BADI so why do you need to do it?
    CLASS MY_CLASS_1 DEFINITION FINAL.
       PUBLIC SECTION.
         METHODS GET_KUNNR IMPORTING KUNNR TYPE KUNNR.
         EVENTS MY_EVENT EXPORTING VALUE(KUNNR) TYPE KUNNR.
    ENDCLASS.
    CLASS MY_CLASS_2 DEFINITION FINAL.
       PUBLIC SECTION.
         METHODS MY_METHOD FOR EVENT MY_EVENT OF MY_CLASS_1
            IMPORTING KUNNR.
    ENDCLASS.
    CLASS MY_CLASS_1 IMPLEMENTATION.
       METHOD GET_KUNNR.
         RAISE EVENT MY_EVENT EXPORTING KUNNR = KUNNR.
       ENDMETHOD.
    ENDCLASS.
    CLASS MY_CLASS_2 IMPLEMENTATION.
       METHOD MY_METHOD.
         WRITE KUNNR.
       ENDMETHOD.
    ENDCLASS.
    So it can move KUNNR from class1 to class2
    DATA: MY_OBJ_1 TYPE REF TO MY_CLASS_1.
    DATA: MY_OBJ_2 TYPE REF TO MY_CLASS_2.
    PARAMETERS: P_KUNNR TYPE KUNNR.
    START-OF-SELECTION.
       CREATE OBJECT MY_OBJ_1.
       CREATE OBJECT MY_OBJ_2.
       SET HANDLER MY_OBJ_2->MY_METHOD FOR MY_OBJ_1.
       MY_OBJ_1->GET_KUNNR( P_KUNNR ).

  • Import Export Functionality on OIA

    I have created some SOD rules and Policies on the OIA via Identity Audit >> Rules and Identity Audit >> Policies. I couldnt find much about the Import/Export functionality on the same. Was going through the scheduling-context.xml and came across :
    *<ref bean="rmeRuleMigrationJobTrigger"/>*
    *<ref bean="identityAuditDataMigrationTrigger"/>*
    Not much has been said about it in the document or discussed in the forum. If someone has some knowledge on it, could you please share ?
    Regards,

    --In Scheduling-context.xml, alter the following line
    Mulitple jobs can be added,
    1. Define a job in jobs.xml
    2. Add a reference to job below -->
    <!--ref bean="usersImportJob"/-->
    <!--ref bean="accountsImportJob"/-->
    <!--ref bean="rolesImportJob"/-->
    <!--ref bean="glossaryImportJob"/-->
    <!--ref bean="policiesImportJob"/-->
    <!--ref bean="businessStructureImportJob"/-->
    <!--ref bean="identityAuditContinuousViolationScanJob"/-->
    <ref bean="identityAuditViolationReminderJob"/>
    <ref bean="certificationReminderJob"/>
    <!--ref bean="reportReminderJob"/-->
    <!--ref bean="stableFolderCleanUpJob"/-->
    <!--ref bean="accountsMaintenanceJob"/-->
    <!--ref bean="roleMembershipRuleJob"/-->
    <ref bean="fullTextIndexMaintenancedJob"/>
    <ref bean="workflowStepSLAJob"/>
    <ref bean="roleStatusAndMembershipMaintenanceJob"/>
    <ref bean="rmPreviewCleanUpJob"/>
    <ref bean="userApplicationMaintenanceJob"/>
    <ref bean="postImportJobsLauncherJob"/>
    <ref bean="certificationRemediationJob"/>
    <ref bean="rmScanArchivalJob"/>
    <ref bean="eventPublishingJob"/>
    *<ref bean="rmeRuleMigrationJob"/>*
    *<ref bean="identityAuditDataMigrationJob">*
    </list>
    </property>
    In the jobs.xml
    the bean, by default, is already altered so you won't need to change anything there
    <bean id="rmeRuleMigrationJobTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
    <property name="jobDetail" ref="rmeRuleMigrationJob"/>
    <property name="cronExpression" value="0 0/5 * * * ?"/>
    </bean>
    <bean id="rmeRuleMigrationJob" class="org.springframework.scheduling.quartz.JobDetailBean">
    <property name="name" value="rme rule migration job"/>
    <property name="description" value="old rme rule migration job"/>
    <property name="jobClass" value="com.vaau.rbacx.scheduling.manager.providers.quartz.jobs.RMERuleMigrationJob"/>
    <property name="group" value="SYSTEM"/>
    <property name="durability" value="true"/>
    <property name="jobDataAsMap">
    <map>
    <entry key="jobOwnerName" value="REPLACE_ME"/>
    </map>
    </property>
    </bean>
    If you see the cron expression in the jobs.xml, an expression to create a trigger that simply fires every 5 minutes ("0 0/5 * * * ?") leave it at it is. Expression examples are at the bottom of the jobs.xml if you want more expressions. When you do the changes to the scheduling-context.xml, make sure you bounce the web server.
    Regards,
    Daniel

  • Importing Three Object Classes back TO OID.

    Friends,
    We are running OAS 10.1.2.3- Stuck with the Forms/Reports 10G.
    We have deleted three of the oblix classes by accident using ODM.
    oblixPasswordPolicy
    oblixPersonPwdPolicy
    oblixOrgPerson
    The way it happend, we tried including these classes as a part of the dc=xxxxxx -> Add Object Class - Edit TOP, and added the three classes, but got errors when calling these classes (DBMS_LDAP) and
    couldn't Edit Top to get rid of these classes, so we had to delete these classes using the Right Click Delete option (ODM). Unfortunately, the delete took off these object classes completely from the OID.
    I hope there is a way to use a ldap add using LDIF to import back these classes to the OID branches with going through the installation again.
    Thx for your time and suggestions in advance,
    KA

    O.K.
    Thx so much.
    Here is the ldif file for
    dn: cn=subSchemaSubentry
    changetype: modify
    add: objectclasses
    objectclasses: ( 1.3.6.1.4.1.3831.0.1.20 NAME 'oblixPasswordPolicy' DESC 'Oracle Access Manager defined objectclass' SUP top STRUCTURAL MUST ( obpasswordpolicyid ) MAY ( obinputvalidationrules $ obpasswordvalidityperiod $ obpasswordexpirynoticeperiod $ obexpirynoticemode $ oblostpasswordmechanism $ oblostpasswordmodel $ obchangeonreset $ obkeephistory $ obpasswordpolicydomain $ obpasswordpolicyname $ obpasswordpolicyfilter $ obpasswordminimumage $ oblogintries $ oblockoutduration $ oblogintimeout $ obpasswordpolicyenabled $ obver $ obcompounddata $ obLPMdn ) )
    dn: cn=subSchemaSubentry
    changetype: modify
    add: objectclasses
    objectclasses: ( 1.3.6.1.4.1.3831.0.1.21 NAME 'oblixPersonPwdPolicy' DESC 'Oracle Access Manager defined objectclass' SUP top AUXILIARY MAY ( obpasswordcreationdate $ obpasswordhistory $ obpasswordchangeflag $ obpasswordexpmail $ oblockouttime $ oblogintrycount $ obfirstlogin $ obresponsetries $ oblastloginattemptdate $ oblastresponseattemptdate $ obresponsetimeout $ oblastsuccessfullogin $ oblastfailedlogin $ obAnsweredChallenges $ obYetToBeAnsweredChallenge ) )
    I am not sure what do you mean by the 3 missing object classes refeence file is present in the exported schema file. Like I checked the obpasswordcreationdate which is the attribute of oblixPersonPwdPolicy, and it is not in the exported file.
    Thx again in advance for you time.
    KA

  • How to import a java class in a JSP

    Hi All,
    I have a java class file called myTest.class (i made after compilation of myTest.java). I have a JSP page that uses this java class file.
    These 2 files are in same folder called c:/test
    and iam importing this java class file into my jsp file and that too at the start of this jsp file:
    <%@page import="myTest" %>
    BUt iam getting an error ..............when iam running this JSP page:
    /opt/bea81sp2/user_projects/domains/wliDomain/./Managed2/.wlnotdelete/extract/Managed2_myTest_myTest/jsp_servlet/__test.java:20: '.' expected
    probably occurred due to an error in /test.jsp line 5:
    <%@page import="myTest" %>
    Please advise how to solve this problem
    -sangita

    Don't bother with the import
    when iam not importing this class file into my JSP, then on my JSP, the class file is not found.
    Here is my code: and these 2 class file are in c:/test
    import org.apache.tools.ant.taskdefs.Ant;
    import org.apache.tools.ant.taskdefs.Property;
    import org.apache.tools.ant.types.*;
    import org.apache.tools.ant.*;
    import org.apache.tools.ant.taskdefs.ExecTask;
    import org.apache.tools.ant.types.Commandline;
    import java.io.File;
    * Creates an Ant project to run an Ant build
    * @author myself
    * @version 1.0
    public class RunTest extends Ant {
        String applicationName;
        String buttonClicked;
        String boxName;
        String targetName;
        public void applicationName(String applicationName){
         this.applicationName = applicationName;
        public void boxName(String boxName){
         this.boxName = boxName;
        public void buttonClicked(String buttonClicked){
         this.buttonClicked = buttonClicked;
      public RunTest() {
    public void goTest() {
         if(this.buttonClicked.equalsIgnoreCase("deploy") && this.applicationName.equalsIgnoreCase("scsmail") && this.boxName.equalsIgnoreCase("testnet")){
           this.targetName = "deploy-scsmail-testnet";
         if(this.buttonClicked.equalsIgnoreCase("undeploy") && this.applicationName.equalsIgnoreCase("scsmail") && this.boxName.equalsIgnoreCase("testnet")){
           this.targetName = "undeploy-scsmail-testnet";
        Project project = new Project();
        project.init();
        System.out.println("printing 1 ....");
        ExecTask exec = new ExecTask();
        exec.setProject(project);
        exec.setExecutable("/opt/bea/weblogic81/server/bin/ant.bat");
         exec.setDir(new java.io.File("/export/home/beamon/bin"));
         Commandline.Argument arg = exec.createArg();
         // arg.setLine("-f scsmail.xml test -listener org.apache.tools.ant.XmlLogger -logfile D:/antProject/src/log.xml");
         arg.setLine("-f build.xml "+ targetName + " -listener org.apache.tools.ant.XmlLogger -logfile /export/home/beamon/bin/log.xml");
         System.out.println("printing 2....");
        //exec.setOutput(new File("D:/antProject/logs/prob.txt"));
        exec.execute();
        System.out.println("printing 3....");
    -----------------------the JSP page is called as test.jsp
    <%@page contentType="text/html" %>
    <%@page import="java.io.*" %>
    <%@page import="java.util.*" %>
    <%@page import="java.net.*" %>
    <%@page import="RunTest" %>
    <HTML>
    <TITLE>TESTING ANT GUI</TITLE>
    <HEAD>
    <META HTTP-EQUIV="Refresh" CONTENT="3000" >
    <meta http-equiv="Cache-Control" content="no-cache">
    </HEAD>
    <BODY BGCOLOR="silver" TEXT="333333">
    <table border=0>
    <tr align="left"><td align="left"><FONT SIZE="-1"><B>  Test Page <FONT SIZE="-1"><B></td></tr>
    </table>
    <hr></center>
    <form action="./test.jsp" method="POST" name="testForm">
    <table>
    <tr>
    <td>
    <select name="appName" size=1>
    <option value="">Select Application Name
    <option value="scsmail">scsMail
    <option value="clientmanager">ClientManager
    </select>
    </td>
    <td>
    <select name="boxName" size=1>
    <option value="">Select Box Name
    <option value="testnet">TestNet
    <option value="production">Production
    </select>
    </td>
    </table>
    <table>
    <input type="submit" name="deploy" value="deploy">
    <input type="submit" name="undeploy" value="undeploy">
    </table>
    <%
       RunTest rt = new RunTest();
       rt.applicationName(request.getParameter("appName"));
        String deployButton = "";
        deployButton=request.getParameter("deploy");
        String undeployButton = "";
        undeployButton=request.getParameter("undeploy");
        if(!deployButton.equalsIgnoreCase("")){
            rt.buttonClicked(request.getParameter("deployButton"));
        if(!undeployButton.equalsIgnoreCase("")){
            rt.buttonClicked(request.getParameter("undeployButton"));
       rt.boxName(request.getParameter("boxName"));
        rt.goTest();
    %>
    </form>
    </table>
    </BODY>
    </HTML>

  • Attunity connectors for Oracle in Import Export Wizard in SQL Server 2008 R2

    Is there a way we can see the Attunity connectors drivers in the Import/Export Wizard (64 bit) for SQL Server 2008 R2?
    Although I made it work for SSIS, I would need these drivers in the Import/Export wizard so as to automate it for numerous number of tables which I want to migrate.
    Can the Attunity connectors for Oracle be used in the Import/Export wizard? If so please let me know.
    Regards,
    Ashutosh.
    Ashutosh.

    I have 100 tables to migrate. Creating a data flow for each table is tedious and that's why I was looking out for a way to do it through import export wizard so that I don't have to create a separate data source and destination for each table in the Data
    flow Task.
    Is there a way to loop through all tables and transfer data in SSIS without having multiple sources and destinations created for each table? This also involves a bit of transformation as well.
    Regards,
    Ashutosh.

  • How to import/export in Pl/SQL ?

    Hello
    I want to write a procedure in PL/SQL which will be copying one user's schema to another.
    I have Oracle 9i on Windows 2000.
    My first idea was to use IMP EXP commands, but i need to execute this commands from PL/SQL procedure. How can I do this, except from writing Java procedure using Runtime class - I've done it, it works, but sometimes occure an critical error in Oracle Kernel, and I'm sure that Java code is ok.
    Or maybe there is much easier way to solve such a problem (PL/SQL interface for import/export or something)?
    Thanks for any hints.

    No, imp/exp are standalone utilities with no PL/SQL API. Java would be the way to do it.

  • Import/Export webdynpro ABAP application

    Hi all,
    I was wondering whether there is any way to export/import the local object/web dynpro application that we have created(like the import/export in web dynpro java). I would like to keep a copy of the application developed in my local machine using this method.
    Thanks
    Kukku

    even me also tried imported webdynpro plug in but not showing in object type.
    i am getting only class and program.
    please let me know what to do.
    Regards,
    Mahesh

  • IMPORT/EXPORT in RFC

    Hello,
    I am programming an RFC that sends a XSTRING a Java web portal, and in this case I have to send a PDF XSTRING generated on the SAP server.
    Therefore I am calling the program that generates the PDF and the return string of bits through the RFC IMPORT / EXPORT, and the problem I have that I do not get the RFC, but the program is making the process well.
    As I do?
    I've checked several forums on SDN and I have not seen anything that I have fixed the problem.
    Greetings.

    Hi
    Have you tried with a debug??
    the destination is correct??
    regards
    Marco

  • Import/Export in back stage view

    What is the use of import/Export in back stage view of customize ribbon and Quick access toolbar

    Shiv --
    Pardon me for bumping into this thread.  Here is a scenario that might answer your question:
    You create a customized ribbon and Quick Access Toolbar.  Your ribbon has a new tab called Initiate which contains the commands you use to initiate a new project, such as setting the Start date of the project, setting the Project and Nonworking Time
    calendars, etc.  Your customized Quick Access Toolbar contains the buttons you most frequently use, such as Zoom In, Zoom, Out, Scroll to Task, etc.
    A fellow PM sees how you have customized the ribbon and Quick Access Toolbar in your copy of Microsoft Project and asks if you would give him/her the customizations.
    You navigate to the Backstage and export your ribbon and Quick Access Toolbar customizations to an *.exportedUI file and you e-mail the customization file to your fellow PM.
    Your fellow PM launches Microsoft Project, navigates to the Backstage, walks through the import process, and imports the ribbon and Quick Access Toolbar customizations from the customization file you sent him/her.
    As Guillaume correctly points out, this is how to transfer ribbon and Quick Access Toolbar customizations from one computer to another, or from one user to another.  One of the things I have done since Microsoft released the 2010 version Microsoft Project
    is to give my students a customization file that has customizations they can use in the real world with their ribbon and Quick Access Toolbar.  The export/import process is very easy, and very useful.  Hope this extra helps.
    Dale A. Howard [MVP]

  • Java exception: Planning Data Form Import/Export Utility: FormDefUtil.sh

    Hi,
    We have the following in our environment
    Oracle 10gAS (10.1.3.1.0)
    Shared Services (9.3.1.0.11)
    Essbase Server (9.3.1.3.01)
    Essbase Admin Services (9.3.1.0.11)
    Provider Services (9.3.1.3.00)
    Planning (9.3.1.1.10)
    Financial Reporting + Analysis UI Services (9.3.1.2)
    I got the following error while using the Planning Data Form Import/Export Utility. Does anyone have any idea?
    hypuser@server01>$PLANNING_HOME/bin/FormDefUtil.sh import TEST.xml localhost admin password SamApp
    [May 6, 2009 6:25:11 PM]: Intializing System Caches...
    [May 6, 2009 6:25:11 PM]: Loading Application Properties...
    [May 6, 2009 6:25:11 PM]: Looking for applications for INSTANCE: []
    [May 6, 2009 6:25:13 PM]: The polling interval is set =10000
    Arbor path retrieved: /home/hypuser/Hyperion/common/EssbaseRTC/9.3.1
    [May 6, 2009 6:25:14 PM]: Setting ARBORPATH=/home/hypuser/Hyperion/common/EssbaseRTC/9.3.1
    Old PATH: /home/hypuser/Hyperion/common/JRE/IBM/1.5.0/bin:/home/hypuser/Hyperion/common/JRE/IBM/1.5.0/bin:/home/hypuser/Hyperion/common/JRE/IBM/1.5.0/bin:/home/hypuser/Hyperion/common/JRE/IBM/1.5.0/bin:/home/hypuser/Hyperion/AnalyticServices/bin:/home/hypuser/Hyperion/common/JRE-64/IBM/1.5.0/bin:/usr/bin:/etc:/usr/sbin:/usr/ucb:/home/hypuser/bin:/usr/bin/X11:/sbin:.
    [May 6, 2009 6:25:14 PM]: Old PATH: /home/hypuser/Hyperion/common/JRE/IBM/1.5.0/bin:/home/hypuser/Hyperion/common/JRE/IBM/1.5.0/bin:/home/hypuser/Hyperion/common/JRE/IBM/1.5.0/bin:/home/hypuser/Hyperion/common/JRE/IBM/1.5.0/bin:/home/hypuser/Hyperion/AnalyticServices/bin:/home/hypuser/Hyperion/common/JRE-64/IBM/1.5.0/bin:/usr/bin:/etc:/usr/sbin:/usr/ucb:/home/hypuser/bin:/usr/bin/X11:/sbin:.
    java.lang.UnsupportedOperationException
    at com.hyperion.planning.olap.HspEssbaseEnv.addEssRTCtoPath(Native Method)
    at com.hyperion.planning.olap.HspEssbaseEnv.init(Unknown Source)
    at com.hyperion.planning.olap.HspEssbaseJniOlap.<clinit>(Unknown Source)
    at java.lang.J9VMInternals.initializeImpl(Native Method)
    at java.lang.J9VMInternals.initialize(J9VMInternals.java:187)
    at com.hyperion.planning.HspJSImpl.createOLAP(Unknown Source)
    at com.hyperion.planning.HspJSImpl.<init>(Unknown Source)
    at com.hyperion.planning.HspJSHomeImpl.createHspJS(Unknown Source)
    at com.hyperion.planning.HspJSHomeImpl.getHspJSByApp(Unknown Source)
    at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
    at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
    at com.hyperion.planning.utils.HspFormDefUtil.main(Unknown Source)
    Setting Arbor path to: /home/hypuser/Hyperion/common/EssbaseRTC/9.3.1
    [May 6, 2009 6:25:15 PM]: MAX_DETAIL_CACHE_SIZE = 20 MB.
    [May 6, 2009 6:25:15 PM]: bytesPerSubCache = 5654 bytes
    [May 6, 2009 6:25:15 PM]: MAX_NUM_DETAIL_CACHES = 3537
    Setting HBR Mode to: 2
    Unable to find 'HBRServer.properties' in the classpath
    HBR Configuration has not been initialized. Make sure you have logged in sucessfully and there are no exceptions in the HBR log file.
    java.lang.Exception: HBR Configuration has not been initialized. Make sure you have logged in sucessfully and there are no exceptions in the HBR log file.
    HBRServer.properties:HBR.embedded_timeout=10
    HBR Configuration has not been initialized. Make sure you have logged in sucessfully and there are no exceptions in the HBR log file.
    java.lang.ExceptionInInitializerError
    at java.lang.J9VMInternals.initialize(J9VMInternals.java:205)
    at com.hyperion.hbr.api.thin.HBR.<init>(Unknown Source)
    at com.hyperion.hbr.api.thin.HBR.<init>(Unknown Source)
    at com.hyperion.planning.db.HspFMDBImpl.initHBR(Unknown Source)
    at com.hyperion.planning.db.HspFMDBImpl.initializeDB(Unknown Source)
    at com.hyperion.planning.HspJSImpl.createDBs(Unknown Source)
    at com.hyperion.planning.HspJSImpl.<init>(Unknown Source)
    at com.hyperion.planning.HspJSHomeImpl.createHspJS(Unknown Source)
    at com.hyperion.planning.HspJSHomeImpl.getHspJSByApp(Unknown Source)
    at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
    at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
    at com.hyperion.planning.utils.HspFormDefUtil.main(Unknown Source)
    Caused by: Exception HBR Configuration has not been initialized. Make sure you have logged in sucessfully and there are no exceptions in the HBR log file.
    ClassName: java.lang.Exception
    at com.hyperion.hbr.common.ConfigurationManager.getServerConfigProps(Unknown Source)
    at com.hyperion.hbr.cache.CacheManager.<clinit>(Unknown Source)
    at java.lang.J9VMInternals.initializeImpl(Native Method)
    at java.lang.J9VMInternals.initialize(J9VMInternals.java:187)
    ... 11 more
    [May 6, 2009 6:25:15 PM]: Regeneration of Member Fields Complete
    [May 6, 2009 6:25:16 PM]: Thread main acquired connection com.hyperion.planning.olap.HspEssConnection@5f0e5f0e
    [May 6, 2009 6:25:16 PM]: Thread main releasing connection com.hyperion.planning.olap.HspEssConnection@5f0e5f0e
    [May 6, 2009 6:25:16 PM]: Thread main released connection com.hyperion.planning.olap.HspEssConnection@5f0e5f0e
    [May 6, 2009 6:25:16 PM]: Need to create an Object. pool size = 0 creatredObjs = 1
    java.lang.RuntimeException: Unable to aquire activity lease on activity 1 as the activity is currently leased by another server.
    at com.hyperion.planning.sql.actions.HspAquireActivityLeaseCustomAction.custom(Unknown Source)
    at com.hyperion.planning.sql.actions.HspAction.custom(Unknown Source)
    at com.hyperion.planning.sql.actions.HspActionSet.doActions(Unknown Source)
    at com.hyperion.planning.sql.actions.HspActionSet.doActions(Unknown Source)
    at com.hyperion.planning.HspJSImpl.aquireActivityLease(Unknown Source)
    at com.hyperion.planning.HspJSImpl.reaquireActivityLease(Unknown Source)
    at com.hyperion.planning.utils.HspTaskListAlertNotifier.reaquireTaskListActivityLease(Unknown Source)
    at com.hyperion.planning.utils.HspTaskListAlertNotifier.processTaskListAlerts(Unknown Source)
    at com.hyperion.planning.utils.HspTaskListAlertNotifier.run(Unknown Source)
    [May 6, 2009 6:25:16 PM]: Fetching roles list for user took time: Total: 42
    [May 6, 2009 6:25:16 PM]: Entering method saveUserIntoPlanning
    [May 6, 2009 6:25:16 PM]: User role is:0
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HP:0005,ou=HP,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:1,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:9,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:3,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:7,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:14,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:15,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:10,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:12,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:13,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:1,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:9,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:3,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:7,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:14,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:15,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:10,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:12,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:13,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Hub Roles for user is:991
    [May 6, 2009 6:25:16 PM]: Exiting method saveUserIntoPlanning
    [May 6, 2009 6:25:16 PM]: Saved the user admin to Planning
    [May 6, 2009 6:25:16 PM]: Entering method persistUserChanges()
    [May 6, 2009 6:25:16 PM]: Exiting method persistUserChanges()
    [May 6, 2009 6:25:16 PM]: Before calling getGroupsList for user from CSS
    [May 6, 2009 6:25:16 PM]: After getGroupsList call returned from CAS with groupsList [Ljava.lang.String;@705c705c
    [May 6, 2009 6:25:16 PM]: Fetching groups list for user took time: Total: 4
    [May 6, 2009 6:25:16 PM]: Entering method persistGroupChanges()
    [May 6, 2009 6:25:16 PM]: Exiting method persistGroupChanges()
    [May 6, 2009 6:25:16 PM]: User synchronization of 1 user elapsed time: 81, Users: 72, Groups: 9.
    [May 6, 2009 6:25:16 PM]: Didnt add child Forms, couldnt find parent 1
    Add/Update form under form folder - Corporate
    [May 6, 2009 6:25:21 PM]: Propegating external event[ FROM_ID: 7a7ebc1d Class: class com.hyperion.planning.sql.HspObject Object Type: -1 Primary Key: 1454699 ]
    [May 6, 2009 6:25:21 PM]: Propegating external event[ FROM_ID: 7a7ebc1d Class: class com.hyperion.planning.sql.HspPDFPrintOptions Object Type: -1 Primary Key: 1454699 ]
    [May 6, 2009 6:25:21 PM]: Propegating external event[ FROM_ID: 7a7ebc1d Class: class com.hyperion.planning.sql.HspForm Object Type: 7 Primary Key: 1454699 ]
    [May 6, 2009 6:25:21 PM]: Propegating external event[ FROM_ID: 7a7ebc1d Class: class com.hyperion.planning.sql.HspPDFPrintOptions Object Type: -1 Primary Key: 1454699 ]
    [May 6, 2009 6:25:21 PM]: Propegating external event[ FROM_ID: 7a7ebc1d Class: class com.hyperion.planning.sql.HspAnnotation Object Type: 14 Primary Key: 1454699 ]
    [May 6, 2009 6:25:21 PM]: Propegating external event[ FROM_ID: 7a7ebc1d Class: class com.hyperion.planning.sql.HspAccessControl Object Type: 15 Primary Key: 50001,1454699 ]
    [May 6, 2009 6:25:21 PM]: Propegating external event[ FROM_ID: 7a7ebc1d Class: class com.hyperion.planning.sql.HspFormDef Object Type: -1 Primary Key: 1454699 ]
    Form imported complete.
    [May 6, 2009 6:25:21 PM]: Could not get HBR connection.

    Hi,
    When I run the Formdefutil command, forms were imported successfully. But I got the following message.
    Could not get HBR connection.
    What does it mean?
    Thanks & Regards,
    Sravan Kumar.

Maybe you are looking for

  • Schedule background job without broadcasting

    Hi Can anyone share with me how to achieve to schedule the query in background without broadcasting? Thus, the output result from background has to be in Excel format just like BEX report. Regards KR

  • Is domain installation mandatory?

    Hello Guys, Is Domain installation of an SAP system mandatory for it to connect to an Active directory? Thanks and Regards, Ankit Mishra

  • Preventing cache in IE

    Hi, I am trying to find a solution to prevent IE from caching the .PDF files. I tried diff ways by using meta tags n the stuff like that but nothing seems to be working for me. Please let me know if there is a way to prevent it from saving in the tem

  • Adobe Captivate 6 Issues

    I recently had a virus and my Adobe Captivate 6 applicaiton had to be removed and reinstalled. 1. When I attempt to open the application now, I recieve  a pop up box that says, "Some Adobe Captivate features such as screen capture and audio may not w

  • AD Sites / DFS issues

    We've set up AD Sites and DFS in our 2003/2008 mixed environment and the results seem incredibly sporadic. SiteA has two subnets: 192.168.1.0/24 172.22.0.0/22 SiteB has one subnet: 172.23.0.0/22 The PCs at each location seem to hop back and forth as