Unable to capture user comments and responder in RESPOND API

We are building a custom application that uses Oracle Workflow underneath. The application users and responsibilities have been integrated into Workflow. Notifications are acknowledged and responded to directly from the application using the PL/SQL Notification APIs.
When using the wf_notification.respond API with the appropriate user and comment information filled in, we are still unable to capture the responder information as well as the reponders comments. In other words, the RESPONDER and USER_COMMENT fields in the WF_NOTIFICATION is blank. However, the response does seem to go through otherwise. Do we need to set some kind of user context outside of just setting the response attributes and calling the respond API? Following is the code....
owf_mgr.wf_notification.setattrtext(p_nid,
               'RESULT'          ,
               'APPROVED');
-- This procedure then caused the WF to advance to next step
-- Respond to notification, depends on RESULT setattrtext above
owf_mgr.wf_notification.respond(     p_nid, -- notification id     
     p_respond_comment,     -- response_comment
p_responder     );     --responder role
Any help is greatly appreciated.
Thanks,
Raj

If you are on 11.5.10 or greater or standalone 2.6.4 if you pass the responder value to wf_notification.respond API it should be updated in wf_notifications.responder column. The comments is now updated in wf_comments table against the notification id and not wf_notifications.user_comment column.
Thanks, Vijay

Similar Messages

  • How to create an interactive magazine with user comments and voting system?

    I need to create an interactive magazine that includes user comments and votes (like/unlike).
    I know that I can create digital swf magazines in indesign and that user comments and like/unlike buttons can be entered with coding in adobe dreamweaver.
    I need this for a school project and I do not know if it's possible or if there is another way of doing it in dreamweaver...
    Thanks

    The easiest way to do like/unlike voting is use facebook´s like/unlike button generator at http://developers.facebook.com/docs/reference/plugins/like/ to create a code. You can set up the appearance and some features of your button and you will end up having an iFrame code. You can add that code into your html-wrapper file with some regular texteditor like wordPad....
    Here´s one example, it´s an InDesign SWF finalized with eDocker but I don´t see any reason why you couldn´t use the SWF exported directly from InDesign as well. If you want to put it to some specific location, you have to wrap it up into a div and set up some css for that div, but it´s not a rocket science either.....=)
    http://www.prepress.fi/keva

  • Unable to access user DDIC and SAP*

    +Hi GURUS,+
    +I installed solutionmanager 4.0 and i loggen in the system(000) with DDIC user and check the TCODE SICK.+
    ++When i restarted the server it was not allow me to login awith user  DDIC and SAP in 000 client.++*
    +It's giving error message:+
    +Password log on nolonger possible too many times failed attempts.+
    ++Could you please help me out is there any way to set DDIC and SAP from windows level(i mean sap inst directry..usr/sap/<sid>/sys/profile)*
    Regards
    JAn

    Hi,
    Unlock it at Database level
    UPDATE usr02 SET uflag = 0 WHERE bname = "SAP*" AND mandt = <client number>
    Or
    Run the sql query at sql prompt and then login to sap with sap* and password "pass".
    SQL> delete from usr02 where mandt=<your login client> and banme='SAP*';
    Rakesh

  • Capturing User Id and Time

    Hi All,
    I need to keep track of the user ID and Time for the data entered through a web interface.
    Please suggest the way to achieve this.
    Thanks,
    Deepthi.

    Hi Deepthi,
    there is a how to paper: How to Line Items in SEM-BPS.
    It describes how to add user and time to each dataset enterd/changed.
    Best regards
    Steffen

  • How to get Portal Login user ID and Groups using UME API in JSPDynpages

    Hi Experts,
    How can I get the portal logged user ID and bsed on that ID need to get his assigend groups.
    For this Initially I need to get the logged user ID using UME API.
    Can you drop the code to write and display using JSP Dynpages?
    Thanks
    Venkat.

    Hi,
    Try the below code
    IUserFactory userfact=UMFactory.getUserFactory();
    IUser user=userfact.getUserByUniqueName(request.getUser().getUserId());
    String usrid=user.getUniqueName();
    And also you can get the groups assigned to user by using the below code
    Iterator groups = user.getParentGroups(true);
    while (groups.hasNext()) {
         String groupstr = (String) groups.next();
         IGroup g = UMFactory.getGroupFactory().getGroup(groupstr);
         response.write("Group name "g.getUniqueName()"<br>");
    Regards
    Suresh

  • How to capture user name and date in the database

    How to capture the person name who edits the application and the date of edit in the database...
    Pallavi

    Hi
    There are substitution strings you can use for this purpose.
    1.APP_USER ------is the current user running the application
    2.SYSDATE --------represents the current date on the database server
    APP_USER Syntax
    Bind variable------ :APP_USER
    PL/SQL------- V('APP_USER')
    Substitution string---------- &APP_USER.
    SYSDATE_YYYYMMDD Syntax
    Bind variable------- :SYSDATE_YYYYMMDD
    Direct PL/SQL------- APEX_APPLICATION.G_SYSDATE (DATE DATATYPE)
    PL/SQL-------- V('SYSDATE_YYYYMMDD')
    Your application will be based on a table with primary key column. You create a 'before update trigger' on that table and add columns 'UPDATED_ON' and 'UPDATED_BY' to that table. Add the following to that trigger:
    :NEW.UPDATED_ON := SYSDATE;
    SELECT V('APP_USER') INTO :NEW.UPDATED_BY FROM DUAL;
    -Priyanka

  • Capture user comments when unpublishing a document

    Hi,
    I have a requirement to force the users to enter comments when Unpublishing a document. I have looked around various web sites etc and cant seem to find how to achieve this either by an OOB feature or by developing some form of event receiver.
    Does anyone have an idea or link to site where this functionality is explained. Seems strange tha you can enter comments when publishing but not unpublish.
    Thanks Chris

    Hi,
    According to your post, my understanding is that you want to force the users to enter comments when Unpublish a document.
    We can use jQuery and Client Object Model to achieve it.
    Popup an add comments dialog when click "Unpublish this version" and use
    File.UnPublish method to add the comments.
    https://jqueryui.com/dialog/
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.file.unpublish(v=office.14).aspx
    We can also use SPFile.UnPublish Method in the Event Receiver
    ItemUpdated method.
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spfile.unpublish(v=office.14).aspx
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • Capturing User Action and populating Standard table

    Hi Friends ,
    I have a requirement , its a classical report and in that based on the user action ( if the user checks a check box that is available in the output screen of the report and saves it) the value should be updated in a standard table as 'X'. I have appended the field in the standard table and now i need to write a logic at user command to populate the zfield that i have added in the table based on the user's input.
    I need to capture the user's action into an internal table and then pass this value into a function module to update the standard table, Can someone suggest me how to proceed further on this issue ? Kindly let me know if you have any sample piece of code related to this scenario...
    thanks in advance.

    DATA: date TYPE d,
          flag TYPE c LENGTH 1,
          wa   TYPE c LENGTH 10.
    START-OF-SELECTION.
      date = sy-datum.
      DO 10 TIMES.
        date = date + sy-index.
        WRITE: / flag AS CHECKBOX, (10) date.
      ENDDO.
    AT LINE-SELECTION.
      DO.
        READ LINE sy-index FIELD VALUE flag
                                       date INTO wa.
        IF sy-subrc <> 0.
          EXIT.
        ELSEIF flag = 'X'.
          WRITE / wa.
        ENDIF.
      ENDDO.

  • How to Capture print jobs and Data with WIN32 API?

    My organization has about 5 network printers and copiers to which a computer can print. What I'd like to do is build, if possible, a simple JAVA program to intercept what the users are printing (from any application) and capture certain information about the print jobs before it gets sent off to the specified printer.
    For example, when a user selects print from the menu in MS Word, and after the Ok button is pressed on the printers dialog window, have my program then pop up asking the user to fill in specific information (who they want to charge for the print job...this is typically an internal billing code, etc.).
    The program would have to capture the name/driver of the printer users are printing to, the document they printed, number of pages, number of copies, date/time, etc.
    Is/are there Windows API's to help in my programming of this application? I've been, unsuccessfully, searching MSDN, web sites, etc. on how to intercept/detect a print job. Any help would be greatly appreciated!
    Thanks ahead of time...

    Hi,
    Printing is nothing to do with database transaction. SP will not apply here. You may only try SDK.
    Thanks,
    Gordon

  • Unable to capture IdcService on certain webdav actions like copy-paste

    We wrote a simple checkin filter long back for the Dynamix Prefix functionality.
    We have written an If Clause to restrict running this for any services other than CHECKIN related ones, by checking the value of IDCService parameter
    There is a scenario where users copy files present in one folder in UCM and paste it under another folder (thus creating a new content item altogether), using Webfolders.
    In 10g, even this case produced correct Prefix as service name. We used to have "validateStandard" filter used for this activity.
    In 11g, due to some complications and changed filters, we started using "preComputeDocName" filter.
    In 11g PS3, We are unable to capture IDCService here and hence unable to assign Dynamic Prefix. Any suggestions?
    Currently we only fire the code if IdcService contains "CHECKIN_" or "WEBDAV_PUT" or "COLLECTION_COPY"
    Regards,
    Prateek

    Office X is problematic in SL and it's a bit obsolete since it's almost ten years old. Student version of office is relatively inexpensive. BTW, I can't solve your issues, since I moved to Office '04 six years ago.

  • HRMS Self Service User Comments

    Hi Experts,
    We need to capture user comments displayed in either the REVIEW or the APPROVAL Self Service page for reporting purpose.
    Checked HR tables and Workflow Notification tables, but was not able to find these user comments data.
    Thanks in advance.

    I am extracting data from these three tables along with an activity history view. Note that only comments to "Salary Changes" are stored in the P_COMMENTS of the transaction values table. User comments entered by Personnel actions initiator to approver, or approver's comments do not exist in the values table. Please provide the table name and column name storing the user comments described above if you know their storage location. Thanks.

  • Using Shared Review via Network Folder on Windows server and PC and Mac users commenting

    We are having initiation and connection problems on the Macs (running OS 10.6.4 Snow Leopard)  with Shared Reviews (from Acrobat 9) that are stored on a Windows 2008 Server connecting via SMB. I would be very interested to hear from anyone who is successfully:
    1) Initiating Shared Reviews from a Macintosh via "Automatically collect comments on my own internal server" and navigating to a folder (with full read/write permissions for all) on a Windows server. We cannot get Acrobat (via the automated SR set-up wizard) to verify the network folder location on the Macs so that a Mac user can initiate a Shared Review. On Windows (using Parallels or logging in to a PC directly), the same users have no problem initiating and accessing Shared Reviews.
    2) Accessing Shared Reviews on a network folder (set up on a Windows 2008 server) via a Mac running OSX 10.6.4 and Acrobat 9. All users have read/write access to the folder and can navigate to it via the server. They can save documents to the network folder and open other documents there as well. When they open a Shared Review-enabled PDF for commenting, they get the error message that Acrobat cannot connect to the server. Retry results in the same error message.
    We use Shared Reviews extensively and have no problems with PC users accessing the files and Mac users accessing them via Windows (Parallels or on a PC). This is very frustrating so I would really appreciate any ideas, especially if anyone is actually doing Shared Reviews this way.
    Thanks.

    Unfortunately, this is NOT fixed based on the testing I have done.
    1) I am still unable to connect to the network folder on a Windows server from the Mac to initiate a Shared Review In Acrobat version 9.4.6. Same error message as previous Unable to locate server. See screenshot:
    2) One of the Mac users (also upgraded to Acrobat 9.4.6) who was invited to participate in a Shared Review (initiated using Parallels/Windows) was initially able to open the file and Publish comments. However, after she did and closed the file, she was unable to reopen the same file, connect to the server and add comments. And no other Mac user could access the file after she added her first comments. We all got the error message "Unable to connect etc" See screenshot.
    3) I opened the same file in Parallels/Windows with no problem. However, the Mac user's comments were not there. I could add comments and publish in Windows.
    4) When I tried to access the Tracker from my Mac (review was initiated via Parallels), I got the error message File not Found when I tried to access the test review via my Mac (see screenshot).
    Could you give me more information about the fix? I would also be happy to talk to you or send more details if that would help.
    Our set up has not changed from the original information I sent (there may have been some Mac updates -- we are all on OS 10.6.8 but still Snow Leopard). Server has not changed.

  • Unable to capture startup and shutdown event of Photoshop in automation Plugin.

    Hi,
    I am creating an automation plugin and I want to register some events. I have seen listener plugin sample to register event in startup and unregister event in shutdown. I have used same code in my plugin but I am unable to capture the startup nad shutdown event of Photoshop. On clicking the menu item of my plugin the calls come inside the AutoPluginMain but during the startup or shutdown of plugin, the calls does not come inside the AutoPluginMain.
    I am unable to detect the cause of the problem. Can someone please giude me??
    Thanks in advance.

    Hi Tom,
    Thanks for the suggestion.
    Yes, I am working on Windows. As you suggested, I compiled .rc file but the compile option for .r file was disabled. After compiling the .rc file, I again rebuild the complete project and tested my build. But still I was not able to achive the desired result.
    Any other thing that I need to do to make it work?
    Thanks

  • Unable to capture in FCP, Quicktime and iMovie, camera not recognized.

    I am unable to capture in FCP, Quicktime and iMovie.
    I have been dealing with this problem for quite a while now, and I think I have tried everything posted on these forums regarding this issue. I have been to the Quicktime, iMovie, and this FCP forum looking for the solution. Hopefully someone has a suggestion that I have missed or have not tried yet. I have a Powerbook G4 running OSX Tiger 10.4. I am running Quicktime 7.04, and FCP 4.5.
    My problem is this… I am unable to capture from my Canon ZR-200 Mini DV camera, using Final Cut Pro, iMovie and also Quicktime. FCP says no camera recognized. iMovie says no camera attached, and Quicktime says no recording device found. In FCP, I am using the Firewire Basic setting, and NTSC DV settings. I have captured in FCP with the same camera several times in the past. I think the problem started when I upgraded to OSX 10.4, or one of the Quicktime upgrades.
    Here are the details…
    - Camera is connect via Firewire. I have tried the built in ports, as well as a Firewire Carbus card.
    - OSX recognizes the Canon ZR-200 in the System Profiler, so I know the computer sees the camera.
    - I have tried the camera on a Windows XP machine, and capture works perfectly, so I know the camera is functioning properly in VTR mode.
    - Deleted my FCP pref’s using FCP Rescue.
    - Deleted the Quicktime receipts, and re-installed Quicktime 7.04
    - Reverted back to Quicktime 7.01
    - Set the audio to 44.1 in the the Audio MIDI setup in the Utilities folder
    - Tried the “GarageBand” fix, opening the programing, playing a few notes and closing.
    - I have installed Quicktime using the program “Yank” to completely delete Quicktime and re-install.
    I may have tried more solutions, but these are the fixes that I can recall.
    If anyone has any others suggestions, it would be much appreciated.
    Brent

    Hi Brent:
    Although it looks as if you have tried all of the 'fixes' that are normally suggested here, please read through this Apple Article to see if some obscure thing applies to you.
    iMovie: Cannot see or control camera
    http://docs.info.apple.com/article.html?artnum=43000
    Sue

  • Download Helper, even with paid converter upgrade, gives "Invalid Capture File" errors and will not record audio, with "File Creation Error - Unable to rename/copy audio file" Error.

    Download Helper Screen Capture worked to capture video if the default "no audio" option is active. But, no audio. The "speakers" or "microphone" audio options are confusing....the audio to be captured is from the video, so what do you choose? With either "speakers" or "microphone" selected, the captured file has poor audio and no video. Re-capture efforts (speakers) get "Invalid capture file error" and "File Creation error- Unable to rename/copy audio file"
    The paid upgrade of "Converter" doesn't work.
    Instructive documentation - not very good.
    Suggestions - Need time delay between initiation of "Record" and starting the video to be recorded.
    Could use timer tracking of the record process.
    Are there operating system limitations? (Have Windows XP Pro)

    That is an issue for the developer of that Download Helper.

Maybe you are looking for

  • Report of sales orders with several schedules lines

    Hi all, I try to develop a report for sales orders and delivery info. I need sales order quantity, delivery quantity and the quantity in the scheduled line. But I faced with the problem of several scheduled lines. I could not find the relation betwee

  • How can I use the symbol "or" in a while loop

    I have an error in the attach Vi. Do you know how I can fix it? Thanks Attachments: while_ctrl.vi ‏33 KB

  • Commiting 3 new rows - only 2 exist after

    Hi OTN, in my ADF BC application I have a bounded taskflow for creating new rows. It contains CreateInsert operations for VO1 and VO2 (VO2 is a child of VO1 and a child of another VO which is not touched by the taskflow). I've put postChanges between

  • Sales order to be blocked based on customer payment terms and credit limit

    Hello Gurus, We have some requirement of credit management  : Client  want sales order to blocked based on payment terms  if customer doesn't pay  previous dues as per the payment terms mentioned customer master ,sales order ,  irrespective of custom

  • How do I update preloaded software?

    Just recently purchased a new Macbook Pro, and opted to have iWork preloaded on it. That's all fine and dandy, and it works great, but since the iWork programs don't show as installed or purchased in the App Store, how do I get updates for them? Is t