Import package and Variables

Hi, I need your help
It is possible to modify the import package to PROMPT for some dimensions when running...? Like for example, ask the user to select Dimension Category and then send that parameter to the construction of the import to be uploaded?
For example tohave as source file
ERP,sales,p1,2011.JAN,500
ERP,sales,p2,2011.jan,350
PROMT when run in DM.
Select Category: PRON2
Converted file
ERP,sales,PRON2,p1,2011.JAN,500
ERP,sales,PRON2,p2,2011.jan,350

Hi Ana
As per Sorin's post, it would make more sense to use a transformation file and then use *IF mapping functions.
*If (Condition1 then Action1;Condition2 then Action2;Default Action)
[http://help.sap.com/saphelp_bpc75/helpdata/en/5A/69200C88AA40C9B18844A25259F147/frameset.htm]
For Example:
CATEGORY=*If (TIME=JAN then PROD1;TIME=FEB then PROD2;COL(2))
Hope this helps
Kind Regards
Daniel

Similar Messages

  • Import package and create view object

    Hi,
    How can i import package from another project and create a new view object with my package and with the imported package.
    Thanks
    null

    Hi,
    How can i import package from another project and create a new view object with my package and with the imported package.
    Thanks
    null

  • Import package and dllhost process hanging

    When attempting to run the import package through data manager, the window freezes while attempting to select an import file. The application server shows one of the dllhost.exe processes using all available CPU capacity from this step. After terminating the data manager on the client, the dllhost.exe that consumes the CPU on the application server terminates as well.
    We are on BPC release 7.5.104.03 on the MS platform.
    Any help would be appreciated.
    Thanks.
    Tom

    as pavan said take a backup and delete expired archivelogs ...
    connect as RMAN @target database...
    rman target /
    rman>report obsolete;
    rman>delete expired archivelog all;
    if no files are eligible for deletion ...then increase the FRA size....
    SQL> alter system set db_recovery_file_dest_size=xG SCOPE=BOTH; larger amount
    please post below details.....
    SELECT * FROM V$RECOVERY_FILE_DEST;
    Select file_type, percent_space_used as used,percent_space_reclaimable as reclaimable,
    number_of_files as "number" from v$flash_recovery_area_usage;
    select name, space_limit as Total_size ,space_used as Used,
    SPACE_RECLAIMABLE as reclaimable ,NUMBER_OF_FILES as "number"
    from V$RECOVERY_FILE_DEST;
    source is oracle.com
    Edited by: dbc001 on Mar 21, 2013 6:50 PM

  • Import packages and Compilation issues

    hello,
    I am trying to compile and import a package in eclipse but it is not working.
    Any helpful links or feedback would be helpful.
    In the left pane is package explorer.
    I right clicked and imported the apache commons .jar files.
    The source .java files are in the same project folder.
    On the top navigation in Eclispe the Project Button is not showing the build project accessible.

    Your problem is really vague. It´s too generic and visually. Please use technically correct terms. Also please tell what error message exactly you got.
    As far it sounds like that you don´t understand how classpaths work and how the Eclipse´s buildpath is related to that.

  • Data Modeler importing packages and triggers

    Hi,
    I don't see any option to import triggers or packages from an Oracle Database, is it possible?
    Despite having no option for trigger import, and no option on the GUI tree or table properties to display the available table triggers, to my surprise there is a 'triggers' tab in the DDL generation window. So I think triggers are imported automatically, but neither are visible, nor can be created. Please correct me if I'm wrong.
    For packages I haven't seen any option, can this be true?
    Thanks

    Importing packages would be a useful thing, and also having more control of the other PL/SQL objects like triggers.
    By the way, DDL file generation lacks customization, like generating multiple files depending on the type of objects.
    I hope points like these could be introduced in the next release.

  • Importing packages and classes

    Hi, I wanted to know if anyone could tell me how to import a packages under the following circumstances:
    Say the class i'm importing TO is called SourceClass1, and is in a folder SourceFolder1, and SourceFolder1 is in the folder Root. Let's say I want to import a package that is in another directory called SourceFolder2 and SourceFolder2 is also in Root. So I want to import Root.SourceFolder2.* but I need to tell java to go up a directory and into SourceFolder2. I tried
    import ../SourceFolder2.*;
    But that's an invalid syntax. Thanks for your help!

    Thanks for your input, I appreciate it. However, the class that i am writing is in a directory whose parent has another directory containing a class i want.
    Root
    Directory1 Directory2
    SourceClass.java ToBeImported.java
    Is there a way of doing this without setting the classpath? just by pointing to the relative path of the directory and package?

  • Importing Packages and Efficiency

    is it more efficient to import only the classes your program needs ( in a single package) or would it be the same as importing everything in that package?
    many thanks
    akz

    Import has no impact at all on runtime performance.
    Importing might have some impact on compilation performance. Whether it is measurable depends on what you are doing and what the compiler does.

  • Java-JSP working with packages and classes

    Hi everybody,
    I'm bearly new on Java-JSP developping and I wanted to know how Tomcat (for example) manage the imported packages and classes.
    The fact is I'm working on a project ('/bob') which use some packages that I don't see in the '/bob' directory. So, is that possible that '/bob' is downloading packages and classes from Internet to '/bob/download' virtual repertory and use it? If it is true, is it possible to override this download by making '/bob' project using local packages or classes (example : com.boblibrary.classes.util in '/bob/WEB-INF/classes/com/boblibrary/classes/util') instead of downloading it?
    Therefore, the '/bob' project is using bugged classes (that I think it downloads from Internet) which I can't correct.
    Thanks for your help.
    - Renaud

    Thank you for your answer, but I can't imagine where is physicaly the class that my project use and show me as http://localhost:8080/atlassian-jira-3.13.2/download/ressources/br.com.ecore.jira.plugin.projectViewPlugin:ProjectViewTabPanel/js/projectviewtabpanel.js. Where is that Javascript file suppose to be on my hard drive? Or where is that class 'br.com.ecore.jira.plugin.projectViewPlugin' suppose to be on my hard drive? If it is not dowloaded from the Internet.
    I have no trace of that class on 'atlassian-jira-3.13.2/', neither on 'jdk1.6.0_18/', 'jre6/' or 'apache-tomcat-5.5.28/common/classes/'.
    Thanks.

  • How to create package and import from jar file?

    Hi all,
    I am writing a software and I am not sure how to create a package for the classes.
    Say I have two classes in the same directory as follows:
    testA.java
    ==========
    package AB;
    public class testA
    public static void main(String[] args){
         testB myB = new testB();
         System.out.println("A test");
    testB.java
    ===========
    package AB;
    public class testB
    public testB(){
         System.out.println("B constructor");
    both file compile without the package heading;
    both file compile using: javac -classpath .\ *.java
    Question 1:
    I cannot run testA by: java -classpath .\ testA
    I think it is a syntax error. What is the correct one?
    If I run testA by: java testA
    The only output I get is: A test
    But I am expecting: B constructor /n A test
    What went wrong?
    Question 2:
    I need to use APIs of another software. I have downloaded a .jar file (xxx.jar) with all the classes in it. And I have put "import xxx.*;" in my source file. But the compiler complains about the importing. What is the right way to copmile it?
    I have read a couple of tutorials but they don't answer my question.
    (I am using windows2000 and don't have the classpath variable.)
    Hope some one can help.
    Thanks a lot

    Try moving testA out of the package and importing 'AB.*;'
    If you have:
    ./testA.class
    ./AB/testb.class
    Then to execute testA from ./ type: java -cp . testA

  • Keyword package and import

    helo,
    someone, pls tell me the difference between using package and import? wat are the difference things that they include in our source file?
    in simple terms pls.
    thanks

    http://java.sun.com/docs/books/tutorial/java/interpack/packages.html

  • How is the 'import-packages' information saved in the database, and how long?

    Hello,
    I am  developping a ECM Connector for Adobe LiveCycle ES, which is a customized component.
    1 - Who should I contact to have some specific support  ?
    There is no detailed information yet on this on the adobe site  (http://livedocs.adobe.com/livecycle/8.2/programLC/programmer/help/wwhelp/wwhimpl/js/html/w whelp.htm?href=000931.html&accessible=true) .
    If you  think that I should address my problem to another department of Adobe, please  tell me which department?
    I give you another description of my problem. In fact, I have  been investigating on it.
    2 - If I  put this in my component.xml file, in step  1:
    <component-id>com.rsd.adobe.livecycle.RSDFoldersConnector</component-id>
    <version>1.0</version>
    <import-packages><package  version="1.0">com.rsd.simpleApiFolders</package>  </import-packages>
    If I change the  version to 1.1 and remove the  'import-packages' (in step 2) , will the new component need the  com.rsd.simpleApiFolders package. It seems that is still needs it.
    3 - How is the  'import-packages' information saved in the  database, and how  long?
    In  fact, on thursday, I used 'import-packages'  to make a test. And since them, I  can not deploy any of my components.
    LiveCycle throws a  ClassNotFoundException.
    ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException:  Internal error.
    [java] at  com.adobe.idp.dsc.registry.component.impl.ComponentRegistryImpl$6.doInTransaction(Compone ntRegistryImpl.java:338)
    ... Caused  by: java.lang.ClassNotFoundException: http-0.0.0.0-8080-1Class name  com.rsd.simpleApiFolders.Context from package com.rsd.simpleApiFolders not found.
    [java] at  com.adobe.idp.dsc.DSContainerSearchPolicy.searchClassUsingParentFirst(DSContainerSearchPo licy.java:234)
    Thank you in advance
    Regards.

    1 - Who should I contact to have some specific support  ?
    That would depend on your Adobe support contract and if your organization has a TAM assigned.  You should check with your organization's Adobe contact and see what support options your organization has purchased.
    Having said that, this forum has a few people that may be able to help (but the forum does not have a SLA associated with it)
    2 - If I  put this in my component.xml file, in step  1:
    <component-id>com.rsd.adobe.livecycle.RSDFoldersConnector</component-id>
    <version>1.0</version>
    <import-packages><package  version="1.0">com.rsd.simpleApiFolders</package>  </import-packages>
    If I change the  version to 1.1 and remove the  'import-packages' (in step 2) , will the new component need the  com.rsd.simpleApiFolders package. It seems that is still needs it.If your component class needs the simpleApiFolders class then yes, you still need it.  Think of import-packages like a class-path statement (but with packages and not jars).  Its not physically moving the package into your application, but allowing you to access it from another container.
    3 - How is the  'import-packages' information saved in the  database, and how  long?
    As far as I know they are not imported into the database. As I stated above, I believe that the import-packages just allows you to point to classes that are in the app server's classpath, but are not physically in you component jar file.  As long as that class is in the app server class-path (or in the Adobe EAR file) then you should be able to access it.  Is the jar file containing the simpleApiFolders class in the app server's lib directory?

  • Package and import

    I have a problem about the syntax package and import . If i create a class file that call "Play.java" and keep it at directory call "test".
    Now , i create the main file that call the "Play" class and this current file keep at directory that call "demo". That is mean the "demo" directory includes the main file and "test" subdirectory. So , what should i do ?
    Thanks.

    I would assume that you have two files and want one of them to belong to a package. If the main directory you are working out of is c:\demo\ (/demo/ on a *nix system) you would have the following in that directory.
    c:\demo\MainProgramClass.java
    c:\demo\test\
    The c:\demo\test subdirectory would then contain a class called Play.java (c:\demo\test\Play.java)
    Right?
    That means the Play.java class belongs to the package 'test', so you would include the following at the start of the Play.java file:
    package test;
    Your MainProgramClass.java file (or whatever you named it) should contain the following import statement:
    import test.*;
    This will import all of the files in the test package (basically everything in the test directory). You could also use 'import test.Play;' if you only want to import the Play class.
    Hope this is what you wanted,
    Ryan

  • How to make a package and import it later

    Hi folks,
    this is a very basic question but it is not working to me so i will appreciate your comments.
    I had programmed many classes that are going to be used in many projects so they must be part of a library. Tell me whether or not this procedure is correct ?
    Compile those classes into .class files. Create a package with the jar application putting the .class files into a single file called my_utils ( .jar or .zip ?). Import the package from other projects using the import directive and storing the my_utils file in the project's library directory. Is this correct ?
    Many thanks in advance
    Marla.

    If you want to create a package and then put the package into a jar file, first compile into .class files (in appropriate package directories), then jar all of the .class files.
    Here's a link for a tutorial on packages. http://java.sun.com/docs/books/tutorial/java/interpack/packages.html
    Here's a link for a jar file tutorial. http://java.sun.com/docs/books/tutorial/jar/index.html
    You do not have put the .class files into a jar. Java packages are used for organizing classes, managing class name space, and controlling access to classes. Java jar files are a way to put multiple classes into a single file while compressing the content. Jar files can contain multiple packages and packages do not have to be inside of jar files.

  • PL/SQL package global variable in Dev. 6i and newer....

    Hi,
    In db packages , the use of global variable is an appropriate method to keep the value it contains globally... without the danger of being overriden by other session....(as for each session , there is a 'private' section in memory(library cache)).
    Is the above also true to pl/sql packaged global variables kept at client's side(forms/reports)...????
    Thanks,
    Sim

    db-package variables are global to your session
    forms globals are global to your forms application
    In one case you have trouble: When you start a new forms via open_form (, new session, ) then your db-globals are global in that new session, while your forms globals are the same in all forms of the actual forms - session

  • Help Needed to import package

    Hi, I am developing a JAVA project following Graphical Editing Framework in Eclipse.
    I have 3 packages ( in order of build) - ProcessModel, Process Editor and Application.
    I am trying to import application package and use its class in Process Model. But I am getting compile time error " the import cheme.application can not be resolved" .
    I assume this error is coming because Application package and its classes are not compiled and hence it is not allowing me to import and use them.
    package cheme.ProcessModel.Interpreter;
    import cheme.Application.*; // I have tried importing one class also
    As suggested in some other posts, I have added the CLASSPATH variable with the folder address of Application package.
    Please help me!!!
    Thanks a Bunch in advance.

    There is some setting in Eclipse that controls the availability of libraries, it needs to be set correctly. Refer to the Eclipse help doc.

Maybe you are looking for

  • Ssis packages execution fails while executing it by c#

    Hi, I have created one ssis package on server. Now i want to execute this package using c# code. I have implemented following code to perform this task:  string pkgLocation = @"Package.dtsx";         Package pkg;         Application app;         DTSE

  • Quartz filter settings for compressing pdf file

    I have used the nominal quartz filter setting (reduce file size) to compress pdf file.  It reduced the file size significantly--but the text resolution was considerably blurred. What is an appropriate setting to reduce pdf file size and not destroy t

  • IPhone4 operating very slowly

    I've noticed that my iPhone4 is increasingly running slower and slower. I first noticed this with the camera which when the app was opened would take a good 5-7 seconds before the 'shutter' opened. Now all of the phone is affected, such that the phon

  • Best (Thrifty) physical architecture for medium-size environment?

    What is the absolute best physical architecture you would come up with for this medium size environment?

  • No Final Cut Pro application icon visible !!

    Hi, another newbie here. I am a complete novice - I have only just gotten round to loading all the applications for Final Cut Studio (FCP is version 6 - I bought the software 2 years ago as part of a total package, and till now I have just been using