More than 13 digits

Hi,
Is there any solution to allow me key in more than 13 digits (without decimal place) for the amount in one transaction? (FTR_CREATE)
Thanks,
Yang

Hi, Yang
My colleagues came across that problem recently. I advised them to split the transaction and create several transaction instead thereby avoinding using more than 13 digits.
Another way that came to my mind is to create a new currency with excnage rate (say) 1:1000 . And create the transaction using this currency.
Can't say that both solutions are perfect but I am afraid these are only ones.
Konstantin.

Similar Messages

  • How to authorize more than one device on my adobe digital editions Ebook reader

    I have a computer, iPhone and iPad, and can't read a downloaded ebook (EPUB) on more than one device  at a time. If I try to open the item on my Overdrive account with a device other than the one I originally used when I downloaded the ebokk,  it gives me an error code "Fullfill  2004. This license has already been fulfilled by another user".  When I contacted Overdrive Media  they explained that I need to contact Adobe to authorize my various devices to have access to my Overdrive account which utilizes Adobe digital editions 4.0
    Please provide info on how to authorize my additional devises to have access to downloaded e-books  on my overdrive account

    Please authorize your devices with same credentials in order to read the book across devices.
    thanks

  • Dont allow user to enter more than specified number of digits/chars?

    Hello
    First case: I have placed a TEXT field on the form. Now i want to put the below validation,
    1) User has to enter only numbers (no decimals)
    2) Only 10 digits
    If not i need to
    1) Alert app.alert
    2) Make the field either CLEARIng or considering & resetting only the first 10 digits (if user entered more than 10 digits)
    2nd case: Same as above, a TEXT field, but, the data is with a DECIMAL notation, the allowed lenghts are as
    2 digits as prefix to decimal
    2 digits as suffix to decimal position
    example, 35.88
    Pls. let me knw the Java Script for these 2 cases or do you suggest me PATTERN validation if so, can i CLEAR or reset  and if so, pls. let me know under which TAB(Display / Edit / Data) i need to put the PATTERN validation?

    Firstly if you are only allowing numbers then the field should be a numeric field not a text field. You can use patterns to allow only whole numbers or to have 2 digits on either side of the decimal.
    In regards to the number of digits you can use the len function to determine the length of the data and if it is too long give a message or clear it.

  • HT3209 I buy movies and applied all my digital downloads to itunes, and now more than half my movies come up saying my computer cant play because its not capable of HD, I never had a problem before this Icloud,I just feel that ive lost hundreds in digital

    Ive always loved Itunes, Ive always thought it was the easiest way to build a library, either music, or movies, ebooks or what have you. Now this new "Icloud" comes into the picture and tells  me more than half of my digital movies cant be played because my pc isnt HD compatible, I watched every movie i have in my Itunes library before, therfore I am so frustrated, no one seems to have any answers for me, I think most would feel out of hundreds of dollars of digital movies and feel the same way.....I dont buy movies from Itunes but every movie I've ever bought off the shelves at stores that has digital download on it is put in my itunes library. I Dont want to lose/leave itunes as my system of doing things but.......im at a loss, Anyone Help??? The funniest part of all of it is...Next to all the movies says "Purchased" so obviously they are legit and mine.

    I am having a similar problem with iTunes 11 on a Windows 7 box. I was able to rent and play HD movies befor "upgrading" to iTunes 11, however now when I try and rent a movie in HD I get the error: "This cannot be played in HD on this computer. You must rent and watch the HD version on an HD-compatible device. Or, you can rent the SD version and watch it on this computer."
    Guess i'll be renting movies from XBox from now on.

  • HELP! TextField "NUMERIC" dont let me enter more than 9 digits

    Hi there,
    Firstly: I 've search for this question, and I ve found an old post very similar to it.
    (here is it: [http://forums.sun.com/thread.jspa?messageID=10706126] )
    But, unfortunately, the aswerings did not satisfy me...
    The problem is:
    I have a TextField that should receive a Credit Card number, meaning, it has to have 15 or 16 numbers.
    If I set it as "NUMERIC", when I run the app on my real cellphone (a SonyEricsson w810i), it dont let me enter more than 9 digits. Stringe thing here is: but on emulator, I could...
    txtCardNo = new TextField("Card Number", null, 16, TextField.NUMERIC);Instead, if I set it as "ANY", user can type up to 16 numbers, but the problem is that field will accept ANY character, and I dont want that way: I want that this field input acts accepting only numbers.
    How could I fix it?
    Shall I use a function to mask this field? If yes, how?
    Or this could be a problem of JVM implementation on this particular cell phone?
    Please, send me any examples and/or links.
    Thanks very much.
    =Marcello=
    PS1: I am quite newbie on Java things...
    PS2: I am working on this using NetBeans 6.5.1 and Sun Java(TM) Wireless Toolkit 2.5.2 for CLDC

    Yuo can set an ItemStateListener to the Form containing the TextField, and validate the user input in itemStateChanged(...). In case of invalid input, I would show an Alert with an appropriate message, and blank out the content of the TextField (or set it to a default value, as appropriate).
    db

  • Restrict the user to put more than 22 digits

    hi Friends,
    i am using jdeveloper 11.1.1.6.0.
    using below code for price , i want to restrict the user to give more than 22 digits.
    if user will put more than 22 digits , system won't allow to write the digits.
    <af:inputText value="#{rate.Price}" id="it2"
    autoSubmit="true"
    disabled="#{pageFlowScope.PriceBean.updatesAllowed ne 'Y'}"
    rendered="#{rate.RateType eq 'F'}">
    <af:convertNumber type="number"
    maxIntegerDigits="22" maxFractionDigits="12" groupingUsed="false"/>
    </af:inputText>
    but it is not working.
    any useful comments .
    Edited by: 964331 on Mar 22, 2013 4:06 AM

    Hi,
    use maximumLength="22"
    <af:inputText value="#{rate.Price}" id="it2" maximumLength="22"
    autoSubmit="true"
    disabled="#{pageFlowScope.PriceBean.updatesAllowed ne 'Y'}"
    rendered="#{rate.RateType eq 'F'}">
    <af:convertNumber type="number"
    maxIntegerDigits="22" maxFractionDigits="12" groupingUsed="false"/>
    </af:inputText>
    in your inputtext
    Regards,
    Vikas
    Edited by: 812903 on Mar 25, 2013 12:32 AM
    Edited by: 812903 on Mar 25, 2013 12:32 AM
    Edited by: 812903 on Mar 25, 2013 12:58 AM
    Edited by: 812903 on Mar 25, 2013 12:58 AM

  • Validate that user should not enter more than specified number of digits/chars?

    Hello
    First case: I have placed a TEXT field on the form. Now i want to put the below validation,
    1) User has to enter only numbers (no decimals)
    2) Only 10 digits
    If not i need to
    1) Alert app.alert
    2) Make the field either CLEARIng or considering & resetting only the first 10 digits (if user entered more than 10 digits)
    2nd case: Same as above, a TEXT field, but, the data is with a DECIMAL notation, the allowed lenghts are as
    2 digits as prefix to decimal
    2 digits as suffix to decimal position
    example, 35.88
    Pls. let me knw the Java Script for these 2 cases or do you suggest me PATTERN validation if so, can i CLEAR or reset  and if so, pls. let me know under which TAB(Display / Edit / Data) i need to put the PATTERN validation?

    Firstly if you are only allowing numbers then the field should be a numeric field not a text field. You can use patterns to allow only whole numbers or to have 2 digits on either side of the decimal.
    In regards to the number of digits you can use the len function to determine the length of the data and if it is too long give a message or clear it.

  • Digitally signing a PDF doc in more than one place by one signatory.

    We sent contracting individual's a PDF version of agreements for signature. THey currently print, sign and return.
    The document contains more than one agreement, so needs signing in 6 or 7 places.
    Is it possible to pre-locate the place/s where the electronic signatures can be placed when designing the pdf documetns, so that a recipient can 'sign' it once, but all the necessary places show the 'digital' signature?
    I expect not, and that the solution is to prepare a digital signature only version of the docs that needs signing in only one place.
    Thanks
    John

    Hi Peter,
    Believe me that I know as well as anyone how complex PKI can be. No matter how simple we try to make adding a digital signature in Acrobat/Reader there are some immutable facts. One of those is we have to absolutely, positively guarantee that the digital signature covers exactly what the signer intended. The only way to do that is commit the signed bytes to disk before completing the signature, and that requires a Save operation. Early on when digital signatures were first introduced in Acrobat we did do the signing operation on the bytes in memory, but the risk was too great for someone slipping in bytes that the signer did not intend to sign. If there were no bad guys we could get away with signing in memory, but alas, the risk of data compromise is too great to do that today. If we were to go back to that method we would be excoriated by the cryptographic community for allowing a hole into which bad data could be injected.
    Beginning with Acrobat/Reader 9 we did change the UI so if there is nothing other than a subsequent signature the change won't be as obvious. The user would have to dig into the Signature Navigation Panel in order to track down the change.
    Steve

  • How do you get the integer of a number with more than 10 digits

    I can't seem to be able to get the integer of a number with more than 10 digits.
    ex:
    integer(12345678901.3) returns -539222987 when it should really return 12345678901
    Thanks for the help
    (I'm on director 11 at the moment)

    You can write a Parent script to represent Big Integers. I wrote some code to get you started. It consist of two classes - "BigInt" and "Digit".  At this point you can only add two "BigInts" and print out the value with a toString() function. Note that you pass a String to the "BigInt" constructor.
    In the message window you could enter something like:
    x = script("BigInt").new("999999999999")
    y = script("BigInt").new("100000000000000000004")
    z = x.add(y)
    put z.toString()
    And the output window will show:
    -- "100000001000000000003"
    Here are the two Parent scripts / Classes
    -- Digit
    property  val
    property  next
    on new me, anInt
      val = anInt
      next = 0
      return me
    end new
    -- BigInt
    property  Num
    property  StringRep
    on new me, aString
      Num =  script("Digit").new(Integer(aString.char[aString.length]))
      curNum = Num
      repeat with pos = aString.length - 1 down to 1
        curNum.next = script("Digit").new(Integer(aString.char[pos]))
        curNum = curNum.next
      end repeat
      return me
    end new
    on add me ,  Num2
      curNum = Num
      curNum2 = Num2.Num
      result = curNum.val + curNum2.val
      if result > 9 then
        carry = 1
      else
        carry = 0
      end if
      result = result mod 10
      sum = script("Digit").new(result)
      curSum = sum
      curNum = curNum.next
      curNum2 = curNum2.next
      repeat while curNum.ObjectP AND curNum2.ObjectP
        result = curNum.val + curNum2.val + carry
        if result > 9 then
          carry = 1
        else
          carry = 0
        end if
        result = result mod 10
        curSum.next = script("Digit").new(result)
        curSum = curSum.next
        curNum = curNum.next
        curNum2 = curNum2.next
      end repeat
      repeat while curNum.ObjectP
        result = curNum.val +  carry
        if result > 9 then
          carry = 1
        else
          carry = 0
        end if
        result = result mod 10
        curSum.next = script("Digit").new(result)
        curSum = curSum.next
        curNum = curNum.next
      end repeat
      repeat while curNum2.ObjectP
        result = curNum2.val +  carry
        if result > 9 then
          carry = 1
        else
          carry = 0
        end if
        result = result mod 10
        curSum.next = script("Digit").new(result)
        curSum = curSum.next
        curNum2 = curNum2.next
      end repeat
      StringRep = ""
      me.makeString(sum)
      return me.script.new(StringRep)
    end add
    on toString me
      StringRep = ""
      me.makeString(Num)
      return StringRep
    end toString
    on makeString me, digit
      if not digit then
        return
      end if
      me.makeString(digit.next)
      put String(digit.val) after StringRep
    end makeString

  • Please allow more than 13 digits in the financial report calculation

    Dear SAP development team,
    I would like to suggest the financial report programming code or query or what else that is used to generate the financial reports (TB;P&L;BS) could allow the calculation of debit or credit more than 9223372036854. It made me laugh that it is not allowed.
    Why I said so ? Here are the reasons:
    1. The report data is not stored on a specific table
    2. If the report has calculated debit or credit greater than 9223372036854 while report processing is taking place, the report should still be appears but the amount of debit or credit that greater than 9223372036854, please put the zero on the debit or credit.
    I expect that we could still use the report either money overflow happened.
    John

    Hi, Yang
    My colleagues came across that problem recently. I advised them to split the transaction and create several transaction instead thereby avoinding using more than 13 digits.
    Another way that came to my mind is to create a new currency with excnage rate (say) 1:1000 . And create the transaction using this currency.
    Can't say that both solutions are perfect but I am afraid these are only ones.
    Konstantin.

  • Datagrid doesn't display numbers with more than 19 digits

    With patch 1 the SQL Developer datagrid should display numbers with more than 10 digits. But the limit seems to be 19 digits now. Number20 and Number21 fields are not displayed on my machine.
    WinXP Prof. 2002 SP2
    SQL Developer 1.0.0.14.67
    Personal Oracle Database 10g Release 10.2.0.2.0 - Production with options Partitioning, Spatial and OLAP

    I saw this as well and am working on fixing it.
    -kris

  • Enhance key to more than 32 digits for hierarchy master data?

    Dear All,
    We face a big issue on master data customization on BW 3.5.
    Is there a way to custo a master data with more than 32 digits in key when a hierarchy is necessary ?
    Thanks in advance for your help.
    CT.

    In the 3 tabs of a DTP,  I see nothing with something like "duplicate object". Could you give me the name of this fonction that you see plz ?
    Instead, I see a tab in the datasource with something like that (Delivery of Duplicate Data Recs).
    But I can't change it :(.
    Edited by: Shamane  Citadin on Jun 11, 2008 6:03 PM

  • Adding more than one 10 digital number to Digital Life

    Just signed up for Digital Life and the biggest complaint I have right now is not being able to add more than one cell phone number to receive alerts/notifications. I did chat and they told to add the following as an email: [email protected] or [email protected] and neither of them worked on two different At&t cell phone numbers!!!! My head wants to explode to think of crazy it sounds you cant add more than one number!!!! And top it off - their "workaround" doesn't work. At&t PLEASE PLEASE fix this issue.  Makes NO sense at all.

    I'm sorry to hear you're having issues adding additional mobile numbers to receive text alerts. The information you received is in-fact correct. Ensure you are not including dashes in the mobile number (Example: [email protected]). Also, make certain your program is created correctly to send the notification.
    If you're confident you have taken the necessary steps we'd be happy to work with you on resolving this matter. Please share a little more information with us by clicking here to send Digital Life a private message. In your message please include:
    Your name
    Account number
    Address
    Contact number and the most convenient time to contact you

  • Can I download Blu-ray digital copies to more than one iTunes library?

    I downloaded the digital copy of Paranormal Activity from the provided disc to itunes. After it finished downloading I rightclicked and selected Get Info. It says "Fairplay Version 3" What does this mean? Does this mean I can download this movie more than one time?
    Also, if I can downloaded it more than once can I also downloaded it on my wife's laptop under her itunes account or is the code connected just to my account now.

    That's the current Apple DRM for videos.
    If your wife's laptop is on the same account as yours just copy the download to her machine.
    You can run the movie on any 5 authorized machines but you can't download it again from iTunes.

  • HT1539 Can you download the digital copy to more than one iTunes account?

    Can you download the digital copy to more than one iTunes account?

    No. The redemption codes are one-time use only.
    tt2

Maybe you are looking for

  • IPod 4g stuck on connect to iTunes and not being recognised by my computer D:

    Basically I erased all data via reset option in settings and now when the iPod boots it shows the "connect to iTunes" picture, problem is for some reason my iPod doesn't even get recognised by any PC's in my house. I have tried uninstalling all my ap

  • RS232 Serial to USB: Connecting Electronic Scale: Software ?

    I have a heavy duty 400lb capacity scale from Pelouze: http://global.dymo.com/enCA/Products/400lb____180_Kg_Digital_Shipping_Scale__4040.html It has a 9 pin Serial RS232 port on the side. I was looking to connect it to a G4 for the purpose of importi

  • Express vs Standard Edition One

    Is there much difference between the Express Edition and Standard Edition One single cpu? I built a web application using mod_plsql. In load testing the application it works fine with this configuration: - 1 hyper-threaded CPU 3 MHz xenon - 1 gig SGA

  • Slow User Interface Performance on a Mac Pro

    I've recently purchased a late 2013 6-core Mac Pro with 16gb of memory and the 256gb SSD.  While the general performance of Final Cut Pro X is outstanding (applying filters, transitions, analyzing for dominant motion, optical flow retiming, rendering

  • How to search table configuration?

    Hi In SE10, we can use the user name and find out the configuration done by the user to the tables. Similary how can we find out the user name by using the table name known? Any help is appreciated. Thanks Aleem