Using Decimal Points with Quantity in 11i

We are in apps 11.0.3 and going to migrate into 11i.
While making Returns to Vendor we cannot use decimal points in the place of quantity and we have to complete the transaction same as transaction completed in the PO receipt.
For ex: If I have case as following what is the solution in 11i?
PO Receipt for Item AAA quantity 100 Metric Ton
And due to some cases I have to return it 49.5m Metric Ton
In apps 11.0.3 I can make Returns with integer quantity only, but how I can manage this case in 11i?
null

In IP 5.0 Patchset I you can receive and return with decimal quantities.
<BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Altaf Hussain K. ([email protected]):
We are in apps 11.0.3 and going to migrate into 11i.
While making Returns to Vendor we cannot use decimal points in the place of quantity and we have to complete the transaction same as transaction completed in the PO receipt.
For ex: If I have case as following what is the solution in 11i?
PO Receipt for Item AAA quantity 100 Metric Ton
And due to some cases I have to return it 49.5m Metric Ton
In apps 11.0.3 I can make Returns with integer quantity only, but how I can manage this case in 11i?<HR></BLOCKQUOTE>
null

Similar Messages

  • Decimal points in quantity more than 3 digits

    Hi
    I know that decimal point in quantity cannot be longer than 3 digitis - it's structure of field/ table but we have this requirement from pharma company and it's a kind of general requirement of pharma, life science, etc so I wonder how do we handle this technically beside change from Kg to gram. My collegue said her x-collegue said cannot it with modify table or add field to table which not clear to me.
    Anyone has experience on this, pls share
    Thanks & Regards,
    Chanchana

    Hi,
    Qty will be measured bu UOM which will be defined at CUNI.There you may change the decimal places for the unit.Please check.
    Other wise create a unit Gram and provide the conversion KG = 1000gm.
    Regards,

  • Problems with the system decimal point with german regional settings

    I have a Labview 6 app that needs deploying to Germany.
    My app sends strings over VISA RS232 and GPIB instruments with floating point numbers.
    When changing from English to German regional settings, in Windows XP, periods are now interpreted as commas and the app starts truncating my decimal numbers. So in the English Regional Setting when I send 1.234 I get 1.234 but in the German Regional Settings when I send 1.234 I get 1.000.
    I have turned off the "Use localized decimal point" in Tools - Options - Front Panel as well as set any function (Frac/Exp String to Number) that has a "Use System Decimal Point" connector to FALSE.
    Now here's my problem....
    This fixed the issue I was having as long as I am in the development environment, however, once I build the application I still get the truncated numbers. Example: I send 1.234 to an instrument and it sees 1.000.
    Again this works fine in the development enviroment, sending 1.234 reads 1.234 with German regional settings.
    Any help is appreciated.
    Adam

    You can use a simple function of the "Scan from string" function.
    Place "%.;" (Without the quotes) in the scanning string, and this will tell LV to use a decimal point for interpretation. If you place "%,;", this will tell it to use a comma.
    You can place this at the beginning of your format string, and it simply tells the parser how to work, it doesn't otherwise produce an output.
    Using simply "%;" sets the seperator to the system default (maybe the best idea after the code has been run as the changed decimal point character apparently remains changed otherwise). From the LV help
    The following codes control the decimal separator used for numeric output. These codes do not cause any input or output to occur. They change the decimal separator for all further inputs/outputs until the next %; is found.
    %,; comma decimal separator
    %.; period decimal separator
    %; system default separator
    Hope this helps
    Shane.
    Using LV 6.1 and 8.2.1 on W2k (SP4) and WXP (SP2)

  • Set No Decimal Point for Quantity in Any Stock Movement.

    Hi experts,
    Can anybody tell me how to block user from entering qty with decimal point in any stock movement that they plan to do. Our current system setting allowed user to do goods issue with decimal quantity such as 1.25 Unit.
    Regards.

    Hi Sujiana,
    If you dont want to decimals i think one option is availble is it correct or i dont know.why dont you try onece for this
    Go to logistics general ->Quantity optimizing and allowed logistics units of mesure->unit of measure rounding rule
    do here round to your unit
    i think it may be helpful to you
    Prem

  • How to use structure pointer with « Call Library Function node » in LabVIEW

    I use GetTimeZoneInformation from kernel32.dll. It definition is :
    DWORD GetTimeZoneInformation( LPTIME_ZONE_INFORMATION lpTimeZoneInformation );
    Where
    lpTimeZoneInformation
    [out] Pointer to a TIME_ZONE_INFORMATION structure to receive the current time-zone parameters.
    http://msdn.microsoft.com/library/default.asp?url=​/library/en-us/sysinfo/base/gettimezoneinformation​...
    I don't know how to set this parameter with my cluster based on the TIME_ZONE_INFORMATION structure.
    Your help will be appreciate
    Thanks
    INKSPEC

    INKSPEC wrote:
    I use GetTimeZoneInformation from kernel32.dll. It definition is :
    DWORD GetTimeZoneInformation( LPTIME_ZONE_INFORMATION lpTimeZoneInformation );
    Where
    lpTimeZoneInformation
    [out] Pointer to a TIME_ZONE_INFORMATION structure to receive the current time-zone parameters.
    http://msdn.microsoft.com/library/default.asp?url=​/library/en-us/sysinfo/base/gettimezoneinformation​...
    I don't know how to set this parameter with my cluster based on the TIME_ZONE_INFORMATION structure.
    Your help will be appreciate
    Thanks
    INKSPEC
    If creating a wrapper DLL which does the conversion for you is not an option (I think it won't since that would require C programming and if you knew C programming you wouldn't ask this here) then you will have to create a byte array of appropriate length and just configure the Call Library Node to pass this array as an Array of unsigned bytes and as C pointer.
    On return you will have to copy out the interesting data at the right position.
    First the length of this structure would be:
    typedef struct _TIME_ZONE_INFORMATION {
    LONG Bias; 4
    WCHAR StandardName[32]; 32 * 2
    SYSTEMTIME StandardDate; 8 * 2
    LONG StandardBias; 4
    WCHAR DaylightName[32]; 32 * 2
    SYSTEMTIME DaylightDate; 8 * 2
    LONG DaylightBias; 4
    } TIME_ZONE_INFORMATION
    Total 172 bytes
    Now the fun part will be to actually get out the information. There are a number of difficulties.
    First the strings are 16 bit Unicode so if you are interested in them you will have to call a different Windows API function WideCharToMultiByte function to convert the 16bit Unicode string into an ASCII string. For this part there has been a post here:
    http://forums.ni.com/ni/board/message?board.id=170​&message.id=123821&requireLogin=False
    For the LONG values you would pick 4 bytes at the appropriate offset from the array through the Array Subset function and then typecast it into an int32 and pass that through the Swap Bytes and Swap Words functions to reverse the LabVIEW Big Endian byte swapping in the Typecast function.
    The SYSTEMTIME is a structure with eight 2 byte integers so it would be best to use Array Subset again to extract 16 bytes at the correct offset, typecast this into a cluster with eight int16 numerics and pass it through Swap Bytes too.
    You see accessing such API functions in LabVIEW directly can get easily quite a mess and that is the reason why creating a wrapper DLL to convert properly between LabVIEW datatypes and C datatypes gets soon the easier solution if you need to interface with more than one or two functions taking such complicated data structures.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Use Track Points with multiple objects

    I am trying to use the behaviour 'Track Points' to move the circles on the right with the glove, yes it might not look like it but that is a glove. The text and lines on the left are all static.
    I have figured out how to move the right end of the "horisontal" line so that it does what I want (using 'Analyze Motion'). But how do I get the two circles and the end of the line to move as one? There is no pathfinder and 'Track Points' wont apply to a group.
    I should probably point out that I am a complete noob with only a couple of hours on 'Motion 5'.
    Thanks in advance!

    To the circle(s) add a Behaviors > Motion Tracking > Match Move. Drag the Analyze Motion behavior into the source well. For the Anchor and Rotation-Scale parameters, set the Track # of the point you want to follow. You might need to set the Transform to Attach to Source. You will probably also have to drag the position of the circle over the first track point to align it.

  • Using Start Point with Date-objects

    Hi Expert guys and girls!
    I use the "Start" point to execute my BAPI "Salesorder GetList" / BAPI_SALESORDER_GETLIST.
    In order to use this BAPI you have to define
    1) Customer Number
    2) Sales Org
    and optionally I checked also
    3) Document Date
    4) Document Date To
    I fill in the values for all the fields. Using formulas for all - which works fine otherwise.
    My Date - formulas are designed to retrieve the last 3 months.
    ad 3)
    DVAL(DADD(NOW(),-3,'M'))
    4)
    DVAL(NOW())
    (I added the DVAL in front, but still I do not get any effect)
    Problem is now that the model retrieves ALL records for the logged in Customer No. and Sales Org. NOT limiting data to the specified date-interval. This takes a long time and is certainly not what I expected.
    I run SP14 - anybody had any experience in SP15 - maybe it is a simple upgrade?
    Or am I missing something in parsing the dates??
    Best regards
    Jakob Diness

    I got it to work with a little effort.
    1) Try parse fixed-dates (e.g. 08.08.2008) as Start and End dates. When that works, replace first the Start date then the end-date with DADD formulas like DADD(NOW(), -3, 'M') and NOW() in the End-date for example (going three months back in the example).
    2) Maybe you need to try with the Flex compiler instead of Flex 2 - since that was also not working for me in other cases. (Tools/Options/Compiler - change to Flex)
    3) Otherwise - pls. let me know. I somehow got it to work in my customer model.

  • Can I used mount point with AlwaysOn

    Hi,
    I have windows failover cluster with 10 database drives due the nature of the design. I need to migrate to AlwaysOn which is fine? Can I take benefits of mount point after configure AlwaysOn.
    Thanks you. 

    Stan,
    Hope you are having a good day so far
    Thanks, long day - just getting back.
    the way I interpreted the question "the WSFC has 10 database drives" - I assumed that it implies that the drives are clustered.
    I don't know if they are on shared storage or not. WSFCs can use local storage for certain things, such as alwayson availability groups, tempdb, etc.
    so, let's say - WSFC has two nodes NODEA,NODEB and and the mounted drives are CLUSTERED (DRIVES G and H).
    Ok, so base drives and mount points off of the base. Got it.
    Node A has stand alone sql instance with database files on Drive G and H. A scenerio when the Node A was restarted , the drives will roll over to Node B and will stay on that.
    Mmmmmm.... It depends on what the potential owner of the nodes are for the drives. I also wouldn't use clustered drives for local instances - just my opinion.
    But when Node A comes backup, the sql server cannot come start, since it be will missing G and H drives.
    Then I wouldn't allow the drives to fail over. To be honest, in this scenario I also wouldn't have them as clustered drives. Setting their possible owners to only be node A will in essence make them always be on node a.
    so, in this installing stand alone sql on clustered drives is not a good solution(i do not know if sql would allow that in first place). Of course, shared storage or regualr mount points(not clustered) should be fine.
    Bingo.
    -Sean
    The views, opinions, and posts do not reflect those of my company and are solely my own. No warranty, service, or results are expressed or implied.

  • Change in Decimal Points with comma

    Hi Gurus,
    For the result data, we  need to change " ," for " . "  and viseversa because that is how  German follow the format.i have checked the decimal format but that doesnt change this option because at r/3 side it is maintained in same way.
    Eg 2,000.00 i need it to be 2.000,00
    help me please...
    Thanks in Advance..
    Rennie

    One place I know of is you change that in user maintenance..Tcode SU01 -- type in User ID -- Defaults tab
    Or
    From Menu -- System -- User Profile -- Own Data
    For the change to take efffect user must log off and log back in
    Edited by: sam hennry on Jan 23, 2008 2:13 PM
    Edited by: sam hennry on Jan 23, 2008 2:15 PM

  • Adding a decimal point to a number column

    I have a column defined as number(10,2)
    I've imported data to this column from a betrieve database which did not use decimal points, so my data looks like this:
    13000
    2000
    I need to update this column and place a decimal point in front of the last two zeros, so the new data would look like this:
    130.00
    20.00
    Any suggestions on the best way to accomplish this?

    yes, all the data ends with double zeros and all the data is end the same format.
    I gotcha! There is no need to insert a decimal if I divide the 100! Dah!
    Thanks!

  • Decimal Point data for Stacked Column Chart

    Hi,
    I use a basic version of a Column chart for one of my projects. I use a stacked column chart with 2 data series namely "Expenses" & "Profit".
    I use decimal point numbers (with only two or three places after the decimal point) for both series.
    When I mouse over the bars of the output for tool tip, I view more numbers after the decimal point for some data.
    How to fix the decimal point to only 2 places & what is the reason for this behaviour?
    Attached is the sample output (output.gif) showing the above condition for the mentioned data.
    -Sen

    Create an toolTipShow event handler and use a NumberFormatter to set the precision of the numbers (sample code from LiveDocs):
    <?xml version="1.0"?>
    <!-- formatters\MainNumberFormatter.mxml -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:Script>
            <![CDATA[
                // Define variable to hold the number.       
                [Bindable]
                private var bigNumber:Number = 6000000000.65;
            ]]>
        </mx:Script>
        <!-- Declare and define parameters for the NumberFormatter.-->
        <mx:NumberFormatter id="PrepForDisplay"
            precision="0"
            rounding="up"
            decimalSeparatorTo="."
            thousandsSeparatorTo=","
            useThousandsSeparator="true"
            useNegativeSign="true"/>
        <!-- Trigger the formatter while populating a string with data.-->
        <mx:TextInput text="{PrepForDisplay.format(bigNumber)}"/> 
    </mx:Application>

  • Query about decimal point field in mapping

    hi,
    In interface one field is supposed , Both dollars and cents will be formatted with an implied decimal point before the last  two digits in the data. 
    for exm : input is -620.27. then output should be -000062027. Maximum length of the field is 10.
    if input is 44.44.then output should be 0000004444.
    In this way.
    Name of the field is Pay_Amount.
    how do i get this mapping?
    Regards,
    Sanghamitra

    Use the replace string function to replace decimal point with null. Then pass the value to a udf.
    Write a udf (value cached) and pass the input a= value from Pay_Amount and b - required length of field (10)
    public String AddLeading(String a,String b,Container container){
    String temp = new String(String.valueOf(Integer.parseInt(a)));
    int temp1 = Integer.parseInt(b);
    for(int i = 0; (temp1 - a.length()) > i ; i++)
    temp = "0" + temp;
    return(temp);

  • How to play a cue point with mixer

    I know how to play a cue point of sound with the method:
    sound(1).queue([#member: ...  #startTime: ... EndTime: ... ])
    How can I transfer the method of cue point using  the mixer?
    I need to have any hint about this because I must use both cue
    point with playrate, at my begginer level of knowledge I know that:
    1) I can't use "playrate" with  "sound(1).play()" method.
    With this method I can use cue point;
    2) I'm trying to know If I can use cue point with   mixer method.
    With this method I can use "playrate" .
    It is also for me important to know if it is possible or
    impossible to solve this problem in director.
    Thanks.

    iPhone 3gs, 4 or 4s?
    With the former two, just drag the videos to the desktop iTunes and sycnhronize to your iPad. They will be synched to the stock Videos.
    With the latter, you can either resize the video to 720p (or less) OR use a third-party app (It's Playing, AVPlayerHD, GoodPlayer being the best choices) to play it back. I'd go with the latter to avoid quality degradation and long-lasting reencodings.

  • Discoverer Drake with Oracle Applications 11i

    Hi,
    Is it possible to use Discoverer Drake with Oracle Apps 11i?
    Thanks.
    Lee

    To clarify:
    All versions of Discoverer can operate 'standalone' against Apps 10.7-11i. Only Discoverer 4i was certified in the 11i techstack and 10g r1 (9.0.4) is also certified using documented steps (see MetaLink). Discoverer 9i was not certified int the tech stack. Discoverer 10g r2 (10.1) can be used standalone with custom BA's, it is not yet certifiedd with the 11i pre-seeded EUL can content.
    At this stage in the product, if using 11i, use 4i or 10g r1. If standalone, use 10g r1 (9.0.4) or 10g r2 (10.1).
    Regards

  • My quantity is showing with a decimal point and two spaces

    When people are entering a quantity of 1 it is showing as 1.00.  It is confusing my users because they think this is a price.  How can I get rid of the decimal point and two spaces? 

    Hi,
    I am not able to reproduce this problem with a number field.  Are you using this field as a payment-quantity field?.  If so, please check that the Quantity in your payment setting is linked the the right field.
    We can do a quick test: create a new form from scratch, add one textfield, then on the field property panel select Type=number.
    Select Test tab and click on the Test Web Form button
    Enter a number and commit --> check if you get the decimal point and the spaces.
    If you still have problem with this, let me know
    Thanks,
    Lucia

Maybe you are looking for