API for Course, Class, Enrollment and Attendance

Dear Guru
My client has custom learning management (OAF Page) and Oracle Learning management as well.
     Enrollment process and marking attendance are currently done in custom developed pages. At the same time they update the enrollment and attendance in OLM as well.
     Now they want to integrate the custom pages to OLM, means they like to update the class, enrollments & attendance through API in OLM.
Please tel me, does OLM has API for creating Course, Class, Enrollment and Attendance.
Thanks in advance.

Please see these docs/links.
Publicly Callable Business Process APIs in OTA [ID 216766.1]
OTA.J: Is There an API in OTA / OLM That Can be Used to Create a Resource? [ID 376286.1]
Oracle Integration Repository
http://irep.oracle.com/index.html
eTRM
http://etrm.oracle.com/pls/etrm/
Thanks,
Hussein

Similar Messages

  • Documentation for abstract classes (Behavior and Binding) ?

    Hi,
    I am looking at the beautiful sample-app made by Jasper Potts at the www.fxexperience.com. ("Javafx 2.0 Audio Player")
    There some abstract classes are used, for Behavior and Binding.
    It turns out that I have difficulties finding documentation for those classes. The classes are:
    com.sun.javafx.scene.control.behavior.BehaviorBase;
    com.sun.javafx.scene.control.behavior.KeyBinding;
    Could anybody give me hint, pls, where I could find documentation for those classes.
    They are all in the JavaFx-Runtime-Jar-file, together with all the Javafx-classes.
    The Javafx-classes are pretty well documented in the meantime.
    But, allthough in the same "package", the com.sun... classes are still black boxes to me.
    Appreciate a link from somebody who knows, pls.
    Hans

    Hi Hans,
    the classes in the com.sun.* packages are internal classes, in other words they are meant to be black boxes for you. :-)
    A developer should not use these classes, because they can change anytime without warning, even between minor releases. But a developer should also not need to use the internal classes. If Jasper needed them in the demo, it is a clear indicator that something is missing in the public API.
    The classes seem to be part of the UI controls, which were already open-sourced. If you just want to play with the classes, you can study the sources. As a long term solution, I suggest to add a feature request in JIRA for the parts you are missing in the public API (http://javafx-jira.kenai.com).

  • Need API for getting List price and unit price before Order entry

    Hello,
    I have requirement of provide unit & list price before order entry (Oracle Pricing and availability form provide the same).
    Please suggest any API for the same.
    Thanks
    Akil.

    Hi,
    Thanks luko,
    I got API QP_PREQ_PUB.PRICE_REQUEST, and its return output as expected,
    Just have confusion that how many qualifiers we have to send
    Here is my sample code
    OR REPLACE PROCEDURE xx_web_get_price (
    IN     NUMBER,
    IN     NUMBER,
    IN     NUMBER,
    IN     NUMBER,
    IN     VARCHAR2,
    IN     VARCHAR2,
    IN     VARCHAR2,
    IN     NUMBER,
    OUT NUMBER,
    OUT NUMBER,
    OUT VARCHAR2,
    OUT VARCHAR2)
    QP_PREQ_GRP.LINE_TBL_TYPE;
    QP_PREQ_GRP.QUAL_TBL_TYPE;
    QP_PREQ_GRP.LINE_ATTR_TBL_TYPE;
    QP_PREQ_GRP.LINE_DETAIL_TBL_TYPE;
    QP_PREQ_GRP.LINE_DETAIL_QUAL_TBL_TYPE;
    QP_PREQ_GRP.LINE_DETAIL_ATTR_TBL_TYPE;
    QP_PREQ_GRP.RELATED_LINES_TBL_TYPE;
    QP_PREQ_GRP.CONTROL_RECORD_TYPE;
    QP_PREQ_GRP.LINE_TBL_TYPE;
    QP_PREQ_GRP.QUAL_TBL_TYPE;
    QP_PREQ_GRP.LINE_ATTR_TBL_TYPE;
    QP_PREQ_GRP.LINE_DETAIL_TBL_TYPE;
    QP_PREQ_GRP.LINE_DETAIL_QUAL_TBL_TYPE;
    QP_PREQ_GRP.LINE_DETAIL_ATTR_TBL_TYPE;
    QP_PREQ_GRP.RELATED_LINES_TBL_TYPE;
    VARCHAR2 (240);
    VARCHAR2 (240);
    QP_PREQ_GRP.QUAL_REC_TYPE;
    QP_PREQ_GRP.LINE_ATTR_REC_TYPE;
    QP_PREQ_GRP.LINE_REC_TYPE;
    QP_PREQ_GRP.LINE_DETAIL_REC_TYPE;
    QP_PREQ_GRP.LINE_DETAIL_REC_TYPE;
    QP_PREQ_GRP.RELATED_LINES_REC_TYPE;
    QP_Attr_Mapping_PUB.Contexts_Result_Tbl_Type;
    QP_Attr_Mapping_PUB.Contexts_Result_Tbl_Type;
    INTEGER;
    BINARY_INTEGER;
    VARCHAR2 (240);
    VARCHAR2 (60);
    oe_debug_pub.debug_on;
    oe_debug_pub.initialize;
    := OE_DEBUG_PUB.Set_Debug_Mode ('FILE');
    oe_Debug_pub.setdebuglevel (5);
    ('File : ' || l_file_val);
    QP_Attr_Mapping_PUB.
    (p_request_type_code           => 'ONT',
    => 'L',
    => l_pricing_contexts_Tbl,
    => l_qualifier_Contexts_Tbl);
    := 1;
    ---- Control Record
    .pricing_event := 'LINE';                           -- 'LINE';
    .calculate_flag := 'Y';    --QP_PREQ_GRP.G_SEARCH_N_CALCULATE;
    .simulation_flag := 'N';
    .source_order_amount_flag := 'Y';
    .rounding_flag := 'Q';
    .manual_discount_flag := 'Y';
    .request_type_code := 'ONT';
    .TEMP_TABLE_INSERT_FLAG := 'Y';
    ---- Line Records ---------
    .request_type_code := 'ONT';
    .line_id := 2125125; -- Order Line Id. This can be any thing for this script
    .line_Index := '1';                           -- Request Line Index
    .line_type_code := 'LINE';           -- LINE or ORDER(Summary Line)
    .pricing_effective_date := SYSDATE;    -- Pricing as of what date ?
    .active_date_first := SYSDATE;  -- Can be Ordered Date or Ship Date
    .active_date_second := SYSDATE; -- Can be Ordered Date or Ship Date
    .active_date_first_type := 'NO TYPE';                   -- ORD/SHIP
    .active_date_second_type := 'NO TYPE';                  -- ORD/SHIP
    .line_quantity := 1;                            -- Ordered Quantity
    .line_uom_code := p_uom; --'Ea';                         -- Ordered UOM Code
    .currency_code := p_currency_code; -- 'USD';                           -- Currency Code
    .price_flag := 'Y'; -- Price Flag can have 'Y' , 'N'(No pricing) , 'P'(Phase)
    (1) := line_rec;
    ------ Line Attribute Record
    .LINE_INDEX := 1;
    .PRICING_CONTEXT := 'ITEM';                               
    .PRICING_ATTRIBUTE := 'PRICING_ATTRIBUTE3';
    .PRICING_ATTR_VALUE_FROM := 'ALL';
    .VALIDATED_FLAG := 'N';
    (1) := line_attr_rec;
    .LINE_INDEX := 1;
    .PRICING_CONTEXT := 'ITEM';                                 --
    .PRICING_ATTRIBUTE := 'PRICING_ATTRIBUTE1';
    .PRICING_ATTR_VALUE_FROM := p_item_id;
    .VALIDATED_FLAG := 'N';
    (2) := line_attr_rec;
    .LINE_INDEX := 1;
    .PRICING_CONTEXT := 'ITEM';                              
    .PRICING_ATTRIBUTE := 'PRICING_ATTRIBUTE2';
    .PRICING_ATTR_VALUE_FROM := p_category_id;
    .VALIDATED_FLAG := 'N';
    (3) := line_attr_rec;
    ------ Qualifier Attribute Record
    .LINE_INDEX := 1; -- Attributes for the above line. Attributes are attached with the line index
    .QUALIFIER_CONTEXT := 'MODLIST';
    .QUALIFIER_ATTRIBUTE := 'QUALIFIER_ATTRIBUTE4';
    .QUALIFIER_ATTR_VALUE_FROM := p_price_list_id;
    .COMPARISON_OPERATOR_CODE := '=';
    .VALIDATED_FLAG := 'Y';
    (1) := qual_rec;
    .LINE_INDEX := 1;
    .QUALIFIER_CONTEXT := 'CUSTOMER';
    .QUALIFIER_ATTRIBUTE := 'QUALIFIER_ATTRIBUTE2';
    .QUALIFIER_ATTR_VALUE_FROM := p_customer_account_id;
    .COMPARISON_OPERATOR_CODE := '=';
    .VALIDATED_FLAG := 'Y';
    (2) := qual_rec;
    .LINE_INDEX := 1;
    .QUALIFIER_CONTEXT := 'CUSTOMER';
    .QUALIFIER_ATTRIBUTE := 'QUALIFIER_ATTRIBUTE40';
    .QUALIFIER_ATTR_VALUE_FROM := p_customer_category; --'INDUSTRIAL';  
    .COMPARISON_OPERATOR_CODE := '=';
    .VALIDATED_FLAG := 'Y';
    (3) := qual_rec;
    QP_PREQ_PUB.PRICE_REQUEST (p_line_tbl,
    -- Return Status Information ..
    := x_return_status_text;
    := x_return_status;
    := x_line_tbl.FIRST;
    IF I IS NOT NULL
    THEN
    := x_line_tbl (I).unit_price;
    := x_line_tbl (I).adjusted_unit_price;
    END IF;
    xx_web_get_price;                                     
    Regards,
    akil.

  • Java API for Adobe Flex(AIR and Browser)

    Hello Community,
    Sometime ago i started the project located at: : http://code.google.com/p/gwt4air/ , wich primary goal was to bring another approach on writing AIR application by providing a Java API for the AIR API. On top of that i added support for PDF and Excel generation using Java.
    I m glad to announce that  the project  will now add support for the Flex Framework
    I wrote a post about it on the main page.
    The Idea behind it is to give Java Developers a more simple way to write Flex Application by leaveraing a swing like API.
    I hope this project will be a good alternative to the MXML+ ActionScript approach and looking for people willing to join the project.
    Regards,
    Alain

    Good question, I'd like to know this myself. 4.5 has a huge number of changes since 4.0.

  • Java API for images retriveal, Create and update in New Java API for SP05 ?

    Hello Everyone,
        Does any one know Which Java API Can be used to Display an Image in main table & API to add an image to Image table and link to Main Table in new release of Java API for MDM SP05.
    Really Appreciate all help.
    Thanks
    Vinita

    Hello Everyone,
        Does any one know Which Java API Can be used to Display an Image in main table & API to add an image to Image table and link to Main Table in new release of Java API for MDM SP05.
    Really Appreciate all help.
    Thanks
    Vinita

  • API for Updating ASO.ASO_PAYMENTS and OE_ORDER_HEADERS_ALL

    Hi
    I want the API for Updating ASO_PAYMENTS and OE_ORDER_HEADERS_ALL to update the credit card holder name field.
    Plz help me .

    use OE_ORDER_PUB to update OE_ORDER_HEADERS_ALL table

  • APIs for creating Incentives headers and lines

    Hello all,
    Can any body list out the apis which are use ful for creating incentives headers and lines.
    Thank you.

    Let me get this right, you have a TOTAL at the Header Level, which when you use a LINE in the answer rather than getting the 100,000 answer you get n * 100,000 where n is the number of LINES?
    It sounds like a Business modelling issue to me, you need to have two logical datasources defined for the LOGICAL TABLE one will contain just PO_HEADERS, one will contain PO_HEADERS and PO_LINES.
    When you map the Total attribute within the LOGICAL TABLE you need to source from PO_HEADERS.TOTAL_PO, for the PO_HEADERS logical source, and then make sure you define a second value for the line using the PO_HEADERS and PO_LINES source - which will probably be QUANTITY * PRICE (or whatever the attributes are down at the line level).
    This way when you create an answer just from PO_HEADERS it will use the TOTAL_PO, when you use an answer using PO_LINES it will use the QUANTITY * PRICE (or whatever Line Total Attribute you have defined).

  • API for AR Bank, Account and Branch creation

    Hi,
    Please could you provide me the name of the API which creates AR Bank, Account and Branch creation.
    Thanks,
    Genoo

    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

  • Javadocs / APIs for Jdeveloper classes - Where?

    Probably a dumb question. Where can we find the API definitions for JDeveloper class (ie JUNavigationBar, EntityObject, EntityRow, EntityView, etc)

    Hi,
    You can access them either from within the JDeveloper help system (reference topic near the end), or by expanding the following zip file:
    {JDEV_HOME}/jdev/doc/ohj/bc4jjavadoc.zip
    Thanks,
    Brian
    JDev Team

  • API for utility classes

    Can anyone please tell me where i can find a detailed description (constructor and methods summary) for the utility classes in Java 3d. The sun's API specification doesn't give all the details. Just says what the class is for! Thanks
    L.G

    http://java.sun.com/products/java-media/3D/download.htm
    and go to
    Download Java 3D 1.3 Implementation Documentation
    download everything
    in this doc you have everything
    cyrilat last!!!!!!! was searching this for some time. Thank you very much cyril.
    L.G

  • 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

  • APIs for Country lookup values and Timezone lookup values

    Hi,
    We are developing a J2EE application for remote user management in EP.
    We want to query the lookup values for country and timezone (required when we create user). Are there any APIs that would return these values when called from our J2EE application?
    Also let me know if there are any workarounds?
    Thanks and regards,
    Pratik H. Thakkar

    Hi Guys,
    By using Java API, I got 239 countries on Windows 2K professional. Whereas in EP there are 233 countries. Also the names are not matching for eg: American Samao is missing in my local machine.
    Please help.
    Regards,
    Pratik H. Thakkar

  • Table link for Internal Class no. and Equipment no.

    Hi PM Experts,
    I am facing a problem while creating a report for Equipment characteristic values report.
    The problem is that Equipment characteristics are updated through BDC. So when I am trying to link the table EQUI and AUSP as
    EQUI_EQUNR = AUSP_OBJEK, which normally in standard systems are equal. But in our system as characteristics are updated through BDC, so AUSP_OBJEK contains some other object. So please help to get relation between equipment and Internal class number
    Regards
    San

    San,
      Creation through BDC wouldn't change the value.The value should be the same.However be aware that that you will not be able to link these two table fields directly in select statement since the field types are different. Just move the equipment number to a field of type AUSP-OBJEK and then do the select.
    Regards
    Narasimhan
    Edited by: Narasimhan Venugopal on Mar 25, 2010 10:05 AM

  • Bug in childrenNames() api for Preference class?

    Hi,
    The following code trhrows an Illegal Argument Exception.
    import java.uitl.prefs.*;
    try{
    String xyz[] = (Preferences.userRoot()).childrenNames();
    } catch (Exception e) {
    e.printStackTrace();
    The exception caught is :
    java.lang.IllegalArgumentException: String length must be a multiple of four.
    at java.util.prefs.Base64.base64ToByteArray(Base64.java:134) at java.util.prefs.Base64.altBase64ToByteArray(Base64.java:126) at java.util.prefs.FileSystemPreferences.nodeName(FileSystemPreferences.java:859) at java.util.prefs.FileSystemPreferences.access$1900(FileSystemPreferences.java:33) at java.util.prefs.FileSystemPreferences$10.run(FileSystemPreferences.java:640) at java.security.AccessController.doPrivileged(Native Method) at java.util.prefs.FileSystemPreferences.childrenNamesSpi(FileSystemPreferences.java:632) at java.util.prefs.AbstractPreferences.childrenNames(AbstractPreferences.java:699) at test.main(test.java:9)
    Is this a BUG in java?
    My requirement is that I have many NODES under the root node of user preferences(userRoot).I want the list of nodes, for futher processing.How do i retrieve them?
    Please help.
    (Also send a cc to my email:[email protected])
    Thanks,
    Prakash.

    The preferences module uses base64 for keys which have special character in them. This includes '.'
    You have a preference key it thinks is in base64 but is not. Have a look at the files in your user prefences to see if they are all okay.

  • Where can I find the javadoc api for JavaConcurrentProgram related classes

    Hello,
    I am new to Oracle EBS. I want to use Java Concurrent Program. I found a few links how to write the program. But I could not find the java doc for the classes that are used, for example, JavaConcurrentProgram, CpContext etc. Would someone please tell me where I can find the javadoc api for those classes? And also where do the corresponding jar file/files reside on the server?
    thanks.

    Hello, Ajay,
    I read both of metalinks before. One is example and the other is FAQ. None of them have link to the javadoc api for the JavaConcurrentProgram related classes. I am looking for the javadoc api for the classes related to the java concurrent program. I did find some javadoc api for class like oracle.apps.fnd.common.Context from jdeveloper. But I could not find any javadoc api for oracle.apps.fnd.cp.request.* and oracle.app.fnd.util.* etc.

Maybe you are looking for

  • Buying a new iPod,,how can I transfer all my songs over?

    My 30gb iPod which I've had since May of 2006 sad to say may be on it's last legs. It did not make it through my morning workout today, crapped out at the 15 minute mark. I think it was fully charged, the battery indicator showed a full charge when I

  • Links don't work correctly in Adobe Reader 9

    We have a PDF document in Acrobat 10 that contains links to other PDF documents.  This main document is hosted on our intranet site.  The documents that it links to are located on a network share accessed with a drive map.  When the main document is

  • My iMac intel core5 stopped working today.  Couldn't hard restart.

    Screen lights up, nothing else but the whirling icon.  Aside from taking it in to the store for service, what are my options.  I bet the hard drive that has the startup disc is fried.  I have a time capsule and another external 1T back up drive, and

  • How to install microsoft visual c++ 6.0 on macbook pro

    Hello everyone....I want to use microsoft visual C++ 6.0 on my macbook pro but it cant run on mac so please can you tell me the process of how to install it and please tell as soon as possible.. and my version is 10.6.6. Please reply soon.

  • Terminal doesn't show changes immediately

    Hi, since some days I have an annoying problem: When I type something, for example 10 x [Return], my xterm doesn't "react" immediately. Nothing happens for at least several seconds. When I switch the window and switch back the input / command is show