ETM: Customer Internal Settlement

Hi every body,
How I can create a correct "Customer Internal Settlement"?
I want to create a recipient in /vd01 but this Error appear:
Customer # is not a sold-to party
this error is related to Cust.int.settl field
what are the correct "reference type" and "account group" for Customer Internal Settlement.
Thanks.

This is due to Number Range Buffering.
use T-COde SNRO & select object DEBITOR.
Here there is a option for Buffer. Deselect the option or make it Zero.
Buffering is basically given for a case where Master Data is created by multiple users from multiple locations at a single point of time. Thus in such if Number Ranges are not Buffered then system would not generate numbers in sequence. Thus we have a option of Buffering.
But it leads to gaps in assigning Number Ranges. Thus it is advisable to set Buffering to Zero.
ALso check Number Ranges Buffering for KREDITOR (Vendors) & MATERIAL (Material Master).
Hope this helps...
Also please check SDN Forums before creating new thread...
Re: Customer number ranges not comming serially
Thanks,
Jignesh Mehta

Similar Messages

  • Custom internal frames

    Hello,
    I have written some custom internal frames, along with their UI's, title panes, and desktop icons. Everything seems to work fine when I'm in JBuilder and I use the "run" command, but when I compile the program and run it as a batch file, my internal frames appear as gray boxes that can't be moved or resized.
    package KComponent;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import Theme.*;
    import java.io.*;
    import javax.swing.border.*;
    public class KInternalFrame extends JInternalFrame {
      private JLabel titleLabel;
      private String title;
      public static Color titleColor = Color.white;
      public static Color titleBarColor = Theme.DARK;
      private KButton maximize, minimize, normalize;
      private static final String PATH = "pics" + File.separator;
      public KInternalFrame(String title) {
        super(title, true, false, true, true);
        this.title = title;
        this.titleColor = titleColor;
        this.titleBarColor = titleBarColor;
        //getContentPane().add(content, BorderLayout.CENTER);
        //setContentPane(content);
        //LineBorder line = new LineBorder(titleBarColor, 2);
        //setBorder(line);
        setBorder(BorderFactory.createRaisedBevelBorder());
        this.getDesktopIcon().setUI(new KDesktopIconUI(title, titleBarColor, titleColor));
        setUI(new KInternalFrameUI(this));
    package KComponent;
    import javax.swing.plaf.basic.*;
    import javax.swing.*;
    import java.awt.*;
    import Theme.*;
    public class KInternalFrameUI extends BasicInternalFrameUI {
      public KInternalFrameUI(JInternalFrame frame) {
        super(frame);
      protected void installDefaults(){
          Icon frameIcon = frame.getFrameIcon();
          frame.setFrameIcon(null);
          /* enable the content pane to inherit background color from its
             parent by setting its background color to null. Fixes bug#
             4268949. */
          JComponent contentPane = (JComponent) frame.getContentPane();
          if (contentPane != null) {
            Color bg = contentPane.getBackground();
          else {
            Color bg = null;
          //LookAndFeel.installBorder(frame, "InternalFrame.border");
      protected JComponent createNorthPane(JInternalFrame w) {
        titlePane = new KInternalFrameTitlePane(w, w.getTitle(), Theme.DARK, Color.white);
        return titlePane;
    package KComponent;
    import javax.swing.plaf.basic.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.File;
    import Theme.*;
    public class KInternalFrameTitlePane extends BasicInternalFrameTitlePane implements ActionListener {
      private JInternalFrame frame;
      private final String PATH = "pics" + File.separator;
      private KButton maxButton;
      private KButton minButton;
      private KButton normButton;
      private JLabel titleLabel;
      private File maxIcon = new File(PATH, "maximize.gif");
      private File maxOver = new File(PATH, "maximize_rollover.gif");
      private File minIcon = new File(PATH, "minimize.gif");
      private File minOver = new File(PATH, "minimize_rollover.gif");
      private File norIcon = new File(PATH, "normal.gif");
      private File norOver = new File(PATH, "normal_rollover.gif");
      String title;
      Color activeTitle;
      Color activeTitleText;
      Color inactiveTitle;
      Color inactiveTitleText;
      public KInternalFrameTitlePane(JInternalFrame frame, String title, Color activeTitle, Color activeTitleText) {
        super(frame);
        this.frame = frame;
        this.title = title;
        this.activeTitle = activeTitle;
        this.activeTitleText = activeTitleText;
        //this.inactiveTitle = inactiveTitle;
        //this.inactiveTitleText = inactiveTitleText;
        installTitlePane();
      public void installTitlePane() {
        titleLabel = new JLabel(" " + title + " ");
        titleLabel.setFont(new Font("verdana", Font.PLAIN, 11));
        titleLabel.setForeground(activeTitleText);
        titleLabel.setBorder(null);
        titleLabel.setOpaque(false);
        File icon = new File(PATH, "maximize.gif");
        File rollover = new File(PATH, "maximize_rollover.gif");
        maxButton = new KButton(icon, rollover, rollover, false);
        maxButton.setOpaque(false);
        maxButton.setToolTipText("Maximize window");
        maxButton.setActionCommand("maximize");
        //maxButton.addActionListener(this);
        icon = new File(PATH, "minimize.gif");
        rollover = new File(PATH, "minimize_rollover.gif");
        minButton = new KButton(icon, rollover, rollover, false);
        minButton.setOpaque(false);
        minButton.setToolTipText("Minimize window");
        minButton.setActionCommand("minimize");
        //minButton.addActionListener(this);
        icon = new File(PATH, "normal.gif");
        rollover = new File(PATH, "normal_rollover.gif");
        normButton = new KButton(icon, rollover, rollover, false);
        normButton.setOpaque(false);
        normButton.setToolTipText("Normalize window");
        normButton.setActionCommand("normal");
        //normButton.addActionListener(this);
        JPanel buttonHeader = new JPanel(new GridLayout(1, 3, 0, 0));
        buttonHeader.setOpaque(false);
        buttonHeader.add(minButton);
        buttonHeader.add(normButton);
        buttonHeader.add(maxButton);
        JPanel titlePane = new JPanel(new BorderLayout());
        titlePane.setBackground(activeTitle);
        titlePane.add(titleLabel, BorderLayout.WEST);
        titlePane.add(buttonHeader, BorderLayout.EAST);
        setBackground(activeTitle);
        setLayout(new BorderLayout());
        //add(titleLabel, BorderLayout.WEST);
        //add(buttonHeader, BorderLayout.EAST);
        add(titlePane, BorderLayout.CENTER);
        //installDefaults();
        createActions();
        enableActions();
        //createActionMap();
        assembleSystemMenu();
        createButtons();
      protected void createButtons() {
          minButton.addActionListener(iconifyAction);
          minButton.setActionCommand("minimize");
          minButton.addActionListener(this);
          maxButton.addActionListener(maximizeAction);
          maxButton.setActionCommand("maximize");
          maxButton.addActionListener(this);
          normButton.addActionListener(restoreAction);
          normButton.setActionCommand("normal");
          normButton.addActionListener(this);
          //setButtonIcons();
      public void setButtonIcons() {}
      public void actionPerformed(ActionEvent e) {
        String command = e.getActionCommand();
        if (command.equals("maximize")) {
          maxButton.setEnabled(false);
          minButton.setEnabled(true);
        else if (command.equals("minimize")) {
          //maxButton.setEnabled(true);
          //minButton.setEnabled(false);
        else if (command.equals("normal")) {
          maxButton.setEnabled(true);
          minButton.setEnabled(true);
    package KComponent;
    import javax.swing.plaf.basic.BasicDesktopIconUI;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.File;
    import javax.swing.border.*;
    public class KDesktopIconUI extends BasicDesktopIconUI {
      private final String PATH = "pics" + File.separator;
      private File norIcon = new File(PATH, "normal.gif");
      private File norOver = new File(PATH, "normal_rollover.gif");
      JComponent iconPane;
      String title;
      Color activeTitle;
      Color activeTitleText;
      KButton norButton;
      MouseInputListener mouseInputListener;
      public KDesktopIconUI(String title, Color activeTitle, Color activeTitleText) {
        this.title = title;
        this.activeTitle = activeTitle;
        this.activeTitleText = activeTitleText;
      protected void installComponents() {
          frame = desktopIcon.getInternalFrame();
          norButton = new KButton(norIcon, norOver, norOver, false);
          norButton.setOpaque(true);
          norButton.setBackground(activeTitle);
          iconPane = new JPanel(new BorderLayout());
          JLabel jlTitle = new JLabel(" " + title + " ");
          jlTitle.setFont(new Font("verdana", Font.PLAIN, 11));
          jlTitle.setForeground(activeTitleText);
          jlTitle.setBackground(activeTitle);
          jlTitle.setOpaque(true);
          iconPane.add(jlTitle, BorderLayout.CENTER);
          iconPane.add(norButton, BorderLayout.EAST);
          desktopIcon.setLayout(new BorderLayout());
          desktopIcon.add(iconPane, BorderLayout.CENTER);
          desktopIcon.setBackground(activeTitle);
          desktopIcon.setForeground(activeTitleText);
          iconPane.setBorder(BorderFactory.createRaisedBevelBorder());
          desktopIcon.setBorder(null);
      protected void installListeners() {
          mouseInputListener = createMouseInputListener();
          desktopIcon.addMouseMotionListener(mouseInputListener);
          desktopIcon.addMouseListener(mouseInputListener);
          norButton.addMouseListener(new MouseAdapter() {
            public void mousePressed(MouseEvent e) {
              deiconize();
      public Dimension getMinimumSize(JComponent c) {
          return iconPane.getMinimumSize();
      public Dimension getMaximumSize(JComponent c){
          return iconPane.getMaximumSize();
      public Dimension getPreferredSize(JComponent c) {
          JInternalFrame iframe = desktopIcon.getInternalFrame();
          Border border = iframe.getBorder();
          int w2 = 157;
          int h2 = 18;
          //if(border != null)
              //h2 += border.getBorderInsets(iframe).bottom +
                //    border.getBorderInsets(iframe).top;
          return new Dimension(w2, h2);
      protected void uninstallComponents() {
          desktopIcon.setLayout(null);
          desktopIcon.remove(iconPane);
    package KComponent;
    import javax.swing.*;
    import java.awt.*;
    import Theme.*;
    import javax.swing.plaf.metal.*;
    public class KDesktop extends JDesktopPane {
      ImageIcon icon;
      boolean isWatermark;
      JInternalFrame gb, proj, stat, cal;
      boolean gbOpen, projOpen, statOpen, calOpen;
      public KDesktop(boolean isWatermark) {
        this.isWatermark = isWatermark;
        icon = Theme.getBackground();
        setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
      public void setBackgroundImage(ImageIcon i) {
        icon = i;
      public ImageIcon getBackgroundImage() {
        return icon;
      public void paintComponent(Graphics g) {
        super.paintComponent(g);
        if (!isWatermark) {
          if (getWidth() > icon.getIconWidth() || getHeight() > icon.getIconHeight()){
            g.drawImage(icon.getImage(), 0,0, getWidth(), getHeight(), null);
          else {
            if (getProportionalHeight(getWidth()) < getHeight()) {
              g.drawImage(icon.getImage(), 0, 0,
                          getProportionalWidth(getHeight()), getHeight(), null);
            else
              g.drawImage(icon.getImage(), 0,0,
                          getWidth(), getProportionalHeight(getWidth()), null);
        else {
          int w = icon.getIconWidth();
          int h = icon.getIconHeight();
          if (w == '\u0000' || h == '\u0000') {
            super.paint(g);
          else {
            int currX = 0;
            int currY = 0;
            boolean keepPainting = true;
            while (keepPainting) {
              if (currX < (getWidth()+w/2)) {
                g.drawImage(icon.getImage(), currX, currY, null);
                currX += w;
              else if (currY < (getHeight()+h/2)) {
                currX = 0;
                currY += h;
                g.drawImage(icon.getImage(), currX, currY, null);
              else keepPainting = false;
      public int getProportionalHeight(int width) {
        double percentage = (double)width/icon.getIconWidth();
        return (int)(percentage*icon.getIconHeight());
      public int getProportionalWidth(int height) {
        double percentage = (double)height/icon.getIconHeight();
        return (int)(percentage*icon.getIconWidth());
    }Any ideas? I don't see how everything could work fine within the JBuilder environment and then screw up when I compile the code.
    Thanks for any help.

    And this is how I call up the UI from my main function:
    displayFrame.setUI(new MyInternalFrameUI(intFrame));Thanks!

  • Planning on secondary cost element_cost category 21(internal settlement)

    Good Day
    I would like to know whether it is possible to do planning on secondary cost element with a cost category 21
    The internal cost element is used to settle order costs or project costs to objects in Controlling (CO), such as orders, profitability segments, cost centers, and projects.  I would like to allocate a plan value to the secondary cost element because the cost element is found in a sttlement profile for a Plant Maintenenance(PM) work order and at the period end the actuals is moved from PM order to the internal order settlement cost element.  However this is a problem cause the planning values is allocated to the primary cost element and the actual values are posted to the cost element with cost catergory 21 during order settlement.
    Please advise and if possible give me a workable solution to solve my problem.
    Regards
    Ropetra

    Good Day
    Thank you for you response.  I would like some more detail on the following:
    Please can you advise me as to where and how you set up the settlement for planned values on the secondary cost element_cost category 21(internal settlement)
    Regards

  • How to Import customized internal table to smartform from Print Program

    Hi Gurus,
    I want to Import customized internal table to smartform from print program, Can anybody tell me how it is possible.
    With regards,
    S.Saravanan

    There is no problem passing an internal table to a smarforms, smartforms have the same interface as a function module ([Defining the Form Interface|http://help.sap.com/saphelp_nw70/helpdata/en/1c/f40c5bddf311d3b574006094192fe3/frameset.htm] in [Smart Forms|http://help.sap.com/saphelp_nw70/helpdata/en/a5/de6838abce021ae10000009b38f842/frameset.htm]) so could you elaborate a little more on your requirement (is it a standard a custom forms, etc.)
    Regards,
    Raymond

  • Cstomer customer invoice settlement against Incoming payment

    Dear All
    We have a problem during customer invoice settlement against incoming payment that shown for the partial payment as a new document creation. The scenario as shown below,
         Doc No      Amount
    180000001   50000.00 ;   - Invoice
    140000001   25000.00-   - Incoming Payment / partial payment  
    balance         25000.00 ; - create a new doc no ( but we need setoff to invoice no)
    i.e:
    180000001       25000.00
    any BAPI to apply over come this problem ?
    Thanks
    Madhawa

    Dear:
                  Please refer to the following link, the same question was raised by me
                  Invoice reference field in F-28
                  Regards

  • RPTIME00 - Custom Internal Table , Custom Clsuter in Custom Function.

    Hello Guru,
    I have a requirement to create custom scheme with totally new custom function , rules .
    my question is it is possible to declare custom internal tables like TIP, TOP and cutom cluster to store results.
    if yes then how ?
    Thanks in adance

    My requirement is based on a project to develop new sap product which can handle complex crew management for industries like railways and airlines,product is still in protoype phase and will basicaly cover right from dispatching crew to various sites to generating there payroll. standard sap works on basis of day and time. but crew industory work on trip. a crew for example pilot fly form point A to B get paid/claims based on on that single trip and whatever activities he has done in that trip. so purely this is based on trip and not day or hours, now we are thinking about using RPTIMEOO as a tool to calculate and create wage type beacuse at the end of the day payroll is getting generated in SAP and also all the crew employee will be setup as master data. this whole product will have its own screeen to capture activties and opereations . will be build on top of sap hcm.
    so was thinking any ways sap says that you can create custom schema and rules but those standard internal tables and cluster are of no use because of the structure is based in trip, wage type will be based in miles that crew travel.
    so trying to find how far this RPTIME00 is flexible .. and is possible to create custom function. becoz at end we are going to update payroll 2010 which can be mapped some how.  RPTIME00 can also give clients to add there own custom functions in future if any new req comes.
    if this is not possible i.e RPTIMEOO can not use custom cluster , then we might have to write abap programs ti do calculation but only problem any new features to be added will lead to code change.
    thanks for your patience ..

  • Without COPA customer project settlement

    Without COPA customer project settlement - where it should get settled ?
    MGK

    Should it?  Well, first you need to know why do you want to settle.  If you have RA to be posted for example.

  • Trace Original Posting-Post Internal Settlement

    Scenario:
    I have my WBS elements getting settled (internal settlement) to cost centres during the month end and settlement happens by original cost element.
    Requirement:
    From any standard cost centre report is there any means to tracing back the original transactions on WBS element.
    As the settled costs from WBS to Cost Centre contains a single line i.e., settled cost and the original postings information is lost (ex., PO number etc.,) and to get this I need to have two reports open i.e., 1st a cost centre report and then WBS line item report.
    Can you experts help in overcoming this either by suggesting a report or change the process?
    Regards
    Sreenivas

    Suggested report is better but the RRI takes me to actual line item posting on the cost centre- which is a settlement transaction.
    I need some means to get to the original posting that's gone onto the WBS elements. ex., If PO has been GR'rd against a WBS element and WBS has settled to cost centre, from the report I should get to the GR material document.
    Regards
    Sreenivas

  • Vendor as well as customer payment settlement

    Hi Guru's
    I have vendor and customer single party, and operating business to the same party in both module as AR and AP , i mean raising invoice and receiving invoice both, but i need to settle the payment now ( vendor or customer account should show correct due bal. like wat we have owe or we need to be paid). wat are the steps i need to taken. Kindly help me

    Hi, for your requirement  please follow the below steps:
    1.     Go to T. code FD02 then control data enter the vendor code in Account control
    2.     Then click on company code data then payment transaction tab then check the clearing with vendor and save your entry
    3.     Go T. Code FK02 then check control from General data & Payment transactions from company code data & press enter & write the Customer code under Account control tab
    4.     Then press enter and check the clrg with Customer under automatic payment transactions tab
    5.     After that if you run the FBL5N then check the vender item form type
    6.     If you run the FBL1N check the customer item from type.
    Further more if you go for payment F-53 OR F-28 system will automatically show what you have owe or what you need to paid
    After this your requirement will be completed, please do inform me regarding this.
    Regards
    Javed

  • Customer project Settlement

    Dear All,
    i am working in customer projects. Actual cost and revenues r flowing.The RA key to the top WBS Element which is also billing element. I heve done the revenue based result anlaysis.Profit and loss are showing in RA. Now i want to settle the project to CO-PA.
    Given settlement rule to top WBS Element and all other lower WBS element have profile not ot settle.if i run settlement CJ88 then nothing is flowing and not any error.
    Need solution.

    Dear,
    i m settleing the lower level WBS Element to top WBS Element which is billing element and result analysis is done for that top wbse .Then i want to settle the top wbse to profibility segement .Then after trying some config steps and defining PA transfer strature settlement of lower level wbse to upper level wbse is going well and accounting document is creating well.And CJI3 report its flowing well.
    but in top WBSE the rule is profibility segment.I've done the result analysis and the net value (revenue-actual cost)
    is also showing.That value is on the lower level wbse and that only value is going to TOP wbse after settlement.
    but now i want to settle this top wbse but its showing no accured cost or revenue.
    Is the process i m using is correct or i've to do it by some other method.The RA valuation method is revenue based.
    sukhveer

  • Customer project settlement to sales order item

    Hi experts
    I wish to settlement the customer project to sales order item. Accordingly the settlement profile is defined.
    However, w.r.t. settlement strategy, what is the relevant account assignement category?
    It cantains the eligible values:
    AAC                  Description
    -           No receiver
    1           Profitability segment
    2           Requesting cost center
    3           Responsible cost center
    4           Copy rule from superior object
    Please suggest the correct setting.
    warm regards
    ramSiva

    use BADI - WBS_SETTLEMENT_RULE
    this BADI allows you to generate settlement rule as you want

  • Not receiving international text / sms on iPhone 3G

    Hello,
    I have just moved from Australia to the USA. I brought with me an unlocked iPhone (originally through Telstra in Australia) and it now runs on AT&T. I have no issues with voice, voice mail, data and local SMS / text.
    But, I can't receive international SMS / text.
    I can send texts to Australia and they are received. However, when people in Australia reply to them they never get through.
    I have a Palm Centro on AT&T here and it receives texts fine from Australia. The iPhone sitting next to it doesn't. It is infuriating.
    I have spoken with AT&T and they believe everything should work.
    I have other friends on AT&T with iPhone and they are able to receive international SMS.
    Is it the iPhone's problem? Is it AT&T? Is it the carrier in Australia (Telstra)?
    HELP!!!
    Thanks,
    Andrew Woodward

    OK, after many hours of wading through this....
    I was able to receive from two different carriers in Australia tonight.
    Here's what I think the issue was.
    When you sign up as a new customer, international SMS isn't automatically included.
    But on the AT&T iPhone customer account page on the web, you can't add international SMS.
    It is only when you ring them and tell them you want it, they can adjust their system there.
    There may have also been some back end technical issues.
    Anyway, problem solved.
    AW

  • Partner function for customer through IDOC

    Hi All,
    I have a requirement in which I need to create the customer master through IDOC. I am using DEBMAS basic type for that. In its functionality, I need to assign different partner functions to it.
    When I create customer without giving any partner details,  4 entries get created by default with partner functions as BP, SP, PY, SH and KUNN2 value as INTERNAL or the same customer number which is getting created. But I want that the customer number provided by me should be assigned as partner function. Is there any way to change the default entry which is getting created so that I can replace the INTERNAL customer number with the one provided by me.
    I identified the segment as E1KNVPM in it at hierarchy level 3. I passed the partner function in the PARVW field of it and provided the customer number which I want to assign as partner function in the KUNN2 field. But I am getting error Customer INTERNAL already exists for function <Partner function>.
    Am I missing something. Any msgfn or any other input.
    Please help me on this.
    Thanks
    Natasha

    Hi,
    Im facing similar problem
    Im trying to create the customer master through IDOC.
    I am using DEBMAS06 Idoc. 
    I need to assign two partner functions to it.
    When I create a customer with  giving  two partner details, 
    6 entries get created by default with partner functions as BP, RP, EM, SH and KUNN2 value as INTERNAL,
    two others entries (ZC,ZV) are created because this partner roles i defined to be created but KUNN2 hasnt assined value and request to fill it.
    I identified the segment as E1KNVPM in it at hierarchy level 3.
    I passed the partner function in the PARVW field of it and provided the customer number which I want to assign as partner function in the KUNN2 field.
    But I am getting error when  "Customer INTERNAL already exists for function <Partner function>".
    Am I missing something. Any msgfn or any other input.
    How can avoid this error?
    Please help me on this.
    Thanks
    Armand

  • Settlment from Internal order to asset

    Hi Guru!
       I have some problem about integrate between Internal order  (Investment funtion) and Asset
       I have Internal order master and assign investment profile in master  and in Internal order link to AUC automatic. End of period I input Asset no 100001 , 100002 in settlment rule  by Transaction code KOB5 (line item settlement orders and then) and I settlment by t. code KO88. The result is expense from Internal order transfer to AUC only not transfer to Asset no. 100001 , 100002. after settlment  in Asset module  have transcation type 116 Acquisition - internal settlement to AuC only  but not have 336,339 Acquirg transfer of curr-yr acquis from inv.meas.  I need 336, 339 for transfer value from AUC to Fixed Asset . How I solve this problem?
    thanks

    Hi,
    In OAXG, select the transaction type 336 & 339.
    In this go to Other features
    Remove the tick from the Checkbox Cannot be used manually. Try to excute the transaction.
    Regards,
    Amit

  • Internal Charges Calculation Error status 03 & Charges disaapearing after FO creation

    Hi Experts,
    I have done following Config & data set up for Internal Settlement (Forwarding Order) while I intent to do Inter Company settlement. (I am using TM9.0 SP01 version)
    In Movement Type Stage sequence set to “No Rule” for internal Settlement.
    Created forwarding order by putting different Planning & Execution Forwarding House on Stage Level.
    Agreement set is done & internal Charges are appearing correctly but with Calculation Error “03”
    I rechecked Internal Agreement, Rate Tables, Calculation Sheet, Everything is fine.
    There are two issues I need your experts advise to resolve following issues:
    Charges are calculated correctly but Why Charge Cal. Status is 03? (No error on Charge Item level & Log analysis is fine)
    Charges are disappearing when I create Freight Order against stages it. (with error shown below)
      (attached Screenshots showing errors)
    Regards,
    Vinod Vikhe

    Hello Vinod,
    Still nothing for me...
    Anyway, have you checked if the assigned of BP to the organization unit? Sometimes this is the reason the internal calculation does not work.
    Best Regards, Marcelo

Maybe you are looking for