Utilize BPC Files

Hi All,
I have created an application, but I have receive some files pertaining to the application I have built, and it is in .csv file which has the following Category, Entity, P_ACCT, PRODLINE, P_ACTIVITY, P_DATASRC, RPTCURRENCY, TIME, SIGNEDATA, with its members values. My question how can I automatically upload this into my application, that I have just created ?
I also have Masterdata folder, which has, C_ACCT.csv, C_CATEGORY.csv, C_DATASRC.csv, CATEGORY.csv, ENTITY.csv, FLOW.csv, GROUPS.csv, INPUTCURRENCY.csv, INTCO.csv, O_ACCT.csv, P_ACCT.csv, P_ACTIVITY.csv, P_DATASRC.csv, PRODLINE.csv, R_ACCT.csv, R_ENTITY.csv, RPTCURRENCY.csv & TIME.csv.
In addition to this, I have a folder Transcation Data and Work Status Data, in which Transaction Data folder contains planning file called PLANNING00001.csv which has the following contents Category, Entity, P_ACCT, P_ACTIVITY, P_DATASRC, RPTCURRENCY, TIME & SIGNEDATA, and another folder called Rate which contains Category, Inputcurrency, R_ACCT, R_ENTITY, TIME & SIGNEDATA. Meanwhile, the Work Status Data has another folder named PLANNING00001.csv which has the following contents MANDT, APPSET, CATEGORY, ENTITY, TIME, STATUS, ORDERN, LSTMOD_DATE, LSTMOD_TIME, LSTMOD_USER.
How will I be able use all these files in my system.
Please advise
Thanks
Fau

Hi,
Regarding importing of master data, please take a look at the below links from help.sap:
http://help.sap.com/saphelp_bpc75_nw/helpdata/en/46/fcc2ef34ee439aaa56a4f6ba001e4d/content.htm
http://help.sap.com/saphelp_bpc75_nw/helpdata/en/e0/532af2d0804218a59157136bb63a98/content.htm
http://help.sap.com/saphelp_bpc75_nw/helpdata/en/73/0f917879fd416099d04fb4c49889e0/content.htm
http://help.sap.com/saphelp_bpc75_nw/helpdata/en/88/e16046853041b391314a91bfe3618b/content.htm
Regarding importing of transaction data, please take look at the below links:
http://help.sap.com/saphelp_bpc75_nw/helpdata/en/4f/906a428deb4d68b8c2bfa4608a0b1a/content.htm
Hope this helps.

