Is any Public API available to create the rpd file programatically

Hi:
In general is there any public API's that can be used to create the rpd file programatically?
I know that there is a discoverer migration tool to convert to rpd file is present in the latest version. But how to do it for the hyperion reports?
Searching for any API's that may be present to create the rpd file programatically.
Thanks & Regards
Sridhar D

You can use UDML to make changes to the RPD. However it is not supported by Oracle so you will be by yourself in anything goes wrong. You can also easily see the UDML code if you copy any objects from Administration tool into Notepad. This post will teach you the basics: http://oraclebizint.wordpress.com/2008/04/04/oracle-bi-ee-101332-udml-to-automate-repository-updates-migration-of-repositories-from-development-to-testproduction-environment/

Similar Messages

  • Is there any java api available to get the process identifier ?

    Hai,
    I am in need to get the process identifier of a running process.
    Is there any API available or any shell script which can be used in exec command
    to get it.
    Thanks in Advance.
    Kavitha M.

    Hint: Don't use the exec command! This would spawn off a new shell with a different PID. You might want to look at JNI (Java Native Interface) to attach a piece of C code to your Java application that can find out the PID.

  • Is there a way to run a script to create an RPD file from MDS XML files

    We would be interested in using the MDS XML format for the RPD file in saving it in our Subversion source code control system, and I have seen how to do this in the User documentation.
    Our question is whether or not there is a way to use a command line tool to recreate the rpd file without having to use the Admin tool, so that we can automate the deployment of the RPD file from source code control to QA and Production environments.
    If we check in the RPD file directly, then there is a way to automate the process, but we would prefer to use the MDS XML format since this allows us to save changes in text format, not binary, but we still need to be able to automate the process.
    In the Oracle Fusion Middleware XML Schema Reference for Oracle Business Intelligence Enterprise Edition document, I have found that there is a way to automate the creation of the MDS XML files from an RPD file using this command:
    biserverxmlgen -M -R repository_pathname [-P password] -D output_directory [-8] [-N] [-Q|-S]
    So my question is basically is there a way to reverse this process, to use some command line tool (or Weblogic Scripting or some other mechanism) to create the RPD file from the MDS XML files? Are there options on the biserverxmlexec command that will do what I am asking?

    Hey dmfairley,
    Thanks for the question. You can absolutely export the project as .mp3, as outlined in this resource:
    GarageBand Help: Export songs to disk
    http://help.apple.com/garageband/mac/10.0/#gbnd7cbf5ed9
    Export songs to disk
    You can export a project to your computer as a stereo audio file.
    Exported files can be reused in GarageBand to save processing resources by replacing or bypassing multiple regions, instruments, and effects. They can also be used with other music applications and devices, posted on the Internet (on a webpage, or in the iTunes Store, for example), added to an iTunes playlist, or uploaded to a mobile device such as iPhone or iPad.
    1. Choose Share > Export Song to Disk.
    2. To rename the exported file, select the name in the Save As field, then enter a new name.
    3. Choose a location to save the exported file from the Where pop-up menu.
    4. Select the format for the exported file (AAC, MP3, or AIFF).
    5. Choose the quality setting for the exported file from the Quality pop-up menu.
    6. Click Export.
    Thanks,
    Matt M.

  • Is there any Public API that calls CSP_SHIP_TO_ADDRESS_PVT.ship_to_address_handler()

    Does any body know if there is any public API that calls this CSP_SHIP_TO_ADDRESS_PVT.ship_to_address_handler()?? I have a requirement to create a Resource Address real time for which i am looking for any public WSDL available in Integrated SOA Gateway for this package that i can use.
    Any help is appreciated.
    Thanks,
    Harika.

        Hello jmcamaross, Congrats on your iPhone 6 Plus Pre-Order! We're all very excited about the new phone so I know the importance of ensuring the address is correct. Options for changing the shipping address would be to cancel your original pre-order and place a new order. When this is done, your shipping date would change to a later date as you would lose your current "place in line". Please let us know if this is a good option for you.
    TanishaS1_VZW
    Follow us on Twitter @VZWSupport.

  • WSDL Metadata not available to create the proxy, either Service instance or ServiceEndpointInterface com.microsoft.bingads.campaignmanagement.ICampaignManagementService should have WSDL information

    package com;
    import java.rmi.*;
    import com.microsoft.bingads.*;
    import com.microsoft.bingads.campaignmanagement.*;
    public class AdExtensions   {
        static AuthorizationData authorizationData;
        static ServiceClient<ICampaignManagementService> CampaignService;
        private static java.lang.String UserName = "chandan-ai";
        private static java.lang.String Password = "Algo1234";
        private static java.lang.String DeveloperToken = "BBD37VB98";
        private static long CustomerId = 9548596;
        private static long AccountId = 38360461;
        public static void main(java.lang.String[] args) {
            try
                authorizationData = new AuthorizationData();
                authorizationData.setDeveloperToken(DeveloperToken);
                authorizationData.setAuthentication(new PasswordAuthentication(UserName, Password));
                authorizationData.setCustomerId(CustomerId);
                authorizationData.setAccountId(AccountId);
            //      String namespace ="https://bingads.microsoft.com/CampaignManagement/v9";
                //  String url ="https://api.sandbox.bingads.microsoft.com/Api/Advertiser/CampaignManagement/v9/CampaignManagementService.svc?wsdl";
           CampaignService = new ServiceClient<ICampaignManagementService>(
                             authorizationData,ApiEnvironment.SANDBOX,
                             ICampaignManagementService.class);
                 ArrayOfCampaign campaigns = new ArrayOfCampaign();
                 Campaign campaign = new Campaign();
                 campaign.setName("Winter Clothing " + System.currentTimeMillis());
                 campaign.setDescription("Winter clothing line.");
                 campaign.setBudgetType(BudgetLimitType.MONTHLY_BUDGET_SPEND_UNTIL_DEPLETED);
                 campaign.setMonthlyBudget(1000.00);
                 campaign.setTimeZone("PacificTimeUSCanadaTijuana");
                 campaign.setDaylightSaving(true);
                 campaign.setDailyBudget(52.00);
                 campaigns.getCampaigns().add(campaign);
              ArrayOflong campaignIds = addCampaigns(AccountId, campaigns);
              printCampaignIdentifiers(campaignIds);
             } catch (Exception ex) {
                 // Ignore fault exceptions that we already caught.
                 if ( ex.getCause() instanceof AdApiFaultDetail_Exception ||
                      ex.getCause() instanceof EditorialApiFaultDetail_Exception ||
                      ex.getCause() instanceof ApiFaultDetail_Exception )
                 else
                     System.out.println("Error encountered: ");
                     System.out.println(ex.getMessage());
                     ex.printStackTrace();
         // Adds one or more campaigns to the specified account.
         static ArrayOflong addCampaigns(long accountId, ArrayOfCampaign campaigns) throws RemoteException, Exception
             AddCampaignsRequest request = new AddCampaignsRequest();
             // Set the request information.
             request.setAccountId(accountId);
             request.setCampaigns(campaigns);
             System.out.println(request.getCampaigns() + "\n"+ request.getAccountId());
             return CampaignService.getService().addCampaigns(request).getCampaignIds();
         // Prints the campaign identifiers for each campaign added.
         static void printCampaignIdentifiers(ArrayOflong campaignIds)
             if (campaignIds == null)
                 return;
             for (long id : campaignIds.getLongs())
                 System.out.printf("Campaign successfully added and assigned CampaignId %d\n\n", id);
    when running this program i am getting error
     WSDL Metadata not available to create the proxy, either Service instance or ServiceEndpointInterface com.microsoft.bingads.campaignmanagement.ICampaignManagementService should have WSDL information
    javax.xml.ws.WebServiceException: WSDL Metadata not available to create the proxy, either Service instance or ServiceEndpointInterface com.microsoft.bingads.campaignmanagement.ICampaignManagementService should have WSDL information
        at com.sun.xml.internal.ws.client.WSServiceDelegate.getPort(Unknown Source)
        at com.sun.xml.internal.ws.client.WSServiceDelegate.getPort(Unknown Source)
        at javax.xml.ws.Service.getPort(Unknown Source)
        at com.microsoft.bingads.internal.ServiceFactoryImpl.createProxyFromService(ServiceFactoryImpl.java:117)
        at com.microsoft.bingads.ServiceClient.getService(ServiceClient.java:94)
        at com.AdExtensions.addCampaigns(AdExtensions.java:91)
        at com.AdExtensions.main(AdExtensions.java:49)
                                          

    Hello.
    Please make sure you have the correct dependency versions e.g. cxf-rt-frontend-jaxws version 3.0.2. You can find a list of all dependencies for the Bing Ads Java
    SDK here:http://mvnrepository.com/artifact/com.microsoft.bingads/microsoft.bingads/9.3.2-beta
    If you create a Maven project e.g. in Eclipse, the dependencies are included automatically. 
    I hope this helps!

  • Adding 2 byte arrays (6 bytes each ) -any specific API available

    hi friends
    I m fixed up with a problem .
    i want to add to arrays of six bytes each .
    how can i go for this .
    is there any specific API available for the same.
    current method i m using is an function which add first bytes of 2 arrays and then check out if the added value is more then FF its incerments the previous bytes and then start adding the second bytes .
    but its a very time consuming way .
    is there any specific API available ...... to solve out this problem in a much easier way

    i want to add to arrays of six bytes each .Looks like you want to add two 48bit numbers, right?
    how can i go for this .
    is there any specific API available for the same.No. only 8bit and 16bit number operations are supported (and theoretical 32bit operations).
    current method i m using is an function which add
    first bytes of 2 arrays and then check out if the
    added value is more then FF its incerments the
    previous bytes and then start adding the second
    bytes .Sounds like the paper & pencil addition method.
    but its a very time consuming way.That is a common problem when building "large number arithmetic" functions by using 8bit operations.
    From my point of view the only possibility for speeding up your algorithm is using nytes instead of shorts as usually the JavaCard processors are 8bit processors and therefore short/16bit operations are already decomposed into several 8bit operations. The only problem can be that java does not have a carry bit or an number overflow error for detecting if a number gets greater than 0xFF.
    Jan

  • How to get the extension Info from firefox? Do we have any firefox API to communicate with the browser? I couldnt see the HTML of the widget displayed in the toolbar how to access the widget using JS or any way

    How to get the extension Info from firefox? Do we have any firefox API to communicate with the browser? I couldnt see the HTML of the widget displayed in the toolbar how to access the widget using JS or any way

    Hi,
    Thanks for the suggestion. I've been playing around with some of the classes of the java.net package and java.io
    Using the URL class i can get the content of the data from a STATIC page and output that response to file so that is does not display to the client broswer.
    But this only works if the URL i give points to a static html page.
    So the problem i'm getting is if i'm righting in arguments in the URL, this means that server needs to process the arguments i give and its sends back a dynamic result. Because its dynamic the URL class can not handle this and throws me an exception everytime :(
    Have u ever tried to do some things like this?
    Rahul

  • Any Oracle API to Finally close the PO Shipments

    Hi,
    I have the requirement of Finally close the Number of PO shipments,
    I know there is a API (PO_ACTIONS.CLOSE_PO API )can be used to Finally close the PO at header level.
    Is there any sepecific API to finally close the PO shipments or how i can achive this?
    Please pour your thoughts.
    Thanks,
    Subash

    Hi;
    All APIs are listed in Oracle Integration Repository
    http://irep.oracle.com/index.html
    API User Notes - HTML Format [ID 236937.1]
    R12.0.[3-4] : Oracle Install Base Api / Open Interface Setup Test [ID 427566.1]
    Oracle Trading Community Architecture API User Notes, June 2003 [ID 241320.1]
    Technical Uses of Customer Interface and TCA-API [ID 269121.1]
    Pelase also check below:
    Api's in EBS
    Re: Api's in EBS
    http://sairamgoudmalla.blogspot.com/2009/05/script-to-find-oracle-apis-for-any.html
    API
    Fixed Asset API
    List of API
    Re: List of APIs
    Oracle Common Application Components API Reference Guide
    download.oracle.com/docs/cd/B25284_01/current/acrobat/jta115api.pdf
    List of APIs and open interface R12
    Re: List of APIs and open interface R12
    Regard
    Helios

  • Can I have any  documentation or links on creating the Enhancement spots ?

    Hi All ,
    Can I have any Documentation or links on creating the Enhancement spots ?
    Thanks ,
    Dharma .

    Implicit and Explicit Enhancement Spots
    http://help.sap.com/saphelp_nw70/helpdata/en/94/9cdc40132a8531e10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/09/9bf240a5668d38e10000000a155106/content.htm
    /people/thomas.weiss/blog/2006/03/15/the-new-enhancement-framework-part-2--what-else-you-need-to-know-before-building-an-enhancement
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9cd334f3-0a01-0010-d884-f56120039915
    http://www.adfahrer.com/workplace/Sem/2006-11-28-ADSIG-SBN-WalldorfABAP/MikaelAcker-EFW-4-nordic.pdf

  • Any standard BAPI available to get the project manager name or id

    Hi all,
    Any standard BAPI available to get the project manager name or id  for the particular  employee working on that project.
    Regards,
    Surjith

    I dont know abt any BAPI but this FM do the same so can be copy to RFC enabled and use the same.
    HRCM_GET_ORGUNITS_FOR_MANAGER
    Regards,
    Amit
    Reward all helpful replies.

  • Any Telephony API available in J2ME ?????

    hi,
    anybody tell me that any telephony api available in j2me???, b'cz i want to block incomings calls using j2me...........

    yes jsr_253 is for this task. But jsr_253 is under developement or released?

  • Any Public API's used for Punch Machine in OTL

    Hi,
    Could you let me know if there are any Public API's used for Punch Machine in OTL
    Thanks.

    Could you let me know if there are any Public API's used for Punch Machine in OTLPlease see these docs.
    Would like Punch In or Out Time to be Used to Worked Day Determination. [ID 1350155.1]
    Oracle Time and Labor (OTL) Implementation and User Guide, Release 12 [ID 1070930.1]
    Thanks,
    Hussein

  • How to create the log file in remote system using log4j.

    Hi,
    How to create the log file in remote system using log4j. please give me a sample code or related links.The below example i used for create the log file in remote system but it return the below exception.Is there any authandication parameter for accessing the remote path? Please help.
    public class Logging
    Logger log=null;
    FileAppender fileapp=null;
    public Logging(String classname)
    try
    log = Logger.getLogger(classname);
    String path=" [\\192.168.0.14\\c$\\LOG\\d9\\May_08_2008_log.txt|file://\\192.168.0.14\\c$\\LOG\\d9\\May_08_2008_log.txt]";
    fileapp = new FileAppender(new PatternLayout("%r [%t] %-5p %c %x - %m%n"),path, true);
    log.addAppender(fileapp);
    log.info("Logger initilized");
    }catch(Exception ex)
    ex.printStackTrace();
    java.io.FileNotFoundException: \\192.168.0.14\c$\LOG\d9\May_08_2008_log.txt (The network path was not found)
    at java.io.FileOutputStream.openAppend(Native Method)
    at java.io.FileOutputStream.<init>(Unknown Source)
    at java.io.FileOutputStream.<init>(Unknown Source)
    at org.apache.log4j.FileAppender.setFile(FileAppender.java:290)
    at org.apache.log4j.FileAppender.<init>(FileAppender.java:109)
    at annwyn.logger.BioCapLogger.<init>(Logging.java:23)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Please help.
    Thanks in advance.
    Saravanan.K

    Sorry path is missing for the above request.
    path="\\192.168.0.14\c$\LOG\d9\May_08_2008_log.txt ";
    please help.
    Saravanan.K

  • How to create the exe files for java application

    How to create the exe file for java application?
    got any software to do that?
    Thanks

    In terms of converting java applications into exe files, there are 3 schools of thought:
    1) Instead of converting it to an exe, convert it to a jar file. Jar files are more portable than exe files because they can be double-clicked on any operating system. The caveat is that a Java interpreter must be installed on the target computer for the double-clicking to work.
    http://developer.java.sun.com/developer/Books/javaprogramming/JAR/
    2) Create an exe launcher that, when double-clicked, attempts to find a Java interpreter on the local computer and launches the Java application. The exe file is still double-clickable but whether your java application runs depends on whether a Java interpretor is installed on the target computer.
    http://www.sureshotsoftware.com/exej/
    http://www.objects.com.au/products/jstart/index.jsp
    http://www.duckware.com/products/javatools.html
    http://www.ucware.com/jexec/
    http://www.rolemaker.dk/nonRoleMaker/javalauncher/
    http://www.jelude.cjb.net/
    http://thor.prohosting.com/~dfolly/java/index.html
    3) Create an exe launcher that bundles a Java interpretor. Same as above but when the exe file is double-clicked, it searches for a Java interpreter and if one is not found, it installs one on the target computer. The caveat is that the exe file would have an overhead of 10 MB in size for the interpreter.
    http://www.excelsior-usa.com/jet.html (evaluation version available)
    4) Convert the Java application into a native exe file. The caveat is that if you use Swing for your GUI, it won't be converted. Also this option is still somewhat experimental.
    Can't think of any free options right now.

  • How to create the logical file name

    Hi All,
        I have requirement where i need to post the Inventory Management data. for this i need to execute std. program RM07MMBL which is having logical file name in the selection screen. but i have placed my input file in application server.
       Can any one tell how to create the Logical filename which refers the physical path. I also tried <b>t-code SF01 & Table - FILENAMEC</b>I and found that we need to add an entry in this table but i really dont know how we have to do since this table cannot be maintained in SM30 also..
      Help Me.
      Thanks in Advance!...
    Regards,
    Ramkumar

    Hi Ram,
    Try using FILE transaction code...
    Follow these steps to create:::
    Double click on Logical file Path Definition
    Click on New Entries,
    Give Logical file Path name as Z_LOGICAL PATH and save it
    now choose this path and double click on Assignemt of Physical path to Logical path
    double click on the OS name
    Give some description and give some Physical path name from AL11 transaction and save it
    Now Double click on Logical File Name Definition,
    Click on New Entries,
    Give some logical file name: Z_LOGICAL_FILENAME
    Physical file: test
    Data Format: BIN
    Logical Path: Z_LOGICAL PATH
    Hope this helps
    Regards,
    Phani
    Message was edited by:
            Sivapuram Phani Kumar

Maybe you are looking for