Problem with workflow to control mitigating RAR to CUP

We have configured in RAR, the workflow to send request for approval of Mitigation Owner using CUP Workflow. For Mitigation Control Using RAR  work fine, but unfortunately when we mitigated the Risks through the CUP request,  the workflow of Mitigation Control was not started.
Workflow: USER > MANAGER > ROLE OWNER.
Workflow with risk: USER>MANAGER> MITIGATION OWNER> ROLE OWNER (We have problem to send the request for Mitigation Owner).
In the attached file has the details of this problem.
Let me know if you need any other information.
Best Regards,
William Pantaleao

Yes, it is configured correctly misc.
Thanks
William Pantaleã

Similar Messages

  • Problem with a table control

    Hi gurus,
    I´ve a problem with a table control. It has 3 columns which one is a checkbox.
    I can fill all fields but in the moment I mark the checkbox this line must be unwritable. How can I do it?
    Thanks for all
    Dani

    Assign a function code to the checkbox column....
    so when u check / uncheck any entry, PAI + PBO will be triggered....
    In the PBO during the loop of table control, check the checkbox field value. if it is 'X', make the row readonly
    by looping at screen and setting screen-input = 0 for rest of the columns.
    like ...
    LOOP AT tc_itab
           WITH CONTROL tc_test
           CURSOR tc_test-current_line.
       module set_row_readonly. " loop at screen and set input = '0' if checkbox is checked...
    ENDLOOP.

  • Is anyone experiencing problems with opening mission control from the desktop.  Running mountain lion with parallels 7 and windows 7

    is anyone experiencing problems with opening mission control from the desktop.  Running mountain lion with parallels 7 and windows 7

    I had been having a similar problem on Lion with Safari pdf files despite downloading the latest Adobe Reader XI.
    I would constantly get the same messages - There was an error opening this document. The file is damaged and could not be repaired. And I would get a blank page when I tried to print the pdf if I tried printing from the Safari web page using File - Print from the top toolbar on my laptop.
    Then I came across the grey Safari lozenge with action icons.
    This allowed me, without downloading the pdf, to print the pdf file direct from the Safari page by using the Print icon on the grey lozenge that appears centrally three quarters down the screen.
    Then I discovered that if I save the pdf using the Save icon from this same grey lozenge on the Safari page I can open and print this pdf version from my desktop.
    I've tested it with a couple of different pdf files and these methods work using the grey lozenge icons but the same pdfs files don't work using File - Save As on the Tool Bar.

  • Problem with the table control BDC in FV60 transaction

    Hi All,
    I got the problem with the table control in FV60 transaction.
    This is working for 900 line items.After 900 line items it is giving the problem like it is 1000th line item.You can post only 999 line items.
    I know we can post only 999 line items,but in my file only 920 line items.
    Please give me solution,if anybody come across this situation.
    Thanks & regards,
    rakesh.

    Hello Rakesh ,
    your file may have only 920 line items , but based on those line items, SAP may create few more  new lines ( based on the clearing recon accounts , inter company transaction ...etc )...
    regards
    Prabhu

  • Experiencing problems with workflow- validate step

    I am experiencing problems with workflow->validate step in Hyperion FDM.
    I am not able to export unmapped dimension members to Excel.
    Earlier everything worked fine.
    But now all of a sudden it has become a serious problem.
    when I click Export to Excel,processing starts and it's never coming to an end.
    Every thing is getting stuck up.
    Could any one suggest solution to this as it is delaying my deliverable.

    Try opening excel first, then doing the export from FDM.

  • Problem with Creative Audio Control Panel

    ) Heya, I just bought a SB X-Fi Xtreme Audio and I've encountered a problem with Creative Audio Control Panel. My OS is Win7 x64; I have installed the newest drivers for SB. The problem is that I can't set my setup for headphones. I mean I can do that and it's working untill I turn off the PC or restart the system. After that it always sets for 2/2. Speakers. Any ideas how to make this thing to remember my settings the way I want it's Thanks!

    - The problem seems to be fixed Here's the solution for my card: <a rel="nofollow" target="_blank" href="http://forums.creative.com/t5/Sound-Blaster/SB-P7X-Series-Support-Pack-2-5-02-06-200-AudigySE-Value-LS/m-p/5493" title="Linkification: http://forums.creative.com/t5/Sound-Blaster/SB-P7X-Series-Support-Pack-2-5-02-06-200-AudigySE-Value-LS/m-p/5493"]http://forums.creative.com/t5/Sound-Blaster/SB-P7X-Series-Support-Pack-2-5-02-06-200-AudigySE-Value-LS/m-p/5493[/url]

  • Problems with the items (control) in forms 9i (Re)

    Hello,
    I write this problem in a other post and but don't have any feedback about it(So I will give another try:-) )
    The problem that I will describe don't happen all the time and is very rare but I want to know if it's a normal bug of forms or something more special of our PL/SQL code...
    So here we are.
    Is there others developpers here that have problems with the mouse cursor of the user that seems to be "jammed"(blocked, trapped) in a text item (or another control, like a list item). When this problems happen, the user can't go on another field of the forms with his mouse cursor(Mouse click), the only thing that can resolve that is to refresh the page with Internet Explorer, and after that, he is free to go on another field of the forms.
    This problem is very rare but happens sometimes.
    Thanx in advance!

    Hi,
    This problem is due to failuer of navigation of mouse cursore. For more specific solution can you give the error message and error code, So that we can have exact picture. Waiting for error code......

  • Problem with programmat​ically control histogram color

    Hi,
    I'm developing a function to display multiple channel histogram. But I can not programmatically control the color. I use XY graph to display, and there's no problem with other type of plots.
    Attached is the example vi I use for the test. Please tell me if I make any mistakes.
    Inhaler
    Attachments:
    histogram_colortest.vi ‏38 KB

    instead of using plot.color, use the fill/point color.
    -Joe

  • Problem with a Table Control Scroll Down.

    Hi,
    I´m working with a table control in which I select one of the many lines the table contains and I move it into a structure, I delete the data of the table control internal table and I move the selected line back into the internal table to show only that record. My problem is the following:
    Whenever I have to scroll down to select a line, the selected line doesn´t appear afterwards. I believe that it´s because the scroll bar disappears and keeps on showing the line where the record I selected used to be and because the selected record is added in the fist line of the TC.
    Is there any way of avoiding the disappearrance of the vertical scroll bar? Or how can I show the record added in the first line if the TC only displays the position where the selected record used to be?
    This is the logic I use to show the single record.
      READ TABLE TI_ASIGLOT WITH KEY PUSH = 'X'.
      IF SY-SUBRC = 0.
        MOVE-CORRESPONDING TI_ASIGLOT TO ST_ASIG.
        CLEAR TI_ASIGLOT.
        REFRESH TI_ASIGLOT.
        MOVE-CORRESPONDING ST_ASIG TO TI_ASIGLOT.
        ST_ASIG-CPEND = ST_ASIG-GAMNG.
        MOVE ST_ASIG-CPEND TO TI_ASIGLOT-CPEND.
        APPEND TI_ASIGLOT.
    Thank´s and regards.
    Lucila

    Well, I´m going to anwser my own question. The problem was that in my TC the top field value was the line number of the record I've selected. So the only thing I had to do to fix it was to asign 1 to the field TC-top_line inside the form where I select the record.
      READ TABLE TI_ASIGLOT WITH KEY PUSH = 'X'.
      IF SY-SUBRC = 0.
        MOVE-CORRESPONDING TI_ASIGLOT TO ST_ASIG.
        CLEAR TI_ASIGLOT.
        REFRESH TI_ASIGLOT.
        MOVE-CORRESPONDING ST_ASIG TO TI_ASIGLOT.
        ST_ASIG-CPEND = ST_ASIG-GAMNG.
        MOVE ST_ASIG-CPEND TO TI_ASIGLOT-CPEND.
        APPEND TI_ASIGLOT.
        W_INI = 1.
      ELSE.
        MESSAGE I889(100) WITH TEXT-T07.
        EXIT.
      ENDIF.
    z_result-top_line = 1.
    (z_result is my TC )
    Best regards,
    Lucila

  • Problem with SAP Script (Control Commands)

    Dear friends,
          I am facing one problem withg control commands. When i use <b>PROTECT.....ENDPROTECT</b> with <b>VAR type</b> window then it is not working instead i use with <b>MAIN type</b> window it is working fine. Another problem with <b>BOX command</b> when i use with <b>MAIN type</b> window then it is not working but when i use with VAR type window then it is working fine. SO i am little bit confused that is there any relation between control commands and window type?
    THanks & Regards,
    Bhavin

    Hi,
    There is no restriction to use any control commands on any windows.
    The SAP doesnt give any error, but the point of using Protect Endprotect in windows other than main window doesnt apply.
    Only main window carries from one page to another. So in order to print certain lines in a single page we use this control command.
    Regarding BOX command it works fine on any window.
    Thanks and Regards.
    Lavanya.

  • Problem with workflow manager after restore from dump

    Hi,
    I updated my development environment from my dump production (restore full from dump). I restore my applicative schemas and aslo the schema owf_mgr which is used by my application.
    I've got a problem with three views that I cannot recompile....
    WF_USERS, WF_ROLES, WF_USER_ROLES
    The errore message is ORA-00942 : Table or view doesn't exist.
    How can I solve my issue ? Do I miss something
    Thanks for your help !

    Which version of Oracle Workflow Standalone do you use?
    The views are based on workflow tables such as WF_LOCAL_USERS, WF_LOCAL_ROLES, WF_LOCAL_USER_ROLES and DBA dictionary DBA_USERS. Please check if these are available in OWF_MGR schema.
    Hope this helps.
    Vijay

  • MSI P55-GD65 - Problem with automatic fan control.

    Hello.
    I wish to share story of my fan speed controller.
    Lately I've upgraded my machine to modern specs (look at signature) and I was quite happy about that.
    It worked flawlessly for about week.
    My H/W Bios settings was - CPU Smart Fan Target = 60°C and minimal fan speed 50%.
    I was amazed how nicely GD65 maintained between heat and speed.
    Yesterday, I've noticed that my fan is really quiet all the time, even when gaming (before it accelerate speed while hardcore gaming settings). I was quite content about that, until my computer crashed due to overheating while playing Battleforge match.
    After reboot I've ran Intel BurnTest and HWmonitor. OH my, what was my surprise when I saw that fan speed is always 50% and do not speeds up when cores are heating up!
    I started to checking things out. What I've discovered:
    -(CPU Smart Fan ON) Fan is always at minimal speed given in BIOS. It doesn't accelerate even if CPU is burning.
    -(CPU Smart Fan ON) Fan speed cannot be controlled by any program (like SpeedFan).
    -(CPU Smart Fan OFF = 100% fan speed) Fan speed CAN be controlled by program like SpeedFan, which saves me from fan buzzing.
    I've try to fix that by:
    -Checking cables.
    -Clearing CMOS.
    -Updating BIOS to 1.6.
    -Praying.
    And still nothing.
    My conclusion:
    Fan speed cannot be change when Smart Fan is on, it locks fan speed at minimal speed given in bios.
    Now I just hoping that this is somehow stock fan fault, new Zalman CNPS 10X QUIET is in delivery.

    No problem here with Target 55° and Speed 37.5%.
    Fan runs at 1330 below 58° and 2050 above which is max.
    The CPU is running at 3050 MHz because of XMP 'overclocking'
    Have reverted to BIOS version 1.3, due to XMP problems with other versions.

  • Problems with bill copying control and materials with variant configuration

    Hi experts,
    I have a problem with a bill copying control and the way that my customer is trying to create and print the Bill (VF01).
    Let me explain...They have in a Sales Order a material with variant configuration per position, each one can have many characteristics. This characteristics must be printing on the billing document, creating different bills 'coz the max. lines number is 18, so the bill must change page per material-characteristics.
    Example:
    Max. Number Lines = 3
    Position 10      
    Material A     
         -Characteristic A
         -Characteristic B
         -Characteristic C     (Bill 1) 
         -Characteristic D
         -Characteristic E
         -Characteristic F     (Bill 2)
    Position 20
    Material B     
         -Characteristic A     (Bill 3) counting characteristics upside
         -Characteristic B
         -Characteristic C
         -Characteristic D     (Bill 4)
    I created on Tx VOFM (Data Transfer-Billing documents) a routine trying to control this jump, but my problem is when I'm creating the Bill document (VF01) this work only by position, the debugging enter per position.. so I don't have any control to tell the program must count the characteristics and create another bill.
    So... Somebody can help me..or have any idea to solve this problem.....
    Thxs a lot!!!!
    Diego Helfer

    HI Diego
      For our coming assignment, we do have similar sort of situation. Currently we are in Requirements Gathering phase.
      Though we do not have Variant Configuration in place, we do have restriction for no..of items to be used for printing in Billing Documents.
      Current proposal is that we will restrict at Sales Order Creation. If the number of items are increasing, we will restrict saving the document and loading has to be done again. As itz better to restrict at initial phase.
      Our schema is One Sales Order -> One Delivery -> One Billig Document.
       Will post if we can manage to acheive some other way and do request you the same.
    Kind Regards
    Eswar

  • Anyone else having problems with the music controls in the control center?

    Ever since the iOS 7 post release update (iOS 7.0.2) I've have trouble with the music controls not working properly. Wondering if anyone else was experiencing the same issues....

    IslandPrince89 wrote:
    That actually helped but it seems that there are a lot of bugs in the iOS 7.0.2 ..
    You can use this Link to send your Feedback to Apple
    http://www.apple.com/feedback/

  • Xmod problem with guitar hero control

    I'm having problems with my xmod sound card and guitar hero controller. As soon as I plug in the controller to my usb port, the sound on my computer becomes distorted and theres a lot of static. Even if I unplug my controller the sound continues to be distorted until I restart my computer. My best guess is that it might be some sort of usb conflict. Any ideas whats causing this?

    I have the same problem and I just want to know if u find a how to fix it... If yeah, plz, tell me how.

