PUSHing through a DIALOG response NON-interactively

Letu2019s say I have a workflow awaiting a dialog step decision from a user.
For simplicity, lets say the possibilities are 
1     u201CChoice Au201D
2     u201CChoice Bu201D 
0     (for completeness, leave in inbox).
Letu2019s say that the item is assigned to agent US MICHAELM
MICHAELM can execute the item in SBWP.
Is there a function module or method call  that can be coded to u201Cpushu201D a response through the process without invoking a dialog.
Ie I want MICHAELM to run a Z pgm that can, for example, perform something like...
  CALL FUNCTION 'SAP_WAPI_PUSH_WORKITEM_CHOICE'
    EXPORTING
      workitem_id               = 12345678
      Choice                    = 2                 u201C 1 for A , 2 for B, u2026
      Interactive = 'NO'
      u2026
Thanksu2026
u2026Mike
SAP ECC 6.0
(BTW, Iu2019m putting together an interactive app that handles that may use workflow as a backend to determine some business routings. )

My mistake - it works just fine.  I had tried it on an old workitem where the workflow was "broken".
For those interested:
SWU_GET_DECISION_TEXT_TITLE returns the possible decisions of a workitem. 
For example:
0001Change
0002Cancel
Then simply plug the one you want in to the DECISION_KEY parameter of SAP_WAPI_DECISION_COMPLETE and the dialog work item will be completed with that outcome.

