Customize an Export Package

Hi experts!
I need some information about how to build an EXPORT Package associated to an specific Transformation File and with an specific dimension selections.
I mean, I would like to allow to the user to rum a export package, but with no choice of anything but the Time. So when the Export package will be run, it must have automatically selected the transformation file and the other dimensions.
Thank in advance. Any idea will be welcome!
iria

We build our entire custom packages using SSIS and schedule them.  Will like to know if there is way that you can build your own custom package and execute it via eDATA menu in BPC for excel !
Thanks,
saquib Khan

Similar Messages

  • Receiving error in BPC Data Manager while running Export package.

    We are in a multi server environment and receiving below error message while running Export package.
    Have anyone seen below error message in BPC 5.1
    An error occurred while executing a package.
    Package Error Events:
    ErrorCode = -1073668060
    Source = Dump Data
    SubComponent=
    Description = The task "Dump Data" cannot run on this edition of Integration Services. It requires a higher level edition.
    IDOfInterfaceWithError= {8BDFE889-E9D8-4D23-9739-DA807BCDC2AC}
    Thanks
    Sridhar

    Below are our BPC versions:
    BPC on Server Manager: 5.0.486
    Data Manager from eData: 5.0.484
    BPC from eTool: 5.0.486
    Below is the total error message as per your suggestion to run Export package. (even with service account which we used to install the software we are getting same error message.)
    TOTAL STEPS  2
    1. Dump Data:     Failed  in 0 sec.
    [Selection]
    FILE=\ApShell_SK\FINANCE\DataManager\DataFiles\SKTEST.TXT
    TRANSFORMATION=\ApShell_SK\FINANCE\DataManager\TransformationFiles\System Files\Export.xls
    MEASURENAME=PERIODIC
    (Member Selection)
    Category: ACTUAL
    Time: 2006.JAN
    Entity:
    Account:
    DataSrc:
    IntCo:
    RptCurrency: 
    [Messages]
    An error occurred while executing a package.
    Package Error Events:
    ErrorCode = -1073668060
    Source = Dump Data
    SubComponent=
    Description = The task "Dump Data" cannot run on this edition of Integration Services. It requires a higher level edition.
    IDOfInterfaceWithError= {8BDFE889-E9D8-4D23-9739-DA807BCDC2AC}

  • Error In BPC Export Package-version 7.5

    Hi Bpc Experts,
    We upgraded DEV BPC Version 7 to 7.5 netweaver version.
    We are facing an issue when using Export package to export file from BPC to BI application server.
    After running EXPORT Package a window appears with input field to enter File name and path,But i am not able to enter the file name in the Input field(Non editable).I used the below Advanced Script
    PROMPT(OUTFILE,%DESTINATIONFOLDER%,"Please enter an output path and file name",)
    PROMPT(SELECTINPUT,%SELECTION%,,"Select the members to filter","%DIMS%")
    TASK(ZBPC_EXPORT_TRANS,EXPORT_FILE_PATH,%DESTINATIONFOLDER%)
    TASK(ZBPC_EXPORT_TRANS,SELECTION,%SELECTION%)
    Process Chain:ZBPC_EXPORT_TRANS
    But my Quality and Production system Export functionality is allowing to enter the path and file name in version 7.
    Thanks
    Mahesh

    Hi Rich,Thanks for your reply.
    I tried with standard Process chain /CPMB/EXPORT_TD_TO_FILE, but still i am not able to enter path and file name to export to BI application server
    Can u send the list of modification to be done after upgradation of BPC 7 to 7.5
    Thanks
    Mahesh

  • Customize Data Manager Package

    Hi
    m new to sap bpc nw version.Can anybody help me for the following issue
    1)I want to copy data from one sorce member to multiple destination members. I have used Copy Data Manager Package  in BPC NW Version,but its not allowing me to select multiple members of a dimension n the destination.The "Next" option itself is getting disabled.The same was enabled in MS Version.
    How can I customize Data Manager Package to get Multiple Selections?

    As "Copy" is predefined BPC DM package ,this DM package can not be customized. Copy wizard wont allow if source & destination members are of different count . If destination members are less , then you can run Copy package multiple times. If destination members are more , you can try creating simple script logic to copy .
    Edited by: pkrishnas on Oct 27, 2011 5:49 PM

  • Export Package / BPC 7.0 MS SP5

    Hi all,
    I work with BPC 7.0 MS SP5. I have an issue with the standard EXPORT package.
    My step 2 (Convert Data) failed and I have this error message : The file is empty.
    I use the transformation file standard (Export.xls).
    I have less than 1 000 000 000 intersections in my package selection.
    I take a calculated member on 1 dimension and only leaf members on the other dimensions
    My application has 9 dimensions + 1 dimensions with a double hierarchy.
    Somebody has the same issue ?
    Regards,
    Morgann

    please post this question to the MS platform this one is only used for BPC NW ..
    D

  • Bundle Not Exporting Package

    I have made a bundle in Crxde lite called MyRepositoryManager
    package com.support.jcr;
    import javax.jcr.Repository;
    import javax.jcr.SimpleCredentials;
    import org.apache.felix.scr.annotations.Component;
    import org.apache.felix.scr.annotations.Property;
    import org.apache.felix.scr.annotations.Service;
    import org.apache.sling.api.resource.Resource;
    import org.apache.jackrabbit.commons.JcrUtils;
    @Component
    @Service(value=MyRepositoryManager.class)
    public class MyRepositoryManager{
        public Repository getRepository(String repositoryUrl){
             Repository repository = null;
            try{
                repository = JcrUtils.getRepository(repositoryUrl);
            } catch(Exception e){
                e.printStackTrace();
             return repository;
        public javax.jcr.Session startSession(Repository repository,String admin,String pass){
            javax.jcr.Session session = null;
            try{   
                session = repository.login( new SimpleCredentials(admin,pass.toCharArray()));
            } catch(Exception e){
                e.printStackTrace();
            return session;
        public void endSession(javax.jcr.Session session){
            try{
                session.save();
                session.logout();
            } catch(Exception e){
                e.printStackTrace();
    And here is the bnd file for this bundle
    Export-Package: com.support.jcr
    Import-Package: *
    #Private-Package:  
    # Include-Resource:
    Bundle-Name: MyRepositoryManager
    Bundle-Description: Handles repository management
    Bundle-SymbolicName: MyRepositoryManager
    Bundle-Version: 1.0.0-SNAPSHOT
    Bundle-Activator: com.support.jcr.Activator
    Problem is that when I build this bundle and look at it in OSGi console, the exported packages show nothing (Exported Packages ---)
    How can I make this class available to code in my other packages. and why is it not exporting?

    Hi All,
    Before answering your question I have few queries:-
    1. Please share screen shot where you see export package show nothing.
    2. What is your approach to access this class ?
    3. You have created this class as a services and any service can be access in other class using
         @Reference MyRepositoryManager myRepositoryManager;
       OR in Jsp
        sling.getService("MyRepositoryManager");
    Regards
    Brijesh Yadav

  • Use wmi methods with powershell to export packages

    I'm looking for a way to export packages from a ConfigMgr 2012 ( NOT SP1 ) instance using wmi and powershell. I am aware of the wmi classes under the namespace 'root\sms\XYZ_Site' but I can't find any classes with an 'export' method. 
    ( Please don't tell me to load the SP1 module )
    Many thanks! 

    Hi,
    Have you figured this out?
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Custom DSC can't find exception class, error about export-packages

    I've got a DSC which has a method that can throw two custom exceptions. It all works, and the exceptions show up available for handling in a process in Workbench, but the issue here is that the server.log has this error:
    2013-05-13 16:59:35,353 WARN  [com.adobe.workflow.AWS] An exception has been thrown for which the class information has not been exported in the service's export-packages, it is essential for the clients of the service to have the class information via export-packages to handle the exception.
    Yet I have added the exceptions' package to the export packages. And I also made a DataTypes entry for each of the two exceptions as well.
    Does anyone have an idea how I can get rid of this warning?
    Thanks,
    Jack

    You continue to use slash instead of dot.
    You did not follow any of my suggestions and still awarded me dukes,
    so I feel I have to make a last attempt.
    Here is what I have:
    D:\try>dir /s
    Volume in drive D is New Volume
    Volume Serial Number is 3ECC-CB52
    Directory of D:\try
    11/05/2007  12:18 PM    <DIR>          .
    11/05/2007  12:18 PM    <DIR>          ..
    11/05/2007  12:19 PM    <DIR>          a
                   0 File(s)              0 bytes
    Directory of D:\try\a
    11/05/2007  12:19 PM    <DIR>          .
    11/05/2007  12:19 PM    <DIR>          ..
    11/05/2007  12:19 PM    <DIR>          b
    11/05/2007  12:17 PM               808 MyClass.class
                   1 File(s)            808 bytes
    Directory of D:\try\a\b
    11/05/2007  12:19 PM    <DIR>          .
    11/05/2007  12:19 PM    <DIR>          ..
    11/02/2007  01:56 PM                11 Messages.properties
                   1 File(s)             11 bytes
         Total Files Listed:
                   2 File(s)            819 bytes
                   8 Dir(s)  70,889,848,832 bytes free
    D:\try>java a.MyClass
    value
    D:\try>Here is the code for MyClass:
    package a;
    import java.util.*;
    public class MyClass
      public static void main( String[] args ) throws Exception
        ResourceBundle rb = ResourceBundle.getBundle( "a.b.Messages" );
        System.out.println( rb.getString( "key") );
    }Here is the contents of Messages.properties:
    key = value

  • Customize the Export option as ONLY in CSV format

    I designed the detail report which has 17585 rows and 52 columns, If I export the report in excel its taking long to download (7-10 Mins 148 MB Size with all formatting properties), where as in DATA CSV format its taking less than a min and the file size is 4.4 MB.
    Is there is any option where I can only customize the Export option as CSV format. Also my report contains Narrative view for the Heading, Can I add the Export link some where on the Narrative view that is in CSV format.
    Please help me out with this issue.
    Thanks

    Try to use url for the same report and add the these at the end of url, so that on click user can download only as .csv
    *&Format=txt&Extension=.csv*
    Irrespectiev of version you can use the below link for URL
    http://docs.oracle.com/cd/E21043_01/bi.1111/e16364/apiwebintegrate.htm#CACCHBHC
    Just in case check this too to disable links
    Re: Disable or Hide return link
    Appreciate if you mark as correct/helpful if helps
    Edited by: Srini VEERAVALLI on Dec 20, 2012 5:05 PM

  • Export package file donwload format changes ti .zip

    Dear All,
    Since last few days i am facing as issue regarding downloadinf export package file.
    Earlier i used to download the same file as .epa only.
    now evrytime i need to change file extension from .zip to .epa
    Please help.
    Thanks and Regards,
    Atul

    Hi Atul,
    See http://forums.sdn.sap.com/thread.jspa?threadID=2109571
    SAP will fix this some day, but that still might take some time to be released; anyhow, the thread presents a workaround so far.
    Hope it helps
    Detlev

  • Error In BPC Netweaver Export Package-version 7.5

    Hi Bpc Experts, We upgraded DEV BPC Version 7 to 7.5 netweaver version. We are facing an issue when exporting data from BPC to BI application server.Please find the error message as below
    Task name CONVERT:
    No 1 Round:
    0GL_ACCOUNT is not a valid command or column 0GL_ACCOUNT does not exist in source
    Application: CONSOLIDATION Package status: ERROR
    I request you to give a suggestion to fix the above issue
    Thanks
    Mahesh

    Can you try the below mapping:
    0GLACCOUNT=C_ACCT
    I have my transformation file maintained in such a way that my BPC dimensions are maintained to the right of '=' sign.
    Maintain your mapping like that and validate the tansformation file with the data in the BPC cube.
    Thanks

  • How to Export Package in PI 7.1?

    Hi,
    In PI 7.1, Functions Tab - how to Export the Package? there a export icon beside the Package name, when I am trying to export, a window is popping up asking me to open the file instead of saving the file.
    Please suggest in this .......
    Thanks & Regard,
    Pragathi.

    Pragathi,
    you only need to select a folder in the popup window, then click on Open. A sub folder structure will be created by PI in your selected folder and java files will be created correspondingly.
    Jayson

  • Whats the quickest way to export packages,tables etc from one enviroment

    Hi
    whats the quickest way of more loads of packages, tables, indexes etc. from one enviroment to another?
    I did some things in apex.oracle.com workspace to test apex now I want to move it across to my xe installation.

    Hello,
    2 'fast' options really -
    1) Export of application + Export/DataPump of schema
    This works if you want a complete 'mirror' from one environment to another of the schema objects
    2) Supporting Objects
    Bundle all your requirements together with the application export.
    The Supporting Objects feature absolutely rocks and yet very very (very!) few people seem to use it.
    John.
    http://jes.blogs.shellprompt.net
    http://apex-evangelists.com

  • Bulk Export Package Spec and Body as single file

    Is there a way to bulk export the package spec and body into a single file, you can export spec and body if you choose each individual proc/package but if you just choose the spec/body individually from the connection - > packages list it only exports that part of the code. If not i will raise as an enhancement.
    Thanks
    Trotty

    Thanks for your update K.
    Have tried that and you can sort of do it however you still have to choose/select the spec/body individually so twice the overhead selescting them.
    Will raise an enhancement and see where it goes.
    Thanks
    Trotty

  • Exporting package meta data

    Hi all,
    I would like to export all the meta data of a package (such as database table names and structure, dataelements, reports, function groups, etc.) into a text file. I could not find an export functionality in the se80. Anyone have any ideas?
    Thanks for your help & regards,
    Jens

    Use function module RS_GET_OBJECTS_OF_DEVCLASS.

Maybe you are looking for