F110 - How to prevent multiple creation of DME file?

Hello,
I need to prevent multiple creation of DME file for the same Payment Run (after it has been created once).
"Printout" bottom creates DME file and Payment Advice any time you trigger it.
I'm searching for some User Exit / BAdi / Function that will help me to add ABAP code that will check if DME file has already been created.
Thank You in Advance

Hello,
Please check if the flag "Create payment medium" is not flagged at the proposal and the payment run file.
If it is flagged the payment file will be generated. Also when you press the print out button, the print program will be called and the system will try to created a new payment file.
In order to avoid duplicated payments you should consider using the flag 'Payment Document Validation" in your print program.
If the 'Payment Document Validation' parameter is not set ON, documents already processed for payment can be selected and paid again in a subsequent payment run, when posting terminations have occurred.
Please refer to SAP Knowledge Base Article 1713825 in order to activate Payment Document Validation.
Another option is to suppress  the"Create Payment Medium" flag at Proposal Run.
In this case you should check the following information:
Please restrict the activity 15 of object F_REGU_BUK in the user
profile/role
You may also refer to the available activities on this:
- 02 Edit parameters
- 03 Display parameters
- 11 Execute proposal
- 12 Edit proposal
- 13 Display proposal
- 14 Delete proposal
- 15 Create payment medium proposal
- 21 Execute payment run
- 23 Display payment run
- 24 Delete payment run payment data
- 25 Create payment media of payment run
- 26 Delete payment orders of payment run
- 31 Print payment medium manually
Kind Regards,
Fernando Evangelista