Similar Messages

  • Sending the adobe interactive form as non-interactive form through email

    Hi ,
              I am trying to send the interactive adobe form as non-interactive form  through email.The interactive form size is very large because of the interactivity.
    Can anybody suggest how to do this.
    Regards,
    Debasis

    Dear Antony,
    Thanks for the reply.
           I got you but can you pls guide me how to go about it.
    I need to send the email while submiting the form.So when and how i will be mapping each data node /attibutes of the main form with the intermediate form.My interactive form is of 30 pages and it may grow upto 40 pages.My response is with the to the main form where i am showing the success message.
    Regards,
    Debasis Nayak

  • HT1918 I have blocked my credit card on my itunes account, and was told to go in and click none so that I can still push through free apps and songs already purchased to my phone and I can not find it anywhere

    I have blocked my credit card on my itunes account, and was told to go in and click none so that I can still push through free apps and songs already purchased to my phone and I can not find it anywhere

    I had the same problem. Go back into Verizon Tunes. At the bottom of the screen you should see 3 dots. Touch them and that will bring up additional choices, one being Downloads. In the Downloads choice is 2 bars. One bar is Pending Downloads (aka Music Inbox) the other bar shows your download history.

  • Reagarding saving and sending the adobe interactive form as non interactive

    Hi ,
              I am trying to send the interactive adobe form as non-interactive form  through email.The interactive form size is very large because of the interactivity.
    Can anybody suggest how to do this.
    Regards,
    Debasis

    Dear Antony,
    Thanks for the reply.
           I got you but can you pls guide me how to go about it.
    I need to send the email while submiting the form.So when and how i will be mapping each data node /attibutes of the main form with the intermediate form.My interactive form is of 30 pages and it may grow upto 40 pages.My response is with the to the main form where i am showing the success message.
    Regards,
    Debasis Nayak

  • How to download files in jsp code {through save dialog}

    can you help me to download files in jsp code {through save dialog}
    i use the following code but it saves the jsp page instead of the downloaded file but with the name of the wanted file to be downloaded
    response.setHeader("Pragma", "public");
    response.setHeader("Cache-Control", "no-cache");
    *** download file
    if((trans !=null)&&(trans.equals("download")) )
    response.setContentType ("application/x-download");
    response.setHeader ("Content-Disposition","attachment;filename=\""+fileName+"\"");
    %>
    <script>
    window.location.href=<%=gallerypath+fileName%>';
    </script>
    <%
    trans="";
    //System.out.print("download : "+fileName );
    //***************************************

    Can you try below code, It should work...
    <%
    String myFileName = request.getParameter("fileName");
    response.setContentType("application/octet-stream");
    response.setHeader("Content-Disposition", "attachment; filename=\"" + myFileName + "\"");
    String root = "D:/";
    InputStream in = null;
    ServletOutputStream outs = response.getOutputStream();
    try {
    in = new BufferedInputStream
    (new FileInputStream(root + myFileName));
    int ch;
    while ((ch = in.read()) != -1) {
    outs.print((char) ch);
    finally {
    if (in != null) in.close(); // very important
    outs.flush();
    outs.close();
    in.close();
    %>

  • Lowercase first letter in column name of non-interactive report..Again

    A couple of days ago a posted a question on how to make the column name in a non-interactive report
    come out as lowercase. (original post: Lowercase first letter in column name of non-interactive report
    I am using Theme13, which is probably the only theme that forces the first letter
    of a column name in a report to uppercase.
    Anyway, I received several responses including the answer which I applied to my page.
    Then I went back to make the column sortable and that negates the CSS override and
    the first letter in the column name is back to uppercase...arrrggghhh!
    Are there any further suggestions on how to force this to lowercase with theme 13 and a sortable column?
    Thanks
    Donna

    Hi,
    Try style to page HTML header
    th.t13ReportHeader,th.t13ReportHeader a:link,th.t13ReportHeader a:visited{
    text-transform:none!important;
    }Br,Jari
    Edited by: jarola on Feb 4, 2010 8:00 PM

  • [SOLVED] Non-interactive SSH login and shell startup files

    I have a problem getting git-annex connecting to my arch box because of
    PATH not being correctly set. When diagnosing this problem I noticed that
    ~/.bashrc seems to be ignored for non-interactive SSH logins. More specifically,
    ssh myhost env
    Shows that when connecting to my other computer running gentoo, or to a
    separate server (probably running some flavor of Debian, I am not sure),
    environment variables defined in ~/.bashrc are present, but when connecting
    to my arch box, they are not. All three computers have identical ~/.bashrc
    files and ~/.bash_profile is set to read ~/.bashrc, and in all cases the file is
    sourced for an interactive login (i.e., 'ssh myhost' followed by 'env'). I tried to
    search through the various bash files in /etc, but didn't find anything related.
    Is there some bash or SSH setting that controls this behavior?
    Solution:
    I looked into this a bit more and found BASH_ENV which can be used to point to
    a file which is sourced for non-interactive shells. So I set
    BASH_ENV=~/.bashrc
    in /etc/environment, and now ~/.bashrc is sourced even for non-interactive
    shells and thus my PATH is correctly set. What I still don't know is why
    arch behaves differently in this respect, but I guess that will remain a mystery.
    Last edited by Nuteater (2012-07-27 18:59:30)

    try creating a .login file and put exec bash in there.
    Not _super_ familiar with csh, but I *think* csh loads .login only on login shells (as apposed to always loading .cshrc).
    Barring that, the following should work.
    if (! $?prompt) goto cshrc_end
    exec bash
    cshrc_end:

  • CCMSPING not collecting "Dialog Response Time"

    In Solution Manager 4.0, we have configured the CCMSPING agent to monitor a number of systems.  For only two of those systems, CCMSPING is not collecting "Dialog Response Time" (Availability_DiaRespTime) and "Standardized Response Time" (Availability_StdRespTime) data.  All other MTE's for those two servers are being successfully collected.  Looking at CPH, for at least one of those systems, the data was collected for a couple of weeks and then stopped.  For the other system, that data has never been collected.  The two systems with problems are the only two ECC 6.0 systems in the landscape.  In the RZ20 monitor, all that it says is that the "Value is obsolete".  I have deactivated and reactivate CCMSPING one of the systems without any change.
    Has anyone seen anything like this?  Is there any way that I can find out what errors are occurring?

    I have already a ccmsping agent registered on my central system but it seams to be not correctly registered.
    I registered correctly the agent with the '-push' option and it seams to work properly now.
    Thanks for your response
    Regards,
    Emmanuel Coindre.
    [www.emmanuelcoindre.fr|http://www.emmanuelcoindre.fr]

  • Rendering a non-interactive form

    How do we use scripting in Live Cycle Designer to render a non-interactive pdf. Data is populating the form using xml. Thanks and help will be appreciated

    Couple of issues that you should know before proceeding.
    1. To communicate with a web service from the form using Reader you will need to Reader Extend the form using Reader Extensions Server and not Acrobat. Acrobat does not turn that right on. Note that if you intend to use Acrobat this is not an issue.
    2. There is no means of getting the PDF form while it is running into the context of a SOAP message. There is no programmatic way to put the PDF into the payload from the form. I can get the data but not the form.
    3. Once the data is populated into the form we could change all of the fields to Read Only ...thereby achieving the flattening that you require.
    4. The web service will not be able to save or print locally through the client. The client will have to do that . The client being Reader or Acrobat.

  • Show / Hide Elements - how to make hidden elements non-interactive

    Hi,
    Is there a way to make hidden obejcts (through 'Show / Hide') not only hidden but completely non-interactive? I.e. even if an image is hidden, it is still click-able, which will release its set commandos (such as 'Swap Image' or 'Set Text of Container').

    Thanks a bunch! I haven't started out with the code yet. Just made some sketches to see what I need to research etc.
    When I get around to it, I'll get back to you!
    /Orvar

  • Adpreclone.pl Non-interactive Mode

    Hi All,
    want to automate backup of APPL tier
    To do that it is required to run adpreclone.pl with non-interactive mode i.e. It will not ask for any password when it will run through shell script.
    Or something like perl adpreclone.pl appsTier pwd=<>
    Is there is any other way to do that?
    Please advice.
    Thanks-
    P

    966726 wrote:
    Hi All,
    want to automate backup of APPL tier
    To do that it is required to run adpreclone.pl with non-interactive mode i.e. It will not ask for any password when it will run through shell script.
    Or something like perl adpreclone.pl appsTier pwd=<>
    Is there is any other way to do that?
    Please advice.
    Thanks-
    PPlease see old threads -- https://forums.oracle.com/forums/search.jspa?threadID=&q=Automate+AND+Clone&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Dialog Response Time is Missing in ST03N

    Hi,
    In one ofour SAP system the dialog response time data is missing in ST03 however other Task type such as RFC,SPOOL,AUTOABAP,AUTOCCMS,BACKGROUND etc are visible.
    OS COllector job is running fine and collecting all data except DIALOG
    Step for issue reproduction :
    ST03n > Expert Mode > instance > under workload overview > Task Typne Name ( Here it should show the data/response time for Background,spool,update etc).
    Kindly help me to know why it is missing. Screenshot for the same is attached here.
    Regards,
    SURYA.

    Hello Surya
    here screenshots from my test:
    ST03 for my instance before I have executed something on it, no dialog task type:
    here I have connected to the instance through SM51, still no dialog task type:
    and here I have connected directly through SAP Logon to this instance, now my actions on the instance are displayed as dialog task type:
    If your users connect through RFC to the instance, then all their actions are RFC task type actions. As soon as a user logons directly to the instance, dialog task type will appear in ST03.
    regards,
    Alwina

  • Export data to adobe non interactive form

    Hello,
    I would like to fill a non interactive adobe form with seized data in visual composer.
    How I can do that please ?

    Tony-
    I have not worked with Adobe Forms so I am not sure if this is feasible. If I had to populate a Web Dynpro form with data from a VC form I would have an action which would invoke the URL of the Web Dynpro application. This URL would have appended to it the field name and values as entered in the VC form. In the Web Dynpro component I would retrieve all the parameter values being passed through the URL and then set these values into the context. If the context is bound to a form, the data will automatically be displayed.
    Cheers-
    Atul

  • Im trying to download apps from itunes but it cannot push through. It happened after i update my software to ios 6. Can someone please help me resolve this in my ipad? Thanks!

    Hi im trying to download apps in my ipad but it cannot push through and remained waiting. This happened after i updated my software to ios 6. Can someone please help me?

    You may not get a response as you are shouting at everyone.
    All caps indicates shouting, is considered rude, and is difficult to read.
    Many will not read such posts.
    Try turning off you caps lock and asking again.

  • How to execute orainstRoot.sh during non-interactive install

    I'm creating a non-interactive install for 8.1.7 using the
    -silent and -responseFile switches. However, the install
    continues to hang when it gets to the point where orainstRoot.sh
    needs to be run as root. The oracle response file titled
    svrcustom.rsp only takes into account the need to run root.sh.
    There is no provision for orainstRoot.sh. Has anyone else encountered this and, if
    so, how did you get around this?
    Thanks,
    Bruce

    Hi:
    Oracle patching utility (adpatch) is optimized not to execute/copy the file unless the version in the $Header is higher in the patch as compared to the instance. Please bump up the $Header version within the script and update the package to pull in the changed file. When you deploy the package again, the file should get invoked.
    Thanks,
    Lokesh
    Oracle Development

Maybe you are looking for

  • Listener not working in one of the servers of the Standby site

    Hello, The system is a RAC with two servers working as Primary site, and two servers working as Standby site. Both servers of the Primary site are sending redo logs to one of the servers of the Standby site. The other server of the Standby site is no

  • Schedule Agreement Message Output Determination

    Hi Vishal Can you give me some more details for Configuring the Schedule Agreement Output Determination in the same manner for which you have given for a PO. My scenerio: Making a contract with a Vendor --> Maintain Source list --> Giving MRP indicat

  • Dreamweaver cs4 work with Mavricks?

    Need to know if Dreamweaver CS4 works with new OS  Mavricks? Thanks.  email   [email protected]

  • Crystal Designer - System cannot find the file specified

    Hi I have only just installed Crystal Reports for SAP Business One. I followed the eLearing installation guide and the installation seemed to go fine. However, when i run Crystal Designer i get the following message: The system cannot find the file s

  • Content server migration - loadercli and I'm running nuts...

    We have an (old) content server database of 150 GB on 7.3.0.52 and we're trying to migrate that database to Linux x86_64 bit. I tried the following before: - tried to install/run 7.3 on SuSE SLES 11 SP1 - failing (new kernel threading) - tried to res