API's in APPS

hi guys,
Other than all the API's found in this link
http://irep.oracle.com/index.html
where can i find the links elsewhere.

other good references are the
- Oracle Applications Developer's Guide
- Workflow API Reference
- specific products User Guides, e.g. Oracle Projects APIs, Client Extensions, and Open Interfaces Reference
- eTRM is also helpful
HTH. -Kevin

Similar Messages

  • CSD_RULE_MATCH_FAILED-calling service request api from oracle apps adapter

    We are doing integration between Siebel and Oracle Apps. When a service request is created on Siebel we are passing that in Oracle Apps using Oracle Apps adapter which is calling a custom API which is doing all the validations and in turn is calling a public api for service request creation. There are two types of service requests - Field Service and Depot Repair. For Field Service we are able to successfully insert the data on Oracle Apps, but for Depot Repair we are getting an error 'CSD CSD_RULE_MATCH_FAILED' from the standard API.
    We have checked the setup and found it is proper. We invoked the pl/sql API from sql developer and we are able to insert the data. So we are facing this issue only when calling the api from oracle apps adapter.
    In the invoke call we have set these properties -
    jca.apps.RespApplication
    jca.apps.Responsibility
    jca.apps.Username
    Based on our analysis till now it is looking like a security context setup issue, but we are not really sure what properties to set.
    Any help in getting this through will be greatly appreciated.
    Thanks,
    Shantanu

    Hi Vijay,
    We have created the apps adapter with default settings as 'apps' user and set the properties Responsibility, RespApplication, Username of <invoke>. Other than that no other settings has been changed.
    Are we missing anything?
    This adapter is able to hit the database in case of 'Field Service' but it is failing for 'Depot Repair'.
    Edited by: 927382 on Apr 13, 2012 2:19 AM

  • Camera API problem after app crashed (winrt)

    Dear Sirs.
    I am developing windows phone runtime app (8.1) and testing it on my Nokia Limia 520 smartphone.
    I work with Camera Api (CameraPreviewImageSource from Nokia.Graphics.Imaging (Nokia Imaging SDK v 1.2.151 from NuGet)). But I think this package is not important info.
    Sometimes, after using camera api many times, for instance more than 30th the app crahes. The reason of app crash in my view not important too. (Of course it is important but I ask about restore phone state after the app crashes because it may happens after
    the memory consumption exception for example)
    I think because app crahes I don't call Dispose method for Camera Api and after I restart the app I see the green screen in the view where I use camera api to show user images from the camera. Also I see the green screen when I launch the standart app for capturing
    photo.
    It will fix only when I restart the phone.
    I have tried to do the following things:
    1) Add handler for OnSuspending event:
      private async void OnSuspending(object sender, SuspendingEventArgs e)
                var deferral = e.SuspendingOperation.GetDeferral();
                //cleanup camera resources
                await CleanupCaptureResourcesAsync();
                deferral.Complete();
    2) Add handler for OnUnhandledException event:
    private void OnUnhandledException(object sender, UnhandledExceptionEventArgs e)
            e.Handled = true;
            CleanupCaptureResourcesAsync().GetAwaiter().GetResult();
            Frame rootFrame = Window.Current.Content as Frame;
            if (rootFrame!=null) rootFrame.Navigate(typeof (BlankPage11), null);
    CleanupCaptureResourcesAsync method:
     public async Task CleanupCaptureResourcesAsync()
                if (CameraPreviewImageSource != null)
                    CameraInitialized = false;
                    await CameraPreviewImageSource.StopPreviewAsync();
                    CameraPreviewImageSource.Dispose();
                    CameraPreviewImageSource = null;
    It is works when I relaunch the app (manualy close and start it again). But when exception occurs it is not works.
    Could you please help me? How can I handle an exception, or if it not possible in some ways (as I have read at https://msdn.microsoft.com/en-us/library/dn532194.aspx) is there any way to restore Camera Api after app launched again (after crash)?
    Best regards,
    Aleksandr Terentev

    Thank you for your answer.
    However, I think the WinDebug wouldn’t help me enough. Because apps may crash in many situations. In my view I need either app global exception mechanism for the purpose of releasing camera api by calling Dispose method when an exception
    occurs or mechanism for restoring the state of the phone camera api after app has crashed.
    Yes, I can save the realtime app status but it wouldn’t help. Because when you try to initialize camera api again it wouldn’t work because the app didn’t call Dispose method and didn’t release the phone camera api.
    This situation is described in the MSDN article:
     “It is extremely important that you properly shut down and dispose of the MediaCapture object and related objects when your app is suspended. Failure to do so could interfere with other apps accessing the device's camera which will
    result in a negative user experience for your app.”  
    (https://msdn.microsoft.com/en-us/library/windows/apps/xaml/dn642092.aspx)
    But when the app crashes, OnSuspending event won’t be triggered, in my view. Therefore, after this no one app can use the camera and you have to restart your phone.

  • PowerBI API Usage - Sample app - UserNotLicensed

    Hi, I have a working PowerBI Public Preview account.
    I'm trying to use the PowerBI RestAPI but keep getting "User is not licensed" (the sample app is here: https://msdn.microsoft.com/en-US/library/dn931282.aspx#Configure)
    The user is provisioned correctly in Azure Active Directory, as specified by the link above. What am I missing? Do
    I need to change the baseURI in the PowerBIModel for the sample app? (see below). 
    C# code (line 19 in PowerBIModel.cs in the SampleApp
    static Uri baseAddress = new Uri("https://api.powerbi.com/beta/myorg/");I have tried replacing "/beta/myorg" with "myADName.onmicrosoft.com/myAppName"
    as suggested here: https://msdn.microsoft.com/en-us/library/dn877544.aspx
    but I arbitrarily get either "UserNotLicensed" or "Invalid JWT token" 
    Thank you for any help you can offer.

    In case anyone else keeps getting the same error ...
    I think It was caused by a simple cookie issue as follows....just use a different browser & clear cookies/cache if you are testing with >1 PowerBI account....and make sure to use an AzureAD user you created within AD, not your generic Azure acct.
    I was signed into "Account1", which was not part of my AzureAD...but it had a PowerBI subscription. 
    When I ran my webapp on localhost, it asked me to sign in to PowerBI via Oauth. So I signed in using [AzureAD member acct] "Account2". (or it just signed me in directly..probably to Account1)
    It kept trying to use Account1 to authenticate...as the issue disappeared when I switched browsers and cleared cookies in the new browser. Occasionally I also
    got the message "Request headers too long"....for the same dual account reason..same fix.

  • PowerBI API Usage - Sample app

    Hi, I have a working PowerBI Public Preview account.
    I'm trying to use the PowerBI RestAPI but keep getting "User is not licensed" (the sample app is here: https://msdn.microsoft.com/en-US/library/dn931282.aspx#Configure)
    The user is provisioned correctly in Azure Active Directory, as specified by the link above. What am I missing? Do
    I need to change the baseURI in the PowerBIModel for the sample app? (see below). 
    C# code (line 19 in PowerBIModel.cs in the SampleApp
    static Uri baseAddress = new Uri("https://api.powerbi.com/beta/myorg/");I have tried replacing "/beta/myorg" with "myADName.onmicrosoft.com/myAppName"
    as suggested here: https://msdn.microsoft.com/en-us/library/dn877544.aspx
    but I arbitrarily get either "UserNotLicensed" or "Invalid JWT token" 
    Thank you for any help you can offer.

    In case anyone else keeps getting the same error ...
    I think It was caused by a simple cookie issue as follows....just use a different browser & clear cookies/cache if you are testing with >1 PowerBI account....and make sure to use an AzureAD user you created within AD, not your generic Azure acct.
    I was signed into "Account1", which was not part of my AzureAD...but it had a PowerBI subscription. 
    When I ran my webapp on localhost, it asked me to sign in to PowerBI via Oauth. So I signed in using [AzureAD member acct] "Account2". (or it just signed me in directly..probably to Account1)
    It kept trying to use Account1 to authenticate...as the issue disappeared when I switched browsers and cleared cookies in the new browser. Occasionally I also
    got the message "Request headers too long"....for the same dual account reason..same fix.

  • Trying to get a code walkthrough to work - Bing Ads Api C# Desktop App

    Hi,
    I'm trying to get the Bing Ads API Desktop App Walkthrough working.  When I run it where it says to run, I get an error saying "Uri passed doesn't contain code param..."
    All I've done to the copied and pasted code was input ClientId and DeveloperToken in the first part of the MainWindow class.
    Do you have any idea what could be causing this?
    https://msdn.microsoft.com/en-US/library/bing-ads-net-walkthrough-desktop-application.aspx
    Thanks,
    Mike

    I am able to repro the issue by using the ClientId of a web application.
    The proposed solution is to register an application as a desktop or mobile application, in order to use that example. Running Fiddler you can capture the traffic e.g. as follows:
    https://login.live.com/oauth20_desktop.srf?error=invalid_request&error_description=The%20provided%20value%20for%20the%20input%20parameter%20'redirect_uri'%20is%20not%20valid.%20The%20client%20application%20must%20be%20marked%20as%20'mobile'%2c%20or%20the%20value%20must%20be%20an%20absolute%20URL%20which%20matches%20the%20registered%20redirect%20URI.&lc=1033
    It seems the 'Uri' error message is thrown by the SDK because it tries to get access and refresh tokens with the URL above instead of the expected on with 'code'. We will take a look at the SDK and make sure the right error message is being relayed. 
    By the way if you want to use a web application (as it sounds like you may have already registered one), try Walkthrough: Bing Ads Web Application in C#.
     Please let me know if I can help with any other questions. 
    I hope this helps!
    Eric

  • Bug in calendar apis with localized app name

    I create a new calendar in my WP (xaml) app like this:
    var appointmentStore = await AppointmentManager.RequestStoreAsync(AppointmentStoreAccessType.AppCalendarsReadWrite);
    var birthdayCalendar = await appointmentStore.CreateAppointmentCalendarAsync("Birthdays");
    In Package.appxmanifest I have defined application "Display name" as "ms-resource:ApplicationName" because my app's name must be localized. App name gets localized correctly in app icon (application list) so the definition in
    Package.appxmanifest works correctly. However, if I open the default calendar app's settings (which displays all calendars in device), my app name is not shown correctly (there reads something like "{....ms-resource:ApplicationName......}"). Also
    AppointmentCalendar.SourceDisplayName returns the same invalid string.
    I guess this must be a bug in AppointmentCalendar.SourceDisplayName and/or in calendar app?

    Hi kine_
    Thanks for reporting the issue to us.
    I can repro the issue with Windows Phone Runtime app:
    I will report the issue internally to our seniors to see if this is a known issue.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can I use the latest Berkeley DB with SQL API in PHP app?

    Hi,
    I'm a PHP developer and I already use Berkeley DB in my applications using the [DBA Functions|http://www.php.net/manual/en/ref.dba.php] . I'm very interested in the latest Berkeley DB release. How can I write a PHP program that uses the SQL API of the latest Berkeley DB release?

    Hi Kurt,
    I'm not a PHP expert (far from it), but the simplest way to get started with the Berkeley DB SQL interface is to run Berkeley DB's <tt>configure</tt> script with the <tt>--enable-sql_compat</tt> flag.  This will create a library called <tt>libsqlite3.so</tt> that you can use as a drop-in replacement for SQLite at the API level.  Database files still need to be converted with a SQLite <tt>.dump</tt> followed by a <tt>.read</tt> with the <tt>dbsql</tt> tool.
    This should then allow the existing PHP driver and application code to switch over to Berkeley DB without any code changes by setting <tt>LD_LIBRARY_PATH</tt> to find the Berkeley DB version of <tt>libsqlite3.so</tt> ahead of SQLite. Note that any other code that relies on SQLite will also run against Berkeley DB with this configuration, which can cause problems if the system libraries use SQLite (for example, on Mac OS X). For that reason, a better long term solution would be for the PHP SQLite driver to have a mode where it loads <tt>libdbsql.so</tt> rather than <tt>sqlite3.so</tt>.
    I hope this helps, please let us know how you go because I'm sure lots of other PHP developers will be interested in the answer.
    Regards,
    Michael Cahill, Oracle Berkeley DB.

  • Trying to get a code walkthrough to work - Bing Ads Api C# Web App

    Hi,
    I'm trying to get the C# Web App code walkthrough to work.  I went through the steps written out, and pasted in the Client ID, Client Secret, RedirectionUri, and DeveloperToken values.  When I run the app, it sends me to the redirection URI, with
    "?code=" and a 36-character code added onto the address.  Could you tell me why this is happening, and what I might need to do to get this working?
    Thanks,
    Mike

    Hi Mike.
    The current example assumes that you set the RedirectionUri to index.chtml, which admittedly isn't robust enough. We plan to update it. Typically as you are probably attempting, the callback after the user provides credentials would redirect
    to a page other than index.chtml e.g. callback.chtml.
    Short term solution is that you can update the RedirectionUri to either "YourSite\" or "YourSite\index.chtml", and the existing sample should run. Otherwise you can define a new callback page that handles the "?code" fragment
    e.g. as follows:
    // If the current HTTP request is a callback from the Microsoft Account authorization server,
    // use the current request url containing authorization code to request new access and refresh tokens
    if (Request["code"] != null)
    await authorization.RequestAccessAndRefreshTokensAsync(Request.Url);
    // Save the authorization object in a session for future requests.
    Session["auth"] = authorization;
    return await CallBingAdsServices((OAuthWebAuthCodeGrant)Session["auth"]);
    Does this help? Please let me know if you have any other questions.
    Best regards,
    Eric

  • Is livecycle rights management provide support for android(mobile) for protection and viewing file securely- interms of API/SDK or App?

    I have gone through the rights management flow of Livecycle for microsoft office extension.
    However, was interested to know about is there any app or SDKs supported by livecycle on mobile devices(android).
    Case study of rights management shows that live cycle has deployed and offered solutions in mobile devices using SDKs. However, couldn't find any resources or documents regarding the same.

    Ok, that means live cycle (in mobile devices) is protecting only pdf documents at this point of time.
    So what about in the PC and MAC ? Live cycle has the capability to protect and consume/view office or other documents?
    Also is there any plans to support files/documents(apart from pdf) in the android(mobile) devices?

  • Consume Webcenter REST API for Mobile App

    Hi All,
    I have some requirement like How to consume web center REST API to the ADF mobile
    could you please guide to it any examples,links.
    When i am trying to consume by using URL Data control it is showing authentication failed, can you pls tell me how to resolve this issue.
    Is there any procedure do the same.
    Thanks in Advance .
    Message was edited by: 878913

    Well was able to resolve it however had to do workaround
    >> used rawXhrPost and put methods instead of xhrPost/put as the dojo.xhrPost seems to insist on sending the data as key=value
    pairs separated by a '&' which on one hand lead webcenter to believe there
    wasn't any POST data as it was expecting json ..
    however if anyone has used xhrPost with webcenter rest , please guide how to use it ... casue and unable to use it .
    also which is the right way to do it ? xhrpost or rawXhrPost , asthe later this method is not extensively mentioned... seems its going to be depricated...

  • ORA-20001: APP-PER-06841 on API call to APPS.PER_PEOPLE_V7_PKG.UPDATE_ROW

    I make a call to the APPS.PER_PEOPLE_V7_PKG.UPDATE_ROW function and get the following error...
    'ORA-20001: APP-PER-06841: Person changes exist between the old date and the new date.'
    What is up?
    Thanks!
    Message was edited by:
    user454052

    Here the query its failing on:
    select 'Y'
    from   per_people_f p
    where p.effective_start_date > p_hire_date - 1
    and  p.effective_start_date <>  p_s_hire_date
    and  p.person_id = p_person_idI checked the package and fnd_new_messages against the message code, and thats the one that seems to be throwing it. Make sure your employee fits that criteria

  • How to call OIM API from external app?

    Hi,
    I have an java application and I would like to call OIM API to accept a request. The application resides in separate server than OIM.
    My questions:
    *1.* What to do to call OIM API from external application (import any OIM jars etc.)?
    *2.* Which method to use, setRequestResponse , closeRequest or any other?
    I appreciate any help, thanks.
    Edited by: m.m. on Feb 2, 2010 5:33 AM

    Hello,
    If it is an external client, you need to provide the "login" and "password" details explicitly in the code (something like this), before getting any other Interface control to invoke the OIM APIs -
    public class OIMAPIClientTest {
    public static void main(String[] args) {
    try{
    System.out.println("Starting...");
    ConfigurationClient.ComplexSetting config = ConfigurationClient.getComplexSettingByPath("Discovery.CoreServer");
    Hashtable env = config.getAllSettings();
    tcUtilityFactory ioUtilityFactory = new tcUtilityFactory(env,"xelsysadm","abcd1234");
    System.out.println("Getting utility interfaces...");
    Regards,
    Amit
    Edited by: amitKumar on Feb 2, 2010 5:29 AM

  • Open API App (Windows based) fails to open FMB on Unix file system

    My Open API, Windows based app, can successfully open and 'get' properties of FMBs stored in the Windows file system. However, it fails to load the FMB when the FMB resides on a networked Unix server. The same FMBs on Unix can be opened by the Windows based FormBuilder (over the network). I can copy the FMB down to Windows and without re-compiling the FMB, my Open API app can 'load' the FMB and 'get' all the properties. What suggestions can you give for debugging / resolving this? I need to be able to 'Load' the FMBs (through the Open API), that reside in the Unix file system, from Windows.
    JJ

    Generally, this is why we will tell you that accessing net shares is not supported and in places where it might even be supported, we would still suggest that it is not recommended. Accessing via net shares (especially through Windows) is often problematic. There are various performance and connectivity issues that, unfortunately fool you into believing that the product you are using is flawed when the problem is really a connection issue with the share.
    In your case, because you are not exactly using an Oracle product (initially), Oracle can't offer much anyway, but I would recommend against using shares whenever possible. If you need to access a file, copy it locally first, perform whatever task on it, then return the updated file to its origin. This method protects you from things like net failure and instability as well as the performance issues associated with accessing files remotely.

  • Possible to have two login configs in same web app?

    Sorry for not having tried this first, my server and webapp are in a state
    of flux at this moment, but I wanted to see what the consensus is out there,
    not just whether I can or cannot make something work quickly.
    If I have two types of things that might be called in my Web App (WAR) in
    different ways (eg, browser accessing via HTTP by users that want to login
    via pretty forms, and SOAP clients that may access functionality through the
    same servlets (but with alternate Servlet Path Info after the servlet name
    in the URL)), is there ANY way I can have multiple login configs, each tied
    to a different security constraint within that web app?
    In other words, with a servlet of /frazzleblitz and security constraints
    like:
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Foo</web-resource-name>
    <url-pattern>/frazzleblitz/doFooBar</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>FoobarBrowserUsers</role-name>
    </auth-constraint>
    </security-constraint>
    and the SOAP constraint (for all users of incoming SOAP requests):
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Foo</web-resource-name>
    <url-pattern>/frazzleblitz/doFooBar</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>FoobarBrowserUsers</role-name>
    </auth-constraint>
    </security-constraint>
    where my frazzleblitz controller knows whether the incoming request is
    browser vs SOAP based by the path info after the servlet name
    Can I associate the first security constraint with a FORM based login
    config, and the second security constraint with a BASIC AUTH login config
    since I could in theory require SOAP clients to send in credentials in a
    HTTP BasicAuth header, but I can't expect a SOAP client to be HTTP
    Redirected to a login form and then to enter the right credentials into a
    user type form and then be redirected back to an app...
    Seems to me the J2EE Security spec is really lacking in the area of
    programmatic authentication (allowing my SOAP code to get credentials out of
    the request envelope and call an API to login myself). Yeah, WebLogic has
    the ServletAuthentication weak() API, but these apps need to be J2EE
    compliant and work across J2EE servers... Anybody know of any improvements
    coming in the J2EE security space to address such functionality needs?
    Thanks in advance
    Mike

    Sorry, hit send accidentally before finishing the second security
    constraint - I've fixed it up below to reflect what I meant...
    "Mike" <[email protected]> wrote in message
    news:[email protected]...
    Sorry for not having tried this first, my server and webapp are in a state
    of flux at this moment, but I wanted to see what the consensus is outthere,
    not just whether I can or cannot make something work quickly.
    If I have two types of things that might be called in my Web App (WAR) in
    different ways (eg, browser accessing via HTTP by users that want to login
    via pretty forms, and SOAP clients that may access functionality throughthe
    same servlets (but with alternate Servlet Path Info after the servlet name
    in the URL)), is there ANY way I can have multiple login configs, eachtied
    to a different security constraint within that web app?
    In other words, with a servlet of /frazzleblitz and security constraints
    like:
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Foo</web-resource-name>
    <url-pattern>/frazzleblitz/doFooBar</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>FoobarBrowserUsers</role-name>
    </auth-constraint>
    </security-constraint>
    and the SOAP constraint (for all users of incoming SOAP requests):
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Bar</web-resource-name>
    <url-pattern>/frazzleblitz/doSOAPRequest</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>SOAPUsers</role-name>
    </auth-constraint>
    </security-constraint>
    where my frazzleblitz controller knows whether the incoming request is
    browser vs SOAP based by the path info after the servlet name
    Can I associate the first security constraint with a FORM based login
    config, and the second security constraint with a BASIC AUTH login config
    since I could in theory require SOAP clients to send in credentials in a
    HTTP BasicAuth header, but I can't expect a SOAP client to be HTTP
    Redirected to a login form and then to enter the right credentials into a
    user type form and then be redirected back to an app...
    Seems to me the J2EE Security spec is really lacking in the area of
    programmatic authentication (allowing my SOAP code to get credentials outof
    the request envelope and call an API to login myself). Yeah, WebLogic has
    the ServletAuthentication weak() API, but these apps need to be J2EE
    compliant and work across J2EE servers... Anybody know of anyimprovements
    coming in the J2EE security space to address such functionality needs?
    Thanks in advance
    Mike

Maybe you are looking for

  • New to Premiere Elements 9 - adding keywords to clips in timeline?

    Hello to hopefully my new best friends I am editing college football highlights.  I have been using iMovie for about 3 years, but it lacks certain features that I was told (still hoping!) Premiere Elements 9 has.  Anyway -- I am editing from full gam

  • Kernel Panic Log-AEBS issue??

    Can anyone get anything useful out of this for me? I am having Kernel Panics, and all seem similar. Is this related to my AEBS?? T Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x000000000000000C PC=0x00000000002AF41C Latest crash info for c

  • 2% of total amount

    Hi all, I have a scenario like this . i have one calculated key figure Total Amount and based on that key figure i want 2 % of that Total Amount . I have tried in BEx Explorer . i had put formula like this . Total amount % 2 but geting *  value in re

  • Problem in IW73 transaction

    Hello' The serial numbers are not displayed in IW73 tranasction even though the serial numbers are associated with the material used in notification and service order. Thank you Regards Santosh

  • Changing System Icons

    In reference to: http://www.apple.com/downloads/macosx/icons_screensavers/margin.html It states that the only requirements are either 10.4 or 10.5. I was under the impression that you need a 3rd party app to change the system icons. Is there a way to