Similar Messages

  • F110 - How to prevent the creation of DME file in Proposal Step

    Hello,
    I would like to prevent the creation of DME file in Proposal Step of Payment Run (F110).
    Is it possible to suppress "Create Payment Medium" checkbox?
    Many Thanks

    If you are using the Payment Medium Workbench, there is perhaps a solution:
    I found the following code in function module FI_PAYMEDIUM_OFX_20
    * We abort the payment if the data is from a payment proposal. With
    * OFX we can pay only if the data does not come from a payment
    * proposal.
      IF I_FPAYH-XVORL = 'X'.
        MESSAGE E404 WITH I_FPAYH-LAUFD I_FPAYH-LAUFI
            RAISING CANCEL_PAYMENT_MEDIUM.
      ENDIF.
    So I think it may be possible to solve your problem by using the event modules in transaction OBPM3, with your own function module based on the code given above. I have not tested such solution and I have no experience with these events, but I'm currently trying to use them for another problem.

  • How to prevent JaxB creation of 2 Interfaces for each Element?

    hi,
    does any body know how to prevent JaxB creation of 2 Interfaces for each Element (The Content Interface and the element interface)?
    I want to configure JaxB to use only one Interface and only one implementation Class.
    Thank's,

    I am sorry I can not answer your question, I have got the same problem. Could you please email me to
    [email protected] when you know the answer, please.
    I have a question for you. When and complex type is validated, I get the object which contains the error. ( or objects ).
    However. How do know the position in the actual parent object. basically. Is there a way to know exactly the position of that attribute in that object. I need to store errors strings.
    The first problem derives from this one:
    It is not possible to execute validate function for a primitive attribute inside an structure.
    I would appreciate your help.
    Thanks.
    Gustavo.

  • How to scan multiple pages in one file

    I would like to know how to scan multiple pages into one file.  There is no add button that comes up.  I have a HP Officejet 8600 and a macbook pro.  Please help, this would really help me out.

    Open Preview and use its "Import From Scanner" option in the File menu. This will launch the scanning interface, which has some standard and basic scanning controls. If you choose "PDF" as the file format to save as, then you will see an option to scan all images to one file. When you do this, you will scan and edit them individually, but Preview will save them to the same file when saved.

  • How to Export multiple photos from pdf files?.

    Good day.
    How to Export multiple photos from pdf files?.
    Thanks.

    Hello
    how to reach from file menu ?.
    Running Adobe reader 9 version 9.3.0
    Thanks again.

  • How to prevent multiple users from updating the same data in coherence

    Hi,
    I have a Java Web Application and for data cache am using coherence 3.5. The same data maybe shared by multiple users which maybe in hundreds. Now how do I prevent multiple users from updating the same data in coherence i.e. is there something in coherence that will only allow one user a time to update. If one user is in a process of updating a data in coherence and some other user also tries to update then the second user should get an error.
    Thanks

    I have a question on the same line. How can I restrict someone from updating a cache value when I a process is already working on it. I tried locking the cache key but it does not stop other process to update it , it only does not allow other process to get lock on it.

  • How to prevent multiple logins by using HttpBindingListener

    Hi,
    Can anyone tell me how do i actually use session to prevent multiple login from different machine? From my understanding, i need to use HttpBindingListener to valueBound and valueUnbound when user tries to login, but i encounter a problem is my session is always overwritten since i use setAttribute() method in servlet.
    For instance i use username(aaa & bbb) to login in two different machine, my login is always overwritten if i use username bbb to login after username aaa. i know it is because setAttribute() method overwrite existing session data, so i would like to know what other method should i use to achieve what i want, tks.

    Hi,
    This is the logic for session :
    Connect to db for verification, once verified, system return a UserBean and this UserBean will be set in ClientSecurityEngine
    When this particular user has been successfully verified, a new session will be created
    if(success)
        session = request.getSession();
        User user;
        synchronized(session)
        user = (User) session.getAttribute("user");                       
        if(user == null)
           user = new User(ClientSecurityEngine.getInstance().getUserBean().getUsername());
           session.setAttribute("user", user);
    /* User class */
    public class User implements HttpSessionBindingListener {
        private static Map<String, HttpSession> logins = Collections.synchronizedMap(new HashMap<String, HttpSession>());
        private String username;
        public User(String username) {
            this.username = username;       
        public String getUsername() {
            return username;
        @Override
        public void valueBound(HttpSessionBindingEvent event) {
            if (logins.containsKey(getUsername())) {
                HttpSession session = logins.remove(getUsername());
                if (session != null) {
                    session.invalidate();
                logins.put(getUsername(), event.getSession());
            } else {
                logins.put(getUsername(), event.getSession());
        @Override
        public void valueUnbound(HttpSessionBindingEvent event) {
            logins.remove(getUsername());
    }Edited by: EJP on 21/07/2011 14:22: added {noformat}{noformat} tags so we can actually read your code. Please use them.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to prevent multiple submit (replay attack)?

    Hi there, I have managed to submit the form to the server side. However, is there any way to prevent the client side from keep submitting the form? I have heard of using random number, but I don't know what javascript code to place in the web page. Can anybody help, because I am stuck in the problem for quite a long time.
    Thanks,
    Rocky.

    r0ckytay89 wrote:
    Hi there, I have managed to submit the form to the server side. However, is there any way to prevent the client side from keep submitting the form? I have heard of using random number, but I don't know what javascript code to place in the web page. Can anybody help, because I am stuck in the problem for quite a long time.
    Thanks,
    Rocky.Well there are two ways of implementing this.
    1).Javascript Solutions (and mind you never always try disabling the submit button )
    [http://www.elated.com/articles/preventing-multiple-form-submits/]
    [http://www.web-source.net/web_development/form_submission.htm]
    2).Maintaining state of the form on server side and using a token for preventing mutiple submits.
    try to go through the solutions recommended in the below articles
    [http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&f=50&t=016689]
    [http://faq.javaranch.com/java/HowToPreventMultipleFormSubmits] (In struts)
    Or a more generalized solution is given in the article below
    [http://www.onjava.com/pub/a/onjava/2003/04/02/multiple_submits.html]
    Hope that might help :)
    REGARDS,
    RaHuL

  • How to delete multiple old ITUNES LIBRARY files safely ?

    I'd like to clean up my Itunes LIBRARY files, but don't know what's safe to do and not to do. (I have Itunes 8.1 / OSX10.4.11)
    MY QUESTION IS TWOFOLD :
    (1) how do I create a new Itunes library file now with today's date; and
    (2) how do I delete multiple (old) Itunes library files, without risking the loss of what I've got ?
    This all stems from exploring Itunes as a result of a problem I had today... when trying to import mp3's from my terrabyte drive, after about 150 successful mp3 track imports, Itunes froze and everything else on my MAC froze as well (constant spinning colored wheel). After many failed attempts to force quit Itunes, I turned off my MBPro. On restarting, Itunes tooks ages to "import" files. Eventually Itunes opened but with only half of my original tunes (1500+ songs 8.11GB) and had nothing from today's import.
    I found a post suggesting to hold down OPTION while starting Itunes. Then I selected a file from my hard drive > me > music > Itunes > "Itune library" with the most recent date and shezam, Itunes once again has all my songs, as before. Nothing I imported from the terrabyte drive today appears however, but no matter.
    In my "Itunes" file there appear MULTIPLE Itunes libraries ! such as Itunes library, Itunes Library (damaged), and as well a folder called "Previous Itunes Libraries" which itself contains multiple Itunes Library files and multiple "previous Itunes Library files" with dates back to 2007. These I want to clean up and delete .... should I ? ... Can I ?
    I really could use some words of wisdom from the wise ! Thanks in advance

    Whenever you install a new version of iTunes and run it teh first time, iTunes will create a backup of the current iTunes library file and copy it into \Music\iTunes\Previous iTunes libraries, then update the iTunes library file in \Music\iTunes\ for the current version of iTunes.

  • How to create multiple copies of a file with renamed filenames

    hi,
     I want to create multiple copes of a  file [ say abc.docx] which has 3.5 MB of size  and want to rename it through power shell.
    so, in the end, i want to get abc_1.docx,abc_2.docx, abc_3.docx ....abc_10.docx in the same folder with the same size. i mean, after running the ps script i should get the foldwer size set to 35 MB .
    can anyone help, how to achieve this?
    I am newbie in powershell. 
    i tried the below :
    $File = Get-ChildItem -Path "D:\ABCFolder\" -Filter Copying.bat -Recurse
    for($i = 0; $i -lt $File.Count; $i++)
    Copy-Item $File[$i].FullName ("D:\ABCFolder\" + $File[$i].BaseName + $i +".doc")
    help is appreciated!

    but the below one didnt work:
    $File = Get-ChildItem -Path "D:\ABCFolder\" -Filter Copying.Bat -Recurse
    for($i = 0; $i -lt $File.Count; $i++)
    1..10 | Copy-Item $File[$i].FullName "$($File[$I].DirectoryName)\$($File[$i].BaseName)_$_$($File[$i].Extension)"
    am getting the below erro when executing this code:
    $File = Get-ChildItem -Path "D:\mfolder\"
    $count = $file.Count
    for ($x = 0; $x -lt $count; $x++)
    $ext = $file[$x].Extension$name = $file[$x].BaseName
    for($i = 0; $i -lt 100; $i++)
    Copy-Item $File[$x].FullName -destination "D:\mfolder\$name_$i$ext"
    /////////////////////////////error below://///////
    At D:\mfolder\createcopies2.ps1:7 char:27
    + $ext = $file[$x].Extension$name = $file[$x].BaseName
    + ~~~~~
    Unexpected token '$name' in expression or statement.
    + CategoryInfo : ParserError: (:) [], ParseException
    + FullyQualifiedErrorId : UnexpectedToken

  • How to prevent multiple purchases under one account

    how do you make sure kids dont purchase songs already under my library? We have three people buying songs from different devices under one credit card. Thanks, Julie

    Welcome to the Apple Community.
    Previously purchased items should display a purchased notification instead of the price at the point of purchase. I think the problem might occur when there are similar items, some people like to have various versions of the same thing, it probably isn't appropriate to mark these as purchased.
    I guess it's a difficult one, but perhaps the only way is to get them to check before they buy.

  • How to prevent multiple clicks of submit buttons in OAF Pages

    Hi All,
    Our page takes around 30 seconds to 1 minute for processing.
    Some users are not patient enough. I have tried putting the below code in my PR method.
    OAWebBean body = pageContext.getRootWebBean();
        if (body instanceof OABodyBean)
        ((OABodyBean)body).setBlockOnEverySubmit(true);
    This code disables submit button for some time. After few seconds, the submit button can be clicked again by the user.
    Also, if I click on other browser window and come back to OAF page, the submit button can be clicked again immediately.
    Have also searched OAF forum but didn't find any satisfactory answer.
    Need answer from Oracle on this. If not answered on the forum, will raise an SR.

    Hi Amit,
    Try using the Processing Symbol , after clicking the Submit button. Which does shows you processing clock symbol once you click Submit Button.
    Regards
    Raghu

  • How to permanently stop creation of .DS_Store files on desktop?

    Ever since attempting to use .ds_store on Terminal to find hidden iTunes files, the system will not stop creating .DS_Store files on the desktop. I've tried using the defaults write com.apple.desktopservices DSDontWriteNetworkStores true command, to no avail. I'm relatively new to using Terminal, so if someone could offer any tips, that would be good. The file creation is more of an annoyance than a real problem, but I want to know how to stop it, since there is no info on this in other places. Thanks! ~ Eva

    The DSDontWriteNetworkStores command only prevents creation on shared network drives.
    .DS_Store files are always created locally (unless using something like TotalFinder to prevent that)
    The reason you now see them on the Desktop is likely because during the process to track down iTunes files you enabled the option to "see" hidden files - issue the following command in Terminal to "undo" that:
    defaults write com.apple.finder AppleShowAllFiles false
    If you want the change to be immediate (rather than after logging out & back in or rebooting) then simply "restart" the Finder app, again in Terminal:
    killall Finder
    Johnny.

  • CS6 Crashing On Launch OSX 10.8.3 - How to prevent re opening of previous files on launch

    How do I prevent Fireworks CS6 from opening previous files in it's workspace?
    It seems to be trying to load each image file multiple times, I can see at least 5 or 6 tabs for the each image as they load.
    It seems to load about 40 or 50 images before it crashes so I'm unable to use ay menu options within Fireworks.
    I've tried to locate an Application cache but to no avail.
    I've also tried un-ticking the 'Repoen windows when logging back in', that didn't work.
    Any thoughts?

    Finally found a solution to this problem:
    Remove saved state for Fireworks CS6 on Mac OS X Mountain Lion
    Quit Fireworks.
    In the Finder, navigate to /Users/Your User Name/Library/Saved Application State/com.macromedia.fireworks.savedState
    3 files in folder:
    data.data
    window_1.data
    windows.plist
    Prefix files with 'OLD' just to be safe.
    Start Fireworks

  • How to open multiple folders and read file?

    Hello,
    I try to use this bridge script. The script work very well for me but some times I have multiple folders.
    Now script work that:
    1. Read file in folder
    2. Save text file and show me popup with full quadrature
    http://forums.adobe.com/message/3996179?tstart=56
    1. Open folder
    2. Read file
    3. Close folder
    4. Read next folder
    5. Read file
    6. Close folder
    7. ....
    8. Save text file with all folders and show me popup with full quadrature
    Please help!
    Best regards.

    Lightwave wrote:
    I don't think you guys are hearing my question. I can see how to restore a single file or folder.
    I want to restore ALL the changed or deleted files and folders since my last backup (but not the entire disk, that would be unnecessary)
    Were all (or most) of the items in, say, your Documents folder, or your Music folder? If so, you can restore the whole folder via TM. That will put all sub-folders and files back exactly the way they were at the time of the backup. You just have to be careful to pick the right backup (date & time).
    Or, if they were scattered through your Home Folder, you can restore that entire folder in the same way.
    If you've made changes subsequent to that backup, however, they will be lost in the process. What you can do in that case is, restore to a different location, then compare the two folders, and drag & drop what you want. (To restore to a different location, select the folder in TM, then click the "gear" icon in the TM Finder window, and select +Restore <item selected> to ...+ and you'll be prompted for a restore location.)

Maybe you are looking for

  • Can see thumbnails but can't see actually pics

    Ok I have a really serious problem with iphoto. Every once in a while I will try to double click on a photo to view it but I will just get a white screen with the spinning thing like on startup. Usually I just delete the photo because it hasn’t happe

  • Tax Condition in MM

    Hi Experts, Requirement....... CST u2013 Non Deductible Tax to be calculated  on Basic and Freight cost. All Tax being calculated using Tax Code VT. In MM Pricing Schema The  Condition Type FRA1 is maintained with sub-total u20184u2019, so  that FRA1

  • SEO for slide shows

    Hello, I have made a slideshow with Edge Animate to place into a Muse website.  The slideshow contains text and images that I'd like to make searchable on the web.  I am not being able to find any information on how to do this in Edge Animate.  Does

  • Uploaded Images-Shortcut Error

    I was trying to move some videos and images I had uploaded from a camera a while back onto a different user on the computer and accidently moved them to the desktop.  Now all the images and videos are shortcuts that do not have a location and I no lo

  • Default address in "from" field?

    I have 4 e-mail accounts that Mail checks. When I write an e-mail (that is not an answer) I want the "from" address to be my Mac account. Mail does not remember this. If I LOOK in another mailbox, then Mail changes the "From" to be from that mail box