F110 - How to limit number of payments per document

Dear All,
Our client wants to limit the number of payments per account document for Russia.
Does somebody knows a method to limit to "3"  this number for each payment document when execution of transaction F110 ?
So if a supplier has 10 invoices payable, this creates 4 payments (3 + 3 + 3 + 1)
Thanks in advance
Regards
Daniel.

Hello,
I do not think this requirement is possible in standard SAP.
You have to decide whether you want to group payment document for single invoice or all invoices.
There is no configuration to divide payment documents for 3 invoices.
Regards,
Ravi

Similar Messages

  • How to limit number of logins per day?

    We have a custom web application (WebAS 6.20) used by people and automated systems. Each user has his own login, and some of these automated systems sometimes produce heavy load because they log into system too often.
    Is there an easy way to:
    1) limit number of logins to, say, 1000 per day and when this limit is reached - do not allow this user to login till midnight
    OR
    2) dedicate one of the processes to the specific user
    thanks in advance

    extend PlainDocument class to restrict the number of characters per line.
    Set this class as model to TextArea.
    Below is a class which does this. May be its useful
    import javax.swing.*;
    import javax.swing.text.*;
    import java.awt.*;
    public class FixedNumericDocument extends PlainDocument {
    private int maxLength = 9999;
    private String max="";
    public FixedNumericDocument(int maxLength) {
    super();
    this.maxLength = maxLength;
    //this is where we'll control all input to our document.
    //If the text that is being entered passes our criteria, then we'll just call
    //super.insertString(...)
    public void insertString(int offset, String str, AttributeSet attr)
    throws BadLocationException {
    if (getLength() + str.length() > maxLength) {
    return;
    else {
    try {
    //check if str is numeric only
    int value = Integer.parseInt(str);
    //if we get here then str contains only numbers
    //chk if it is less than 65535 so that it can be inserted
    super.insertString(offset, str, attr);
    catch(NumberFormatException exp) {
    return;
    return;

  • Po number range as per document type

    Hi All,
    How to configure PO number range as per document type? Like i want my service POs (doc type FO) with different number range than with document type NB.
    Regards,
    Shailendra

    Define document types.  Method
    Transaction: SPRO
    Menupath -> Materials Management -> Purchasing -> Purchase Order -> Define document types
    Select document types:
    Enter - Document type (NB) , Type description (Std PO with delivery) , Item interval (1) , NR rng as. (Number range assignment) as 01, Field selection (NB).
    Save the details entered.
    Then go to Define Number range (OMH6) or menu path Materials Management -> Purchasing -> Purchase Order -> Define number range
    Select Interval
    Define NO as 01 (Number range assignment already maintained in document types), then give from range, to range.  Current number is 0
    Hope you have understood and now you can link with number range with document types.
    Any clarifications, please revert back.
    Thanks,
    Ravi

  • How to determine number range for billing document based on company code ..

    Hi Friends!!
    can anybody tell me how to determine number range for billing document based on company code & tax departure country if required??
    Amit...plz help me!!

    Hi Amit,
    1. Define different Billing Document number ranges in  SPRO -> Sales & Dist -> Billing -> Define number ranges for billing docs. (VN01). Make sure that all are internal number ranges.
    e.g.
    NO.  From number To Number    Current number  Ext
    A1   0930000000    0930999999
    A2   0940000000    0940999999
    A3   0950000000    0950999999
    2. Define a Ztable ZNUMB_RANGE as follows
    Comp. Code | Tax departure country | Billing Doc Type | Number Range
    100                IN                               F2                      A1
    200                IN                               F2                      A2
    200                US                              F2                     A3
    3. In user exit RV60AFZZ (USEREXIT_NUMBER_RANGE)
    Read table ZNUMB_RANGE for Number Range with Comp. Code, Tax country and Billing Doc.
    If found pass this number range value to us_range_intern.
    us_range_intern is a standard SAP variable which tells program which number range use to create the current document which is under process.
    Let me know if you are clear.
    Thanks,
    Mandar

  • Limit number of chars per line

    Hi ,
    how to limit the number of chars per Line in a textArea or RTFEditableText?
    I have to do the following:
    Allow 25 Chars for first line,
    any other line should have max. 28 chars.
    First line should have a bold font.
    Not an easy thing..
    I tried to use a textarea fpr input and put the text into a datagrid in the textarea.change() event.
    This works, but I lose a lot of the standard features of the textarea (hyphenation etc.)
    The idea is to use only the textarea or a RTFEditor for applying the rules mentioned above.
    Thanks
    thorsten

    extend PlainDocument class to restrict the number of characters per line.
    Set this class as model to TextArea.
    Below is a class which does this. May be its useful
    import javax.swing.*;
    import javax.swing.text.*;
    import java.awt.*;
    public class FixedNumericDocument extends PlainDocument {
    private int maxLength = 9999;
    private String max="";
    public FixedNumericDocument(int maxLength) {
    super();
    this.maxLength = maxLength;
    //this is where we'll control all input to our document.
    //If the text that is being entered passes our criteria, then we'll just call
    //super.insertString(...)
    public void insertString(int offset, String str, AttributeSet attr)
    throws BadLocationException {
    if (getLength() + str.length() > maxLength) {
    return;
    else {
    try {
    //check if str is numeric only
    int value = Integer.parseInt(str);
    //if we get here then str contains only numbers
    //chk if it is less than 65535 so that it can be inserted
    super.insertString(offset, str, attr);
    catch(NumberFormatException exp) {
    return;
    return;

  • Smart playlist limit number of songs per artist

    Is there a way to limit the number of songs per artist that show up in a Smart Playlist?

    No.
    You can check out dougscripts.com to find something to do what you want.

  • How to setup number range for Material Documents created by goods movement

    Hi Experts,
    Good day!
    Would you know what table or transaction code we could setup or configure the number range for Material Documents number created by goods movement?
    Thanks. Have a wonderful day!
    Rockz

    Hi,
    Tcode - OMBT
    Regards,
    Vivek

  • How to limit number of chars in a CFGRIDCOLUMN

    Hi,
    I have a 2 column grid populated from a query. The grid is
    editable and will be submitted to an action page for database
    Delete, Insert, or Update. The first grid column corresponds to a
    MS SQL database column that is defined as varchar(3).
    Currently, if the user inputs 4 characters and submits, I get
    a SQL trunc error.
    There has to be a way to limit the number of characters in
    this cfgridcolumn to 3? How is it done?

    Well, you could check the number of characters on your action
    page, and bounce them back if it exceeds the maximum number, and
    you can "protect" the database by including a limiting function on
    the data in the insert statement, like LEFT(col, 3) so that
    regardless what they specify, you will only insert the first 3 into
    the database. You really should let them know if they entered too
    many, however.
    Phil

  • HT201320 how to limit number of emails in mac mail on iphone5

    Since I upgraded to ios7 my main email account within mac mail has been loading up to 1000 emails.  I want it to be as before, a limit of 200.  How???

    appartently the only solution is to mark all the emails as read but it eats up the internal memory. pretty dissappointing.

  • How to limit number of mail messages on iPhone with iOS7?

    Is there a way to limit the number of inbox email messages showing?  On iOS6, it was in Settings under Mail but this option is not there on iOS7  Is it hiding somewhere else?  If this isn't an option at all, are there any suggestions on a work around?  Without it, a lot of memory is being wasted.  Thanks!

    No, this is no longer an option.
    You can let Apple know about your displeasure (as many have) by leaving them feedback here:  www.apple.com/feedback http://www.apple.com/feedback

  • How to limit number of  jbdc connexion on Oracle application server 10G R3

    Hi all ,
    i have deployed my application an integrated server on Oracle Application Server R3.
    The problem is that i have more than 600 connexion to my Database , an this is too much!!
    How can i configure this ???
    Please help,
    Paul

    You can set the maximum number of connections on the connection pool configuration page of your datasource.
    As there are some troubles with the data source when your dataabse has been down (connection is not restored), I'd suggest to set the Validate Connections option to "true"

  • How to limit number of sessions for an Application

    Hi,
    I have an ASO application running on Essbase 7.1.5 version.
    This Essbase cube is widely used by the BO ( business objects ) Web I services for retrieving data in there Dash Boards.
    No I want to restrict number of sessions on this application. We have SERVERTHREADS through which we can set limit on application wise.
    SERVERTHREADS [application] 20;
    When I set this in the Essbase config file on this server and bounce the Essbase services. Will this really help me in limiting the session till 20 for this application . I see we can set minimum 20 and maximum 500 using server threads.
    What will happen to the session which excceds 20. will they be kept in queue ?.
    Pls let me know if this work. Else pls suggest me the best one.
    Some information for you – in the Essbase ->properties->statistics-> I see Ports Available are 65531
    Thanks
    MS

    HI,
    1. SERVERTHREADS does not contain/limit the count of sessions one can have .
    2. Count of ports will help you decide what is the default SERVERTHREAD count , in your case its 20.
    3. the count 20 signifies the number of threads which a transaction can use ( here threads are nothing by the operating system level threads, to do with the processes and processor).
    4. If you have multiple transactions and you want to improve the performance of them ( in case of slow response or so). You can increase the thread count , to make more threads work for your transactions. Again , this does not limit the count of sessions .
    5. I did not understand the obejctive behind limiting the sessions and avoiding users from accessing . I think , this defeats the whole purpose of having cubes then. You have many cubes ,and huge number of users who pull data and essbase and its kernel are capable of handling this . If you still want to restrcit, might as well set their security ( by letting them not to access cubes).
    Hope this adds value
    Sandeep Reddy Enti
    HCC
    http://hyperionconsultancy.com/

  • How to limit number of rows(pagination) in the bam report?

    Is there anyway i can limit the number of rows in a report in BAM 10.1.3.4 ?

    In BAM 11g
    There is a property ElementsCountLimit which is configurd in BAMServerConfig.xml
    The number of change lists that are cached before rewriting the cache file.
    The default value is 50. When the 51st change list is received, it is cached by replacing the 1st change list.
    Default: 50

  • DB Adapter : How to limit number parent records in select query.

    Hi All,
    I am querying a master-detail tables from a database.
    I want to limit the number of parent records to 15.
    Ex: Resources is parent table. It has two child tables "Skills" & "PersonalDetails".
    Resources table has 1 to many relationship with above tables.
    When i use rownum <= 15 in the where clause i am seeing different results each time.
    Sample query is as below.
    select distict t0.resourceName , t1.skillName , t2.location
    from .table_names
    where .....join between tables..
    and rownum <= 15
    Note : I selected the checkbox "Use outer joins to return a single result set for both master and detail tables" in DBAdapter wizard.
    Let me know if i am missing anything important.
    Thanks,
    Sid.

    Hi,
    You can set the "Max Rows" at the DBAdapter wizard ("Advanced Options" step).
    Regards,
    Daniel

  • How to limit number of characters in a JTextField?

    Hi,
    I am new to java and I would like to create a JTextField which only allows the users to enter no more than 32 characters. How do I do that? I am looking for a "set..." function but cannot find it.
    Thanks for any hint.
    Richard

    Unfortunately there's no setXXX() method that will do it. You'll need to create a new document class that will accomplish what you want. See attached sample working code.
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.text.*;
    public class Limit {
    public static void main(String args[]) {
      new LimitFrame();
    class LimitFrame extends JFrame {
    JTextField jtf = new JTextField(10);
    LimitFrame() {
      super();
      jtf.setDocument(new LimitDocument(5));
      /* Components should be added to the container's content pane */
      Container cp = getContentPane();
      cp.add(BorderLayout.NORTH,jtf);
      /* Add the window listener */
      addWindowListener(new WindowAdapter() {
       public void windowClosing(WindowEvent evt) {
        dispose(); System.exit(0);}});
      /* Size the frame */
      pack();
      /* Center the frame */
      Dimension screenDim = Toolkit.getDefaultToolkit().getScreenSize();
      Rectangle frameDim = getBounds();
      setLocation((screenDim.width - frameDim.width) / 2,(screenDim.height - frameDim.height) / 2);
      /* Show the frame */
      setVisible(true);
    class LimitDocument extends PlainDocument
    int limit;
    public LimitDocument(int limit)
      this.limit = limit;
    public void insertString(int offset, String s, AttributeSet a) throws BadLocationException
      if (offset + s.length() <= limit)
       super.insertString(offset,s,a);
      else
       Toolkit.getDefaultToolkit().beep();
    }

Maybe you are looking for

  • Problems with  Bootcamp and an iMac 27".

    Hi, I recently installed a full copy of Windows 7 Home Premium, purchased at Office Depot, on my fully upgraded iMac 27" (Core i5, 4GB, Radeon 4850). My intent was to use Snow Leopard as my platform of choice for work and special projects, while boot

  • Secondary education cess is not refected in migo

    Dear sir, I have created  condition type for import purchase order .Basic excise duty,cvd,Ecs etc... All condition type is reflected in migo screen at time of good receipt but SeCess is not reflected so please guide me to solve this problem.

  • Multithreading and PreparedStatement

    I am debugging a problem with the interaction between Hibernate and our JDBC driver. Hibernate uses a PreparedStatement to insert values into the database. When it inserts a Timestamp value into the database, it sets the value into the Timestamp obje

  • Access to curently selected row in OnEvent method in JhsDataAction

    Hi How can i get selected row in OnEvent() method? I override JhsDataAction (f.e. MyAction), implement method public void onControl(DataActionContext ctx) but ctx.getBindingContainer().findIteratorBinding("..Iterator").getNavigatableRowIterator().get

  • F.05 realized and unrealized

    hi, i have 2 scenario, 1) if bal sheet prep valuation is ticked, meaning it is posted to realized gain/loss, right? 2) the offsetting account for point 1 is adjustment account? 3) as no reversal, this adjustment account will not be able to reverse fo