Cash Journal table values TCJ_MAX_AMOUNT amount limit not working

Hi Experts,
I have setup cash journal modules in SAP, client has the requirement that upto certian limit user should process payment from cash journal e.g. USD 500
I have setup below entries in table  TCJ_MAX_AMOUNT but noticed that user can still process payment above USD 500
Company Code: 0011
Currency: USD
Valid From: 01.01.2011
Amount: 500
Looking for assistance
Thanks

Dear Sanil,
I tried earlier below validation but found that this works only when document posting level. But I am looking for solution at save level in cash journal
Prerequisite
SYS-TCODE = "FBCJ" AND BSEG-SHKZG = "S"
Check
BSEG-DMBTR <= '500.00'
any other options?
B/R
prashant rane

Similar Messages

  • Only posted values for Navigation does not work

    Hi,
    I have a problem where all master data is shown in the input help for a variable, even when the setting for the info object is to show only posted values.
    In a WEB template I have tree reports using tree different data providers. The setting in the web template is to show the same variable only once and that works. The setting of the info objects is to show only posted values. That does not work!
    When using the input help for a variable, all master data shows, not only the poster values in the data providers.
    When unchecking the setting Display Same Variable Only Once (MELT_VARBLES) the variables appears tree times each and the input help works as expected. It shows only posted values.
    Any experience of this?
    Best Regards
    Kent

    Hi Kent,
    If you build several queries on different infoproviders, then put them into one web template or workbook. Variables from different queries with the same technical name will get merged in variable screen (Set parameter MERGE_VARIABLES=True in web template property. Set "Display Duplicated Variables Only Once" in workbook settings for variables).
    This means, that it is not possible to decide which infoprovider the variable is based on. The provider is unknown to the system when doing F4 help so that D mode is not possible since D mode [Only Values in InfoProvider]  is also infoprovider dependent. So only M mode ['Values in Master Data Table'] is possible.
    In such merge variable situation, the authorizated values in F4 help is also retrieved without specific infoprovider.
    Regards,
    Nishant

  • Cash Journal : How to set the limit for maximum payment of 20000

    Hi Gurus,
    Please tell me how can i set the maximum payment limit of 20000 in cash journal?
    Please revert asap.
    Thank You

    Hi
    Amount Limit
    Use
    You use these functions to define limit values for the FI cash journal; where these limits are reached and exceeded, the user is prompted (in an information dialog box) to run certain activities. The check is always performed in the first local currency of the company code.
    In the countries of the European Union, these functions are used to draw attention to the legal requirement for identifying the payer (money laundering law § 3 para. 1).
    Activities
    Company code:
    You do not have to enter a company code. The entry is then valid for all company codes within a client that use the currency specified as the first local currency.
    Currency:
    Each amount must be specified by the classification of the currency. If you specify a company code, the currency of the company code is entered in the currency field and you cannot change this.
    Date and amount:
    The amount limits are defined time-dependent ("Valid From").
    In addition to the above
    Input your company code,Currency,Valid from and the amount limit
    Good Luck
    Hari

  • Cash Journal Tables

    Dear all.
    I want to contribute some table information for Cash Journal for all user's reference.
    Please find the same.
    TCJ_BALANCE :-                     FI Cash Journal: Totals Records
    TCJ_C_JOURNALS:-                 Cash Journals
    TCJ_CHECK_STACKS:-               Check Lists in Cash Journal
    TCJ_CJ_NAMES:-                   Cash Journal Names
    TCJ_CPD:-                               FBCJ: One-Time Account Data of Cash Journals
    TCJ_DOCUMENTS:-                  Cash Journal Documents (Header Data)
    TCJ_MAX_AMOUNT :-                Cash Journal: Amount Limit
    TCJ_POSITIONS:-                  Cash Journal Document Items
    TCJ_PRINT:-                      Cash Journal Print Parameters
    TCJ_TRANS_NAMES:-                Cash Journal Business Transaction Names
    TCJ_TRANSACTIONS:-               Cash Journal Business Transactions
    TCJ_WTAX_ITEMS:-                 Withholding Tax Items for Cash Journal Document
    Thanks & Regards,
    Pankaj.
    Edited by: pankaj_ab on May 29, 2009 2:02 PM

    Nice of u pankaj B.

  • Cash Journal table to find out day wise closing balance

    Can I have the table name to find the day wise closing balance of cash journal
    tried with CJAMOUNT, but not ........

    Please refer below link:
    Cash journal
    Br,Vivek

  • Temporary Table In SAP Query - Does not Work?

    DECLARE @date DATE
    DECLARE @delrows INT
    DECLARE @delquan INT
    DECLARE @a INT
    DECLARE @recrows INT
    DECLARE @recquan INT
    SET @a=0
    IF OBJECT_ID('tempdb..##tab) IS NOT NULL DROP TABLE ##tab
    CREATE TABLE ##tab
    [Date] date,
    [Delivery Rows] varchar(40),
    [Delivery Total Units] varchar(40),
    [Receipts Rows] varchar(40),
    [Receipts Total Units] varchar(40),
    WHILE @a!=7
         BEGIN
         SET @date=DATEADD(day,-@a, getdate())
         SELECT @delrows=ISNULL(COUNT(DLN1.[LineNum]),0), @delquan=ISNULL(SUM(DLN1.[Quantity]),0)
         FROM ODLN
         INNER JOIN DLN1 ON ODLN.[DocEntry]=DLN1.[DocEntry]
         WHERE ODLN.[CreateDate] = @date
         SELECT @recrows=ISNULL(COUNT(PCH1.[LineNum]),0) , @recquan=ISNULL(SUM(PCH1.[Quantity]),0)
         FROM OPCH
         INNER JOIN PCH1 ON OPCH.[DocEntry]=PCH1.[DocEntry]
         WHERE OPCH.[DocDate]=@date
         SET @a=@a+1
              INSERT INTO ##tab VALUES(@date,@delrows,@delquan,@recrows,@recquan)
    END
    SELECT * FROM ##tab
    {/code}
    Can anyone explain why this query does not work in SAP? It works fine on SQL but gives me this message in SAP:
    1). [Microsoft][SQL Server Native Client 10.0][SQL Server]Incorrect syntax near ')'.
    2). [Microsoft][SQL Server Native Client 10.0][SQL Server]Statement 'Service Contracts' (OCTR) (s) could not be prepared.
    Edited by: Chris Candido on Feb 2, 2011 8:38 PM

    Chris,
    There are several areas in your code which needed changes. 
    1. On the field name for your temp table you had spaces.
    2. The SAP table name ODLN, OPCH, PCH1 had to be fully referenced like
    [dbo].[ODLN]
    3. You really need not have ## in front of your temp table, it could just be #
    The select at the end is actually what causes the most problem as for some reason from within SAP it does not produce the result.  I would suggest you put the whole code into a Stored Procedure and call the SP from SAP.  Corrected SQL below.  If you remove the Select line at the end the query would work with in SAP, but keep it give give you an error. SP is the best option for this.
    DECLARE @date DATE
    DECLARE @delrows INT
    DECLARE @delquan INT
    DECLARE @a INT
    DECLARE @recrows INT
    DECLARE @recquan INT
    SET @a=0
    IF object_id('tempdb..#tab') IS NOT NULL
    BEGIN
       DROP TABLE #tab
    END
    CREATE TABLE #tab
    [Date] date,
    DeliveryRows varchar(40),
    DeliveryTotalUnits varchar(40),
    ReceiptsRows varchar(40),
    ReceiptsTotalUnits varchar(40),
    WHILE @a!=7
    BEGIN
    SET @date=DATEADD(day,-@a, getdate())
    SELECT @delrows=ISNULL(COUNT(DLN1.LineNum),0), @delquan=ISNULL(SUM(DLN1.Quantity),0)
    FROM [dbo].[ODLN]
    INNER JOIN DLN1 ON [dbo].[ODLN].DocEntry=DLN1.DocEntry
    WHERE [dbo].[ODLN].CreateDate = @date
    SELECT @recrows=ISNULL(COUNT([dbo].[PCH1].LineNum),0) , @recquan=ISNULL(SUM([dbo].[PCH1].Quantity),0)
    FROM [dbo].[OPCH]
    INNER JOIN [dbo].[PCH1] ON [dbo].[OPCH].DocEntry=[dbo].[PCH1].DocEntry
    WHERE [dbo].[OPCH].DocDate=@date
    SET @a=@a+1
    INSERT INTO #tab VALUES(@date,@delrows,@delquan,@recrows,@recquan)
    END
    SELECT * FROM #tab
    Suda Sampath

  • Limiting ADF table number of rows is not working

    Dear All,
    I know this question might seems to be a little bit trivial but I have been going in circles for a long time now and can't figure out where I'm going wrong, I'm using Jdeveloper 11g TP4 and developing an ADF RC application, I have a table that I need to limit the number of rows displayed in this table to X number of records and incase the result is more than X navigation buttons should be displayed, I changed the rows attribute in the af:table tag to say 2 but the table is still being displayed with all the rows, could someone please explain where is the missing piece?
    The code looks like the following:
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=windows-1252"/>
    <f:view>
    <af:document>
    <af:messages/>
    <af:form>
    <af:panelStretchLayout>
    <f:facet name="center">
    <af:table value="#{bindings.allOperators.collectionModel}" var="row"
    emptyText="#{bindings.allOperators.viewable ? 'No rows yet.' : 'Access Denied.'}"
    fetchSize="#{bindings.MnpRequest.rangeSize}" rows="2" first="0"> <f:facet name="detailStamp">
    <af:panelFormLayout>
    <af:inputText value="#{bindings.operatorCode.inputValue}"
    label="#{bindings.operatorCode.label}"
    required="#{bindings.operatorCode.mandatory}"
    columns="#{bindings.operatorCode.displayWidth}">
    <f:validator binding="#{bindings.operatorCode.validator}"/>
    </af:inputText>
    <af:inputText value="#{bindings.operatorId.inputValue}"
    label="#{bindings.operatorId.label}"
    required="#{bindings.operatorId.mandatory}"
    columns="#{bindings.operatorId.displayWidth}">
    <f:validator binding="#{bindings.operatorId.validator}"/>
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.operatorId.format}"/>
    </af:inputText>
    <af:inputText value="#{bindings.operatorName.inputValue}"
    label="#{bindings.operatorName.label}"
    required="#{bindings.operatorName.mandatory}"
    columns="#{bindings.operatorName.displayWidth}">
    <f:validator binding="#{bindings.operatorName.validator}"/>
    </af:inputText>
    <af:inputText value="#{bindings.routeId.inputValue}"
    label="#{bindings.routeId.label}"
    required="#{bindings.routeId.mandatory}"
    columns="#{bindings.routeId.displayWidth}">
    <f:validator binding="#{bindings.routeId.validator}"/>
    </af:inputText>
    <af:inputText value="#{bindings.mmcCode.inputValue}"
    label="#{bindings.mmcCode.label}"
    required="#{bindings.mmcCode.mandatory}"
    columns="#{bindings.mmcCode.displayWidth}">
    <f:validator binding="#{bindings.mmcCode.validator}"/>
    </af:inputText>
    </af:panelFormLayout>
    </f:facet>
    <af:column sortProperty="operatorCode" sortable="false"
    headerText="#{bindings.allOperators.hints.operatorCode.label}">
    <af:outputText value="#{row.operatorCode}"/>
    </af:column>
    <af:column sortProperty="operatorId" sortable="false"
    headerText="#{bindings.allOperators.hints.operatorId.label}">
    <af:outputText value="#{row.operatorId}">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.allOperators.hints.operatorId.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="operatorName" sortable="false"
    headerText="#{bindings.allOperators.hints.operatorName.label}">
    <af:outputText value="#{row.operatorName}"/>
    </af:column>
    <af:column sortProperty="routeId" sortable="false"
    headerText="#{bindings.allOperators.hints.routeId.label}">
    <af:outputText value="#{row.routeId}"/>
    </af:column>
    <af:column sortProperty="mmcCode" sortable="false"
    headerText="#{bindings.allOperators.hints.mmcCode.label}">
    <af:outputText value="#{row.mmcCode}"/>
    </af:column>
    </af:table>
    </f:facet>
    </af:panelStretchLayout>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    Thanks,
    Amr.

    Hi Frank,
    is there any other solution to this problem?
    Thank you

  • Issues with Advance Table Add Row New Row not work in some scenarios.

    Hi,
    Wondering if there's any issue with Advanced Tables where it does not create any rows. I don't know if anyone tried this or not. I have one OA Page with Advanced Table and a button that when clicked open a new OA Page in a POP-UP Window. The pop-up page conatins one textbox where u enter a data and this gets saved in one of the VO's transient attribute. Now on the ase page if you don't click a button to open a pop-up page you can Add New Rows in the Advanced Table by clicking Add Row Button. But as soon as you open a popup window and close it Add New Rows button doesn't work and is not creating any new rows. Basically page stops working. Both the POP-UP and the base page share the same AM but have different controllers.
    POP-UP page is a custom page that I open giving the Destination URI value in the button item and target frame _blank.
    I even tried creating rows programmatically for Advance Table but this too doesn't work once u open a pop-up. Also I have used pageContext.putTransactionValue in the pop-up page and am checking and removing this in the base page.
    Any help is appreciated.
    Thanks

    anyone

  • Why table getWidth and setWidth is not working when resize column the table

    hi all,
    i want to know why the setWidth is not working in the following code,
    try to uncomment the code in columnMarginChanged method and run it wont resize the table.
    i cont set width(using setWidth) of the other table column using getWidth of the main table column.
    and i want to resize the right side columns only (you can check when you resize the any column the left and right side columns also resizing)
    any suggestions could be helpful.
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.Box;
    import javax.swing.BoxLayout;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTable;
    import javax.swing.SwingUtilities;
    import javax.swing.event.ChangeEvent;
    import javax.swing.event.ListSelectionEvent;
    import javax.swing.event.TableColumnModelEvent;
    import javax.swing.event.TableColumnModelListener;
    import javax.swing.table.TableColumnModel;
    public class SynTableResize extends JFrame implements TableColumnModelListener, ActionListener
        JTable  table1       = new JTable(5, 5);
        JTable  table2       = new JTable(5, 5);
        JTable  table3       = new JTable(5, 5);
        JButton btn          = new JButton("refresh");
        JPanel  pnlcontainer = new JPanel();
        public SynTableResize()
            setLayout(new BorderLayout());
            pnlcontainer.setLayout(new BoxLayout(pnlcontainer, BoxLayout.Y_AXIS));
            pnlcontainer.add(table1.getTableHeader());
            pnlcontainer.add(Box.createVerticalStrut(5));
            pnlcontainer.add(table2);
            pnlcontainer.add(Box.createVerticalStrut(5));
            pnlcontainer.add(table3);
            table2.setTableHeader(null);
            table3.setTableHeader(null);
            table1.getColumnModel().addColumnModelListener(this);
            table3.setColumnModel(table1.getColumnModel());
            table2.setColumnModel(table1.getColumnModel());
            table2.getColumnModel().addColumnModelListener(table1);
            table3.getColumnModel().addColumnModelListener(table1);
            btn.addActionListener(this);
            getContentPane().add(pnlcontainer, BorderLayout.CENTER);
            getContentPane().add(btn, BorderLayout.SOUTH);
            setSize(new Dimension(400, 400));
            setVisible(true);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
        public static void main(String[] args)
            new SynTableResize();
        public void columnAdded(TableColumnModelEvent e)
        public void columnMarginChanged(ChangeEvent e)
            TableColumnModel tcm = table1.getColumnModel();
            int columns = tcm.getColumnCount();
            for (int i = 0; i < columns; i++)
                table2.getColumnModel().getColumn(i).setPreferredWidth(tcm.getColumn(i).getWidth());
                table3.getColumnModel().getColumn(i).setPreferredWidth(tcm.getColumn(i).getWidth());
                // the following commented code wont work.
    //            table2.getColumnModel().getColumn(i).setPreferredWidth(tcm.getColumn(i).getPreferredWidth());
    //            table3.getColumnModel().getColumn(i).setPreferredWidth(tcm.getColumn(i).getPreferredWidth());
    //            table2.getColumnModel().getColumn(i).setWidth(tcm.getColumn(i).getWidth());
    //            table3.getColumnModel().getColumn(i).setWidth(tcm.getColumn(i).getWidth());
            SwingUtilities.invokeLater(new Runnable()
                public void run()
                    table2.revalidate();
                    table3.revalidate();
        public void columnMoved(TableColumnModelEvent e)
        public void columnRemoved(TableColumnModelEvent e)
        public void columnSelectionChanged(ListSelectionEvent e)
        public void actionPerformed(ActionEvent e)
            JTable table = new JTable(5, 5);
            table.setColumnModel(table1.getColumnModel());
            table.getColumnModel().addColumnModelListener(table1);
            pnlcontainer.add(Box.createVerticalStrut(5));
            pnlcontainer.add(table);
            pnlcontainer.validate();
            pnlcontainer.repaint();
    }thanks
    dayananda b v

    hi,
    thanks for your replay,
    yes i know that, you can check the following code it works fine.
    actually what i want is, when i resize table column it shold not automaticaly reszie when table resized and i dont want horizontal scroll bar, meaning that all table columns should resize with in the table size(say width 300)
    if i make table autoresize off than horizontal scroll bar will appear and the other columns moved and i want scroll to view other columns.
    please suggest me some way doing it, i tried with doLayout() no help,
    doLayout() method only can be used when table resizes. first off all i want to restrict table resizing with in the limited size
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import javax.swing.Box;
    import javax.swing.BoxLayout;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.event.ChangeEvent;
    import javax.swing.table.TableColumnModel;
    public class TempSycnTable extends JFrame
        JTable  table1       = new JTable(5, 5);
        MyTable table2       = new MyTable(5, 5);
        MyTable table3       = new MyTable(5, 5);
        JPanel  pnlcontainer = new JPanel();
        public TempSycnTable()
            JScrollPane src2 = new JScrollPane(table2);
            JScrollPane src3 = new JScrollPane(table3);
    //        table1.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    //        table2.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    //        table3.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    //        src2.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
    //        src3.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
            table2.setTableHeader(null);
            table3.setTableHeader(null);
            table3.setColumnModel(table1.getColumnModel());
            table2.setColumnModel(table1.getColumnModel());
            table2.getColumnModel().addColumnModelListener(table1);
            table3.getColumnModel().addColumnModelListener(table1);
            table2.setTableHeader(null);
            table3.setTableHeader(null);
            setLayout(new BorderLayout());
            pnlcontainer.setLayout(new BoxLayout(pnlcontainer, BoxLayout.Y_AXIS));
            pnlcontainer.add(table1.getTableHeader());
            pnlcontainer.add(Box.createVerticalStrut(5));
            pnlcontainer.add(src2);
            pnlcontainer.add(Box.createVerticalStrut(5));
            pnlcontainer.add(src3);
            getContentPane().add(pnlcontainer, BorderLayout.CENTER);
            setSize(new Dimension(300, 300));
            setVisible(true);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
        public static void main(String[] args)
            new TempSycnTable();
        class MyTable extends JTable
            public MyTable()
                super();
            public MyTable(int numRows, int numColumns)
                super(numRows, numColumns);
            public void columnMarginChanged(ChangeEvent event)
                final TableColumnModel eventModel = table1.getColumnModel();
                final TableColumnModel thisModel = getColumnModel();
                final int columnCount = eventModel.getColumnCount();
                for (int i = 0; i < columnCount; i++)
                    thisModel.getColumn(i).setWidth(eventModel.getColumn(i).getWidth());
                repaint();
    }thanks
    daya

  • ALTER TABLE command with owner does not work

    I performed the following statement in a SQLplus script where the variables were filled some lines before:
    alter table '&ownername||'.'||&tablename' move online tablespace '&tablespacename';
    However this does not work. I am getting:
    ERROR at line 1:
    ORA-00903: invalid table name
    The variables are replace correctly by SQLplus and everything owner, table, tablespace exist.
    Can I (as SYSDBA) not alter the table of another user?
    Peter

    Solomon Yakobson wrote:
    EdStevens wrote:
    Ok, you removed the mis-placed quotes, but why the double "." ??
    If you wish to append characters immediately after a substitution variable, use a <font color=red size=3>period</font> to separate the variable from the character.
    SY.Ah, I had simply never done it that way nor seen it done that way.

  • How to load data to a "clustered table" quickly?  direct insert not work

    We have a single hash clustered table whose size is 45G, and we used the command:
    insert /*+ append */ into t_hashed as select * from source.
    the source is about 30G, it takes a very long time(several days, and not yet completed).
    I dumped the redo log, and find there are lots of redo info about the insert. I have thought it should create much redo as it is "direct path insert", but from the dump info I could say the direct path insert didn't take effect.

    Your assessment is correct. INSERT /*+ APPEND */ does not work with a hash clustered table.
    If you think about how hash clusters work, and how direct load insert works, it should be clear to you why a direct load insert via the append hint can never work.
    How hash clusters work (well, only the part that's relevant to the current discussion):
    Initially, at creation time, the storage for the entire cluster is preallocated, based on the various cluster parameters you chose. Think about that. All the storage is allocated to the cluster.
    How direct load works (well, only the part that's relevant to the current discussion):
    Space already allocated to and used by the segment is ignored. Space is taken from free, unformatted blocks from above the high water mark.
    So, hopefully it's clear how these features are incompatible.
    Bottom line:
    It doesn't work, there's no way around it, there's nothing you can do about it....
    -Mark

  • Capture limit not working FCP 4.5 - Please help

    I'm trying to import some analog footage (VHS) using a JVC SR-VS30 deck and the capture limit setting is not working, FCP just keeps capturing no matter what I set the time limit to. I have searched this forum as well as others and have yet to find an answer as to how to get it to work.
    I have tried three different analog to DV devices (DSR-50, Elura 85 and the JVC deck).
    Input is set to non-controllable device. (I'm using the VHS side of the JVC so no deck control or time code)
    I have deleted the 3 preference files, no change
    No anti Virus software is on this machine.
    Created a new user to see if that had any effect, no change.
    I notice some other users have had this issue has anyone solved it but not posted the resolution to the problem?
    Thanks in advance for any and all help

    Looks like interlacing. It's normal on a television signal. If you're trying to get it rid of it when exporting you should try your question on the FCP forum because you have a lot of different options from Final Cut Express. Explain how you're exporting and where you're trying to get to with the export.

  • Interactively changing values to table problem: indicator and control table, and why it does not work after a while...?

    I have been producing a VI that loads a set of data and displays it in a table: A table control is initialised with an empty variable, the loaded data takes the place of the variable and fills the table, while some headers are added. That table feeds an intensity graph to give a pictorial impression of the data.
    With this scheme, a user can change any value of the table, and the changes are interactively reflected on the graph.
    Problem: after few saving of the VI, the access to the table doesn't work anymore. It is the same with all my numerical controls in the VI where it should be possible to enter a value.
    If anybody has an idea on the potential
    causes of these problem, I would be really grateful as it is very useful...when it works !
    Regards,
    Elie Allouis

    I can not image what is causing the error. Would you be willing to post some code to see if we can reproduce the problem?
    Jeremy7

  • Invoice posted, tolerence limit not work

    There is a situation that after creating PO
    when u go for MIRA
    Tolerance limits:
    Absolute upper limit: 5,000 JPY
    percentage upper limit: 6.00 % of Net order value
    <b>If one of these limits are reached, the invoice will be not accepted.</b>
    The Limits here are:
    Absolute  &#61614;  5,000 JPY
    Percentage &#61614; 6% of 60,010 = 3,600 JPY
    Max value:     60,010 JPY + 3,600 JPY = 63,610 JPY
    <b>but if i am giving more then the max. value after that also system posting the invoice.</b>can u please tell me where i do customisation that system will not post the invoice if the amount is higher.

    Hi Tyagi
    Go to path; Img--- MM --- Logistics Invoice Verification --- Incoming invoice --- Configure Vendor-Specific Tolerances.
    In Pick the Company code.
    There u can see Automatic accepetance of negative difference, Check whether they have given any negative values. If yes,.. then remove it.
    Hope it will be helpful to u.
    reward if it is useful to u

  • Frame 9 solution for table column + side head does not work in Frame 10 and 11

    In Frame 9 structured (DITA) we could force Frame to record the actual widths of table columns in the DITA XML.  Frame 9 would respect the widths when opening the file.  This was particularly useful for forcing tables to be wide -- to go across the column and the side head -- and for the columns to never resize. 
    In Frame 9 this was done by commenting out the line
    "writer use proportional widths;" 
    like this
    "/* writer use proportional widths; */"
    in the topic.rules.text" file located in
    "...\FrameMaker9\Structure\xml\DITA\app\DITA-Topic-FM"
    This no longer works in Frame10 and Frame 11.  Even though the same line is commented out in all the "NAME.rules.txt" files in all the subdirectories of
        "...\AdobeFrameMaker11\Structure\xml\DITA_1.2\app"
    and
        "...\AdobeFrameMaker11\Structure\xml\DITA\app"  
    and
        "...\AdobeFrameMaker10\Structure\xml\DITA_1.2\app"
    and
        "...\AdobeFrameMaker10\Structure\xml\DITA\app"  .
    Commenting out the line does force Frame 10 and 11 to record  the absolute column width (2.357" etc.) in the DITA XML.
    However, on Open,  Frame 10 and 11 force the table to fit in the column, not the column and sidehead. That is they behave as though they were still using proportional column widths.  It seems the original values (as inserted by Frame 10 and 11 before closing!) are recalculated on Open, thereby mimicking the default proportional width behavior.  
    For example, this on Save then Close from Frame 10 or 11
    <table frame = "topbot" colsep = "0" rowsep = "1">
    <tgroup cols = "4" colsep = "0" rowsep = "1" outputclass = "FormatB">
    <colspec colnum = "1" colname = "1" colwidth = "1.796in" colsep = "0"/>
    <colspec colnum = "2" colname = "2" colwidth = "1.852in" colsep = "0"/>
    <colspec colnum = "3" colname = "3" colwidth = "1.179in" colsep = "0"/>
    <colspec colnum = "4" colname = "4" colwidth = "2.152in" colsep = "0"/>
    goes to this on Open then Save: 
    <table frame = "topbot" colsep = "0" rowsep = "1">
    <tgroup cols = "4" colsep = "0" rowsep = "1" outputclass = "FormatB">
    <colspec colnum = "1" colname = "1" colwidth = "1.351in" colsep = "0"/>
    <colspec colnum = "2" colname = "2" colwidth = "1.393in" colsep = "0"/>
    <colspec colnum = "3" colname = "3" colwidth = "0.887in" colsep = "0"/>
    <colspec colnum = "4" colname = "4" colwidth = "1.618in" colsep = "0"/>
    Any help at all would be appreciated!  
    We have 8,000 to 10,000 pages to PDF in the next few days and about 33% of those pages are messed up tables!
    Message was edited by: borealforest

    Hi...
    Unfortunately, I don't have any insight into the default DITA table handling in FM10 or FM11 .. so can't give you the answer you're looking for. Since both FM10 and FM11 offer ExtendScript, you could write a script (or have one written) that processes all of your files to reset the table widths. Or, perhaps the best short term solution may be to reinstall FM9 to get the job done, then spend more time later to figure out a better solution.
    One alternative would be for you to use DITA-FMx, which supports the table/@pgwide attribute for controlling which tables span the page and which don't. Since your tables probably don't make use of this attribute, it won't help in the near term, but might make sense going forward.
    Cheers,
    Scott Prentice
    Leximation, Inc.
    www.leximation.com

Maybe you are looking for

  • Macbook doesn't recognize Fitbit dongle

    I've lost two Fitbits Ultras that attach to your waist. I've gone back to the Flex. I'm trying to switch hardware and reinstall my Flex, however, the dongle is not being recognized. Any suggestions? 

  • Target movie clip fade within function

    I'm working with this function that is loading in different .swf files based on buttons that are clicked: this.createEmptyMovieClip("targetMC",this.getNextHighestDepth()); function loadF(y:Number, d:Number) { targetMC.loadMovie("floors_swf/"+y+"_"+d+

  • How to copy a clip from one event to another?

    Hi all... I need some help please. I have several events with multiple clips in them. I want to create a new event.  I would like to COPY multiple different clips to this new event.  I don't want to move clips from the events they are in now. I want

  • SAP Lumira Authentication

    Hi Team, We have a BO4.1 system running on Linux using enterprise Authentication. Would like to know if we can map the BO enterprise users to SAP Lumira. Can someone please share some documents if it can be done. Thanks, Anil.

  • Packign proposal

    hi, For project we created an outbound delivery in cns0, after that created a packaging instruction(POP1), and then created packing proposal(POF1).  Here we are giving material, ship-to-party, and packing proposal. my doubt is; 1. already in POP1 we