Prevent the use of blocked vendors in Funds Reservations

Does anyone know of a specific user exit or way to prevent users from entering a vendor that has been blocked or marked for deletion in a funds reservation (FMX1)?

I've done it - it does work.
You just have to keep explaining why their response is incorrect (if it is incorrect). Eventually, OSS will convince you that it is correct or you will convince them that it is incorrect.
However, sometimes if you cannot make progress, close the message and open a new one. Maybe you'll get someone more sympathetic to your cause. (Not the official SAP recommendation.)
Rob

Similar Messages

  • Prevent use of blocked vendors in Funds Reservation Doc (FMX1)

    How can I make the system give a hard error for a blocked vendor for a funds reservation document?
    Currently the system will allow the use of a vendor that has been blocked when creating a funds reservation document.
    A hard error is received when attempting to create a requisition, purchase order or when posting any accounting document using a blocked vendor.

    resolved with FUNCTION EXIT_SAPLFMFR_004

  • How to prevent the use of wild cards in select-option

    Hello experts,
    Is it possible to prevent the use of wild cards in a select-option? If yes, how is it done please?
    I have a
    SELECT-OPTIONS: o_comp  FOR dbtab-field OBLIGATORY DEFAULT 'FI'.
    and, I want to prevent the users for giving in some thing like FI* with the wildcard bc it would lead to dump.
    I want an error message to display and prevent the users for making such entry.
    Please I need your help and I would be very grateful.
    Thanks
    Nadin

    You have to use SELECT_OPTIONS_RESTRICT to restrict input allowed. Call this FM in INITIALIZATION or SELECTION-SCREEN OUPUT sections.
    Sample :
    TYPE-POOLS: sscr.
    INITIALIZATION.
    * Restrict SELECT-OPTIONS
      PERFORM restrict_select.
    FORM restrict_select.
      DATA: restrict TYPE sscr_restrict,
            opt_list TYPE sscr_opt_list,
            *** TYPE sscr_***.
    * Défine select-options modes (aka option list)
    * - ALL standard - all options allowed
      CLEAR opt_list.
      MOVE 'ALL' TO opt_list-name.
      MOVE 'X' TO: opt_list-options-bt,
                   opt_list-options-cp,
                   opt_list-options-eq,
                   opt_list-options-ge,
                   opt_list-options-gt,
                   opt_list-options-le,
                   opt_list-options-lt,
                   opt_list-options-nb,
                   opt_list-options-ne,
                   opt_list-options-np.
      APPEND opt_list TO restrict-opt_list_tab.
    * - EQU only equality allowed (list of values)
      CLEAR opt_list.
      MOVE 'EQU' TO opt_list-name.
      MOVE 'X' TO opt_list-options-eq.
      APPEND opt_list TO restrict-opt_list_tab.
    * Affect modes to parameters or block of parameters
    * ALL by default
      CLEAR ***.
      MOVE: 'A'          TO ***-kind,
            '*'          TO ***-sg_main,
            'ALL'        TO ***-op_main.
      APPEND *** TO restrict-***_tab.
    * EQU to internal material number
      CLEAR ***.
      MOVE: 'S'          TO ***-kind,
            'S-MATNR'    TO ***-name,
            'I'          TO ***-sg_main, " no exclusion
            'EQU'        TO ***-op_main. " only value list
      APPEND *** TO restrict-***_tab.
    * Call  FM
      CALL FUNCTION 'SELECT_OPTIONS_RESTRICT'
           EXPORTING
                restriction = restrict
           EXCEPTIONS
                OTHERS      = 1.
    ENDFORM.                    " restrict_select
    In the sample, only select-options for matnr is restricted to single value list.
    For your request build a mode with all options except "pattern" ones : CP and NP.
    Regards

  • Can you prevent the use of consecutive numbers in a password, using Group Policy?

    The regular old password complexity requirements disallow the use of 3 consecutive characters that appear in the user's account name / display name, but does not prevent the use of consecutive numbers at all. For example, a user can have a password including
    the string "12345". We have the need to disallow this via GP in order to make our passwords compatible with an outside service to which we would like to synchronize. I see no way to do this with the typical Password Policy settings. Anyone out
    there have any hints as to how I might accomplish this?
    This is on a Windows Server 2008 R2 Domain.

    Am 24.09.2014 um 20:01 schrieb dklein73:
    > We have the need to disallow this via GP in order to make our passwords
    > compatible with an outside service to which we would like to
    > synchronize. I see no way to do this with the typical Password Policy
    > settings. Anyone out there have any hints as to how I might accomplish this?
    You need a custom password filter dll on your DCs:
    http://msdn.microsoft.com/library/ms721766.aspx
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • How do I prevent the use of a digital signature?

    I realize this flies in the face of some core security issues built into PDFs, but here we go...
    We have a customer for whom we are creating fillable PDF forms.  Due to the nature of the documents, they require handwritten signatures on printed hard copy.  Since the ability to digitally sign any PDF is enabled by default, and especially since Acrobat Reader X apparently prompts the user to use a digital signature, our customer is concerned that some end-users (most of whom will be non-tech-savvy) will be confused by the digital signature concept and would prefer to prevent the use of digital signatures at all.  I have played with the security settings in Acrobat Pro, but they are not granular enough to allow filling in a form without also allowing a digital signature.  Any way to prevent signing?
    Thanks,
    Mike

    @George Johnson:
    I tried to edit and save the form from within Acrobat Standard X, but it didn't seem to make any difference.
    @brogers_1:
    I am not familiar with EchoSign, but since the end-users are not part of my organization, nor my customer's, I won't have access to their registry settings.
    I don't want DigSigs at all.
    There is no signature field in the document--unless it is somehow hidden. 
    When a user either left- or right-clicks any form field (in Reader X at least), a window pops up titled "Form Can Be Filled and Signed Electronically" with a note to click "Sign" etc.:

  • What is the use of block step in BPM? Please help!

    Hi Experts,
             I would like to know what is the use of block step in BPM? In what cases we can use it?
    Can somebody explain BLOCK by relating to any programming language ( java) control step?
    Please help!
    Thanks
    Gopal

    Hi,
    Block step is similar to what we use curly braces in most of the languages which defines the scope. For example if we are using loop step in bpm to loop through some variable then we can use block step to restrict the scope of loop step up to some point.
    Thanks and Regards,
    Sudheer.

  • [svn:osmf:] 14566: Commit some proxy fixes related to the use of blocked traits.

    Revision: 14566
    Revision: 14566
    Author:   [email protected]
    Date:     2010-03-03 17:38:22 -0800 (Wed, 03 Mar 2010)
    Log Message:
    Commit some proxy fixes related to the use of blocked traits.  Update unit tests.
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/traceproxy/TraceListene rProxyElement.as
        osmf/trunk/framework/OSMF/org/osmf/elements/ProxyElement.as
        osmf/trunk/framework/OSMF/org/osmf/media/MediaPlayer.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestProxyElementAsDynamicProxy.as
        osmf/trunk/framework/OSMFTest/org/osmf/utils/DynamicProxyElement.as

    Revision: 14566
    Revision: 14566
    Author:   [email protected]
    Date:     2010-03-03 17:38:22 -0800 (Wed, 03 Mar 2010)
    Log Message:
    Commit some proxy fixes related to the use of blocked traits.  Update unit tests.
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/traceproxy/TraceListene rProxyElement.as
        osmf/trunk/framework/OSMF/org/osmf/elements/ProxyElement.as
        osmf/trunk/framework/OSMF/org/osmf/media/MediaPlayer.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestProxyElementAsDynamicProxy.as
        osmf/trunk/framework/OSMFTest/org/osmf/utils/DynamicProxyElement.as

  • Does applocker have the ability to prevent the use of Psiphone?

         Not entirely sure I am asking this question in the correct area, but any help would be appreciated. Psiphone is an application that users launch to beat preventive measures to browse the web. It does not install and simply runs
    an executable in the background. We cannot block the IP, or port that it uses because we use it to also connect to other parts of our infrastructure. Other than dropping Endpoint and going with another prevention software which has a "default deny application"
    setting, can this work to block against this application?

    Hi J.Runyon,
    The main purpose is to prevent the Psiphone application running ,right ?
    AppLocker has the ability to deny applications from running simply by excluding them from the list of allowed applications .
    Here is a link for reference of using Scenarios.
    AppLocker Policy Use Scenarios
    https://technet.microsoft.com/en-us/library/ee424357(v=ws.10).aspx
    We can refer to the following link to configure the group policy,please pay attention that the " Application Identity service " should be running .
    How to configure AppLocker Group Policy to prevent software from running
    http://social.technet.microsoft.com/wiki/contents/articles/5211.how-to-configure-applocker-group-policy-to-prevent-software-from-running.aspx
    Best regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How do I prevent the use of electronic signatures?

    I have numerous fillable forms that my office makes available to the general public.  The forms must be printed and signed by hand.  However, we continually receive the documents with digital signatures, and I need to find a way to prevent Reader from offering the option to e-sign.  I'm using version 10.1.10, on a Windows 7 PC.
    I've pretty new to working with Acrobat, so any help will be appreciated.
    Thanks. 

    If you set up standard password security so that form filling and signing existing digital signature fields is allowed, you should be OK.

  • What is the use of Blocks in workflows

    Hi,
    Can anyone give me an idea that why do we use Blocks in workflows and what can be the scenario where it is used...
    Or
    can you tell me the scenarios where it can be applied...
    kindly share some knowledge....abt this..
    Thanks,
    Shanky

    Hi
    How can we do exception handling in blocks
    What are the three types of Blicks
    can you please tell me which one can be used for what purpose....
    1) Standard
    2) Par For Each
    3) For Each..
    And i have one more question if i need to handle a series of condition in the block along with send mail then can i use the blocks...
    Please suggest the difference between the three types of blocks and its difference ....
    How is exception handling done in blocks...and how do we pass values to the local container from the workflow container...
    Thanks,
    Shanky

  • Bridge cs4 is preventing the use of filters.

    I just purchase a new iMac. I installed my adobe ps cs4 that I purchased while using my older mac. Now, however when I open a picture in Bridge to
    review and then open PS cs4 it will not load my purchased filters for PS cs4.  However, if I open pictures in Photoshop with out using Bridge the
    filters are there and can be used.

    You are going to have a hard time disabling any of the windows key combos (ctrl-alt-del, alt-tab, ctrl-esc, ...).
    First, Java was written as a cross-platform language. This means that operating system specific features are not going to be supported. (It doesn't even directly support creation date on files). However, you can call native code (c, assembly, ...) with a Java interface called JNI.
    This bring me to my second point. Ctrl-Alt-Del is a security feature in windows. It is meant to make sure the login procedure is controlled by windows and to allow the user to have control over the running tasks. I doubt there is even a Windows call you can make to disable it (I'm guessing, but it makes sense).

  • How can I prevent the MediaTracker waitForID method from blocking?

    Hi everyone:
    I am writing an application that deals with various image file formats with the help of the JIMI package (available at http://java.sun.com/products/jimi/). Everything works fine except for the Targa format. When I generate an Image object as follows (url is a valid URL object):
    Image image = Jimi.getImage(url);
    ImageIcon icon = new ImageIcon(image);the program execution blocks at the second line above. I searched the ImageIcon source code for some clues, which led me to the following ImageIcon method (tracker is a MediaTracker object, a static property of ImageIcon):
    (01) protected void loadImage(Image image) {
    (02)   synchronized(tracker) {
    (03)     tracker.addImage(image, 0);
    (04)     try {
    (05)       tracker.waitForID(0, 0);
    (06)     } catch (InterruptedException e) {
    (07)       System.out.println("INTERRUPTED while loading Image");
    (08)     }
    (09)     loadStatus = tracker.statusID(0, false);
    (10)     tracker.removeImage(image, 0);
    (11)
    (12)     width = image.getWidth(imageObserver);
    (13)     height = image.getHeight(imageObserver);
    (14)   }
    (15) }The program blocks at line (05) above. I peeked into the MediaTracker class source code, which brought me to determine that the image loading process never finishes. The symptoms are as follows:
    (1) When I perform a c.checkImage(image, null) where c is some Component, I always get a result of 7, which translates to the following combination of ImageObserver constants:
    WIDTH | HEIGHT | PROPERTIESAs matter of fact, the dimensions are indeed determined correctly. However, when the loading process terminates, the checkImage result includes ALLBITS or FRAMEBITS in case of success, ABORT or ERROR in case of failure. None of these bits is ever turned on whenever I try to load a Targa image.
    (2) When I get to the MediaTracker source code, I see that when none of the four bytes above is set, the internal MediaTracker status has the MediaTracker.LOADING bit turned on (nothing abnormal here). And the waitForID method terminates precisely only when this bit is turned off!
    Logically, if the loading process fails for some reason, I should expect to get an error response so that I can go further in code execution. However, since the loading process never terminates, everything stays blocked at the waitForID method invocation.
    Is there an efficient way to detect such a hidden loading error without letting my program go into the waitForID endless loop? In other words, going back to the first two lines of code of this message, how could I detect that an Image loading process will not terminate before calling the ImageIcon constructor?
    Thanks in advance for any useful help...
    Jean-Fran�ois Morin

    Hi:
    I tried precisely your suggestion before posting my message to the forum yesterday. I just forgot to mention it... Maybe I was afraid of increasing my message length more and more...
    I already know that this solution prevents the MediaTracker from blocking. However...
    (1) If they reach a troublesome image (like a Targa), the users of my application might not be pleased by its freezing for 10 seconds. Actually, this image loading module is part of an architecture for database applications from which my development team and I produce applications for various customers. Images are used, in particular, in Oracle BLOB support.
    (2) If I use a smaller timeout delay, I have no guarantee that any image, whatever its length, will load properly (Targa excluded, of course). According to tests I performed yesterday, I am virtually sure that the 10-second delay will be busted very easily by pictures larger than 1 Mb. I cannot overlook this potential problem: an Oracle BLOB can contain up to 2 terabytes of data!
    On the other side, I don't want to focus too much the attention on the JIMI Targa import filter because I know that a revised version of the JIMI and JAI packages will be part of JDK 1.4. This is why I am trying to figure out what is happening in the MediaTracker and Toolkit classes, which are much more fundamental than the Jimi ones...
    Thanks anyway...
    Best regards,
    Jean-Fran�ois Morin

  • List of blocked vendors

    Hi,
    Any report to see the list of blocked vendors.(at company code level & pur org level)
    Regards
    sunil

    Hai;
    You Can get this Report Using t.code MKVZ.
    just execute by giving the Purchase organisation.
    It will list out all the vendors in that Purchase organisation,with all the details.
    there one field (B) is there indicating the Blocked vendor.
    You can also sort the list based on that Block Indicator.
    ok
    Hope You are clear and this will help you better.

  • How can I prevent the active Tab Group from changing whenever I close a tab?

    Simply, often I will close a tab in Firefox 4; then, for some reason the active Tab Group changes to some other collection. It usually happens when I close the last tab in my tabs bar, but it has happened after closing other tabs, as well. Would love to prevent Tab Groups from changing automatically. Thank you!

    Hi:
    I tried precisely your suggestion before posting my message to the forum yesterday. I just forgot to mention it... Maybe I was afraid of increasing my message length more and more...
    I already know that this solution prevents the MediaTracker from blocking. However...
    (1) If they reach a troublesome image (like a Targa), the users of my application might not be pleased by its freezing for 10 seconds. Actually, this image loading module is part of an architecture for database applications from which my development team and I produce applications for various customers. Images are used, in particular, in Oracle BLOB support.
    (2) If I use a smaller timeout delay, I have no guarantee that any image, whatever its length, will load properly (Targa excluded, of course). According to tests I performed yesterday, I am virtually sure that the 10-second delay will be busted very easily by pictures larger than 1 Mb. I cannot overlook this potential problem: an Oracle BLOB can contain up to 2 terabytes of data!
    On the other side, I don't want to focus too much the attention on the JIMI Targa import filter because I know that a revised version of the JIMI and JAI packages will be part of JDK 1.4. This is why I am trying to figure out what is happening in the MediaTracker and Toolkit classes, which are much more fundamental than the Jimi ones...
    Thanks anyway...
    Best regards,
    Jean-Fran�ois Morin

  • SRM@ERP: Synchronise interval of vendors (Vend-- BP) with blocked vendors

    Hello all,
    in SRM@ERP Szenario i am trying to synchronise an interval of vendors (Vendor --> BP) .
    Synchronisation happens without any problem, but all the vendors who have been blocked with in this interval were also created as BPs in SRM with Archiv indicator.
    I would like to restrict the creation of blocked Vendors at all. They are of no use in SRM for our Client.
    Is there any possibility, such as Badi or Enhancement-Spot, which could be of use?
    Thanks & Regards
    PM

    Hello Thomas,
    Check methods PREPARE_REPLICATION_DATA and/or PREPARE_UPDATE_DATA  from BAdI BBP_TRANSDATA_PREP.
    It should be useful to not replicate R/3 blocked suppliers.
    Regards.
    Laurent.

Maybe you are looking for

  • Share a Gmail calender ?

    Me and my wife each have a iPhone, a 3G and 3GS. We both have a Gmail account and I have created a calender, that I want to share with my wife. I have added my wife to my calender, and when she log into Gmail (on the computer), she can see my calende

  • Installation Error SAP NW CE 7.1 Java on Windows 2003 SP2

    Hi folks, I am getting an installation Error when trzing to install the Preview Version of CE7.1 Installation will terminate in Step 28 of 34 with the Message PerfTimes : loadNativeLayer: loading jperflib failed. no jperflib in java.library.path Anz

  • How do i set up a new lion imac from a snow leopard imac using time machine?

    How do i set up a new lion imac from a snow leopard imac using time machine?

  • Report Painter-How to change the order of fields on selectn screen.

    I have a custom Report Painter report that has 2 fiscal years 1 current FY and 1 Comparison FY.  This also includes 2 sets of periods.  I want the period fields to group together by Fiscal Year and Comparison Year. As shown below. Fiscal Year From Pe

  • Modul pool problem

    hi all,   I m working on a subscreen and it has a table control, in this table control all field has F4 help except two fields, these 2 fields have POV-request F4 help through FM,    if i filled any records of this table control internal-table and wh