Use of JCO ??? ...i need to pay to use this API ????

Hi experts...
Please ...SomeBody can help-me in this Questions ???
I need to pay to use the API JCO to make integration with SAP Systems and NO-SAP Systems ????
Or simply ....I enter in the marketPlace and download this API to use ???
Only this Friends...
Best Regards.
MBoni

Hi,
Pls don't forget to reward points and close the question if you find the answers useful.
Eddy

Similar Messages

  • Everthing But?  Someone needs to pay attention to this cd copy issue!

    A social revolution lacking basic features...seriously someone (at apple or via petition) please pay attention?:) How can a team miss such a basic thought? I acknowledge focus is on online revenue but please help...Please!
    When I am coping a cd could you please tell me if a track or a cd is bad!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! If it is bad could you incorporate software to fix it! If not why not replace my bad copy with a good copy...I already bought the CD and it would be a great customer service. I have so much music that I can't listen too...my fault for lending to friends but this would be a huge feature improvement.
    FIX CORRUPTED AUDIO FILES!
    We have all loaded cd's into itunes thinking all was well...we are listening to a favorite song and skip skip skip? Please at least let us know!
    Love you all!

    iTunes already incorporates an option for error correction that can try and fix some errors; Preferences -> Advanced -> Importing -> Use Error Correction When Reading Audio CDs. But there's a limited about any software can do to correct bad tracks, particularly if the disk is physically damaged. If a disk is badly damaged, the computer may not even be able to read it and in that case there's probably no software that could be used to fix the problem.

  • How to use this API?

    Hi all,
    I have a doubt, I have to test an app which works with the API JavaPOS, I have downloaded it but now I don�t know what to do with it. I mean, I don�t know how I can import its classes and such things for it to be recognize by the java app.
    Any suggestion is welcome.
    Thanks and regards.

    goto Mycomputer
    right click
    properties
    advanced
    environmental variables
    new
    variable name: classpath
    variable value: the full path of the far or whatever.
    all ok
    then you should do it without rebooting the os

  • Updating a record using pay element using the API (Almost Done)

    Hi Everyone,
    I have a question about updating a record using the PAY_ELEMENT_ENTRY_API.update_element_entry
    I have process that doesn't error out, but its doesn't seem to update the record. So my question is, is the query below the correct way to get the element name and object version number when using this API? If not, what do I need to do?
    BEGIN
    SELECT MAX(pee.element_entry_id)
    INTO x_element_id_mgr
    FROM pay_element_types_f pet,
    pay_element_links_f pel,
    pay_element_entries_f pee,
    per_all_assignments_f paaf,
    per_all_people_f papf
    WHERE pee.element_link_id = pel.element_link_id
    AND pel.element_type_id = pet.element_type_id
    AND paaf.assignment_id = pee.assignment_id
    AND papf.person_id = paaf.person_id
    AND pet.element_name = 'Mgr Rec Pct'
    AND sysdate BETWEEN pee.effective_start_date AND pee.effective_end_date
    AND sysdate BETWEEN pel.effective_start_date AND pel.effective_end_date
    AND sysdate BETWEEN pet.effective_start_date AND pet.effective_end_date
    AND sysdate BETWEEN paaf.effective_start_date AND paaf.effective_end_date
    AND sysdate BETWEEN papf.effective_start_date AND papf.effective_end_date
    AND paaf.assignment_id = c_staging.assignment_id
    AND papf.person_id = c_staging.person_id;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    --ROLLBACK TO s1;
    v_error_message := 'For employee number '||c_staging.employee_number||' No data found for element name Mgr Rec Pct' || SUBSTR(sqlerrm, 1, 200);
    DBMS_OUTPUT.PUT_LINE('Error occurred : ' || v_error_message);
    WHEN OTHERS THEN
    --ROLLBACK TO s1;
    v_error_message := 'For employee number '||c_staging.employee_number||' Error found for element name Mgr Rec Pct' || SUBSTR(sqlerrm, 1, 200);
    DBMS_OUTPUT.PUT_LINE('Error occurred : ' || v_error_message);
    END;
    --- Get OVN
    BEGIN
    SELECT MAX(Object_version_number)
    INTO x_ele_object_version_number
    FROM pay_element_entries_f
    WHERE element_entry_id = x_element_id_mgr;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    v_error_message := 'For employee number '||c_staging.employee_number||' Error in getting the OVN for Mgr Rec Pct ' || SUBSTR(sqlerrm, 1, 200);
    DBMS_OUTPUT.PUT_LINE('Error occurred : ' || v_error_message);
    WHEN OTHERS THEN
    v_error_message := 'For employee number '||c_staging.employee_number||' Error in getting the OVN for Mgr Rec Pct' || SUBSTR(sqlerrm, 1, 200);
    DBMS_OUTPUT.PUT_LINE('Error occurred : ' || v_error_message);
    END;

    Your SQL isn't bad, although you're including loads of tables you don't need to so it's probably not as fast as it could be. I'm not sure you know what element entry to update so let's look at an example:
    -- | Element Entry Id | OVN | Start Date | End Date    | Pay Value |
    -- +------------------+-----+------------+-------------+-----------+
    -- | 123                2    1-Jan-2009   31-Jan-2011   USD 400
    -- | 123                1    1-Feb-2009   18-Jun-2011   USD 500
    -- | 123                1    19-Jun-2011  25-Jun-2011   USD 600
    -- | 123                5    26-Jun-2011  31-Dec-4712   USD 700Here the one element entry (Id 123) has 4 effective rows. The employee gets $400 in Jan 2009, $500 from Feb 2009 to mid-June 2011, $600 for a few days later in June 2011 and then $700 from 26th June 2011 onwards.
    So your question to the forum is which one do I update. Well, that depends which one you want to update. If you want to update the 1st Jan 2009 to 31st Jan 2011 you'd pass element_entry_id => 123, ovn => 2, effective_date => to_date('1-Jan-2009', 'DD-MON-YYYY') and datetrack_mode => 'CORRECTION'.
    If you wanted to update the $700 row you'd pass OVN 5 and an effective date of 26th June 2011. And so-on.
    Now in your SQL you're filtering based on sysdate, which means you'd be updating the $500 row (ovn=1). Is that what you want?
    I have simplified your SQL as follows:
    SELECT pee.element_entry_id
          ,pee.object_version_number
    INTO   x_element_id_mgr
          ,x_ele_object_version_number
    FROM   pay_element_entries_f pee
          ,pay_element_types_f pet
    WHERE  pee.assignment_id = c_staging.assignment_id
    AND    pee.element_type_id = pet.element_type_id
    AND    pet.element_name = 'Mgr Rec Pct'
    AND    trunc(sysdate) BETWEEN
           pee.effective_start_date AND pee.effective_end_date
    AND    trunc(sysdate) BETWEEN
           pet.effective_start_date AND pet.effective_end_date;This selects both the entry Id and OVN in one go; there's no need to have 2 SQL statements. If multiple entries are allowed, this SQL could return more than one row so just watch out for that. If you don't want the row as of sysdate change the two sysdate joins accordingly.
    I hope that helps.

  • How much do i need to pay for replacing a completely damaged iPhone 5s??

    i am using iphone 5s 32gb. and couples of days back i drop it while driving and damaged the phone completely.. phone is still working but the sreen, display, home button has completely shattered. so how much i will need to pay for replacing this iphone?? please help.. its a contract free piece.

    Hello Harshil Shah
    The answer is located in the Service FAQ linked below, check in the Warranty & Service Pricing to get the answer. You can also have a link to setup service as well.
    Service Answer Center – iPhone
    http://support.apple.com/kb/index?page=servicefaq&geo=United_States&product=ipho ne
    Regards,
    -Norm G.

  • Best practice to monitor 10gR3 OSB performance using JMX API?

    Hi guys,
    I need some advice on the best practice to monitor 10gR3 OSB performance using JMX API.
    Jus to show I have done my home work, I managed to get the JMX sample code from
    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/jmx_monitoring/example.html#wp1109828
    working.
    The following is the list of options I am think about:
    * Set up: I have a cluster of one 1 admin server with 2 managed servers, which managed server runs an instance of OSB
    * What I try to achieve:
    - use JMX API to collect OSB stats data periodically as in sample code above then save data as a record to a
         database table
    Options/ideas:
    1. Simplest approach: Run the modified version of JMX sample on the Admin Server to save stats data to database
    regularly. I can't see problems with this one ...
    2. Use WLI to schedule the Task of collecting stats data regularly. May be overkill if option 1 above is good for production
    3. Deploy a simple web app on Admin Server, say a simple servlet that displays a simple page to start/stop and configure
    data collection interval for the timer
    What approach would you experts recommend?
    BTW, the caveats os using JMX in http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/jmx_monitoring/concepts.html#wp1095673
    says
         Oracle strongly discourages using this API in a concurrent manner with more than one thread or process. This is because a reset performed in
         one thread or process is not visible to another threads or processes. This caveat also applies to resets performed from the Monitoring Dashboard of
         the Oracle Service Bus Console, as such resets are not visible to this API.
    Under what scenario would I be breaking this rule? I am a little worried about its statement
         discourages using this API in a concurrent manner with more than one thread or process
    Thanks in advance,
    Sam

    Hi Manoj,
    Thanks for getting back. I am afraid configuring aggregation interval from Dashboard doesn't solve problem as I need to collect stats data of endpoint URI or in hourly or daily basis, then output to CSV files so line graphs can be drawn for chosen applications.
    Just for those who may be interested. It's not possible to use SQL to query database tables to extract OSB stats for a specified time period, say 9am - 5pm. I raised a support case already and the response I got back is 'No'.
    That means using JMX API will be the way to go :)
    Has anyone actually done this kind of OSB stats report and care to give some pointers?
    I am thinking of using 7 or 1 days as the aggregation interval set in Dashboard of OSB admin console then collects stats data using JMX(as described in previous link) hourly using WebLogic Server JMX Timer Service as described in
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/jmxinst/timer.html instead of Java's Timer class.
    Not sure if this is the best practice.
    Thanks,
    Regards,
    Sam

  • How to access Task details using BPM API for substituting user

    Hi Expert,
    I need one help, we have a requirement, in which I wanted to access the BPM task details of a user which is substituting user using BPM API.
    Substituting user's name is not exist in Potential owner of Task. That’s why Using method "getMyTaskAbstracts(Status)" we cant acess those task which assigned by Substited user.
    Kindly let me know if there is any way, we can get task details of the task which assigned by substituted user to substituting user.
    Regards
    Div

    Pl use this api.
    getTaskAbstractsForMySubstitutedUsers.There are couple of variations u can use.
    Thanks
    Manish

  • Getting weblogic usersegment details using an API

    Hi,
    Can weblogic usersegment (*.seg) information be got using some API?
    if not, how can the information be got, so that we can for example, pass the usersegment name to the weblogic businessrule as a condition and got some contentquery as an action??

    Please find below the sample code to get information about user segment.
         @Control
         private SegmentManagerControl segmentManagerControl;
         @Jpf.Action(forwards = { @Jpf.Forward(name = "default", path = "index.jsp") })
         public Forward begin() throws PersistenceException, XmlException, LoginException {
              Authentication.login("weblogic", "weblogic", getRequest());
              ResourceContext resCtx = ResourceContext.createResourceContext(getRequest(), getResponse(),getServletContext(), false);
              resCtx.setRetrieveResultsIfNoLocale(true);
              resCtx.setWebApp(getServletContext().getServletContextName());
              RuleModel ruleModel = segmentManagerControl.getSegment("/segments/GlobalClassifications/testUserSegment.seg", resCtx);
              System.out.println("Name"+ruleModel.getName());
              System.out.println("Description"+ruleModel.getDescription());
              Authentication.logout(getRequest());
              return new Forward("default");
    Note: You can use this API only from the controller. You need to create SegmentManagerControl in controller and from there you can access the user segment details. you need to be in the Administrative group to access SegmentManagerCotnrol (and all other controls related to campaigns, placeholders etc.).
    segmentManager.getSegment() always returns null, if you're not in the Administrators group.

  • Opening PDF in browser using Adobe API - with mark up and comment features

    Hey,  
    Here is the scenario :   Firstly, the user has to review the file (say pdf) before approving it. I would like to open the pdf file in the browser directly for reviewing. Also, I want to add some mark up (sticky notes, etc) and comment features while reviewing. Using these features, the user can pin point the mistakes directly in the file and revert the file for changes if any.  
    And as part of implementation, I would like to use Adobe java API to do the same. But I couldn't find any code snippets for using this API.  
    Any kind of help would be appreciated. Thanks in advance.

    This forum is only for discussions on the forums themselves. I would suggest that you start from the Acrobat forum,
    http://forums.adobe.com/community/acrobat

  • Error using JXL api in a KM Report

    Hi Expert,
    My report have to use JXL api. I have already a DC containing libraries, including JXL 2.6.2.
    I declare my DC in Used DC of my report, but each time I launch it it throws me this error :
    "error executing: /reporting/reports/Content Management/Tools/rise_metrics/1237311667619.xml(com.sapportals.wcm.service.reporting.ReportInput@356422d2) - java.lang.NoClassDefFoundError: jxl/format/CellFormat at com.ctsao.project.rise.metrics.RISEMetrics.execute(RISEMetrics.java:460) at com.sapportals.wcm.repository.manager.reporting.monitor.ReportComponent$ReportWrapper.execute(ReportComponent.java:160) at com.sapportals.wcm.service.reporting.scheduler.ReportScheduler$Runner.run(ReportScheduler.java:220)"
    Is it possible to use this API in a report or there is some restriction ?
    Thanks in advance for your help,
    Jean-Edouard Nicolet.

    Hi,
    Try to include the jxl.jar file inside your private/lib folder of project and run as a workaround.
    Regards
    Baby

  • How can I use MapQuest API in Adobe Flash CC?

    Hi all,
    Since Google Maps API will be deprecated in 3 months I'm trying to use MapQuest instead. (MapQuest Developer Network: Map APIs, SDKs and Web Services - MapQuest Developer Network)
    But I can't import the component MQFlashMapsAPI_7.1.5_MQ_MOBILE.swc into my project.. Any idea why?
    I've read that I have to import the core.swc from the Flex SDK.. I've put the core.swc file in the components folder, but when I'm going into the components window in Adobe Flash, neither core.swc or MQFlashMapsAPI are visible.
    Do you what should I do in order to import MQFlashMapsAPI in my project ?
    I'm using Adobe Flash pro CC
    Thank you for your help,

    I would be really shocked if it requires ActionScript 2.0 but CC doesn't support that. Otherwise I honestly don't know why it would want a flex library in a place you can't utilize Flex.
    You say you've used this API before. Is this the same MapQuest SWC version you successfully used before or is it updated? What version of flash did you successfully use this in? Lastly did you get Flex from Adobe (4.6.0) or Apache?

  • UCCX 8 Wallboard to use REST API

    All,
    I would like to find out how to use UCCX 8 REST API to get DB Master and let the wallboard script to automatically point to the Master DB.
    I can get True or False from http://<UCCX 8 IP>/uccx/isDBMaster
    I use a simple asp file to display Queue stats like call waiting, Ready, Not Ready, and Abandoned for each queue.
    Just not sure how to integrate the returned value from the REST API into the wallboard.
    Anyone has used this API for your Wallboard?
    Thanks
    Wenqian

    Hi Chris,
    lastUpdatedAt or "Date Modified" fields don't change when the contact is sent an email, but rather, when ANY field is modified on the contact record. You can certainly query for and export contacts that had their data touched in some way since a specified time, but it won't be on a per-field basis. There is effectively no field level change history or tracking. You can work around this with extra logic. First, you can get a snapshot of what the values were in the specific fields you want to track across your entire database.
    The next time you run an export using Date Modified, it will contain more records than you might care about, but you can filter offline for the ones you do care about by comparing their before and after values for the specific 'tracked' fields.
    Regards,
    Bojan

  • Cross browser testing:Click action on UITestcontrol got using ExcuteScript API is not working.

    Hi,
    For one of the web control,I am using ExecuteScript API to get the UITestControl as explained in this link (http://blogs.msdn.com/b/visualstudioalm/archive/2013/01/18/introducing-jscript-execution-on-internetexplorer-and-crossbrowser-in-coded-ui-test.aspx
    )and trying to perform click action on the control.It is not performing the click action on the control but script status is success.
    Problem is seen only with specific Overload of Mouse.Click().Here I am constructing the control using bounding rectangle dynamically.
    The API I am using is
     Microsoft.VisualStudio.TestTools.UITesting.Mouse.Click(UITestControl, MouseButtons.Left, ModifierKey.None, clickablePoint );
    Point Caluculation is shown below:
    clickablePoint  = return new Point(boundingRect.Width / 5, boundingRect.Height / 4);
    I tried to debug the code and found that Selenium web driver is throwing null reference exception while using this API for Left button click action.Could you please check the problem and fix it.So that I can
    use this API as per my requirement.
    Regards,
    Nagasree.

    Hi Nagasree,
    Latest version of Chrome and Firefox supported by cross browser testing are Chrome version 38.0.2125.111 and
    Firefox 33. So please make sure the Chrome and Firefox is supported by cross browser testing
    Whether this API: Microsoft.VisualStudio.TestTools.UITesting.Mouse.Click(UITestControl, MouseButtons.Left, ModifierKey.None, clickablePoint ) worked fine with IE browser when
    you run this test?
    If the same API worked fine on IE browser but not on Chrome or Firefox browser, “Q AND A” tab in this link:
    Selenium components for Coded UI Cross Browser Testing is a better place for resolving this problem.
    It seems that you want to click the control using bounding rectangle, then you don't neet to use MouseButtons.Left and ModifierKey.None, you can use such API:
    Click(UITestControl, Point) or
    Click(Point) directly.
    You also can try to use the following code snippet, maybe it can help you.
    Rectangle r = TargetControl.BoundingRectangle.
    Mouse.Click(new Point(r.X + r.Width/2, r.Y + r.Height/2));
    Thanks,
    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.

  • Do I need to pay anything to Adobe if I inject java script using some open source library?

    Hello,
    I want to restrict PDF reader to achieve Digital Rights Management (DRM).
    Do I need to pay anything to Adobe if I inject java script to achieve so using some open source library?
    Basically I want my PDF documents to be restricted such that I can: 
    Limit printing
    Prevent screenshots
    Restrict access by license expiry date
    Restrict distribution of downloaded PDF (i.e. the document should run on specific machine only)
    Restrict copy and paste within PDF document
    I came across below links from which I suspect Adobe expects one to pay if he/she attempts to restrict reader functionality in some way?
    http://www.adobe.com/devnet/reader/topic_drm.html
    http://www.adobe.com/devnet/acrobat/overview.html
    Am I correct in my assumption?

    I think it is a vain hope to imagine you could implement DRM via JavaScript. Remember it can be turned off.
    Printing is either enabled or disabled according to document security.
    Working with PDFs does not require permission from Adobe but
    * adding functionality to Adobe Reader definitely does; a DRM development license is a major investment.
    * if the file is Reader-enabled, all third party tools will disable that.

  • Did I need to pay for use Color finesse?

    Hello, I want to ask about Color finesse. I have that Effect in my After Effect CS 5.5 but when I want to use it the program ask me about registration. I want to ask if I need to pay after the regisration color finesse or the registration is free with AE CS5,5?
    Thanks for answering

    You don't need to pay extra to use Color Finesse in After Effects CS5.5. Color Finesse is installed automatically by the Adobe installer and serializes itself the first time you use it.
    When you apply Color Finesse to a layer for the first time it will ask for your name/organization. You need to enter something here and click OK to cause Color Finesse to serialize itself. Color Finesse as included with CS5.5 should never ask for a serial number. Nor do you need to register your copy on-line (although we suggest you do so).
    Or is Color Finesse not behaving this way? A screenshot of what you're seeing could help us understand what is going on.
    Bob Currier
    Synthetic Aperture

Maybe you are looking for