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.

Similar Messages

  • Any sample code on XML parsing

    Hi,
    I am writing an application that has to read and to generate XML (using schemas). Unfortuantely, I cannot find any sample code on how to do it using the Oracle supplied libraries (packages oracle.xml.* . Can anyone point me to some sample code, documentation or alternative?
    Thanks a lot!

    Hello Bert,
    I didnt get your question very clearly.
    1) Do you want to generate XML using Java classes based on XSD?
    or
    2) You want to parse XML that has a XSD specified with it?
    For both these thing, we have sample codes. For the first option, there are Class Generators that does this for you. There are some samples provided with the XDK download. Look into the folder <xdk_home>xdk\demo\java\classgen.
    For option 2, there are many samples on OTN itself. To name one.... AQSample downloaded from http://otn.oracle.com/sample_code/tech/dataint/content.html.
    There is a sample with the JDK download also. The folder is <xdk_home>\xdk\demo\java\schema
    Hope this helps.

  • Any sample code for an Extractor to read in a flat file?

    Hi SAP gurus,
    Are there any sample code for an extractor to read in a flat file?
    Are there any documentation on custom coding an extractor to dump
    information into an info source?
    Are there any documentation on the pit falls and contraints using Solution
    Manager, the BI tools, particularly on the Info Source?
    Thanks,
    Steve

    Thanks Muppet Mark
    I forgot to mention that I had also tried just fileObject.read() as well and it didn't work either.  It was the same run on sentence result I got with the script I showed above.  Seems odd.  However, the \r instead of \n did the trick.  I had some recollection of another line feed character but couldn't remember what it was, so thanks for that.
    Doug

  • Any Sample code for recording+playing streaming live video?

    Hi all,
    I'm new to FMS3,
    I wanna create a page for webcam live recording and playing,
    is there any sample code for reference (i can only found the code
    for live recording but do not have live record+play)?
    Many thanks.
    I have installed FMS3.0 and FME2.0 on my machine, so is it
    capable to do so?
    Many thanks.

    Thanks for your reply, but I have another question:
    My live file (test.flv) is recorded under this path:
    C:\xxxx\FMS3\applications\path\streams\_definst_\
    But seems FMS3 can only play video under this path:
    C:\xxxx\FMS3\applications\vod\media\
    My only success is on this source path rtmp://ip/vod/test in
    the component FLVPlayBack.
    So is it happen to all free version of FMS3 or I have to type
    sth more?
    Many thanks.

  • 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

  • Hello i am having a problem in my 4s that it dosent run any USSD code it goes on calling , can any one help me i am mack from Karachi Pakistan

    Hello i am having a problem in my 4s that it dosent run any USSD code it goes on calling , can any one help me i am maqsood  from Karachi Pakistan

    Ok so I've done what you said and this is what it's come back ....
    I don't know that these are the errors , but they're the things which don't look right ...
    Throughout the shut down there is a recurring line ;
    It says ;
    Com.apple.launchd 1 0x100600e70.anonymous.unmount 301 PID still valid
    Then there are 2 more which I think are related ;
    Com.apple.securityd 29 PID job has I overstayed its welcome , forcing removal.
    Then the same with fseventd 48 and diskarbitrationd 13
    Oh and on Launchd1 : System : stray anonymous job at shut down : PID 301 PPID13 PGID 13 unmount...
    Then the last process says "about to call: reboot (RB_AUTOBOOT).
    Continuing...
    And stops ...
    Hope this means something to you ... Thanks again for your help so far :-)

  • Is theres any way i can make yahoo calls from my account to another , like pc to pc

    is theres any way i can make yahoo calls from my account to another , like pc to pc 

    by the way. if it means anything. i am using the Australian iTunes store.

  • 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

  • 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?

  • Is there any sample Android Native App using MBOs?

    We are building a native android application using MBOs (SUP 2.1 ESD#2).
    We are able to register the user but not able to synchronize. We are following the "Developer Guide: Android Object API Applications"
    Is there any sample android native application for this scenario?  Only sample available now uses OData SDK.
    Thank you
    Regards
    Jeyaram

    Transaction examples for IIOP are in the works for the next release.
    "Dan Cimpoesu" <[email protected]> wrote:
    Hi,
    Based on the links below:
    http://e-docs.bea.com/wls/docs61/jta/trxrmi.html#1018506
    http://e-docs.bea.com/wls/docs61/jta/gstrx.html#1067532
    It appears that is possible to have distributed transactions across RMI-IIOP
    clients and RMI-IIOP applications (servers).
    I am surprised by the note:
    Note: These code fragments do not derive from any of the sample applications
    that ship with WebLogic Server. They merely illustrate the use of the
    UserTransaction object within an RMI application.
    The above note suggests that there is no sample code available.
    Is there any sample code that illustrates RMI-IIOP applications (servers)
    participating in distributed transactions?
    Regards,
    Dan Cimpoesu

  • Any sample video webinar code?

    Hi, I'm trying an experienced java developer but very new to flash. I'm trying to develop a php webapp that live streams a users webcam to hunderds of views, with chat and the ability to kick viewers out of the meeting. I downloaded flash builder 4 and lccs sdk and have gotten a simple webcam app working (not even using publisher/subscriber model yet), but haven't tackled permissions/roles, managing and cleaning up sessions and that sort of thing. Any sample code out there that you could share with me would be greatly appreciated.
    ps. I would consider other technologies if you think this one is not right for what I'm trying to do.
    Thank you,
    Kevin

    Hi ,
    Download the file at:
    http://download.oracle.com/otn/other/general/forms10gdemos9_0_4_2.zip
    Regards,
    Simon

  • Is there any sample RMI-IIOP application using distributed transactions

    Hi,
    Based on the links below:
    http://e-docs.bea.com/wls/docs61/jta/trxrmi.html#1018506
    http://e-docs.bea.com/wls/docs61/jta/gstrx.html#1067532
    It appears that is possible to have distributed transactions across RMI-IIOP
    clients and RMI-IIOP applications (servers).
    I am surprised by the note:
    Note: These code fragments do not derive from any of the sample applications
    that ship with WebLogic Server. They merely illustrate the use of the
    UserTransaction object within an RMI application.
    The above note suggests that there is no sample code available.
    Is there any sample code that illustrates RMI-IIOP applications (servers)
    participating in distributed transactions?
    Regards,
    Dan Cimpoesu

    Transaction examples for IIOP are in the works for the next release.
    "Dan Cimpoesu" <[email protected]> wrote:
    Hi,
    Based on the links below:
    http://e-docs.bea.com/wls/docs61/jta/trxrmi.html#1018506
    http://e-docs.bea.com/wls/docs61/jta/gstrx.html#1067532
    It appears that is possible to have distributed transactions across RMI-IIOP
    clients and RMI-IIOP applications (servers).
    I am surprised by the note:
    Note: These code fragments do not derive from any of the sample applications
    that ship with WebLogic Server. They merely illustrate the use of the
    UserTransaction object within an RMI application.
    The above note suggests that there is no sample code available.
    Is there any sample code that illustrates RMI-IIOP applications (servers)
    participating in distributed transactions?
    Regards,
    Dan Cimpoesu

  • Sample code for routine

    Hi all,
    This is what I want to achieve. I have an attribute for an IO, but the values for that has to be decided at the transfer structure level. I want to write a routine in the transfer rules to populate the field.
    I have another field that gets populated from R/3. I need to write a routine which would take this value and see if it falls in the range and have to decide the value and populate.
    I have gl_account coming in, and in the routine I need to take that value of the gl_account and see if it falls in the range of 1 – 5000 or 6700 - 8130 if so assign a + sign and if not assign a – sign to the new field.
    Any sample code would be appreciated and rewarded.
    Thanks,
    Sri

    Global code used by conversion rules
    $$ begin of global - insert your declaration only below this line  -
    TABLES: ...
    DATA:   ...
    $$ end of global - insert your declaration only before this line   -
    $$ begin of routine - insert your code only below this line        -
    DATA: l_s_errorlog TYPE rssm_s_errorlog_int.
       Data:  temp1 TYPE RANGE OF TRAN_STRUCTURE-ZDEBITCREDIT,
       Data:  temp1_line LIKE LINE OF temp1.
       temp1_line-sign = 'I'.
       temp1_line-option = 'BT'.
       temp1_line-low = '001'.
       temp1_line-high = '5000'.
       APPEND temp1_line TO temp1
      Data:  temp2 TYPE RANGE OF TRAN_STRUCTURE-ZDEBITCREDIT,
       Data:  temp2_line LIKE LINE OF temp2.
       temp2_line-sign = 'I'.
       temp2_line-option = 'BT'.
       temp2_line-low = '5001'.
       temp2_line-high = '8000'.
       APPEND temp2_line TO temp2
    Data: temp(1) char.
    if TRAN_STRUCTURE-0glaccnt  IN temp1.
       temp3  = '+'.
    elseif TRAN_STRUCTURE-0glaccnt  IN temp2.
      temp 3= '-'.
    endif
      RESULT = temp3 .
    returncode <> 0 means skip this record
      RETURNCODE = 0.
    abort <> 0 means skip whole data package !!!
      ABORT = 0.
    $$ end of routine - insert your code only before this line         -

  • Message to Forms Product Management Sample codes

    Hi,
    Where do i get sample code for integration of forms with smart card, usbs, serial ports, scanner devices, rfid and many other similar technologies.
    regards

    Hi
    I have gone through your following site and seen lot of useful java beans usages in forms.
    http://forms.pjc.bean.over-blog.com
    Now, what i am looking is not availble on this site.
    I am sure, many of us must have felt need to work with usb/smart card, scanner
    integration with forms (web).
    But nobody has put any sample codes here.
    That's the reason i wanted to initiate.
    Currently, my requirement is to read the client machine repository and find out any usb device is connected to it, if yes then what type of device it is and how i can receive/transmit data to that device.
    for simplicity. i will take a small example.
    i want to know whether USB drive is connected to client machine, and what is the capacity, manufacturer, model number, device id and drive letter assign to that drive.
    i can do it easily using windows cscript and then reading the output into forms variable using webutil, but this opens a separate window, which i don't want
    regards.

  • Core MIDI sample code or tutorial

    Anyone know of a good sample project or tutorial for Core MIDI? Or, indeed any sample code or tutorial at all. The documentation isn't exactly helpful; I've tried to do the most basic thing I can think of which is to get the number of devices connected to the system using MIDIGetNumberOfExternalDevices(). It always returns 0. I've got two lines of code in an NSButton action:
    UInt32 hello = MIDIGetNumberOfExternalDevices();
    NSLog(\[NSString stringWithFormat:@"Num devices: %1i", hello\]);
    using ObjC obviously. I've tried this with MIDIGetNumberOfDevices() as well, with the same result. There are, obviously, MIDI devices connected to the system.
    What am I doing wrong? Can anyone help?

    Hi Morgan
    There is a Core Audio mailing list where Core Audio/Midi specialists hang out.
    Go to here: http://lists.apple.com/mailman/listinfo
    then choose this list: Coreaudio-api
    I'm sure that if you repost your question there you will get the answer.
    Bob

Maybe you are looking for

  • Any Way to Speed up Mac Mini? (G4)

    Hi, I was just wondering whether you can give a speed boost to an old Mac Mini like mine. I have tried some utilities like onyx and still slow. HDD is 80 GB and I have over 40 GB free space. Maybe ram or SSD? Thanks.

  • Error in Device Registery

    hi when i  deploying work flow i got the error " Unable to invoke the admin service GetWorkFlowList:  ADMIN_WEBSERVICE_INVOCATION_ERROR:fail to invok" Also I have check Sybase Control Center also problem for Device Registration also.I got there "an i

  • NUMERIC TextField with max length

    Hi there guys, could someone tell me why TextField's get a 10 number max length automatically when it's assigned a NUMERIC type to it? Even if I set it's max length to more then 10. I know it doesn't happen in most of cellphone's models but I've alre

  • How do i un diasble my phone

    it  will not let me get onto my phone because i have forgotten my password. Usually it gave me an amount of time that i caould not use my phone and now its completely disabled and its telling me to log onto my itunes but i dont know what to do after

  • Problems logging in to apps

    I am having problems when logging in to various apps. When I try and log in I am getting  "incorrect user name/password" . I am sure the info I am entering is correct as I have checked it on my computer. This is happening on more than a few apps. Any