Stop Businness Partner from Saving

Hi,
Is there a way I can stop a BP from saving in the UI when the user has entered the wrong ID Number, I implemented BADIs like BUPA_IDENT_CHECK which works fine for showing the error messages that the ID Number is incorrect but it still allows the user to save the BP.
I also tried using the do_validate_input method but it still allows the user to save. Is there some code that I need to add after displaying the messages to prevent it from saving? Please assist.
Regards,
Wesley

Hi Guys,
Thanks so much for your answers, but Naresh all full points goes to you, I did exactly as you said and now the BP cannot be saved if some conditions are not met.
Thanks and much appreciated
Edited by: wesleymabunda on Sep 12, 2011 9:15 AM

Similar Messages

  • How can i stop my Macbook from saving every file opened?

    How can i stop my Macbook from saving every file opened?

    Take a look at this link, http://osxdaily.com/2012/07/11/disable-auto-save-and-versions-in-mac-os-x/

  • Remove a menu + Stop a viewer from saving

    HI there I have 2 problems;
    1- As attached in the code, I have a link that once clicked a
    newhtml page will be opened it contain a html file of a captivate
    project it has control buttons, when I right click the control
    buttons a small menue appear that contains
    -settings
    -About Adobe Flash Player 10
    How Can I remove this menue completely?
    2- Also how can I make the user unable to save the content of
    the new window that has the captivate project, I was thinking of
    making the 'save as' and the 'send link' in the file menu of the
    broswer dim but I do not know how ? any idea about that? or how to
    ban the user from saving the window at all ?
    THanks appreciate a fast help.

    Hello
    1./Here is the Viewer button
    and here is the temp file
    the view button create a temp report every time I use it.
    The test results is a text file will be pull Up to data base
    the file name is making a remote pulling data process confused.
    -I just want to known if there is a way for not create the temp file in the test data folder
    or at least create the temp file in a designated folder rather than the test result folder.
    Thanks
    TP

  • How do I stop the user from saving information onto my original?

    Hello everyone,
    I created a form that I plan to put on a website but, I have one problem. The user is allowed to fill-in the form and save the new data onto the original. How can I set up the form so that the user cannot save over the original but, still be able to save a copy and use the "Submit by Email" button? Any help would be appreciated.
    Thank you,

    Use these steps to remove saved (form) data from a drop down list:
    #Click the (empty) input field on the web page to open the drop down list
    #Highlight an entry in the drop down list
    #Press the Delete key (on Mac: Shift+Delete) to remove it.
    *http://kb.mozillazine.org/Deleting_autocomplete_entries
    You can remove saved Password(s) here:
    * Tools > Options > Security: Passwords: "Saved Passwords" > "Show Passwords"
    *http://kb.mozillazine.org/Password_Manager
    Websites remembering you and automatically log you on is stored in a cookie.<br />
    So you need to remove the cookies from that site to reset this choice.
    *Tools > Options > Privacy > Cookies: "Show Cookies"

  • Desktop clutter: How to stop opened attachments from saving on desktop?

    Hi,
    Every time I open (not save) an attachment, a copy of it is automatically saved on my desktop. My desktop continually gets cluttered. I've searched on my computer but can't find where I'd go to change the default settings so this will stop happening.
    Thanks for any help!
    IBook G4   Mac OS X (10.4.8)  

    Are you referring to attachments in email, or
    attachments as part of web
    pages (such as download are sometimes erroneously
    referred) or in what
    application are you interested in controlling this
    action?
    The Finder preferences generally do not blanket
    control these kinds of
    actions; so if you are using an email application or
    a browser with email
    handling capabilities, these usually have a set of
    preferences you can
    control and choose what it does with files downloaded
    or attachments.
    Some attachments can be set to open in another
    window. In some
    applications, you could assign a folder once and have
    things go into it.
    What applications are you using that generate these
    attachment files?
    Thanks. I am referring to email attachments. I always use Mozilla Firefox to open up email attachments. In Firefox Preferences under the download tab you can choose either "Ask me where to save every file" or "Save all files to this folder." I've set it to "Ask me where to save every file" of course yet this is still saving to my desktop. Further, I don't even want to save the files, the files always save to my desktop when I just try to open, not even save, an attachment.
    Thanks for your help.
    IBook G4 Mac OS X (10.4.8)

  • How to stop the users from saving the PO when there is error message

    Hi Guru,
    The error message had appeared but the user still can choose to hold the PO even though there is an error.
    They do not want to let the user to have a choice to save the PO once there is an error.
    Please advice where i can out this checking in.

    Dear Sally,
    As per OSS: Note 606728 - Hold Functionality of the PR & PO - Gaps.
    The only way you can stop the hold functionality is by implementing the BADI: ME_PROCESS_PO_CUST.
    I am copying the OSS text for your reference.
    Summary
    Symptom
    It is possible in the system to create/hold a purchase order (PO) referencing a held purchase requisition (PR), but your business process requires that this not be possible in your installation.
    Other terms
    Hold, ME21N, ME52N, Parking, Save without Check, Held PR, PO referencing a held PR, Commitments, reduction of PR by a held PO
    Reason and Prerequisites
    Cause: The functionality is not provided in EA-PS 110.
    Prerequisites : You must be on EA-PS 110 to implement this note
    Solution
    You can implement some customer BAdI's provided by SAP to get this functionality. Note that customer implementations of the BAdI's provided by SAP are upwardly compatible. The text that follows gives details of how to implement the customer BAdI's to accomplish this functionality.
    This functionality might be provided in future releases. However, we cannot make any binding statements at this time in regard to the scope of this development and when it will become available.
    The following are the steps required to implement the customer BAdI to give an error message when a user tries to create a PO referencing a held PR.
    1. Go to transaction SE18. Enter the definition name as ME_PROCESS_PO_CUST. Select the push button display.
    a) Choose Implementation -> Create.
    b) Enter an implementation name. Choose Enter.
    c) Enter a short text to describe the purpose of the implementation, then save the implementation.
    d) Select the tab interface, then double-click the method "process_item".
    e) Create a message to issue a message that the PR is on hold.
    f) Enter the following code in the method:
                        DATA: LS_MEPOITEM TYPE MEPOITEM.
                        DATA : MEMORY     TYPE EBAN-MEMORY.
    get current data from business object
                        LS_MEPOITEM = IM_ITEM->GET_DATA( ).
    Check if the PO references a PR and check if the PR is not on hold
    If the PR is on hold give an error message
                          IF NOT LS_MEPOITEM-BANFN IS INITIAL.
                            SELECT SINGLE MEMORY INTO MEMORY
                            FROM EBAN WHERE BANFN = LS_MEPOITEM-BANFN
                                        AND BNFPO = LS_MEPOITEM-BNFPO.
                            IF MEMORY = 'X'.
                               MESSAGE E900(ZM). "The message that you have created in step 6
                            ENDIF.
                        ENDIF.
    g) Activate the implementation.
    2. If you do not want to let the user put the PO referencing a held PR on hold, you have to also implement the BAdI ME_HOLD_PO. The following are the steps to implement the BAdI.
    a) Go to transaction SE18.Enter the definition name as ME_HOLD_PO and click on the 'DISPLAY' button.
    b) Go to Implementation -> Create.
    c) Enter an implementation name, then choose Enter.
    d) Give some short text to describe the purpose of the implementation, then save the implementation.
    e) Select the tab interface. Double-click the method IS_ALLOWED.
    f) Enter the following code in the method:
                        DATA : IM_BEKPO_WA TYPE BEKPO.
                        DATA : MEMORY TYPE EBAN-MEMORY.
                        *-Look if the PO refers to a Held PR
                        LOOP AT IM_BEKPO INTO IM_BEKPO_WA
                               WHERE NOT BANFN IS INITIAL.
                                 SELECT SINGLE MEMORY INTO MEMORY
                                 FROM EBAN WHERE BANFN = IM_BEKPO_WA-BANFN
                                            AND BNFPO = IM_BEKPO_WA-BNFPO.
                                 IF MEMORY = 'X'.
                        *-Do not allow the PO to be kept on hold
                        *-if the PO is refering a held PR
                                   CH_ALLOWED = ' '.
                                  ENDIF.
                        ENDLOOP.
    g) Activate the implementation.
    I hope it helps.
    Kind Regards,
    Prakash

  • How can I stop a user from saving over "standard" workbooks in a role?

    Hello -
    We are using BEx Analyzer 7.0. 
    I need help restricting our regular users so they can only save workbooks to their favorites and cannot override workbooks published to roles by our super users / authors. 
    My understanding is the regular users need the following in order to save workbooks to favorites.
    S_GUI   Activity = 60
    S_BDS_DS  Activities = 03 and 30  Class Type = OT
    These users are able to save to their favorites.
    However, if they open a workbook from a role and then just choose Save -> Workbook, it allows them to save their changed version of the workbook over the "standard" workbook that was published to the role for all users. 
    What can I do to only allow them to save to their favorites and not be able to override the standard workbooks in regular roles?
    Our super user / authors have the following security to allow them to publish to roles. 
    S_USER_AGR with Activities = 01, 02 and 06 (Create, Change and Delete)
    Our regular users have
    S_USER_AGR but only with activities 03 and 08 (Display and Display Changes)
    Any help that can be provided would be greatly appeciated.  This is very frustrating.
    Thank you -
    Ann

    Hello Anne,
    Inspite of restricting the authorisation object S_BDS_DS you are not able to restrict the users in overwriting the workbooks, please implement the note 1167094 in your system.
    Implementing this note with the help of yout BASIS team would surely fix your issue.
    Let me know if this helps. Thanks.
    Best Regds,
    Suyog Chakot...

  • How do i stop workstation users from saving their network password or credentials for logging into a 2008 R2 Server workgroup?

    I have a small workgroup of about 30 users that are a mix of XP Pro, 7 Pro and 8.1 desktop / laptop users that connect to a Windows 2008 R2 Server to use Quickbooks Enterprise, share files and printers. I dont want the users to be able to save their password
    on their workstations, I want them to have to log in every time they connect to the server. How do I turn that off?Is the something on the server in Group Policy or a secruity setting that will not allow a saved credential for logging onto the server?

    Hi,
    I have a small workgroup of about 30 users that are a mix of XP Pro, 7 Pro and 8.1 desktop / laptop users that connect to a Windows 2008 R2 Server to use Quickbooks Enterprise
    By connecting to the server, do you mean users log on locally or through remote desktop services, or just through network to access network resources instead of log on to the server directly?
    If it’s log on locally, please disable auto logon feature by configure the registry entry
    AutoLogonCount to 0, it is under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon.
    If it’s remote desktop connection, please clear Logon Credentials for corresponding remote desktop sessions.
    If it’s network access, then it is by design because network logon has a single-sign-on feature.
    More information for you:
    How to disable Auto Login?
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/705b0cf8-53f1-45f9-b6bf-2ba61c8d10bf/how-to-disable-auto-login?forum=winservergen
    How Interactive Logon Works
    http://technet.microsoft.com/en-us/library/cc780332(v=WS.10).aspx
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Distribution Busines partner from MDM to R/3

    Hi,
    I try to distribute business partner in r3. for this I use idocs adrmas, debmas, cremas. in bd87 for adrmas status - BAPI SAVEREPLICA has been called successfully, for cremas Vendor xxxxxxx was created in company code yyyy, for debmas Customer xxxxxxx has been created for company code yyyy. but in transaction bp I can not find business partner with number xxxxxxx.
    please help
    Thanks,
    Elena

    Hi Elena,
    Help on BP Identification Numbers
    http://help.sap.com/saphelp_nw04/helpdata/en/90/b9fb7bf9fe70e89eabaf9cd1ba2e8/frameset.htm
    Forum on BP Number not found:
    Getting a "Business partner not found with partner function type requester"
    Reward points if this helps
    Regards
    Pragathi.

  • How do I stop my mac from saving files to chmod?

    It just started doing it this past month. I've had the computer for a year.
    What is chmod, and why is it doing this to me?

    chmod is a command, not a location (at least in normal circumstances) so unless a directory has been created that would happen to have that same name, there's no way for something to be saved "to" it. chmod (short for "change mode") is used for changing permissions on files and folders in UNIX-based operating systems.
    What exactly is happening on your system? If you can post more precise details as to what you're seeing, I'm sure someone here can help sort it out.

  • HT1311 I know this is a basic question, however, how do i change my pass word on itunes to stop my kids from automatically buying tunes from the I store... as my card details are already saved they just log in with their ipods and download via my account

    I know this is a basic question, however, how do i change my pass word on itunes to stop my kids from automatically buying tunes from the I store... as my card details are already saved they just log in with their ipods and download via my account

    http://support.apple.com/kb/HE36
    Regards.

  • How do i stop my itunes from changing the location of my itunes media.  i have it saved on a external HD and it keeps changing back to my local drive with out being told

    how do i stop my itunes from changing the location of my itunes media.  i have it saved on a external HD and it keeps changing back to my local drive with out being told

    No, an external drive will not always be mounted. If the drive goes to sleep, it can unmount, or it may unmount for other reasons. As Chris said, confim that the drive is mounted and active before launching iTunes.
    Regards.

  • How do I stop my MacBook Air saving every picture from web sites I visit

    How do I stop my MacBook Air saving every picture from any websites I visit mainly cars

    What browser are you using?
    Have you tried a different browser?
    Ciao.

  • How do i stop photoshop cs4 from quitting unexpectedly when saving a photoshop pdf? i attempted to download the adobe drive 5 but the installation keeps failing.

    How do i stop photoshop cs4 from quitting unexpectedly when saving a photoshop pdf? i attempted to download the adobe drive 5 but the installation keeps failing. I went through the process of clicking through the how to's and the troubleshooting and came to the conclusion that I need to install the adobe drive 5 but I can not complete the installation. I may be incorrect on this so I need immediate assistance as I have poster and ad deadlines. I also tried disabling the gatekeeper and solution 3 on the troubleshooting of slow saving on photoshop.
    Any help is much appreciated!
    Thank you!

    Are you attempting to save the file to a network location instead of your local hard drive? If so, this is probably why you are encountering an issue and why Adobe Drive would be the solution. As we've documented, it is a bad idea to open from or save directly to a network source: Networks, removable media | Photoshop | CS4 and later. Drive can help you get around this by setting up an Adobe supported virtual connection to the network. Thus, if installing Adobe Drive is the solution you need and your need help with installing Drive, please post to the Downloading, Installing, Setting Up forum.
    If you are not saving to a network location, then Adobe Drive is not going to be the answer. Then we'll need to know more about the file you are saving.

  • Stopping "Preview" from saving every document.

    How can I stop Preview from saving every pdf file I open? I can't find anything in the prefs that allow me to simply "read" docs without saving them. Thanks.

    swami7774 wrote:
    I normally use Firefox but tried Safari based on your recommendation. If I hit "open document in new window" it does not download, so the problem is solved if I use Safari. That fix does NOT work with Firefox. No matter what viewing choice I make the document is saved to the desktop. Can't find a Firefox preference that addresses this.
    You can change where it goes, though. +Firefox > Preferences > General > Downloads.+

