ODP API documentation and sample code

I am looking to write a custom program as a part of my client requirement to find the delta changes from an extractor. I heard that latest SAP NetWeaver EhP contains it. I beleive this ODP API is some Java interface and would be useful for me to use in my custom program.
How can I make use of this ODP API? Is there any documentation and code samples available.

I was able to find some API called Data Federator Facade with in the ABAP Code. Is this what it is?

Similar Messages

  • Documentation and Samples for Web Intelligence Extension Points url.

    I have been trying to find documentation and samples for Web Intelligence Extension Points. Can someone give me the link ?
    The files are
    1.)  webi_dhtml_EP_samples.zip
    2.) xi3-2_web_dhtml_customization_and_integration_ext_points_en.pdf

    Hello,
    I'm trying to find the API documentation and samples for Web Intelligence Extension Points for BO XI 3.1.
    The downloadable ZIP is no longer available at the URL Simply customize your WebIntelligence User Interface
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/80f21e8b-711d-2c10-6f9a-ae191653f848
    Anyone could you give me a new link for this feature ?
    Thank in advance.
    Sincerely,

  • Need help with API and sample code for checking a user's rights on a folder

    Hi All,
    I am working on an UCM integration where user supplies a folderpath (ucm folders), and a file is later uploaded to this location.
    Since a user can provide a folderpath where he has only Read Access or no access at all, we are trying to work out a way to pre-check his permissions on the folder.
    Since we have Entity Security enabled, we have 5 security fields to rely on Account, Security Group, User Access List, Group Access List, Role Access List.
    Writing custom code for this security check is second on our agenda.
    Firstly, we wish to know the API and sample code that typically performs this Security Check in UCM.
    We could find intradoc.shared.SecurityUtils which has methods to check security on SGroup and Account, but we couldn't find anything for:
    1) Overall security check
    2) ACL security check on top of sgroup and account security check

    Any ideas anyone?!
    I am looking forward to some pointers here. :(

  • KIMYONG :  API ( FND_SUBMIT,  FND_REQUEST) Sample Code 소개

    Purpose
    Extension 개발자들이 간혹 요청하는 Standard API (FND_SUBMIT, FND_REQUEST)의 sample code입니다.
    Configuring the Script
    FND_SUBMIT test procedure and sample code
    Creates a procedure called fnd_submit_test that can be registered and run as a concurrent program.
    This procedure will use the FND_SUBMIT API to submit a request set. (Function Security Reports - This request set should be seeded, if it is not available the values in the script may need to be changed.) The procedure will then place itself in a Paused status until the request set completes.
    Running the Script
    1. Install this procedure in the APPS schema.
    2. Register the procedure as a concurrent program
    Caution
    This script is provided for educational purposes only and not supported by Oracle Support Services. It has been tested internally, however, and works as documented. We do not guarantee that it will work for you, so be sure to test it in your environment before relying on it.
    Proofread this script before using it! Due to the differences in the way text editors, e-mail packages and operating systems handle text formatting (spaces, tabs and carriage returns), this script may not be in an executable state when you first receive it. Check over the script to ensure that errors of this type are corrected.
    Script
    REM +==========================================================================
    REM | Concurrent Processing Sample Code
    REM |
    REM | FILE:
    REM | fnd_submit_test.pls
    REM |
    REM | REVISION:
    REM | $Id$
    REM |
    REM | DESCRIPTION:
    REM | FND_SUBMIT test procedure and sample code
    REM | Creates a procedure called fnd_submit_test that can be registered
    REM | and run as a concurrent program.
    REM | This procedure will use the FND_SUBMIT API to submit a request set.
    REM | (Function Security Reports - This request set should be seeded, if
    REM | it is not available the values in the script may need to be changed.)
    REM | The procedure will then place itself in a Paused status until the
    REM | request set completes.
    REM |
    REM | INSTRUCTIONS:
    REM |
    REM | 1. Install this procedure in the APPS schema.
    REM |
    REM | 2. Register the procedure as a concurrent program
    REM |
    REM |
    REM +==========================================================================
    whenever sqlerror exit failure rollback;
    create or replace procedure fnd_submit_test (errbuf out varchar2,
    retcode out varchar2) as
    success boolean;
    req_id number;
    req_data varchar2(10);
    srs_failed exception;
    submitprog_failed exception;
    submitset_failed exception;
    begin
    -- Use FND_FILE to output messages at each stage
    fnd_file.put_line(fnd_file.log, 'Starting test...');
    -- Read fnd_conc_global.request_data, if available then we have been
    -- reawakened after the request set has completed.
    -- If so, exit.
    req_data := fnd_conc_global.request_data;
    if (req_data is not null) then
    errbuf := 'Done!';
    retcode := 0 ;
    return;
    end if;
    -- Step 1 - call set_request_set
    fnd_file.put_line(fnd_file.log, 'Calling set_request_set...');
    success := fnd_submit.set_request_set('FND', 'FNDRSSUB43');
    if ( not success ) then
    raise srs_failed;
    end if;
    fnd_file.put_line(fnd_file.log, 'Calling submit program first time...');
    -- Step 2 - call submit program for each program in the set
    success := fnd_submit.submit_program('FND','FNDMNFUN', 'STAGE10', 'System Administrator', chr(0));
    if ( not success ) then
    raise submitprog_failed;
    end if;
    fnd_file.put_line(fnd_file.log, 'Calling submit program second time...');
    success := fnd_submit.submit_program('FND','FNDMNMNU', 'STAGE10', 'System Administrator', chr(0));
    if ( not success ) then
    raise submitprog_failed;
    end if;
    fnd_file.put_line(fnd_file.log, 'Calling submit program third time...');
    success := fnd_submit.submit_program('FND','FNDMNNAV', 'STAGE10', 'System Administrator', chr(0));
    if ( not success ) then
    raise submitprog_failed;
    end if;
    -- Step 3 - call submit_set
    fnd_file.put_line(fnd_file.log, 'Calling submit_set...');
    req_id := fnd_submit.submit_set(null,true);
    if (req_id = 0 ) then
    raise submitset_failed;
    end if;
    fnd_file.put_line(fnd_file.log, 'Finished.');
    -- Set conc_status to PAUSED, set request_data to 1 and exit
    fnd_conc_global.set_req_globals(conc_status => 'PAUSED', request_data => '1') ;
    errbuf := 'Request set submitted. id = ' || req_id;
    retcode := 0;
    exception
    when srs_failed then
    errbuf := 'Call to set_request_set failed: ' || fnd_message.get;
    retcode := 2;
    fnd_file.put_line(fnd_file.log, errbuf);
    when submitprog_failed then
    errbuf := 'Call to submit_program failed: ' || fnd_message.get;
    retcode := 2;
    fnd_file.put_line(fnd_file.log, errbuf);
    when submitset_failed then
    errbuf := 'Call to submit_set failed: ' || fnd_message.get;
    retcode := 2;
    fnd_file.put_line(fnd_file.log, errbuf);
    when others then
    errbuf := 'Request set submission failed - unknown error: ' || sqlerrm;
    retcode := 2;
    fnd_file.put_line(fnd_file.log, errbuf);
    end;
    rem ===================================================================
    commit;
    exit;
    Reference
    자세한 사항은 Note 221542.1 를 참고하세요.

    Not sure about that particular option, but in general you pass in pairs - an example from code I didn't write but maintain (so if this is the worst possible way, I apologize)
    proj_req_id6 := FND_REQUEST.SUBMIT_REQUEST('SQLGL', 'XXXX_GLGENLED_PDF',
                              'XXXX General Ledger',
                              '',dummy_default,
                              'P_SET_OF_BOOKS_ID='||v_rep_cmp.set_of_books_id,'P_CHART_OF_ACCOUNTS_ID=101',
                              'P_KIND=L','P_CURRENCY_CODE='||v_rep_cmp.currency_code,
                              'P_ACTUAL_FLAG=A','P_BUD_ENC_TYPE_ID=100',
                              'P_START_PERIOD='||'&1','P_END_PERIOD='||'&1',
                              'P_MIN_FLEX='||v_min_flex||'.'||v_emp_cost_center.COST_CENTER||'.00000.000.000.000.00',
                              'P_MAX_FLEX='||v_max_flex||'.'||v_emp_cost_center.COST_CENTER||'.99999.999.999.ZZZ.99',
                              'P_PAGE_SIZE=180',chr(0),'',
                              '','','','','','','','','','');You see where I have option pairs - for example
    'P_ACTUAL_FLAG=A'Tells my program that the value for parameter P_ACTUAL_FLAG is A
    This example is from a SQL*Plus script, hence the &1 for the value substitutions.
    Hope that helps

  • DBMS_LDAP package documentation and samples

    Where can I find the DBMS_LDAP package documentation and samples to use it to connect to OID from pl/sql blocks.
    TIA,
    Nishant

    I have been successful using the PL/SQL DBMS_LDAP utilities and enhancing the included examples to bulk create portal users as well as adding them to a default portal group as outlined in the DBMS_LDAP demo examples (search.sql, trigger.sql, empdata.sql).
    Using this PL/SQL trigger on the EMP table, I can add, delete or modify various user entries. However, while I can add a user to a default portal group, I have been unsuccessful in deleting a user from a group as well as modifying a users default group by deleting their "uniquemember" entry from one group and adding it to another using the DBMS_LDAP procedures.
    Has anyone deleted a user from an existing group and how is this done programatically using the DBMS_LDAP utilities? Also, but less important, is there a way to programmatically modify a user from one portal group to another?
    I don't necessarily want the code - just the method of doing this. Do I have to read in all of the 'uniquemember' attributes from the group (via DBMS_LDAP.populate_mod_array, for example), then manipulate the list and write it back. Or, is there a function that will allow me to delete or modify an entry in the 'uniquemember' attribute.
    Regards,
    Edward Girard

  • Need case studies and sample code for all concept of ABAP

    Hello,
           Can anybody provide me the case studies and sample code for learning different concepts in ABAP programming like: module pool, ALV, interactive reports, BDC, Smart Form etc.? As I want to do some practical application by which i can learn more.
    Thanks & Regards,
    Vikram Rawal

    In this link You can find Step by Step Scren Shot document :
    http://www.201interviewquestions.com/docs/User%20exits.ppt
    http://erpgenie.com/abaptips/component/option,com_docman/task,doc_details/gid,27/
    <b>
    Reprots</b>
    http://www.sapgenie.com/abap/reports.htm
    http://www.allsaplinks.com/material.html
    http://www.sapdevelopment.co.uk/reporting/reportinghome.htm
    http://www.sapfans.com/forums/viewtopic.php?t=58286
    http://www.sapfans.com/forums/viewtopic.php?t=76490
    http://www.sapfans.com/forums/viewtopic.php?t=20591
    http://www.sapfans.com/forums/viewtopic.php?t=66305 - this one discusses which way should you use - ABAP Objects calls or simple function modules.
    <b>Dictionary</b>
    http://sapabap.iespana.es/sapabap/manuales/learnabap/
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21eb6e446011d189700000e8322d00/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ea31446011d189700000e8322d00/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCDWBDIC/BCDWBDIC.pdf
    <b>ABAP objects</b>
    Please check this online document (starting page 1291).
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCABA/BCABA.pdf
    Also check this links as well.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
    http://www.sapgenie.com/abap/OO/
    http://www.futureobjects.de/content/intro_oo_e.html
    http://www.sap-img.com/abap/business-add-in-you-need-to-understand-abap-oo-interface-concept.htm
    /people/ravikumar.allampallam/blog/2005/02/11/abap-oo-in-action
    <b>
    SAPScripts</b>
    http://esnips.com/doc/1ff9f8e8-0a4c-42a7-8819-6e3ff9e7ab44/sapscripts.pdf
    http://esnips.com/doc/1e487f0c-8009-4ae1-9f9c-c07bd953dbfa/script-command.pdf
    http://esnips.com/doc/64d4eccb-e09b-48e1-9be9-e2818d73f074/faqss.pdf
    http://esnips.com/doc/cb7e39b4-3161-437f-bfc6-21e6a50e1b39/sscript.pdf
    http://esnips.com/doc/fced4d36-ba52-4df9-ab35-b3d194830bbf/symbols-in-scripts.pdf
    http://esnips.com/doc/b57e8989-ccf0-40d0-8992-8183be831030/sapscript-how-to-calculate-totals-and-subtotals.htm
    SAP SCRIPT FIELDS
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/d1/8033ea454211d189710000e8322d00/content.htm
    scripts easy material
    http://www.allsaplinks.com/sap_script_made_easy.html
    Check these step-by-step links
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/ccab6730-0501-0010-ee84-de050a6cc287
    https://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/8fd773b3-0301-0010-eabe-82149bcc292e
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/3c5d9ae3-0501-0010-0090-bdfb2d458985
    <b>Smartforms material</b>
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    check most imp link
    http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html
    step by step good ex link is....
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    <b>
    BAPI</b>
    http://help.sap.com/saphelp_46c/helpdata/en/9b/417f07ee2211d1ad14080009b0fb56/frameset.htm
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    Checkout !!
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    http://techrepublic.com.com/5100-6329-1051160.html#
    http://www.sap-img.com/bapi.htm
    http://www.sap-img.com/abap/bapi-conventions.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sapgenie.com/abap/bapi/example.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE8/BCFESDE8.pdf
    <b>List of all BAPIs</b>
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sappoint.com/abap/bapiprg.pdf
    http://www.sappoint.com/abap/bapiactx.pdf
    http://www.sappoint.com/abap/bapilst.pdf
    http://www.sappoint.com/abap/bapiexer.pdf
    http://service.sap.com/ale
    http://service.sap.com/bapi
    http://www.planetsap.com/Bapi_main_page.htm
    http://www.topxml.com/sap/sap_idoc_xml.asp
    http://www.sapdevelopment.co.uk/
    http://www.sapdevelopment.co.uk/java/jco/bapi_jco.pdf
    <b>ALV programs.</b>
    http://www.geocities.com/mpioud/Abap_programs.html
    . How do I program double click in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=11601
    http://www.sapfans.com/forums/viewtopic.php?t=23010
    How can I use ALV for reports that are going to be run in background?
    http://www.sapfans.com/forums/viewtopic.php?t=83243
    http://www.sapfans.com/forums/viewtopic.php?t=19224
    <b>ALV</b>
    http://www.sapfans.com/forums/viewtopic.php?t=58286
    http://www.sapfans.com/forums/viewtopic.php?t=76490
    http://www.sapfans.com/forums/viewtopic.php?t=20591
    http://www.sapfans.com/forums/viewtopic.php?t=66305 - http://www.sapgenie.com/abap/reports.htm
    http://www.allsaplinks.com/material.html
    http://www.sapdevelopment.co.uk/reporting/reportinghome.htm
    <b>Top-of-page in ALV</b>
    selection-screen and top-of-page in ALV
    <b>ALV Group Heading</b>
    http://www.sap-img.com/fu037.htm
    <b>ALV</b>
    http://www.geocities.com/mpioud/Abap_programs.html
    <b>
    RFC Destination</b>
    Re: SM59
    <b>
    ALE/ IDOC</b>http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.sappoint.com/abap/ale.pdf
    http://www.sappoint.com/abap/ale2.pdf
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    http://www.allsaplinks.com/idoc_sample.html
    http://www.sappoint.com/abap.html
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.allsaplinks.com/idoc_sample.html
    <b>Table Control</b>
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/table%20control%20in%20abap.pdf
    <b>
    ABAP transactions</b>
    http://www.easymarketplace.de/transactions-a-e.php?Area=4soi&name=volker&pw=vg&
    Regards,
    Priyanka.

  • Need Of SDK and Sample codes

    I'm in need of SDK and sample codes to connect my HP Deskjet 3525 Printer from my own application (Android). Any help from your side???
    This question was solved.
    View Solution.

    Hi Yokesh,
    I would suggest you post your question on Android Forums. HP supports printing from Cloud Print,  Eprint and a few others but we would not have any support options for an app you have created. Maybe you could contact the platform company for assistance. For example if you were using Apps maker store you could contact them.
    Best of luck.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • I want to an API or any sample code to make business calls to J.D.Edwards

    hi,
    i want to make use of J.D.Edwards from my java GUI application, by using my Application Interface i want to make use of Java Calls to the the J.D.Edwards. is any one is having API or Sample code fro this?
    plz help me out Regarding this.

    hi,
    i hav searched through google also
    i did not get anything regarding this, what all got apart from this is,
    in market we are having 3rd party onnectors for this.
    but i dotn use any of them.
    can any body help me regarding this plz.

  • API : EventHandler and ugly code

    Hello,
    I'm playing with javafx2 api since I 've been disapointed by flex and silverlight api.
    My reference is forever the swing api and I want to know how to write beautiful code which will respect all best practices (pmd,checkstyle, findbugs, javancss)
    The problem is the genericsable class EventHandler ...
    In swing I can have a class that implements MouseListener and ActionListener interface, So if my control implements these interfaces I can have an actionPerformed, mouseMoved .... methods which will process all actions.
    public class MyClass extends JPanel implements ActionListener, MouseListener {
    mybutton.addActionListener(this);
    mycontrol.addMouseListener(this);
    public void actionPerformed(ActionEvent e){
        if(e.getSource.equals(mybutton)){
             // mybutton stuff
    public void mouseMoved(MouseEvent e){
        if(e.getSource.equals(mycontrol)){
             // mycontrol stuff
    }The JavaFX2 API use the same approach but since the eventHandler use a custom generics type, I must implements EventHandler (without type <XX>) and do a lot of cast everywhere to fill the gap.
    mybutton.setOnAction((EventHandler)this);then
    public class ControlPanel extends Region implements EventHandler<Event> {
    bt1.setOnAction((EventHandler)this);
    bt2.setOnAction((EventHandler)this);
    progressbar.setOnMouseClicked(this);
        public void handle(Event event) {
            if(MouseEvent.class.equals(event.getClass())){
                f(event.getSource().equals(progressbar)){
                     //stuff;
            }else if(ActionEvent.class.equals(event.getClass())){
                if(event.getSource().equals(bt1)){
                     //stuff;
                }else if(event.getSource().equals(bt2)){
                    //stuff;
        }IN fact with javafx2 it's more difficult to write code not using anonymous class which will be a very big problem for software maintainability and source code quality.
    Moreover the SetONXXX method which have a Runnable argument need anonymous class or dedicated inner class to manage threading priorities and I don't see any solution to make it cleaner.
    It would be nicer to use a custom Runnable class which have some fields used to identify the source and the kind of event.
    At the moment, a javafx2 developers have 2 options :
    _ Write a lot of anonymous class anywhere in its source code, the class will be unreadable because the code is not organized (components initialization, action processes, business logic)
    _ create a huge amount of dedicated class (runnable and eventhandler) which all reference the main control ...
    JavaFx2 code will be more complex and can be less adopted or misloved ....
    What do you think about this ?
    Edited by: Seb on 27 août 2011 00:15

    I do like a good architecture debate, everyone gets so passionate! :)
    Pure OO or otherwise, I feel your pain Sebastian: inner classes can be painful to work with. As mentioned above, (IMHO) this is mostly a result of Java's syntax being a little clunky in this area. What you really want to do is pass in a method pointer like this:
    void buildView() {
        Button myButtton = new Button();
        myButton.addActionHandler(onMyButtonAction);
    void onMyButtonAction(ActionEvent event) {
        // do custom event handling
    } But obviously Java doesn't support this at a language level. It does support it via Reflection however and in Swing (and now in JFX) I've often created a helper class that would let me bind the action to the method via Reflection (using inner classes internally - but this is all hidden under the helper).
    void buildView() {
        Button myButtton = new Button();
        bindAction(myButton.onActionProperty(), this, "onMyButtonAction");
    void onMyButtonAction(ActionEvent event) {
        // do custom event handling
    } Your code is now much simpler and more readable but the big (BIG!) drawback is that you lose compiler safety - it is up to you to decide whether this is worth it or not (I'm sure purists will passionately hate this idea but I'm all for 'developers choice').
    A simple implementation of the helper code would look something like:
    public void bindAction(ObjectProperty<EventHandler<ActionEvent>> onActionProperty, final Object target, final String methodName)
        final Method method = target.getClass().getMethod(methodName, EventHandler.class);
        onActionProperty.set(new EventHandler<ActionEvent>()
            public void handle(ActionEvent event)
                method.invoke(target, event);
    }I've left out exception handling for simplicity. You could obviously add a bindMouseClick method, and bindXYZ methods for all the other events that you want to handle.
    There's also an [url http://download.oracle.com/javafx/2.0/fxml_get_started/jfxpub-fxml_get_started.htm]emerging option with FXML, that does similar action to method binding. When you define your button in the XML you add a onAction="#myButtonHandlerMethod" and the FXML binder will bind this automagically to your method (I imagine using reflection like I have done above). It's still pretty raw and you have to build your UI layout in XML (a plus in some people's eyes, a negative in others) but it's worth a look. I haven't seen Mouse handler stuff in there yet but if it's not there yet, I imagine it will be added before too long.
    Like all free advice, take it or leave it :)
    Enjoy,
    zonski

  • IPhone: Where to find good Documentation and Samples for Auto-Rotate?

    So I'm starting to get into the auto rotation features for my iPhone apps. I've spent a couple hours looking for some apple documentation and searching online, but I'm not finding any "definitive" guide to discuss the process. Any recommendations would be great!
    Specifically, I'm trying to learn about the following:
    - I have already implemented auto-rotation, but how do I setup my view so when rotated, it adjust the UI to take advantage of landscape mode. (i.e. I want to add extra features, and re-position some things)
    - I also would like to the option within a couple views, that when rotated, goes to an entirely new view.
    Thanks in advance!

    I generally find that vector drawing programs are better for drawing toolbar icons and the like, as vector drawings are easier to tweak and adjust later. I've had great success with VectorDesigner in my own apps; it has a shallow learning curve and a solid basic feature set, although it can be quirky at times. (It also doesn't play all that well with certain development tools: don't try to add VectorDesigner files to Xcode projects, and make sure you zip them before you add them to a Subversion or CVS repository. VectorDesigner files are packages--like application bundles--and those tools don't play well with packages.)
    If you want to go a little higher end, Illustrator is the Photoshop of vector drawing, but like Photoshop you'll probably find it very difficult to start out with.
    You'll also need a raster graphics editor to tweak exported images. I use Pixelmator for this, but Photoshop will work just as well.

  • OCX AND SAMPLE CODES

    Where can i get Oracle OCX controls or its information or sample
    code. Is there any site for it. I couldn't find anything useful
    on Oracle home.
    null

    The Oracle OCX pack comes on the Oracle Developer CD although
    I'm not sure which release it comes with (5 or 6).
    Faisal I Sheikh (guest) wrote:
    : Where can i get Oracle OCX controls or its information or
    sample
    : code. Is there any site for it. I couldn't find anything
    useful
    : on Oracle home.
    null

  • Public Beta?  Documentation?  API Reference?  Sample Code?

    Dear Adobe:
    Is this beta just for testing existing code to see if the new player version breaks our existing code?
    Or is this beta intended as a public beta to allow developers to use the new capabilities in FP11/AIR3?
    Based on the release announcement stating "Introduces features" it seemed like it was intended to allow all interested developers to access the new APIs.  If this is true, can an Adobe employee explain what a "beta" of FP11/AIR3 means without documentation or code samples?  Or, if docs and/or samples are public can you reply on this post with the links?
    I do see the link on the Features page for "Stage3D APIs (`Molehill`) for Flash Player".  I would very much appreciate if you could add a similar link for a page with details on "H.264/AVC SW Encoding for Camera"  :-)
    Best regards from the lead on a loyal developer team chomping at the bit to build great solutions using the new FP11/AIR3 capabilities.
    Best regards,
    g
    P.S. Following are related, prior and still unanswered posts:
    http://forums.adobe.com/thread/877323
    http://forums.adobe.com/thread/877452

    Here's what I've heard from one of our community managers regarding stage3d:
    "Thibault Imbert posted a discussion of what Stage3D is all about back then at http://www.bytearray.org/?p=2555. NJ also posted a more beginner level discussion of what it is all about at http://www.rictus.com/muchado/2011/02/28/demystifying-molehill-part-1/. Assuming they actually do intend to use these low level API’s (which I doubt most people will want to or have the ability even to do so), a site called iFlash3D covered it in great detail in a two part series discussing the ins-and-outs of AGAL (http://iflash3d.com/shaders/my-name-is-agal-i-come-from-adobe-1/ and http://iflash3d.com/shaders/my-name-is-agal-i-come-from-adobe-2/) as well as a reference card for AGAL http://iflash3d.com/site/agal-reference-card-available/. Or another that discusses how to manage cameras in a 3D space http://iflash3d.com/flash3d-coding/flash-3d-molehill-cameras/. Beyond those sites, most people aren’t discussing the details of the Stage3D api’s for a general audience that I have found."
    I asked about the other new features (audio compression, surround sound, video encoding, etc.) but they hadn't seen anything created yet.  However, they are interested in getting content developed for these areas and will work on getting that done.  Look for third party resources and ADC updates in the near future.
    Thanks,
    Chris

  • Deatil Help required on  OVS and Sample code

    Hi All,
    I am not able to understand the OVS(Object Value Selector) which is given in the help.
    If any one who worked on this, please give a sample  source code or give detail help( Step by Step).
    Thanks
    Ravi

    Ravi,
    Did you check <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d">web Dynpro Sample Applications and Tutorials</a>?
    Namely, <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/5dcbe990-0201-0010-2c99-a2bc9e61acfc">advanced Value Help: Object Value Selector (9)</a>.
    Valery Sialev
    EPAM Systems
    http://www.NetWeaverTeam.com

  • Where can I get documentation or sample code for writing C++ RFC program?

    Hi all. I am trying to write a UNICODE C++ program that uses standard C++ classes. In addition, the header files that were generated by genh contain C++ class declarations from templates. The class that the template is based on is CAbapType.  I have several questions:
    1.  Where are the sapstring.hpp sapiostrm.hpp, etc... classes that are documented in the document sapucdoc.htm?  These are supposedly the header files that can be used to get access to C++ standard library functionality.
    2. Where is CAbapType defined? I am trying to use classes instead of the structures that were defined in the header file, but without the definition of CAbapType, my code won't compile.  The header file I'm referring to was generated by genh.
    3. I was able to write a C program that uses the structures define in header files generated by genh.  But when I attempt to compile the same code with the C++ compiler, I get all sorts of errors about how the use of cU is deprecated.  cU is the macor used to make Unicode coding easier. Anybody have any clues on how to solve that?  Thanks.
    Also, if there is any good documentation on how to write a C++ RFC program, can you please point me to it. So far, I have 1 RFC SDK document that is all about writing C code, but nothing abuot writing C++ code.  Thanks.

    I have the same problem. All of the xmp examples and comments in the SDK are great and all, but as far as I can tell, they only show you how to read from or write XMP to a buffer. The real magic here is how do I get data into and out of images??? I've been trying to find out how to identify an "APP1" marker in a jpeg file for a week now. It seems to me that Adobe just expects you to roll your own. If I could do that to begin with, then I'd just put my own xml based data in from the start...

  • KinectForWindows Unity Plugin Documentation and samples

    Hi,
    Following up on the talk from Carmine Sirignano and Ben Lower from MVA. They briefly show a demo with a point cloud like depth map rendered in unity:
    http://www.microsoftvirtualacademy.com/training-courses/programming-kinect-for-windows-v2-jump-start (video 04) (18th minute-22nd minute)
    Carmine mentioned shaders are doing all the magic. Now being new to unity as well as kinectv2, I am unable to create these shaders myself. I would appreciate some documentation explaining the workflow and would highly appreciate if the demo's project files
    are uploaded for reference. The included examples do not demo the shader use, and I would like to use this feature.
    I appreciate your support
    Regards,
    Dhruv

    The Kinect V2 Unity plug-in can be found here:
    http://go.microsoft.com/fwlink/?LinkID=513177, which includes Face, HD Face and Visual Gesture Builder plug-ins. Unzip the file and follow the instructions in the readme to get started.
    Note, this should work with the official release of the Kinect V2 SDK, which can be downloaded from here:
    http://www.microsoft.com/en-us/download/details.aspx?id=44561
    Be sure to uninstall any preview builds before installing the new SDK.
    Unfortunately, the free version of Unity does not include custom plug-in support, so you need to be running Unity Pro.
    For buying/selling Kinect apps, check out the Windows Store. Change your build settings in Unity to build for the Windows Store and you should be able to publish your work there.

Maybe you are looking for