Is there any API or standard process to create structure from backend

Hi,
Is there any standard process to create structure from backend.I want to create 300 options for a option feature from backend.
Please let me know the API through which it can be done.
Best Regards,
AJ

AJ --
Configurator provides a "Custom Import" capability to automatically create structure. It is documented in Chapter 5 ("Populating the CZ Schema") of the Oracle Configurator Implementation Guide.
However, setting up a custom import may actually take you more time than just creating the Options manually in Configurator Developer. If the Options need to be duplicated across several Models, it may be advantageous to build them as Items in the Configurator Developer Item Master instead, and then use Populators to automatically create corresponding Options within your Option Feature(s).
Eogan

Similar Messages

  • Is there any API for pushing update patch related data from qualysguard in SCCM database?

    The problem is that, my company want to integrate SCCM with qualysguard. The qualys will scan for missing patches and will generate a patch report. From this patch report
    required data will be extracted and pushed into the SCCM database.I have sorted out the issue of extracting data from qualys, but I am stuck up at the point of pushing patch data in update repository. I tried searching for some API which could push data in
    database of SCCM, but unable to find. I thought of making my own script to run the sql query but this will ultimately screw the database of SCCM since there may be 60-70 table dependency.
    Please suggest any SCCM API which can help me to push data in its database(particularly in the tables interacting with the update repository). 

    We had looked into doing something similar, and this post is the closest we found.
    https://community.qualys.com/thread/11816
    Basically you will need a middle-man between Qualys and ConfigMgr to house the data. This may be a new database, or a whole seperate platform. I expect this could easily be done with SQL and SSRS.
    Also note, database edits to the ConfigMgr database are
    not supported  by Microsoft, I would recommend using a central system to pull data from Qualys and ConfigMgr without modifying either.
    Daniel Ratliff | http://www.PotentEngineer.com

  • Are there any APIs to create an Invoice in Oracle Payables?

    Hi,
    We have a requirement to import the invoices from the operational systems. We will be making approximately 7,000 checks a day. We need to import all these payments information into Oracle Payables as Invoices and then process the payments out of Oracle payments module. We are on EBS 12.1.1
    Were there any APIs to create the invoices directly in Payables as it comes from custom application? We could use payables open interface but as we would like to integrate the payables module with custom application it would be nice if invoice creates directly in Payables through APIs.
    Thanks,

    In the enterprise edition I am able to create all the below objects.But The job is not running after file arrival.
    Could you please me in this case also.
    BEGIN
      DBMS_SCHEDULER.create_credential(
        credential_name => 'LOCAL_CREDENTIAL',
        username        => 'upncommon',
        password        => '*******');
    END;
    BEGIN
      DBMS_SCHEDULER.create_file_watcher(
        file_watcher_name => 'test_file_watcher',
        directory_path    => '/home/upncommon/pub',
        file_name         => 'sample2.sh',
        credential_name   => 'LOCAL_CREDENTIAL',
        destination       => NULL,
        enabled           => FALSE);
    END;
    BEGIN
      DBMS_SCHEDULER.create_program(
        program_name        => 'file_watcher_test_prog',
        program_type        => 'STORED_PROCEDURE',
        program_action      => 'PROC_SCH',
        number_of_arguments => 1,
        enabled             => FALSE);
    END;
    BEGIN
      DBMS_SCHEDULER.define_metadata_argument(
        program_name       => 'file_watcher_test_prog',
        metadata_attribute => 'event_message',
        argument_position  => 1);
    END;
    BEGIN
      DBMS_SCHEDULER.create_job(
        job_name        => 'file_watcher_test_job',
        program_name    => 'file_watcher_test_prog',
        event_condition => NULL,
        queue_spec      => 'test_file_watcher',
        auto_drop       => FALSE,
        enabled         => FALSE);
    END;
    BEGIN
      DBMS_SCHEDULER.set_attribute('file_watcher_test_job','parallel_instances',TRUE);
    END;
    EXEC DBMS_SCHEDULER.enable('test_file_watcher');
    EXEC DBMS_SCHEDULER.enable('file_watcher_test_prog');
    EXEC DBMS_SCHEDULER.enable('file_watcher_test_job');

  • Stock update Update ic_whse_inv  table is there any API is avaible?

    Hi,
    I have to update the Item stock at inventory level based on the Plant.
    ic_whse_inv in this table, In APPS is there any API is available to update the base table/ suggest me is there any other way to update the stock information at inventory level.
    Thanks in advance.
    -- Pavan Kalyan --

    Hi,
    Oracle Apps 11i APIs can be found in [Oracle Integration Repository |http://irep.oracle.com/] website. In R12, Oracle Integration Repository is shipped as part of the E-Business Suite (as a responsibility).
    Please post your question in [SCM - Process Manufacturing (OPM)|http://forums.oracle.com/forums/forum.jspa?forumID=120] forum, you would probably get a better/faster response there.
    Regards,
    Hussein

  • IPhone]Is there any API like PostMessage of MS?postNotificationName notwork

    I want to send message or event without waiting for the thread to process the message or event.
    I have used NSDistributedNotificationCenter,NSNotificationQueue,NSNotificationCenter,but
    NSDistributedNotificationCenter and NSNotificationQueue don't work,while NSNotificationCenter will be waitfing for processing the message.
    Any one could tell me which API to user? Thanks in advance!
    code for NSDistributedNotificationCenter as followings:
                   [[NSDistributedNotificationCenter defaultCenter] addObserver:self
                selector:@selector(finishWorkHandler:) name: @"BAIDU_GOOGE_BEST"
                 object: nil];
                 printf("try to send message\n");
                   NSMutableDictionary* info = [NSMutableDictionary dictionary];
                   [info setObject: @"pig" forKey: @"Pig"];
                   [[NSDistributedNotificationCenter defaultCenter] postNotificationName: @"BAIDU_GOOGE_BEST" object:nil  userInfo: info deliverImmediately: YES];
    -(void)finishWorkHandler:(NSNotification*)note
        NSLog(@"NSNotificationCenter name: %@", [note name]);
        NSLog(@"NSNotificationCenter object: %@", [note object]);
        // unregister
       // [[NSNotificationCenter defaultCenter] removeObserver:self];
    Message was edited by: coolhome

    Hi,
    I am making an stand-alone application that needs to
    connect to a database, create the necessary tables
    (if they are not already present ) and then add,
    remove update data from this database.Oracle DBAs will not appreciate your app attempting to create databases/entities.
    >
    The problem is that our customers may be using many
    different DBMS such as Oracle, MySQL or MS SQL
    Server. I don�t want to make them use any specific
    database so the application should adapt to the DBMS
    installed in the customer's system.
    Then performance must not be your goal at least in terms of data processing. Because attempting to process data off box versus on box with a database will, in the vast majority of cases, be magnitudes of order slower.
    My question is, is there any API or framework or
    something that would make the process of using
    different JDBC drivers invisible or easier for me to
    develop? Any advice would be welcomed.
    Hibernate will probably make it easy as long as your don't use any pass through SQL (and there goes performance again.)
    All of the databases you named have either free or very low cost devoper editions which you can use for testing. (Actually I think they are all free.)
    I would also like to know if there is any way to find
    out if a SQL statement will work properly in a set of
    different DBMSs.
    Not without testing.
    It is almost guaranteed that schema creations will not (like creating a table.)

  • Is There any API in receivables payment will made against closed invoices ?

    Hi ALL,
    i have requirement as below.
    i am doing AR Invoice Data Migration for Instance 11.5.5 (as a Source Instance) to the new instance R12 (as a target instance).
    Both open and closed invoices will have to be migrated from 11.5.5 to R12 to provide the drill down facility for audit purpose.
    To meet the above requirement all the open and closed invoice will be picked up from 11.5.5 ; and imported into R12..
    Subsequently, full payment will be made in R12 against all closed invoices in 11.5.5 to close those invoices by using any APIs?
    can some one explain is there any API in receivables payment will made against closed invoices.
    Thanks,
    VSR.

    Hi,
    Can you be clear on your question: You want any API to make payment against closed invoices?
    To me, You are making things complex. We can achieve the Migration of Closed invoices using following two procedures:
    Procedure: 1
    Ask Functional Guy to create a Transaction Type 'Closed Invoices' with Open to Receivables Flag not checked. +(You can uncheck Post to GL flag also, if required depending on your migration strategy)+. Status at Transaction Type if taken as 'Closed' it will be appropriate.
    Invoices migrated using this Transaction Type shall not be shown as Outstanding but will be useful for Audit.
    Procedure: 2
    Consider the amount due Original of Closed Invoices and migrate them with the amount as Amount due remaining.
    While migrating populate Receipt Method,Payment Method and Instruments useful for Automatic Receipts.
    Once Create Automatic Receipts Program is run, it will close all these invoices. Note: We require dummy bank here which points to a Clearing account.
    Automatic Receipts program is also an API.
    In the above 2 ways, we are acheiving the Goal by using Functional knowledge rather than Technical. And I think following Functional way is better and less time consuming.
    Please discuss with your Functional consultant if required. You can succeed.
    Regards,
    Sridhar

  • Is there any API to add and remove certs from acrobat trusted identities?

    Is there any API to add and remove certs from acrobat trusted identities? if this is not possible any work around for this. Please help me

    No, there is not – that would be a security concern.

  • Is there any API for connecting web server and iphone apps

    Hi,
    I have to retrieve data from Web Server and display in my iphone apps. I want to know that is there any API through which i can connect my apps to server and get data.
    One way i know that use NSURLConnection and get XML response and prase it and use it like that.
    So anyone know this?
    Thanks.

    NSURLConnection is straightforward to use. In the mobile world, and especially if you intend to use certain google APIs, I would rather tend to use JSON instead of XML. A great JSON parser for objective-c is here: http://code.google.com/p/json-framework/
    Cheers,
    Marcelo

  • Is there any API for performing Assembly Completion with LPN

    Hi,
    Is there any API available for performing Assembly Completion with LPN..??
    Thanks and Regards,
    Ramnish.

    We had looked into doing something similar, and this post is the closest we found.
    https://community.qualys.com/thread/11816
    Basically you will need a middle-man between Qualys and ConfigMgr to house the data. This may be a new database, or a whole seperate platform. I expect this could easily be done with SQL and SSRS.
    Also note, database edits to the ConfigMgr database are
    not supported  by Microsoft, I would recommend using a central system to pull data from Qualys and ConfigMgr without modifying either.
    Daniel Ratliff | http://www.PotentEngineer.com

  • Is there any API's to create requisitions?

    Hi
    Is there any API's to create requisitions?
    Appreciated quick reply
    Regards,
    Ramesh.

    I am currently using a Sinetfactory thirdparty package from JScape for the Secure FTP functionality(FTP over SSH). But Sinetfactory package tranfer rate is much slower than the manual sftp(command-line run in linux server for manual ftp using ssh).
    Since it is very slower than ordinary sftp(ftp over ssh), I thought of using other thirdparty FTP package which supports FTP using ssh port. Can anyone please suggest me a thirdparty package which will has the sftp functionality and with better transfer rate.

  • Is there any API

    Hi,
    Is there any API to update schedule_start_date and schedule_finish_date for workplan in Projects
    Please let me know even is there any sample code also?

    Pl see if MOS Doc 1056582.1 (Is There An API To Automatically Update Workplan Versioning?) is relevant
    HTH
    Srini

  • Is there any API to insert/update RA_TERRITORIES table

    Hi
    I have to create diff territory combinations for new customer creation.
    Is there any API for inserting records to RA_TERRITORIES table.
    I did n,t find any thing related to this.
    Thanks&Regards
    RS

    Hi,
    Thanks for the reply,
    But JTF_TERRITORY_PUB is not updating ra_territories table.
    I think its not useful for my purpose.

  • Is there any API available to read drm files in ios devices?

    Hi,
    I am ios developer and trying to read DRM files using my app.
    I want to know is there any API available for the same.
    Thanks in Advance.

    Hi Prathap,
    No, there is no Java API specific for RDF functionality available. However, Java client applications can use JDBC to access the RDF store. A partially relevant post is at How do you query Oracle RDF database using Java program? . The JDBC documentation will have detailed documentation on using JDBC.
    Code snippets for one way of accessing SDO_RDF_MATCH through Java is below:
    <..........>
    sbStmt.append("select * from TABLE( ")
    .append(" SDO_RDF_MATCH('(?S ?P ?O)',")
    .append(" SDO_RDF_Models('")
    .append( <model_name> )
    .append("'),")
    .append("null,null,null))")
    .append(" where rownum <= ")
    .append(iNumRows)
    ResultSet rs = stmt.executeQuery(sbStmt.toString());
    while (rs.next()) {
    System.out.print("\n");
    System.out.print(rs.getString("S"));
    System.out.print(" (");
    System.out.print(rs.getString("S$RDFVTYP"));
    System.out.print(") ");
    System.out.print(", ");
    System.out.print(rs.getString("P"));
    System.out.print(" (");
    System.out.print(rs.getString("P$RDFVTYP"));
    System.out.print(") ");
    System.out.print(", ");
    System.out.print(rs.getString("O"));
    System.out.print(" (");
    System.out.print(rs.getString("O$RDFVTYP"));
    System.out.print(") ");
    <............>
    <...... handling CLOB values that are returned ....>
    // read CLOB if applicable
    Reader reader = null;
    try {
    CLOB clob = ((OracleResultSet) rs).getCLOB("O$RDFCLOB");
    if (clob == null) {
    System.out.print("not a long literal ");
    else {
    reader = clob.getCharacterStream();
    char[] buffer = new char[1024];
    // reading 1K at a time (just a demo)
    int iLength = reader.read(buffer);
    for (int i = 0; i < iLength; i++) {
    System.out.print(buffer);
    System.out.print(" ...");
    finally {
    if (reader != null) reader.close();
    <..........>

  • How to get Client IP address in oracle apps. Are there any API's.

    hi,
    I have one query
    ->How to get Client IP address in oracle apps. Are there any API's.
    regards,
    krishna

    Hi,
    this is very usefull
    however are this data stored on the db or is only a temporary view?
    I would like to have to keep track of all client connected.
    Thanx a lot

  • Is there any API to update Fixed Asset minor category ?

    Hi,
    My client need to update the minor category of 3000 Assets.
    Is there any API to mass update Fixed Asset minor category ?
    Thanks,
    Joe

    Hi Joe,
    You could use the reclass API : FA_RECLASS_PUB.DO_RECLASS
    Based on the new minor category, derive the correct asset category and pass it to this API along with other required parameters.
    Regards,
    Mukul

Maybe you are looking for