Similar Messages

  • BPC- File extension not allowed for upload

    I have read the other thread on this as I was having the same problem (not allowed to upload CSV files) - however now I can not upload any XLS files ! What have I done wrong ?
    I have added the following AppSet Parameters and values :
    ALLOW_EXTENSIONS       csv;XLS
    DEFAULT_EXTENSIONS    csv;XLS
    Thanks
    Si

    Hi Karen,
    I went to http://<servername>/osoft/Admin/SetParameters.aspx
    and added the following parameter values :
    ALLOW_EXTENSIONS
    DEFAULT_EXTENSIONS
    then gave it the values of :
    CSV,XLS,XML,TDM,CDM,XLT
    Hope this helps.
    Si

  • BPC: File Extension Not allowed in DataManager

    Hello Gurus,
    I am facing with an extrange issue iwith datamanger, I am trying to upload a TXT file and receive the message that the extension is not allowed for upload.
    I am not able to find where to change this configuration...
    Any idea??
    Thanks
    Sergio

    Take a look at the appset parameters under webadmin tasks and fill correct the following parameters:
    -ALLOWEXTENSIONS
    -ALLOW_FILE_SIZE
    -ALLOW_EXTENTIONS
    -DEFAULT_EXTENTIONS
    add TXt and other extentions to these parameters and it will be fixed.
    -Joost

  • "file does not exist" output  Help !

    Dear Java People,
    I am doing a program that uses the methods of the File class.
    When I test to see if my file (containing the driver class )exists
    it says "does not exist" . I don't know why it doesn't see my file
    below is the coding the doesn't see my file and below that the program
    Thank you in advance
    Norman
    //create an object that is a file
            File myFile = new File(myDir, "TryFile.java");
             System.out.println(myFile + (myFile.exists() ? " does" : " does not") +
                                 " exist.");
    import java.io.File;
    import java.util.Date;
    public class TryFile
        public static void main(String[] args)
            //create ab object that is a directory
            File myDir =
            new File("C:\\Documents and Settings\\Gateway User\\jbproject\\stan_ch9_363");
            System.out.println("\n" + myDir + (myDir.isDirectory() ? " is" : " is not")
            + " a directory.");
             System.out.println( myDir.getAbsolutePath() +
             (myDir.isDirectory() ? " is" : " is not") + " a directory.");
              System.out.println("The parent of " + myDir.getName() + " is " +
              myDir.getParent());
            //create an object that is a file
            File myFile = new File(myDir, "TryFile.java");
             System.out.println(myFile + (myFile.exists() ? " does" : " does not") +
                                 " exist.");
             System.out.println(myFile + (myFile.isFile() ? " is" : " is not")
                                       + " a file.");
             System.out.println(myFile + (myFile.isHidden() ? " is" : " is not")
                                       + " hidden.");
             System.out.println("You can" + (myFile.canRead() ? " " : "  not")
                                       + " read. " + myFile);
            System.out.println("You can" + (myFile.canWrite() ? " " : "  not")
                                       + " write. " + myFile);
              System.out.println();
             //get the contents of the directory
             File[] contents = myDir.listFiles();
             //list the contents of the directory
             if(contents != null)
                 System.out.println("\nThe " + contents.length  + " item(s) in the directory "
                                   + myDir.getName() + " are:\n " );
                 for(int i = 0; i < contents.length; i++)
                   System.out.println(  contents[i] + " is a " +
                   (contents.isDirectory() ? "directory" : "file") +
    " last modified on " + new Date(contents[i].lastModified()) + "\nthe number of bytes in TryFile.java are " + myFile.length());
    else {
    System.out.println(myDir.getName() + " is not a directory");
    System.exit(0);

    Dear SMcKee,
    I realize now that JBuilder is Not the IDE of choice when doing programs that utilize the File class methods.
    The program worked without a hitch in the BlueJ IDE
    below is all the correct output. Thank you again !
    Norman
    C:\Documents and Settings\Gateway User\jbproject\stan_ch9___p363 is a directory.
    C:\Documents and Settings\Gateway User\jbproject\stan_ch9___p363 is a directory.
    The parent of stan_ch9___p363 is C:\Documents and Settings\Gateway User\jbproject
    C:\Documents and Settings\Gateway User\jbproject\stan_ch9___p363\TryFile.java does exist.
    C:\Documents and Settings\Gateway User\jbproject\stan_ch9___p363\TryFile.java is a file.
    C:\Documents and Settings\Gateway User\jbproject\stan_ch9___p363\TryFile.java is not hidden.
    You can read. C:\Documents and Settings\Gateway User\jbproject\stan_ch9___p363\TryFile.java
    You can write. C:\Documents and Settings\Gateway User\jbproject\stan_ch9___p363\TryFile.java

  • How to display CPU and memory utilization from ST06 in a report

    Hi,
    I want to display CPU Utilization and Memory utilization and File sys details from ST06 transaction in a report.
    Is there any function module or any other method to do that.
    Please advice.
    Thanks,
    Sandeep.

    Hi Ranganath,
    Thanks for your time.
    And thank you very much for the reply.
    Both the function modules are helpful.
    But can u also help me in getting the data of FileSys from ST06.
    Thankyou,
    Sandeep.

  • What are Best Practice Recommendations for Java EE 7 Property File Configuration?

    Where does application configuration belong in modern Java EE applications? What best practice(s) recommendations do people have?
    By application configuration, I mean settings like connectivity settings to services on other boxes, including external ones (e.g. Twitter and our internal Cassandra servers...for things such as hostnames, credentials, retry attempts) as well as those relating business logic (things that one might be tempted to store as constants in classes, e.g. days for something to expire, etc).
    Assumptions:
    We are deploying to a Java EE 7 server (Wildfly 8.1) using a single EAR file, which contains multiple wars and one ejb-jar.
    We will be deploying to a variety of environments: Unit testing, local dev installs, cloud based infrastructure for UAT, Stress testing and Production environments. **Many of  our properties will vary with each of these environments.**
    We are not opposed to coupling property configuration to a DI framework if that is the best practice people recommend.
    All of this is for new development, so we don't have to comply with legacy requirements or restrictions. We're very focused on the current, modern best practices.
    Does configuration belong inside or outside of an EAR?
    If outside of an EAR, where and how best to reliably access them?
    If inside of an EAR we can store it anywhere in the classpath to ease access during execution. But we'd have to re-assemble (and maybe re-build) with each configuration change. And since we'll have multiple environments, we'd need a means to differentiate the files within the EAR. I see two options here:
    Utilize expected file names (e.g. cassandra.properties) and then build multiple environment specific EARs (eg. appxyz-PROD.ear).
    Build one EAR (eg. appxyz.ear) and put all of our various environment configuration files inside it, appending an environment variable to each config file name (eg cassandra-PROD.properties). And of course adding an environment variable (to the vm or otherwise), so that the code will know which file to pickup.
    What are the best practices people can recommend for solving this common challenge?
    Thanks.

    HI Bob,
    As sometimes when you create a model using a local wsdl file then instead of refering to URL mentioned in wsdl file it refers to say, "C:\temp" folder from where you picked up that file. you can check target address of logical port. Due to this when you deploy application on server it try to search it in "c:\temp" path instead of it path specified at soap:address location in wsdl file.
    Best way is  re-import your Adaptive Web Services model using the URL specified in wsdl file as soap:address location.
    like http://<IP>:<PORT>/XISOAPAdapter/MessageServlet?channel<xirequest>
    or you can ask you XI developer to give url for webservice and username password of server

  • How to resize logo in AI file for use on web page? [was: new with  this program]

    Hola , i got my logo and the online company  sent it in low resolution, I asked for the proper resolution for my web page and the company sent me this :
    The AI (Vector) file(s) in the zip file are to be utilized for all high-res.
    and commercial printing applications.  It is an Adobe Illustrator file and
    can only be opened and/or utilized if you have this professional design
    software.  All commercial printers will have access to utilize these files.
    I got the adobe illustrator and I am trying to fix the logo and just can not get the size , any tip will be apprecite !

    the company is giving you the vector (master) file that you can make use for web (RGB) or print (CMYK)..
    logo for web, there are 2 points in here:
    the size
    1st. check the artwork's unit → (menu) File → Document Setup → Units → Pixels (as for web)
    then resize / scale the artwork to your size needed - you can also use Width & Height value in Transform palette
    the resolution (you asked for)
    Ai is not like photoshop that you need to change the dpi, because the artwork is vector format ('resolution free')..
    only while exporting (saving to raster) there will be dpi selection:
    (menu) File → Export → Save as type (PNG / JPG) → Save → PNG or JPG Options → Resolution

  • Data Collection in BPC

    Hi,
    How does the Data Collection(UCMON tcode) works in BPC?. Do we have any standard Data Manager Package to do the Data Collection?.How can we achieve this
    Would appreciate your time and response.
    Thanks.

    Hi,
    First, I am not sure what does the tcode that you mentioned does. There is no such code in BPC as far as iam aware.
    Regarding the data collection into BPC application (in other words a cube) -
    You could have a flat file approach -  Upload the flat file into BPC file service using upload data file - and then using standard import data manager package - you could import the data into BPC application. You need to define  and use the BPC transoformations and conversions (if any) in the import process. These are nothing but the files.
    Alternatively, you could also load the data directly from the BW infocube or even from a multi-provider. There is a separate data manager package to do this.
    You could also collect data into BPC through input schedules.
    You have the advantage of triggering the default logic while collecting the data which would apply your business logic on the data before it is saved to the database.
    Hope the above gives some insight to you.
    Thanks

  • Error executing BPC test script

    Hi,
    We are on HANA. Our performance team is trying to execute a test script from HP Load Runner. We are seeing the below error
    HTTP/1.0 500 Internal Server Error\r\n
    <TITLE>500 SAP Internal Server Error</TITLE>\n
    ERROR: XSLT: No valid XML source (termination: RABAX_STATE)<P>\n
      Error -26612: HTTP Status-Code=500 (Internal Server Error) for "http://fmsap980.erps.intel.com:8000/sap/bpc/files?method=list" [MsgId: MERR-26612]
    when we try and execute the same script manually within BPC front end, then no issues. everything is fine. Automating the test script is an issue.
    any script , same error.
    thanks for the help.

    Hey Ravi:
    Any chance you found a solution to this?
    Thanks
    Kalinga

  • How to use a config file?

    People,
    i have a basic question. How to extract the contents from a ".config" file?
    I have a config file with few sections and few global variables defined.
    how to extract these data; or how to use this file?
    a sample .config file, that i have is,
    # global variables
    pageTitle = "Main Menu"
    bodyBgColor = #000000
    tableBgColor = #000000
    rowBgColor = #00ff00
    [Customer]
    pageTitle = "Customer Info"
    [Login]
    pageTitle = "Login"
    focus = "username"
    Intro = """This is a value that spans more
    than one line. you must enclose
                   it in triple quotes."""
    # hidden section
    [.Database]
    host=my.domain.com
    db=ADDRESSBOOK
    user=php-user
    pass=foobar
    How would i extract these data; or how to utilize this file first of all?
    - Kumar
    [ [email protected] ]

    Hi Kumar,
    Instead of .config file you can use .properties file. Place the configuration part in that file. Use ResourceBundle class. This class have methods like getResourceString(String key) which reads the .properties file and returns a String as it's Value. I normally use the same. I have written one class for it. C if you can use it. The keys are case sensitive. initialize is a directory in which i am keeping my Config.properties file.
    import java.util.*;
    import java.text.*;
    import java.net.*;
    import javax.swing.*;
    public class ReadConfig
    public static ResourceBundle resources;
    * This is responsible for getting data from Config.properties for setting properties externally.
    static
    try
    resources = ResourceBundle.getBundle("initialize.Config", Locale.getDefault());
    catch (MissingResourceException mre)
    JOptionPane.showMessageDialog(new JFrame(), "initialize/Config.properties not found.\n Please report it to administrator.");
    System.err.println("initialize/Config.properties not found");
    System.exit(1);
    }//static
    public ReadConfig()
    System.out.println(getResourceString("DatabaseName"));
    System.out.println(getResourceString("JDBCDriver"));
    System.out.println(getResourceString("DSN"));
    System.out.println(getResourceString("ConnectionString"));
    }//constructor
    public String[] tokenize(String input)
    Vector v = new Vector();
    StringTokenizer t = new StringTokenizer(input);
    String cmd[];
    while (t.hasMoreTokens())
    v.addElement(t.nextToken());
    cmd = new String[v.size()];
    for (int i = 0; i < cmd.length; i++)
    cmd[i] = (String) v.elementAt(i);
    return cmd;
    * A method takes string as parameter and reference of ResourceBundle.
    * It is used with <b>Resources Bundle</b> i.e. with .properties file.
    * When value of particular string from .properties file has to retrive.
    public String getResourceString(String nm, ResourceBundle resources)
    String str;
    try
    str = resources.getString(nm);
    catch (MissingResourceException mre)
    str = null;
    return str;
    * A method takes string as parameter. It is used with <b>Resources Bundle
    * </b> i.e. with .properties file. When value of particular string from .properties
    * file has to retrive.
    public static String getResourceString(String nm)
    String str;
    try
    str = resources.getString(nm.trim());
    catch (MissingResourceException mre)
    str = null;
    return str;
    }//getResourceString(String nm)
    * This method takes string as parameter and returns corresponding <b>URL</b>.
    * If key is <b>null</b>, then will return <b>null</b>.
    public URL getResource(String key)
    String name = getResourceString(key);
    if (name != null)
    URL url = this.getClass().getResource(name);
    return url;
         return null;
    }//getResource(String key)
    public static void main(String[] args)
    new ReadConfig();
    }//main
    }//class
    Hope this will be helpful to you.
    Kind Regards
    Sandeep

  • FIle locks

    Hi all,
    I'm working with datastructures class on an inventory program that will utilize many files. I put it upon myself to write the file code, but there is one portion that I'm not sure how to tackle. How can I implement a file lock? (more specifically, how can I delay a loop so I can give some time for another module to finish accessing the file?)
    THanks,
    Mike

    Try wait and notifyAll methods in objects for your threads. Have thread objects wait till the object working on the file is complete. Then call a notifyAll for the file object.

  • BPC 7.1 Administration Client cannot be started

    Hi All,
    I am trying to start action "manage application sets" on administration client for BPC 7.0 Patch 7 but the client stay invisible.
    the last thing that I can see is the client starts to download some files (step 1).
    After this it gets invisible, all that I can find is the activ process OSoftAdminMain.exe.
    I get no error, nothing.
    Last thing that I tested is to execute BPC Client Diagnostic for Administration client features. There I got some errors:
    [Files]
      BPC Administration Folder:C:\Programme\BPC\
      File: C:\Programme\BPC\Ev4AdminClient.dll
        Status:File not found
        Reinstall BPC Administration client.
      File: C:\Programme\BPC\Ev4Logon.dll
        Status:File not found
        Reinstall BPC for Office client.
      File: C:\Programme\BPC\Ev4Share.dll
        Status:File not found
        Reinstall BPC for Office client.
      File: C:\Programme\BPC\Ev4AdminForLaunch.xla
        Status:File not found
        Reinstall BPC Administration client.
      File: C:\Programme\BPC\Ev4Admin.xla
        Status:File not found
        Reinstall BPC Administration client.
      File: C:\Programme\BPC\Ev4UpdateAdm.exe
        File Version:7.0.0.107
        Status:OK
      File: C:\Programme\BPC\UnZip32.DLL
        Status:File not found
        Reinstall BPC Administration client.
      File: C:\Programme\BPC\Ev4ResCltAdm.dll
        Status:File not found
    The missed files I also cannot find on the application server.
    That could be a problem?
    Before installing of Patch 7 I could start all action on admin client.
    Please help me on this.
    Thank you,
    Vadim

    Hi,
    no, unfortunately it does not work.
    I reinstalled the BPC client, but it is the same.
    The only exception: the client diagnostic tool shows no errors any more::
    03.05.2010  10:33:22
    Diagnostic forBPC Administration client features.
    Your computer is ready to install BPC for Office client features.
    [System Information]
    Local System Name:XXXX
    IP Address:10.1..**
    Current User Name:xxxx
      BPCServer Name (IP Address):sapbpc..:8081
    Diagnostic Program Version:7.0.0.113
    CPU:586
    Total Physical Memory:2.097.152 KB
    Available Physical Memory:2.097.152 KB
    Total Virtual Memory:2.097.024 KB
    Available Virtual Memory:1.875.448 KB
    Free Disk space (C Drive):179.740 MB
    Windows Directory:C:\WINDOWS\
    Windows System Directory:C:\WINDOWS\system32\
      Language
        System default language:English
        User default language:GERMAN
    Prerequisite software
      Microsoft Windows
        Windows Version:Windows XP
        Windows Build Number:2600
        Windows Service Pack:Service Pack 3
      Internet Explorer Version
        Required:6.0 or higher
        Currently:8.0.6001.18702
        Status:OK
      Microsoft Excel Version
        Required:Excel 2000(9.0) or higher
        Currently:Microsoft Excel 2005
        Status:OK
      Microsoft XML Version
        Required:8.10.8308.0 or higher
        Currently:8.100.1051.0
        Status:OK
      Microsoft .Net Framework Version
        Required:1.1.4322
        Status:OK
    End of file
    Regards,
    Vadim

  • Creating DVD Data Disc to Share HD Video Files

    Hi All,
    I have a MacBook Pro and have created HD Videos using iMovie 09.  I need to send the HD Video files to a company in India for them to be able to access and utilize the files.  These are the parameters that they have sent me:
    Format : PAL. 720 x 576. HD.
    You can send the content on DVD as a .mov file ( data DVD).
    I am a bit confused as to what is the best method of doing this.  I have Toast 10 Titanium, but not sure which route to go with it.  They sell a plug in to make HD DVD/Blu Ray Disc, but from what I understand, those discs can only be played on a Blu Ray player.  I need the data to be readable by the party in India to download, edit, etc.
    Newbie here!!  Can anyone give me advice?
    Thanks

    QUOTE: "You can send the content on DVD as a .mov file ( data DVD)"
    They are telling you to send the movie as a Quicktime .mov file. So, as long as your iMovie file has been formated to be in PAL format at 720 x 576 HD. Then all you need to do is drop the movie file you created in iMovie into the DVD folder and burn it  (The file size has to be 4.5GB max)
    In your case, I guess you would use Titanium to burn a data DVD.

  • Colour Profile Bug in CS4 32 bpc Mode?

    This has been confirmed on both Mac and PC by different users
    (this topic was confirmed on another list before posting here).
    One may be working on an image that has a different colour profile
    than set as default in colour settings. For example, colour settings
    has Adobe RGB while the current document is in ProPhoto RGB. If the
    ProPhoto RGB (16 bpc) file is taken to 32 bpc mode, the status message
    reports that the file is in a modified linear space based on the input
    profile. One may then perform USM, for example and then return to 16
    bpc or 8 bpc mode.
    Here is the bug: Once the ProPhoto RGB file is returned to 16 or 8
    bpc, it now has the working RGB space tagged of Adobe RGB, rather than
    the original ProPhoto RGB as input before 32 bpc conversion. This is
    not just a tagging issue, the numbers have been converted to working
    RGB rather than the input ICC that was tagged to the image prior to
    entering 32 bpc mode.
    ICC tagged image operations have been divorced from colour settings
    since version 6, the document can reside in a space that is
    independent of colour settings. I can't recall other operations that
    change the files colour space and tag without user intention.
    If using 32 bpc edits, to preserve the input space, one either has to
    change their colour settings to match the document or convert the
    document to working RGB.
    So why this reversion to working RGB and not the document RGB - bug or
    design feature/limitation? Did CS3 work this way, is it only my
    version of CS4?
    I have searched the help notes, this forum and other Adobe support docs,
    however I could not find this issue documented.
    Sincerely,
    Stephen Marsh

    Can anyone post a supporting argument for the current behaviour (design or bug). While in 32 bpc Photoshop "knows" what the original profile is (it is listed as being in a linear state), while on default conversion to lower bit depth the data is converted to working RGB, rather than the document RGB prior to conversion (if different to working RGB). Am I missing something - is this a good thing, should this be behaviour be changed?
    OK, topic drift it is!
    Buko/progress, it is not so much bit depth in this case, it is gamma encoding - or lack thereof. 32 bpc mode processes in linear gamma, which can have an effect on some operations for certain receptive image content (tonal moves, USM, interpolation etc).
    As one example, some links to linear resampling can be found in the comments at this blog:
    http://forensicphotoshop.blogspot.com/2008/11/resize-smaller-part-2.html
    I prefer the 32 bpc route to linear processing rather than the alternative, which is 16 bpc and a hacked custom RGB profile set to gamma 1.0.
    I don't like linear USM for output sharpening (nasty dark halo artifacts). However, for subtle capture/acquisition sharpening linear USM may be preferred for certain images. I generally sharpen with blend if sliders limiting the intensity of the light halo, which comes close to one aspect of linear sharpening (light halo reduction). This can also be achieved by blending the USM in two separate layers, set to darken and lighten blending with reduced opacity.
    While on USM and gamma, there are some L* based RGB working spaces such as L*RGB or the new ECI RGB which behave the same way as Lab mode Lightness channel sharpening (when set to Luminosity blend). As the response of the Lightness channel is different to linear gamma and standard gamma encoded spaces, for some image content one may be preferred over the other as the processing space.
    I would still like to explore the original topic/post before submitting a bug report. How do you think things should work?
    Regards,
    Stephen Marsh

  • CC 2014 Ruler tool Straighten button is dimmed in layered files (Mac and Win versions)

    I have a Grayscale/8 bpc file with a Levels Adjustment layer.
    In CC 2014 I use the ruler tool to drag out a line and the notice the Straighten button in the Options bar is dimmed whether I have the Background layer or the adjustment layer selected. If I flatten the image the Straighten button is active.
    In CC, if I select the Background layer, the Straighten button is active. Not if I select the Adjustment layer. Same behavior in CS6. (So the problem looks to be in CC2014 only)
    This is noted in both the Mac and Windows versions of CC 2014.1.0 (which would leave out the OS and hardware glitches.)
    Tried a flat grayscale file, added an adjustment layer, and noticed the same problem in CC 2014.  (that eliminates a buggy file)
    The fact that at least with the Background layer selected in CC and CS6, the Straighten button is active, so this is looking like something specific to CC 2014.
    Before I call it a "bug", I would like to know if anyone is seeing this or knows  of a fix?

    Ok, changing the background layer does activate the straighten button without having to flatten the document.
    I'll keep this question open for more feedback before marking it.

Maybe you are looking for