Please tell me UWL API

Hi,
For accessing items of UWL which API i have to used
I need to access all notifications of UWL . I need to send notifications to other user also . So can any one tell me how i use api UWL api.
Regards,
Gurprit Bhatia

Hi Gurprit,
Check the following links which might help you.
http://help.sap.com/javadocs/NW04S/SPS09/uw/index.html
http://help.sap.com/javadocs/NW04S/current/uw/UWL_API_SAPOfficeMailExample.pdf
http://www.sapteched.com/07/emea/edu_sessions/session.htm?id=686
Thanks n Regards,
Jhansi Miryala

Similar Messages

  • For accessing Notification of KM...Pls tell me KM Api

    Hi,
    Please tell me KM Api . Actully i want to access KM Notification into my Application.
    Regards,
    Gurprit Bhatia

    check these APIs
    https://help.sap.com/javadocs/NW04S/current/km/index.html

  • Can you please tell us why our API fails

    Can you please tell us why our API fails when we use this timezone of Slovakia?
    API Name: jtf_tasks_pub.create_task
    This standard oracle API fails with the error : TIMEZONE FOR 483 IS EITHER DISABLED OR INVALID
    But we do have the Timezone record number 483 in Oracle.
    If we run this query, we see UPGRADE_TZ_ID 483 assigned to Europe/Bratislava
    select * from apps.fnd_timezones_vl
    where UPGRADE_TZ_ID=483
    Please let us know why it fails.

    I'd suggest you log a SR for this issue.
    Thanks,
    Hussein

  • Need help in developing a webdynpro application using UWL API

    Hi developers,
    Iam developing a new WebDynpro application for UWL using UWL API.the functionality is to dispaly the summary of UWL like number of unread items, total items.
    Iam getting the problem while deploying the application, iam getting warning while deployed the application.
    I have given all possible ways mentioned in the below forum link
    Re: Accessing PortalRuntime at runtime?
    The exact problem is coming at reference file.
    Please giude me how to move forward.
    1. Below is the error when given "tckmcbc.uwl~api" in the service entry
    deployed with warning :
    Finished with warnings: development
    Caught exception during application startup from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Error occurred while starting application local/UWLCountDemo and wait. Reason: Clusterwide exception: server ID 21763550:com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to prepare application local/UWLCountDemo for startup. Reason=Clusterwide exception: Failed to start dependent service ''tckmcbc.uwl~api'' of application ''local/UWLCountDemo''. Status of dependent component: STATUS_MISSING. Hint: Is the component deployed correctly on the engine?
    2.Below is the error  when i gave PORTAL:sap.com/tckmcbc.uwl~api in the sharing refernce entry
    Finished with warnings: development
    Caught exception during application startup from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Error occurred while starting application local/UWLCountDemo and wait. Reason: Clusterwide exception: server ID 21763550:com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Application local/UWLCountDemo cannot be started. Reason: it has hard reference to resource tckmcbc.uwl~api with type application, which is not active on the server.
    Thanks in Advance
    Sekhar.
    Edited by: sekhar c on Mar 21, 2009 11:24 AM

    Please see Kenichi Unnai in his blog "How to use UWL API for NetWeaver BPM Tasks"
    How to use UWL API for NetWeaver BPM Tasks
    The .sca-file can be found on the sap service marketplace, afterwards you need to import the .sca-file, add the SC to your "MyComponents" and then you can select your necessary DC's.

  • URGENT:PLEASE TELL ME HOW TO RUN BOTH "ITEXT & MYFACES1.0" TOGETHER?

    URGENT: HELP PLEASE. ITEXT AND MYFACES1.0.9 COMBINATION USE BLOCKS THE PDF GENERATED ITEXT.
    We are using ITEXT for PDF report generation in JSF web appliaction, We needed to implement the Fileupload, we tried both MYFACES1.0.9 and TOMAHAWK, both ways we also got the file uploading working. For this we needed to add the filter in the web.xml file ( <filter-name>ExtensionsFilter</filter-name> as below). NOW by doing this, it BLOCKS THE PDF OUTPUT OF THE ITEXT and the result in sumthing like corrupted PDF is spitted in the browser (%PDF-1.4 %âãà Ó 2 0 obj <>stream ÿØÿà JFIF� �`�`�ï¿................................................)
    When i remove the MYFACES1.0.9 only then the good PDF output is viewable in the BROWSER.
    PLEASE TELL ME HOW TO RUN BOTH ITEXT(for pdf report) and MYFACES1.0.9 (for fileuploading) TOGETHER?????
    ========================
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee">
    <description>Empty web.xml file for Web Application</description>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.faces</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>35</session-timeout>
    </session-config>
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    <filter>
    <filter-name>ExtensionsFilter</filter-name>
    <filter-class>
    org.apache.myfaces.component.html.util.ExtensionsFilter
    </filter-class>
    <init-param>
    <param-name>uploadMaxFileSize</param-name>
    <param-value>10m</param-value>
    </init-param>
    <init-param>
    <param-name>uploadThresholdSize</param-name>
    <param-value>100k</param-value>
    </init-param>
    </filter>
    <filter-mapping>
    <filter-name>ExtensionsFilter</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    </web-app>
    ========================

    calm down!
    You always have the option of dumping the file uploading component and just using the Apache FileUpload API in a servlet - then you'll have full control over what happens when without any additional configuration needed.

  • Error while using the UWL APIs?

    Hi All,
    I am using the UWL APIs for Task generation.
    Following line is giving error in my code :
    <b>IUWLService uwlService =
                             (IUWLService) PortalRuntime.getRuntimeResources().getService(
                                  IUWLService.ALIAS_KEY);
          UWLContext myContext = new UWLContext();
              try {
                  IUWLSession mySession = uwlService.getUwlSessionForWebDynproClient(myContext);
                catch (Exception e) {
                   response.write("Can not create session");
                                                 [</b>
    The error is " The method getUwlSessionForWebDynproClient is undefined for the type IUWLService
    Please help. I am using the right jar
    <b><property name="ServicesReference" value="SAPJ2EE::library:tckmcbc.uwl~api"/></b>
    Please help.
    Marks given for early and helpful replies.
    Sumit

    Hi All,
    This is just to share my experience.
    I haved solved the problem by adding the SAP:J2EE library reference to the above library in Deployment Descriptor.
    Sumit

  • Can you please tell mejdk 1.6 has new method getHardwareAddress()

    can you please tell mejdk 1.6 has new method getHardwareAddress() i write this code in jdeveloper 10.1.3 and occure an error ( this method not found in NetworkInterface ) and jdeveloper highlight it with redline. i just uninstall jdk1.5 and then install jdk1.6u2 then still this error .
    pleaze help me what can i do .
    try {       
    InetAddress address = InetAddress.getLocalHost();
    NetworkInterface ni = NetworkInterface.getByInetAddress(address);
    byte[] mac = ni.getHardwareAddress();
    for (int i = 0; i < mac.length; i++) {             
    System.out.format("%02X%s", mac, (i < mac.length - 1) ? "-" : "");
    System.out.print("GetDisplayName ="+ni.getDisplayName());
    System.out.print("Ni.toString ="+ni.toString());
    System.out.print("Network interfaces ="+address.getHostName());
    } catch (UnknownHostException e) {        
    e.printStackTrace();
    } catch (SocketException e) {        
    e.printStackTrace();

    Hello Sir
    actually i am new to java.
    currently i am using jdeveloper 10.1.3 and jboss in window. i want to get the macAddress through java api NetworkInterface it has getHardwareAddress method in jdk 1.6 but it does not work in jdeveloper pleaze tell me the solution what can i do it is working fine.
    try {       
    InetAddress address = InetAddress.getLocalHost();
    NetworkInterface ni = NetworkInterface.getByInetAddress(address);
    // here is error jedeveloper underline with redline getHardwareAddress()
    byte[] mac = ni.getHardwareAddress();
    for (int i = 0; i < mac.length; i++) {             
    System.out.format("%02X%s", mac, (i < mac.length - 1) ? "-" : "");
    System.out.print("GetDisplayName ="+ni.getDisplayName());
    System.out.print("Ni.toString ="+ni.toString());
    System.out.print("Network interfaces ="+address.getHostName());
    } catch (UnknownHostException e) {        
    e.printStackTrace();
    } catch (SocketException e) {        
    e.printStackTrace();

  • Developing mobile application (SAP Ui5) using UWL API

    Hi,
    I need to develop a mobile application using sap ui 5 which will fetch the work items from the logged in user's id and when the user clicks on the workitem another custom page should open which will have the details of the task selected.The entire applications needs to be accessed from a smart phone.
    Basically I will be using a hybrid web container for this purpose.
    Do you have sample code or informtaion in this regard.
    Thanks,
    Ranjan.

    Please see Kenichi Unnai in his blog "How to use UWL API for NetWeaver BPM Tasks"
    How to use UWL API for NetWeaver BPM Tasks
    The .sca-file can be found on the sap service marketplace, afterwards you need to import the .sca-file, add the SC to your "MyComponents" and then you can select your necessary DC's.

  • Fetching Tasks Using UWL API

    Hello Experts,
      Currently we are in the process of retrieving the task items assigned to the logged in User in Portal...We are using UWL API for the same. The problem is that when we create a task through the my Tasks Link in Collaboration, the created task is not getting retrieved.
    Please let us know what could be the reason for this....
    Regards
    Kris

    What was the resolution for your issue?
    I am also using the UWL API to retrieve items.  When I clear the UWL cache, the API reports 0 items even if I have some, however, if I load the UWL page, the API starts to report the correct number of UWL items.  I have tried the functions getItems() and refreshCacheAndGetItems(), but neither seem to work after clearing the UWL cache.

  • Use UWL API in a Servet and access the servlet via URL

    Hi All,
    Actually I want to write a servlet from which I will access the uwl items using UWL APIs. And then I will submit HTTP Request to this servlet via url and want to get the UWL items in response. Is it Possible. I know that it is possible to access uwl items from JSPDynpage but is it possible to use it via servlet. If possible please give me some idea. what are the prerequisite.
    Thanks and Regards
    Avijit

    Hello,
    I see your thread is still unanswered, were you able to resolve the problem yourself (if so can you share with others who may have the same problem)? If so can you add anymore details which may help someone else to find an answer?  Or is it ok to mark this post as assumed answered?
    Beth Maben
    EP - Senior Support Consultant II
    SAP Active Global Support
    Global Support Centre Ireland
    **SDN Forum Moderator:
    SAP Enterprise Portal: Application Integration
    **SDN Universal Worklist Wiki:
    http://wiki.sdn.sap.com/wiki/x/ehU

  • Please tell me examples of how defineNamedWhereClauseParam is used

    Hi,
    Following APIs added to oracle.jbo.RowSet in JDev10.1.3
    - void defineNamedWhereClauseParam(String name, Object defaultValue, int[] indices);
    - void removeNamedWhereClauseParam(String name);
    - void setNamedWhereClauseParam(String name, Object value);
    - void skipNamedWhereClauseParam(String name);
    Please tell me examples of how defineNamedWhereClauseParam is used.
    Thanks

    Hi,
    the Javdoc that are available on OTN (http://download-east.oracle.com/docs/cd/B25221_04/web.1013/b16005/index.html) say
    defineNamedWhereClauseParam
    public void defineNamedWhereClauseParam(java.lang.String name,
    java.lang.Object defaultValue,
    int[] indices)
    Defines a named bind variable to use with the view object's where-clause.
    This named where-clause parameter will be defined as a variable on the view object. That is, if a named where-clause parameter is defined through one row set, all other row sets that belongs to the same parent view object will "see" that parameter.
    Through the defaultValue, one can specify the default value for this where-clause parameter. If no default value is supplied, null will be used as the parameter value.
    The indices parameter specifies where-clause parameter indices into which this named parameter will be bound. The same value can be bound into multiple indices. For example, if { 1, 2 } is specified for indices, the value will be bound for where-clause parameter indices of 1 and 2. I.e., this parameter will produce setWhereClauseParam(1, value) and setWhereClauseParam(2, value).
    This method can be invoked to redefine an existing named where-clause paramter (to change the default value and the indices) only if the named parameter is found on the view object. If the named parameter/variable is found on one of the parent objects, a new where-clause parameter definition is still added to the view object.
    When redefining, a check is made to ensure that the existing variable has no kind specification (null) or is of the "where" kind (which means that the existing variable is a where-clause parameter). If not, an InvalidParamException is thrown.
    Defining a named where-clause parameter does not automatically execute the query. You must call executeQuery() to apply the new bind value.
    Parameters:
    name - the name of the where-clause parameter.
    defaultValue - specifies the default value for this where-clause parameter. This default value can be overridden through a call to setNamedWhereClauseParam().
    indices - where-clause indices into which this parameter value should be bound. See above.
    Throws:
    InvalidParamException - if this method is being called to redefine an old parameter and the variable turns out not to be a where-clause parameter.
    removeNamedWhereClauseParam
    public void removeNamedWhereClauseParam(java.lang.String name)
    Removes a named where-clause parameter.
    This method removes previously defined named where-clause parameter. A check is made to ensure that the variable being removed is a where-clause parameter (variable kind = "where"). If not, an InvalidParamException is thrown.
    If the named where-clause parameter is found but it does not belong to the view object that owns this row set, an InvalidOperException is thrown. This means one is disallowed from removing a named where-clause parameter that belongs to the View definition, for example.
    Removing a named where-clause parameter does not automatically execute the query. You must call executeQuery() for the removal to take effect.
    Parameters:
    name - the name of the where-clause parameter to remove.
    Throws:
    InvalidParamException - if the specified variable is not a where-clause parameter.
    InvalidOperException - if the specified variable does not belong to the view object that owns this row set.
    setNamedWhereClauseParam
    public void setNamedWhereClauseParam(java.lang.String name,
    java.lang.Object value)
    Sets the value of a named where-clause parameter for this row set.
    If the view object owns multiple row sets, each row set may have its own (different) named where-clause parameter value.
    Setting a named where-clause parameter does not automatically execute the query. You must call executeQuery() to apply the new bind value.
    Parameters:
    name - the name of the where-clause parameter.
    value - the where-clause parameter value for this row set.
    Throws:
    InvalidParamException - if the named variable turns out not to be a where-clause parameter.
    NoDefException - if the named where-clause parameter does not exist.
    skipNamedWhereClauseParam
    public void skipNamedWhereClauseParam(java.lang.String name)
    Skips the named where-clause parameter for this row set. This method does not remove the named where-clause parameter. However, it "masks out" the named where-clause parameter, so that the parameter is skipped when the query is executed.
    Skipping a named where-clause parameter does not automatically execute the query. You must call executeQuery() for the skip to take effect.
    Parameters:
    name - the name of the where-clause parameter.
    Throws:
    InvalidParamException - if the named variable turns out not to be a where-clause parameter.
    NoDefException - if the named where-clause parameter does not exist.
    Frank

  • Can anyone PLEASE tell me if I can download itunes to a tablet other than ipad (Toshiba Thrive)

    Can anyone PLEASE tell me if I can download itunes to my Toshiba Thrive & if so what version to use?

    iTunes is available for Microsoft Windows and Mac OS X - nothing else, including Android.
    The version of iTunes pre-installed on an iPad is a store-front for the iTunes Store, and cannot be installed on anything else.

  • In new iPad 4g, when sim card is not inserted, I can not find the enable 4g tap in the setting-cellular data tap, can some one please tell me if this is normal and if so, then when it appears, thanks

    In new iPad 4g, when sim card is not inserted, I can not find the enable 4g tap in the setting-cellular data tap, can some one please tell me if this is normal and if so, then when it appears, thanks

    If the SIM is out of your phone, find my phone needs a data connection, so could use wifi - IF in range of a wifi and one that it can join (ie. a known network or one that is wholly open so no login required).  Your phone could also simple be turned off, so not findable, or it may have been restored (plugged into iTunes and restored as new) again, making it permanently unfindable.  Honestly, for someone stealing an iPhone, this is likely the first thing they do - restore as new and it is theirs forever.
    Find my iPhone is tied to the users iCloud account - the find function is part of the iCloud account's services and it communicates with the iCloud servers over a data connection - either wifi or 3G.
    Have you set up your iCloud account on your replacement phone, and is it working properly on that phone?

  • Can I update my licensed Acrobat 8.0 Standard somehow?  If so, please tell me how to do it.

    Can I update my licensed Acrobat 8.0 Standard somehow?
    If so, please tell me how to do it.
    Thank you.

    You need at least Acrobat 9 to be eligible for upgrades, so it's a moot point. Simply buy a new license of a current version.
    Mylenium

  • Can Someone PLEASE Tell Me Why My Muse Site Will Not Work Upon HTML Export?

    Sorry for the long title!
    I've had a few threads going regarding troubles with my Muse site. These issues have been on-going, and once I was no longer able to upload to Fetch—and had to export to html via FileZilla—it just seems the problems continue to snowball.
    I have a web site. I will disclose the URL here now: www.jamescdarling.com
    When this site was html-based (its original form), using my yahoo small business web host and Fetch, it worked like a charm. All Flash files functioned at 100%, embedded videos/players all played great, etc. Then, I switched over to Muse 1.) because I was excited by the potential, and 2.) I wanted to re-design my site, anyway.
    So, I created my site in Muse, and uploaded it all into Fetch. I soon found that some of my Flash files and videos were not working. This was the case for a long time. I finally gave up after trying everything and asking lots of questions here.
    Just recently, I set out to fix these issues as I was afraid this half-assed site would appear to make me look unprofessional and like I had no idea how to use Flash. I had some problems with the new Muse Update (had to ditch Fetch and use "export with html" using FileZlilla). Changes made to my Muse file were not taking... and each time I viewed my updated site, the updates were not there—it still looked like the previous incarnation of the site. However, with some help from some of the good folks here, I was able to make my site not only update, but work nearly perfectly—or so I thought!
    I just clicked on my personal web site URL link in my LinkedIn page, and I see the old-looking site! The bookmark I have of my site is near-perfect—only the videos still will not load. However, it would seem that my site only functions as well as it does on MY computer only—that is, URL's I have been sending out probably are of the old non-functioning site? The changes I make are not being recognized.
    If you will, click on my above URL (in bold)..... If you click on "Resume", you should see light blue rules separating each section. But I bet you will see heavier gray bars with headers inside them. Also, if you view my Flash work, go to the "Epiphone Casino Mini Site".... the "Finshes" and "Features" pages' interactive elements will not function as they should (never mind the video page!)—but they work perfectly when accessing my site from my bookmark on my computer.
    Can someone please tell me how to make my site update web-wide, and how to get my Flash files to function?
    Thanks!!!
    Message was edited by: darling67

    It seams a lot of folks are haveing issues with FTP upload. Try these areas to look at. Maybe the right answer. I dont use Flash on my sites for a long time now. Anyhow, check these out.
    http://tv.adobe.com/watch/muse-feature-tour/adobe-muse-publishing-and-managing-your-site/
    http://www.adobekb.com/using_3rdparty_ftp.html#usingftp-understandinghowftpworks

Maybe you are looking for

  • HT1338 how do i get mac app store

    the app store aint in my apple botton inthe top left coner

  • Invalid column type - SQL Exception during upload

    Hi, I am facing this error when trying to upload/commit values in my form to the database. Strangely, the error is not coming for the first upload (which makes me feel that the data types of all columns are correct) but it comes up for all subsequent

  • Custom software component not selectable in Landscape Configurator

    Hello all, I am trying some tutorial about Java development with a track and the developer studio. I have successfully created the software component in my SLD, which is well linked to the NWDI. When creating a track in the Landscape Configurator, ho

  • Add new protocol handler at OS level

    Hi, I'd like to write a new protocol handler at the OS level, so that when any browser points to myHandler:myData is should open a specified program and pass myData to it. Something similiar to the mailto: handler, which is built in. How do I do this

  • Help: Unicode issue in Snow Leopard not in Leopard?

    Hello All, I've finally switched from Leopard to Snow Leopard. I'm loving the improvements. But, I do have one issue. I like to keep things tidy and orderly on my computer. In Leopard I had been using a number of characters from the Unicode Miscellan