Maybe you are looking for

  • Dell Laptops E7440 & E7240 - Issues with connecting to MDT 2012 deployment share

    Hi,   Good afternoon.Need help on this please -Test laptops Iam using are 2 * E7440 and 1*E7240. One laptop of model E7440 has our image installed and other two (1*E7440 & 1*E7240) are shipped from Dell with default Win 7 64 bit OS. -Test desktops Ia

  • New Administration Landscape in PI 7.1

    Anyone know how to create a New Administration Landscape in NWA in PI 7.1? Can someone provide step by step? I need this for configuration of NWA for Java System. I don't have any Landscape defined for use as it is a new system. Thanks, John

  • Pagemaker 5 Printing Issue

    It has been years since I used this program. I refreshed my memory a bit and attempted to create a page. I am trying to prepare some invitations. I want to put in the basic Date, Time etc. into some purchased invitations. I created a page, the size o

  • Authorizations in Campaign Management

    Hi Folks How do we setup authorizations in CRM for Campaign Management. I would like to have role for Campaign Creator, Campaign Release, Campaign Approver. Are there any specific authorization objects that drives this functionality. Any help on this

  • Mac Pro shuts down after setting up RAID (HELP!)

    So, I recently purchased a rev 1 Mac Pro and decided to setup a RAID using 4 750gb WD drives. I am not using a RAID card, simply using Disk Utility. I first combined drives in bays 1 and 2 (striped) and then combined drives in bays 3 and 4 (striped)