Maybe you are looking for

  • "Failed to initialize" error message when installing Photoshop Elements 12

    Hi, I kepe getting an error message when trying to install Photoshop elements 12. I have re-downloaded the files multiple times from different places and none work so I know it isn't a corrupted file. Tried a system restart. Tried using support advis

  • IPod/iPad cannot be used, required software not installed

    Hi, This problem just started after the last update to the latest iTunes for Windows.  When connecting to the computer, iTunes shows a popup that says: "This iPod cannot be used because the required software is not installed.  Run the iTunes installe

  • UWL ad-hoc task permissions not clear - need restrictions on editing

    When someone registers a task and assigns it to another the person receiving the task has the possibility of clicking "edit" and seeing the editing screen for this task. He thereby is given the possibility of not only changing the task text, but also

  • BPC NW 7.5 SP03

    Hi All, Can please help:BPC 7.5 NW SP03 There is an issue with the Data Manager Package /CPMB/EXPORT_TD_TO_APPL                                                             (Export Transaction Data to App Server). This package creates an              

  • Adobe Reader Einstellungen im PDF speichern

    Hallo ich bin neu hier und habe da mal eine wichtige Frage! Gibt es eine Möglichkeit Darstellungseinstellungen für den Adobe Reader in der pdf zu speichern. Mir geht es speziell um die Einstellung "smooth line art". Wenn dies Möglich ist, kann man di