GRC 10.0 - Warning Message - Issue - MSMP Workflows

Hi All,
I have a query on below warning message. Need advise from experts here.
In our scenario, at few stages of workflow, approver enters the comments and then clicks on SUBMIT button. Request gets approved. There will be a CLOSE button once the request is approved. Approver clicks on CLOSE button and will be shown a warning message as shown below.
"This application contains unsaved data which may be lost.
Do you want to continue without saving the changes"
Now during our UAT concern was raised by the client team and they don't want to see this message as request is already approved and this message looks irrelevant.
Please suggest if there is a way to avoid showing this message.
Thanks in Advance.
Regards,
Sai.

Hi Andrzej,
Thanks for the details.
I will implement this not and get back to you.
Regards,
Sai.

Similar Messages

  • Warning message in Oracle Workflow notification

    Hi,
    I have a requirement, where a warning message is to be shown to the user when he presses the Approve button of a notification.
    I know that through post notification function, validations for a particular notification can be performed and an error message can be shown to the user using RESULT := 'ERROR: error_msg'
    But can a warning message be shown ? If yes how?
    Thanks in advance.
    Souri Guha

    I would try by using a parameter to tell whether the warning message for the notification has been displayed. First time the notification is being approved the function raises the warning message and sets that attribute to indicate the warning has been displayed. Next attempt to respond the notification your function will check that attribute has been set and will do nothing, just let the notification go responded.
    You might as well present the warning message in the notification body and introduce another attribute to get the acknowledgement from the user. Only when that attribute is set to YES (acknowledge) will the post-notification function actually let the notification be approved, otherwise an error is presented for the user to acknowledge.
    Hope this helps
    Alejandro

  • Withholding tax warning message

    Hi
    we maintain the witholding tax at invoice & payment level both in vendor
    master data, due to this system always deduct TDS twice at the time of
    posting.
    we want a check at the time of invociing and payment, system should ask
    about TDS whether this needs to be deducted or not.
    Regards,
    Srinivas

    Hi
    You can use the exit  EXIT_SAPLACC4_001 to have a warning message issued if With Holding Tax is being calculated.
    Refer the Notes
    OSS Note 306504 - Collective note: BAPIs for the AC Interface
    OSS Note 556311 - BAPI in the extended withholding tax
    OSS Note 487722 - Using EXTENSION1 for accounting BAPIs
    Regards
    Sanil Bhandari

  • Warning message behave like error message why

    hiii
    I have done a simple test program where i have put
    MESSAGE W015(ZXXX) with "XXXXXX"
    and this when i execute will bahave like error message
    I even did like MESSAGE I0015(ZXXX) with "Xxxxx" display like I.  and this also behave like error message
    Note: my code is found between the start or selection and end of selection

    That is the normal behaviour for warning messages issued in START-OF-SELECTION (as already suggested, check the documentation).
    If you want your program to issue a message and continue running (for example the behaviour of the status message) yet show it like a Warning message, you can use the DISPLAY LIKE addition (only in newer releases):
    START-OF-SELECTION.
      MESSAGE s000(oo) WITH 'test' DISPLAY LIKE 'W'.
      WRITE sy-uzeit.
    Adding to Suhas comment:
    In fact SAP documentation roxx
    Sure...when it does exist!

  • Issuing a warning message while changing the payment terms in FB02

    Hi Gurus,
    The requirement is as follows:
    For a particular payment terms meant for customer only when we change the payment terms in FB02, the system should give an warning message.
    For example - A customer has the payment terms 0001in his master data and thus in the accoutning document as well after releasing billing to accounting. An user wants to change the payment terms to 0070 being in FB02. As and when he puts the payment terms 0070, the system should give an warning meesage saying 'bla bla bla ........' or the same message at the time of saving the document.
    How to make this possible. Please help.
    Rgds,
    BABA

    Mr. Tiwari,
    This is the standard feature of SAP!!!  You get below messages
    1)
    Net due date on 05.10.2007 is in the past
    Message no. F5149
    Effects on Customizing
    You can define when this system message is to be issued in accordance with your requirements.
    You do this in Customizing as follows: Cross-Application Components -> Bank Directory -> Change Message Control.
    The application area and message number can be taken from the technical documentation.
    2)
    Net due date on 05.10.2007 is in the past
    Message no. F5149
    Effects on Customizing
    You can define when this system message is to be issued in accordance with your requirements.
    You do this in Customizing as follows: Cross-Application Components -> Bank Directory -> Change Message Control.
    The application area and message number can be taken from the technical documentation.
    Terms of payment changed; Check
    Message no. F5231
    Effects on Customizing
    You can define when this system message is to be issued in accordance with your requirements.
    You do this in Customizing as follows: Cross-Application Components -> Bank Directory -> Change Message Control.
    The application area and message number can be taken from the technical documentation.
    Regards
    Santosh Hegde

  • How to issue warning message in BADI ME_PROCESS_PO_CUST

    Hi Guys,
    I have already checked the forum regarding this. There are lots of threads. Unfortunately none of them helped me. I must be missing some thing in my code.
    I tried issuing warning message in BADI ME_PROCESS_PO_CUST and method PROCESS_ITEM.
    First i tried with normal message statement
    MESSAGE w001(00) WITH text-001 text-002.
    Didn't worked.
    Next tried calling standard macros
      DATA:mmmfd_cust_01 TYPE mmpur_metafield VALUE 90000000.
      call method cl_contextfield_mm=>set_current_field
                                      exporting im_field = mmmfd_cust_01.
      mmpur_metafield mmmfd_cust_01.
    mmpur_message_config 'W' 'X' ' '.      "Tried all permutations here
    mmpur_message_forced 'W' '00' '001' text-001 text-002 '' ''.
    Still no solution
    Tried with macro mmpur_message also
    Can some one helpme out to solve this issue.
    Thanks,
    Vinod.

    Hi all,
    Thanks for the responce.
    Not sure whether you have looked into BADI documentation or not. Please check below.
    "Further notes
    The above-mentioned macros are defined in the program MM_MESSAGES_MAC. Please include this program in your own application.
    Never issue messages in BAdI ME_GUI_PO_CUST! This is the task of the business logic and must therefore be done via the BAdI ME_PROCESS_PO_CUST.
    "Never use the ABAP statement MESSAGE in the BAdI ME_PROCESS_PO_CUST. Please use the macro mmpur_message_forced only. This macro only writes a message in the message collector.
    If you wish to mark the business object as invalid in order to prevent posting, you must additionally use the INVALIDATE ( ) method of the relevant interface. In this connection, see also the code example in the PROCESS_ITEM method of the BAdI ME_PROCESS_PO_CUST.
    I have tried almost all macros including mmpur_message_forced 'E' 'ME' '083' l_text ' '  ' '  ' '.
    Not sure where i am missing:(
    If i give error using MESSAGE statement it is working perfectly i.e. give error and save the PO. Only wanted to know if there are any implications.
    Thanks,
    Vinod

  • I'm having the same registry issues with my CDROM, getting the warning when iTunes starts up.  I've followed the article on how to add the upperFIlter to the registry and it solves the warning message but the DVD/CD writer disappears completely.

    I'm having thet same registry issues with my CD-/DVD as is talked about in one of the fix articles I've found here. I added the UpperFilter entry to the registry since it was not there and restarted.  This fixes the warning message but then there's no CD/DVD device shown at all in windows.  I can put it back to normal and vice versa and get the same results, but I can't get this issue fixed. When I get the registry warning on starting iTunes, I can still rip from CDs and my DVD burner works just fine using other programs.
    Any more ideas?

    This fixes the warning message but then there's no CD/DVD device shown at all in windows.
    That symptom suggests the afs.sys issue ... but there's some other things that might cause it too.
    We'd better check to see if we can find what's going on.
    Could you post your diagnostics for us please?
    In iTunes, go "Help > Run Diagnostics". Uncheck the boxes other than DVD/CD tests, as per the following screenshot:
    ... and click "Next".
    When you get through to the final screen:
    ... click the "Copy to Clipboard" button and paste the diagnostics into a reply here.

  • Printing issue while executing IW38 - SAP warning message no. - PT008

    Hi Experts,
    I am facing a problem in solving a customer issue where he is getting the SAP warning message no. - PT008 - System cannot print the last XXX columns of the report. Now it seems that since this is a warning message we can override this and print anyway but the problem is that spool is getting generated, even then the print is not coming out. This is happening only while trying to print by directly selecting an order from the list of orders. If we go into the display mode of a specific order and then print, the printout is happening successfully.
    We also tried to change the settings in spool by going to SP02 (changing the "To Page" and "The Last" field in Display area of the spool settings from "10" to "30" which gave us a warning - "Displaying XX pages could cause a memory overflow"), and tried to print after this, but still spool is getting successfully generated however the print is not coming out of the printer. We are sure this is not a printer problem because printing happens if we give the command from display page of a specific order.
    Please help out.
    Thanks
    Adarsh

    Hello Adarsh,
    Please check the format in printer properties-spool request attributes as below.Check with note
    627163 - Proposed print formatting incorrect too.
    Regards,

  • I have macbook pro and am on OS X Yosemite 10.10.2 . I am having lot of warning message on my browser that my computer is infected with malware/spyware and use mackeeper. How do I solve this issue . This is happening more on chrome and Safari browser

    I have macbook pro and am on OS X Yosemite 10.10.2 . I am having lot of warning message on my browser that my computer is infected with malware/spyware and use mackeeper. How do I solve this issue . This is happening more on chrome and Safari browser

    There is no need to download anything to solve this problem. You may have installed a variant of the "VSearch" ad-injection malware. Follow Apple Support's instructions to remove it.
    If you have trouble following those instructions, see below.
    Malware is always changing to get around the defenses against it. This procedure works as of now, as far as I know. It may not work in the future. Anyone finding this comment a few days or more after it was posted should look for a more recent discussion, or start a new one.
    The VSearch malware tries to hide itself by varying the names of the files it installs. To remove it, you must first identify the naming pattern.
    Triple-click the line below on this page to select it, then copy the text to the Clipboard by pressing the key combination  command-C:
    /Library/LaunchDaemons
    In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    A folder named "LaunchDaemons" may open. Look inside it for two files with names of the form
              com.something.daemon.plist
    and
               com.something.helper.plist
    Here something is a variable string of characters, which can be different in each case. So far it has always been a string of letters without punctuation, such as "cloud," "dot," "highway," "submarine," or "trusteddownloads." Sometimes it's a meaningless string such as "e8dec5ae7fc75c28" rather than a word. Sometimes the string is "apple," and then you must be especially careful not to delete the wrong files, because many built-in OS X files have similar names.
    If you find these files, leave the LaunchDaemons folder open, and open the following folder in the same way:
    /Library/LaunchAgents
    In this folder, there may be a file named
              com.something.agent.plist
    where the string something is the same as before.
    If you feel confident that you've identified the above files, back up all data, then drag just those three files—nothing else—to the Trash. You may be prompted for your administrator login password. Close the Finder windows and restart the computer.
    Don't delete the "LaunchAgents" or "LaunchDaemons" folder or anything else inside either one.
    The malware is now permanently inactivated, as long as you never reinstall it. You can stop here if you like, or you can remove two remaining components for the sake of completeness.
    Open this folder:
    /Library/Application Support
    If it has a subfolder named just
               something
    where something is the same string you saw before, drag that subfolder to the Trash and close the window.
    Don't delete the "Application Support" folder or anything else inside it.
    Finally, in this folder:
    /System/Library/Frameworks
    there may an item named exactly
                v.framework
    It's actually a folder, though it has a different icon than usual. This item always has the above name; it doesn't vary. Drag it to the Trash and close the window.
    Don't delete the "Frameworks" folder or anything else inside it.
    If you didn't find the files or you're not sure about the identification, post what you found.
    If in doubt, or if you have no backups, change nothing at all.
    The trouble may have started when you downloaded and ran an application called "MPlayerX." That's the name of a legitimate free movie player, but the name is also used fraudulently to distribute VSearch. If there is an item with that name in the Applications folder, delete it, and if you wish, replace it with the genuine article from mplayerx.org.
    This trojan is often found on illegal websites that traffic in pirated content such as movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Then, still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates (OS X 10.10 or later)
    or
              Download updates automatically (OS X 10.9 or earlier)
    if it's not already checked.

  • My Samsung Galaxy Strat. II was water damaged but after putting in rice I got it to come on. The problem is, when I try to charge it with my home or car charger, i get a warning message that the charger isn't compaitble. Is this a phone or battery issue

    My Samsung Galaxy Strat. II was water damaged but after putting in rice I got it to come on. The problem is, when I try to charge it with my home or car charger, i get a warning message that the charger isn't compaitble. Is this a phone or battery issue'

    I am sorry to learn that your phone has some water damage smreyn! Liquid damage can cause many different issues, including inability to recognize chargers and accessories. Do you have insurance on your phone? If you do, you can get a replacement very soon! Just submit your claim at this link http://bit.ly/07CrqPK
    AntonioC_VZW Follow us on Twitter at www.twitter.com/VZWSupport

  • CCMS issue: "Determining warning messages from CCMS"

    Hi!
    We have a performance problem by accessing of solution in tcode DSWP.
    We retrieve the warning: "Determining warning messages from CCMS"
    In order to solve or analyse this problem I have the following questions:
    1) How collects CEN the data from satelite systems?
    1a)  how? -->  RFC, etc.
    1b) mode? --> Push, Pull, etc.
    2) How the data will be transfered from CEN to tcode DSWP?
    Any helpful information will be appreciated.
    regards
    Thom

    Hi Thom,
    Have you already installed CCMS agents, the will speed up communication? That's definitely required in your situation with many systems connected to SolMan.
    See [http://service.sap.com/monitoring|http://service.sap.com/monitoring]
    You can also check CPU, Memory, as recommended by Afi, but I expect that this will not be the bottleneck.
    Response times depend on the number of connect systems, number of activated monitoring objects (MTE nodes), number of server, instances.
    If you are not satisfied with performance, I would recommend to open a customer message on component SV-SMG-OP or SV-SMG-MON-SYS.
    Best regards,
    Ruediger

  • Warning Message in application

    Hi All,
    We are facing an issue when using Universal Work List and Guided Procedures in EP 7.0.
    A Warning message is getting displayed on the screens as ' Another administrator is currently customizing this application. If you want to customize, please restart the application later and try again'.
    SAP replied in OSS message saying that "that this message is coming from the Webdynpro code in the application and this is not a standard message at SAP end"
    Any suggestions regarding this are most welcome.
    Regards
    Bindu

    Hi Siva Rama
    Thanks for your reply
    i will explain indetail...
    i have installed the portal CE 7.1 freshly.
    when for the first time who ever user logs in then it wont be getting displayed.
    when any second user and susequent users logs in then it is getting the warning message displayed as i mentioned above
    can we handle the same in webdynpro app which we are using for UWL for GP workflow.
    Please reply back
    Regards
    bindu

  • Global succession updates are limited to 500 relationships. If more than 500 exist PLM presents a warning message and does not execute the update

    Global succession updates are limited to 500 relationships. If more than 500 exist PLM presents a warning message and does not execute the update.
    How/Where to increase the relationship count?
    The message which I can see :
    Warning:
    This specification has exceeded the number of parent relationships allowed by Where Used. The Where Used tool only supports up to 500 parent relationships.
    Thanks

    This really brings up a larger topic around change management.
    The questions you should start with is
    1. What kind of change is happening to the raw material? 
    2. Will this change affect anything upstream inside or outside of PLM4P? (Will this change affect nutrition, compliance, the ingredient statement, the label etc?)
    3. Who needs to approve this change?
    If they are non-material changes (changes that don't affect theoretical calculations, the ingredient statement, labeling, upstream systems that need to be notified etc) then you should be using get latest revision instead of global succession.   Get Latest Revision will automatically switch out the material with the latest approved version.  This logic is also configurable in case you need to add additional guard conditions.   We can also provide guidance around locking the get latest revision lock once a specification has reached the retired/obsolete state so changes won't occur for specifications in those statuses.
    If the changes to the raw material are material changes (changes that affect calculations, labeling etc) then the change should be reflected with a copy of the specification.  Dependent specifications then need to be re-issued so calculations can be performed and the appropriate workflow reviews can occur.   Smart Issue allows for filtering based on status and should let you re-issue in smaller blocks. 
    Let me know more about your change management strategy, how often large material changes happen and maybe example causes for those mass changes.  We can also schedule a change management training session for everyone where we can share our vision and tools available for change management.  This topic is quite large and generally requires a lot of business process discussion beyond just the tools available. 
    Thanks
    Kelly

  • AC 10 MSMP Workflow

    Hello Experts,
    We are just trying to configure the basic components of Access Control on AC 10.
    We have configured PSS and when we are trying to configure workflow for access requests we are running into issues.
    I Just wanted to check what I configured makes sense.
    We only need basic functionality.
    1.User Lock,Unlock ---Where the only Approver is Manager ( We have configured LDAP so the system picks up manager details for the user)
    2.Next is Validity Extension where we don't want any stage but the users can change their validity date just by submitting request and request is auto approved (Auto Provisioning has been configured)
    3.We need  Change Acct(For Adding of new roles)
    4.We need New Acct(For creating new acct and also adding roles in same step)
    I see that the major difference w.r.t. 5.3 to 10 is that  in 5.3 we have different kind of Request types and we can have different initiators but in 10 we have a process id (Access Request) which pretty much covers above 1-4 etc and we have a single standard initiator(If we want more we need to use BRF+)
    So Initially I configured in such a way that the request only goes to manager  and it is approved .Here I had to use the system name and it worked fine.
    Then I configured second stage of role owner approval and then when i add system and role it was erroring out so i just added the role and did a change acct and it worked fine.Don't know why it wasn't taking system and role together(could be because the role already has system name and maybe it didn't want redundant values)
    So after configuring second stage when I tried to use it for user lock/unlock it is erroring out as obviously it doesn't like taking just system name.
    My Config settings based on MSMP workflow.
    1. Process ID -- SAP_GRAC_ACCESS_REQUEST
    2. Rule ID-GRAC_AC_INITIATOR(Rule Result --GRAC_DEFAULT_RESULT)
    5.Maintain Paths-GRAC_DEFAULT_PATH
       Maintain Stages- GRAC_MANAGER,GRAC_ROLEOWNER
    sorry for such a long post but I am at my wit's end as I am so near yet so far from the solution.
    Thanks
    Uday

    Hi Kuashal,
    I had imported only 1 role using role import from access mgmt.I am not using ERM.
    I also found out yesterday that the error i was getting gave me a new description
    Incorrect path and stage class entry for process SAP_GRAC_ACCESS_REQUEST
    Error when generating a new version 000027 for process SAP_GRAC_ACCESS_REQUEST
    and also when i try to activate other process id's it works fine but only for this process id i am getting an error.
    logged an OSS message .
    Will get back with any reply

  • How to create Detour in MSMP Workflow?

    Hello GRC Experts,
    we are implementing GRC Access Control 10.0 with all four components: CUP, BRM, EAM and RAR.
    We have customized the CUP and BRM Workflows without Detour rules, they are working fine so far. But now we have a following issue:
    We would like to create Detour rules for CUP Workflow for the following Scenario:
    1. Case: No SoD
    Request-->Role Owner Approval-->Provisioning
    2. Case: SoD
    Request--> SoD Risk-->Security Stage-->Role Owner (if Security Stage approves, then Role Owner also approves)--> Provisioning
    I have Created two paths in MSMP workflow:
    1st Path is Default Path with only one stage: Role Owner Approval stage
    2nd Path is SoD Path with two stages:
    Default and Security Stage
    I have tested the CUP Workflow after creating of the Routing Rule, but it seems, it doesnt work. I have assigned a technical Role to a User, who has SOD risks. Me as approval received a notification about new work item, then I approved the role, and afterwards the Role was assigned to a user, whitout beeing forwarded to a security stage.
    Can you please give me an advice what I have to do in order to make it work?
    Thanks in advance,
    best regards
    Sabrina

    Hello Mangesh,
    let me explain you my issue:
    When I am creating an request for my test user (Role Assigning), I am performing a Risk Analysis during the request creation. As you can see, I have SODs in my request.
    My paths:
    I have created two pathes:
    Path1: GRAC_DEFAULT_PATH: with one stage. Routing enabled. With the ID: GRAC_MSMP_DETOUR_SODVIOL. Escalation to a Specified agend (Security Team)
    Path 2: Z_GRAC_DEFAULT_PATH (SOD Path)
    with two stages:
    001:Role Owner Stage (Routing enabled) to a specified agent
    002: Security Stage: no Routing enabled.
    The Problem is, even though I have SOD in my reguest, no detour to a second path is occuring.There is somewhere a mistake, but I dont know where.
    Here is my Route mapping.
    Please, give me an advice, what I did wrong.
    The another issue which makes me surprised. When I run the Report: Risk Volation in Access Request, there is no Violation! But I have SOD violations (see Schrrenshot no1)
    Why this Report didnt Show the violations?
    I hope, I could make you cleare, where is the Problem now?
    Default path is working fine, bur the detour is not working. And the Report doesnt Show the violations...
    Thanks in advance
    best regards
    Sabrina

Maybe you are looking for

  • Styling Error Messages

    What is the best way to go about styling the error messages set by default with ADDT? I have so far styled #KT_tngerror succesfully but I'm a little bit puzzled as to where.... .form_validation_field_error_error_message and .KT_field_error .....come

  • My iweb site... give it a look

    Guys and Gals, This is my latest iweb site and I would appreciate your feedback. The demo videos have no audio yet. The site is hosted on my Xserve and a very fast colocation facility. The service it describes uses the Mac OS X Server WIKI and blog f

  • IEEE 754 standards for representing floating point numbers

    HI All.. Most of us are not awared how the actually Floating point numbers are represented . IEEE have set standards as how should we represent floating point numbers. I am giving u the link with which u can know how actually these are represented. h

  • Unwanted feather when command clicking on a clipping path...

    I've been completely stumped by this... every time I command click on the clipping path and either try to duplicate the selected area or mask it, it puts a feather on it. I have checked that all of the feather options have been set to zero in the sel

  • Can we install CUCM 5.1 on MCS7825-H3 RC1

    Can anyone tells me about call manager 5.1 will run on MCS7825-H3 RC1 server