Quantity as integer

Hi there, I'd like to consult You in one issue.
I,ve got a field in the SCREEN. It's FORMAT is 'UNIT', whilst reference field is 'MSEG-ERFME'. But when I fill tableview with data it displays for example
*4,000 *
but I need to display it as
4
Type of corresponding itab is MENGE_D which has (type: QUAN, lenght: 13, precision: 3).
Could You tell me what should I change in my settings to reach a goal?

Hi
Try to check wich unit of measure is used, probably it's used a unit wants only integer.
The reference field can be MSEG-ERFME
Max
Edited by: max bianchi on Feb 28, 2008 4:51 PM

Similar Messages

  • Restrict the Sales Order Quantity in Integer

    Hi All,
    our system need to restrict the Sales Order Quantity in having no decimal value.  
    We have got the OSS reply as:  
    "Unfortunately I regret to tell you that it is not possible to
    restrict the order quantity number to integer in standard system.
    The number of allowed decimals is defined in the system via SE12.
    In SE12, you can see that for VBAP-KWMENG, the number of allowed decimals is 3. I'm sorry but this is the standard system behavior."
    But we need to avoid programming. Can you anyone suggest any work around methods, like define rounding profile to do the restrictions.
    Regards,
    Simon

    Hello All,
    Thanks for the excellent answere.
    Please anybody can provide us the SAP OSS Note for the same as the reply received from SAP Support.
    We have got the OSS reply as:  
    "Unfortunately I regret to tell you that it is not possible to
    restrict the order quantity number to integer in standard system.
    The number of allowed decimals is defined in the system via SE12.
    In SE12, you can see that for VBAP-KWMENG, the number of allowed decimals is 3. I'm sorry but this is the standard system behavior."
    But we need to avoid programming. Can you anyone suggest any work around methods, like define rounding profile to do the restrictions.
    Regards,
    Farhan

  • Why budget check does not work with account assigment distrib. by quantity?

    Hi Gurus,
    I have an issue in the budget check for Purchase Order (PO).
    I'm using the FM B31I_ACC_PURCHASE_ORDER_CHECK.
    The case is next:
    1 Item with 21 account assignment type AS and distribution by quantity:
    ASSET_NO QUANTITY
    1           1
    2           1
    3           1
    4           1
    5           1
    6           1
    7           1
    8           1
    9           1
    10          1
    11          1
    12          1
    13          1
    14          1
    15          1
    16          1
    17          1
    18          1
    19          1
    20          1
    21          1
    All account assignment are for the same G/L account, fund, functional area...
    The price for each item is $2,499.14, then total price is $52,481.94 (2,499.14 * 21).
    I debugged the FM B31I_ACC_PURCHASE_ORDER_CHECK and found that in FM BBP_PD_COMMITMENT_FILL_BAPI it's making a rounding with percentage:
    The system assume next:
    Each item is 4.76% of total (result of divide 100% / 21 = 4.76190476...) but the percentage is rounded to 2 decimals.
    Then it makes the conversion by the amount corresponding to each item:
    ($52,481.94 * 4.76) / 100 = $2,498.1403
    Finally the budget is checked by $52,460.95 (2498.1403 * 21).
    But available budget is $52,481.90, the check pass, but really there are 4 cents missing (total price is $52,481.94).
    Can somebody say to me if this is a standard behavior?
    It can be fixed with configuration?
    The problem is for multiple account assignment with distribution by quantity and:
    (100 / quantity) = not integer (or have more than 2 decimals)
    For example: with quantity 20 it works because 100% / 20 = 5.00%, then the budget is check exactly.

    1503317 - System Behavior for Account Distribution between SRM and R/3 system
    When using distribution by Value in a SRM document this value is not correct and a rounding occurs once this document is transferred to ERP system.
    Cause
    It is not possible transfer documents to the back end system with distribution by value, due to a back end restriction.
    Resolution
    The following information is the system behavior in R/3 / ERP:
    in R/3, there is accounting distribution only by quantity or percentage. So when distribution by value is used, a rounding will always take place.
    in R/3, the use of value based distribution in SRM will lead to rounding differences.
    Distribution by quantity is allowed in SRM and MM side. However MM do not accept is distribution by value. This is internally converted to distribution percentage based.
    Keywords
    Distribution by Quantity, Distribution by Percentage, Distribution by Value

  • 2 decimal places Quantity field in Sales Order

    Hi expert
    sales orders qty  has two decimal points, which is not supposed to be the unit of measure is EA, and I have checked tcode CUNI its zero decimal places can anybody please help.
    Thanks in anticipation of your response.

    Hi,
    You can control by attaching rounding profile attached in material master -> MRP1 view or at customer material info record.  If it is not working, please check whether the below solution helps.
    Restrict the Sales Order Quantity in Integer
    Regards,
    P Gomatheeswaran

  • Unit testing in J2EE environment

    Hi All:
    We have been trying to use Junit for creating unit test scripts, and have been bit successful in unit testing DAOs and Value objects - but problem is testing of components like EJBs and Servlets or even classes like Actions or Commands. Since these components run under application server environment, I am not sure how to unit test them without either deploying them on the actual server or simulating app server and rest of the system.
    I was wondering if people could share their experience in writing unit test scripts especially for J2EE components - like Servlets, JSPs and EJBs. On the similar note, is there any similar tool or API for creating integration test scripts?
    Thanks,

    Well - we already have couple of other servers but that's for beta, QA and Integration testing. Problem is with the unit testing. In unit testing, some piece of code is tested by itself. And I am not sure how I can unit test some of the classes like Servlets, EJBs, JSPs or even dependent classes like Commands or Actions. For example, consider following Action class from Java Pet Store:
    public final class CartHTMLAction extends HTMLActionSupport {
    public Event perform(HttpServletRequest request)
    throws HTMLActionException {
    // Extract attributes we will need
    String actionType= (String)request.getParameter("action");
    HttpSession session = request.getSession();
    // get the shopping cart helper
    CartEvent event = null;
    if (actionType == null) return null;
    if (actionType.equals("purchase")) {
    String itemId = request.getParameter("itemId");
    event = new CartEvent(CartEvent.ADD_ITEM, itemId);
    else if (actionType.equals("remove")) {
    String itemId = request.getParameter("itemId");
    event = new CartEvent(CartEvent.DELETE_ITEM, itemId);
    else if (actionType.equals("update")) {
    Map quantities = new HashMap();
    Map parameters = request.getParameterMap();
    for (Iterator it = parameters.keySet().iterator();
    it.hasNext(); ) {
    String name = (String) it.next();
    String value = ((String[]) parameters.get(name))[0];
    final String ITEM_QTY = "itemQuantity_";
    if (name.startsWith(ITEM_QTY)) {
    String itemID = name.substring(ITEM_QTY.length());
    Integer quantity = null;
    try {
    quantity = new Integer(value);
    catch (NumberFormatException nfe) {
    quantity = new Integer(0);
    quantities.put(itemID, quantity);
    event = CartEvent.createUpdateItemEvent(quantities);
    return event;
    In order to unit test above class from say, JUnit test script class, I will have to pass HttpServletRequest object to its method - I will also have to store corresponding command params and store them in the request object - how will you write unit test script for the above class?

  • How To Add New Key Figure in Manual Planning

    Dear All
    Please Help
    I Already implement BPS for 2 year.
    Now user want to add new key figure in Cube.
    I already add new key figure to cube and activated it.
    But in Manual Planning, The new key figure not show in selection
    what I must do?
    Please Help.
    Thanks

    Hi,
    not all key figure types are supported in BPS.
    1. All key figure types must have aggregation SUM, SUM.
    2. Supported key figure types:
    - amout
    - quantity
    - number (integer, float, dec)
    - time, only type DEC
    - datum, only type DEC
    All other key figures are filtered out and are not available in BPS.
    Regards,
    Gregor

  • Multiple Key Figures and SINGEDATA

    Hi Experts,
    There are different Key Figures in BI like Amount, Quantity, Number, Integer, Date, Time, and the associated Unit. Whereas, in BPC there is only one type of object is used for recording quantitative values for transaction in BPC, that is SINGEDDATA. This object is equivalent to a Key Figure in SAP NetWeaver BI. So, while extracting data from BI to BPC, there are multiple Key Figures in BI, then how to take these multiple Key Figures in BPC? Do we need to take multiple SINGEDDATA?
    Appreciate your help.
    Thanks

    Hello Qakbar -
    The typical practice is to map each BW key figure to a combination of SIGNDATA and another dimension, such as ACCOUNT (or any combination of one or more dimensions).  BPC is a true account based data model (only one key figure).
    You can use BW transformations along with Rule Groups to define how each multiple key figure based BW record can be broken into separate single key figure records.  These records can be stored in a BW staging cube for easy import into BPC upon demand. 
    Alternatively, you could use the BPC transformation command, MVAL, to allow loading of multiple Keyfigure BW records directly into BPC.
    Regards,
    Sheldon

  • Key Figure Creation

    Hi Gurus,
    when you are creating a Keyfigure you have different data types
    Amount
    Quantity
    Number
    Integer
    <b>Date and
    Time</b>
    what Exactly Date and time do in Creation of Key figures...
    generally Key figures are created with respect to numbers
    can any one explain me technically in detail regarding this ??
    appreciate your time
    Regards
    Santosh

    It depends on your business requirements whether a Date filed can be as KF or Characteristic.if you are sute that Date can be used in further calculations very often it can be deigned as KF. of course after defining it as Char also, you can use in calculations using formula variable.
    Counter or amount field with decimal point, sign and comma for thousands. A DEC field may have a maximum of 31 places.
    DATS
    Date. The length is defined as 8 places for this data type.
    Message was edited by:
            Muralidhar C

  • How can make it work? how to correct the coding?

    // my first lesson
    import javax.swing.JOptionPane;
    public class Product {
    public static void main( String args[] )
    int x, y, result;
    String xCode, yQty;
         int FreeHand, Flash, Director;
         FreeHand = 10;
         Flash = 20;
         Director = 30;
    xCode = JOptionPane.showInputDialog(
    "Enter the product name we offer: FreeHand, Flash, Director" );
    yQty = JOptionPane.showInputDialog(
    "Pls enter the quantity:" );
    x = Integer.parseInt( xCode );
    y = Integer.parseInt( yQty );
    price = x * y;
    JOptionPane.showMessageDialog( null,
    "Thanks, total purchase is" + price );
    System.exit( 0 );

    // my first lesson
    import javax.swing.JOptionPane;
    public class Product {
    public static void main( String args[] )
    int x, y, result;
    String xCode, yQty;
           int FreeHand, Flash, Director;
           FreeHand = 10;
           Flash = 20;
           Director = 30;
    xCode = JOptionPane.showInputDialog(
    "Enter the product name we offer: FreeHand, Flash, Director" );
    yQty = JOptionPane.showInputDialog(
    "Pls enter the quantity:" );
    x = Integer.parseInt( xCode );
    y = Integer.parseInt( yQty );
    price = x * y;
    JOptionPane.showMessageDialog( null,
    "Thanks, total purchase is" + price );
    System.exit( 0 );
    Well it doesn't work. You parse the input from the first JOptionPane as if it is an int, but it should be a String - "FreeHand", "Flash" etc.
    Also in your original message the first String was declared over two lines - you can't do this! Either declare on one line or break up into substrings and use the "+" operator.
    How about.
    import javax.swing.JOptionPane;
    import java.util.*;
    public class Product {
        public static void main( String args[] )
           int x, y, result;
           String xCode, yQty;
           //New product Map
           Map products = new HashMap();
           products.put("FreeHand", new Integer(10));
           products.put("Flash", new Integer(20));
           products.put("Director", new Integer(30));
           xCode = JOptionPane.showInputDialog(
                     "Enter the product name we offer: "
                       + "FreeHand, Flash, Director" );
           yQty = JOptionPane.showInputDialog(
                     "Pls enter the quantity:" );
           x = ((Integer)map.get(xCode)).intValue();
           y = Integer.parseInt( yQty );
           price = x * y;
           JOptionPane.showMessageDialog(
              null,
              "Thanks, total purchase is" + price );
           System.exit( 0 );

  • How to add metadata

    Hi Team,
    We have a req where we need to modify the existing metadata with an additional Custom Dimension. We need to add close to 300 members along with property under this custom dimension...How should i do it??
    Manually adding members through web client is difficult.Please suggest me an option..
    Thanks in advance

    Hi,
    I wrote this. It 's knotty but it works and it puts apostrophes, because I delete them by another macro in order not to miss them in the elements names.) So you need to delete aphostrophes or they will duplicate in columns header names.
    Const Delimiter = "|"
    Const MetadataVersion = 1
    Sub ExportDataToTxt()
        Dim lLastRow As Integer, lLastCol As Integer, c As Range, Ran As Range, Str As String, Apostrophe As Boolean, DelimiterCount As Integer
        Apostrophe = False
        lLastRow = Cells(1, 1).SpecialCells(xlLastCell).Row
        lLastCol = Cells(1, 1).SpecialCells(xlLastCell).Column
        DelimiterCount = 0
        Dim fileSaveName As Variant
        fileSaveName = Application.GetSaveAsFilename("Metadata_" & MetadataVersion, fileFilter:="HFM metadata files (*.ads), *.ads")
        If fileSaveName = False Then
            Exit Sub
        End If
        Dim fs As Object
        Dim DataFile As Object
        Set fs = CreateObject("Scripting.FileSystemObject")
        Set DataFile = fs.CreateTextFile(fileSaveName, True)
        Set Ran = Range(Cells(1, 1), Cells(lLastRow, lLastCol))
        Str = ""
        For Each c In Ran.Cells
            If c.Column = 1 Then
                If Apostrophe Then
                    Str = "'"
                 Else: Str = ""
                End If
            End If
            Str = Str & c.Value & Delimiter
            If c.Column = lLastCol Then
                If Apostrophe Then
                    Apostrophe = False
                    Str = TrimDelimiters2(Str)
                    DelimiterCount = CountSymbols(Str, Delimiter)
                End If
                If Left(Str, 1) = "!" Then Str = TrimDelimiters(Str, DelimiterCount)
                    Str = TrimDelimiters(Str, DelimiterCount)
                    If Len(Str) = CountSymbols(Str, Delimiter) Then Str = ""
                DataFile.WriteLine (Str)
                If Left(Str, 1) = "!" And InStr(Str, "!FILE_FORMAT") = 0 And InStr(Str, "!VERSION") = 0 Then Apostrophe = True
            End If
        Next
        DataFile.Close
    End Sub
    Public Function TrimDelimiters(S As String, quantity As Integer) As String
        Dim i As Integer, c As Integer, Bool As Boolean
        Bool = False
        For i = 1 To Len(S)
            'If Mid(s, i, 1) <> Delimiter Then C = i
            If Bool = False Then
                If CountSymbols(Left(S, i), Delimiter) = quantity + 1 Then c = i - 1: Bool = True
            End If
        Next
        If Left(S, 1) = "!" Or Len(S) = CountSymbols(S, Delimiter) Then
            For i = 1 To Len(S)
                If Mid(S, i, 1) <> Delimiter Then c = i
            Next
        End If
        If CountSymbols(S, Delimiter) = quantity - 1 Then
            For i = 1 To Len(S)
                If Mid(S, i, 1) <> Delimiter Then c = i
            Next
        End If
        If CountSymbols(S, Delimiter) <= quantity Then
            TrimDelimiters = S
            Exit Function
        End If
        TrimDelimiters = Left(S, c)
    End Function
    Function CountSymbols(S As String, char As String) As Integer
        Application.Volatile True
        Dim TestPos As Integer
        CountSymbols = 0
        TestPos = 1
        Do While InStr(TestPos, S, char) > 0
            CountSymbols = CountSymbols + 1
            TestPos = InStr(TestPos, S, char) + Len(char)
        Loop
    End Function
    Public Function TrimDelimiters2(S As String) As String
        Dim i As Integer, c As Integer   
        For i = 1 To Len(S)
            If Mid(S, i, 1) <> Delimiter Then
                c = i
            End If
        Next
        TrimDelimiters2 = Left(S, c)
    End Function

  • How to add "security key" functionality in the software.

    hi, i want to implement "security key" functionality in the java software so that only one system (clienta0 can use that software. this is to prevent multiple usage of my software. what i have to do? how to generate the keys and implement them. please help. thanks

    Hi,
    not all key figure types are supported in BPS.
    1. All key figure types must have aggregation SUM, SUM.
    2. Supported key figure types:
    - amout
    - quantity
    - number (integer, float, dec)
    - time, only type DEC
    - datum, only type DEC
    All other key figures are filtered out and are not available in BPS.
    Regards,
    Gregor

  • Buffering not possible, transport restricted

    hi,
    i am creating ztable.  i have domain of type int4.  my primary key refers to this domain.  while compiling, i get a warning - "Key Field ZZ has num field of type INT4.  Buffering not possible, transport restricted".
    what does this mean?  will i have any problems while transporting to QA and Prod. and Buffering?
    J

    Data Types for a Characteristic Object:
    CHAR
    NUMC
    DATS
    TIMS
    Data Types for a Kef Figure Object:
    Amount
    Quantity
    Number
    Integer
    Date
    Time
    You should use characteristic data types while using key fields for a buffered table. If you use NUMC , it will work.
    regards,
    preet

  • Mapping Challenge!

    Dear Java Gurus!
    I have ethe following file message that I bring to XI in XML.
    H|A|01|10|00000002|1
    H|A|01|10|00000002|2
    H|A|01|41|00000002|1
    H|A|01|41|00000002|3
    H|A|02|41|00000002|1
    H|A|01|10|00000025|2
    H|A|01|10|00000025|1
    H|A|02|10|00000025|2
    The field names are: Field1, Filed2, DC, WH, Store,Qty.
    I need to consolidate this structure based on DC and then WH and then Store and then sum the Qty. The result should look like:
    H|A|01|10|00000002|3
    H|A|01|41|00000002|4
    H|A|02|41|00000002|1
    H|A|01|10|00000025|3
    H|A|02|10|00000025|2
    Actually the number of result nodes created should be based on the above logic and the field Qty comes inside the result nodes. So the field Qty needs a mapping too.
    I could consolidate at one level for example, Store using the following code:
    MappingTrace trace = container.getTrace();
    for(int i=0; i<a.length; i++)
    if(i==0 || (!a<i>.equalsIgnoreCase(a[i-1])))
    result.addValue(a<i>);
    But if I do a nested "for" then the mapping of the field "Qty' does not work! May be my nested for has problems. Any one has done anything like this?
    Please help.

    Hi,
    By consolidation, you mean that only for the lines that have identical DC, WH as well as Store, you have to add quantity. Correct me if I am wrong.
    You could have following approach to this problem.
    Create a UDF passing following parameter. It should be passed as a context or queue, depending on requirement.
    strInput = Concatenated string of DC, WH, Store and Quantity.
    So, we should have following array as input:
    0110000000021
    0110000000022
    Sort this array. The result should be the sorting based on DC, WH and Store, as desired.
    For enabling this, import java.util.Arrays into the UDF.
    Arrays.sort(strInput);
    Now, we could have sum of quantity for this input data:
    int iSumQuantity = 0;
    for (int i=0; i< strInput.length; i++)
        iSumQuantity = Integer.parseInt(strInput<i>.substring(12,13)); //initialize sum to current value
        if (strInput<i>.substring(0, 12).equals(strInput[i+1].substring(0,12)) )   //check if next element in array has same combination of DC, WH and Store. Pls check the input parameters to substring.
            iSumQuantity = iSumQuantity + Integer.parseInt(strInput[i+1].substring(12,13));
        else
           //Case when the combination changes. So we have to create a resultant value in target as a total of quantity.
           Integer objSumQuantity = new Integer(iSumQuantity);
           result.addValue(objSumQuantity.toString());
           iSumQuantity = 0;
    I hope this one should work. Or atleast should give you an idea about how this one could be achieved.
    Thanks,
    Bhavish
    Rewards points if comments helpful

  • Using JOINS in EJB 3 preview

    i have tried several combinations from EJB spec and I cannot get any JOIN working:
    Below is a class:
    @Entity
    @Table(name="LINEITEM")
    @NamedQuery(name="findLineItemByProductAndOrder",
              queryString="SELECT l FROM LineItem as l INNER JOIN l.product as p WHERE p.sku = :productId AND l.orderId = :orderId")
    public class LineItem implements Serializable {
         private Integer orderId;
         private Integer quantity;
         private Integer total;
         private Product product;
         @Id
         @Column(name="ORDER_ID", primaryKey=true)
         public Integer getOrderId() {
              return orderId;
         public void setOrderId(Integer orderId) {
              this.orderId = orderId;
         @Id
         @ManyToOne(fetch=FetchType.EAGER )
         @JoinColumn(name="PRODUCT_ID")
         public Product getProduct() {
              return product;
         public void setProduct(Product product) {
              this.product = product;
         @Column(name="QUANTITY")
         public Integer getQuantity() {
              return quantity;
         public void setQuantity(Integer quantity) {
              this.quantity = quantity;
         @Column(name="AMOUNT")
         public Integer getTotal() {
              return total;
         public void setTotal(Integer total) {
              this.total = total;
    When I execute the JOIN, I get:
    05/07/25 15:42:39 Caused by: Exception [TOPLINK-0] (Oracle TopLink - 10g release 3 (10.1.3.0) (Build 050221Dev)): oracle.toplink.exceptions.EJBQLException
    Exception Description: Syntax Recognition Problem parsing the EJBQL [SELECT DISTINCT l.total FROM LineItem as l JOIN l.product as p WHERE p.sku = :productId AND l.orderId = :orderId]. The parser returned the following [unexpected token: JOIN].
    05/07/25 15:42:39      at oracle.toplink.exceptions.EJBQLException.recognitionException(EJBQLException.java:64)
    05/07/25 15:42:39      at oracle.toplink.internal.parsing.ejbql.EJBQLParserBase.reportError(EJBQLParserBase.java:1088)
    05/07/25 15:42:39      at oracle.toplink.internal.parsing.ejbql.antlr272.EJBQLParser.selectStatement(EJBQLParser.java:141)
    05/07/25 15:42:39      at oracle.toplink.internal.parsing.ejbql.antlr272.EJBQLParser.document(EJBQLParser.java:61)
    05/07/25 15:42:39      at oracle.toplink.internal.parsing.ejbql.EJBQLParserBase.parseEJBQLString(EJBQLParserBase.java:1142)
    05/07/25 15:42:39      at oracle.toplink.internal.ejb.cmp3.EJBQueryImpl.buildDatabaseQuery(EJBQueryImpl.java:96)
    05/07/25 15:42:39      at oracle.toplink.internal.annotations.EJBAnnotationsProcessor.addNamedQueriesToSession(EJBAnnotationsProcessor.java:107)
    05/07/25 15:42:39      ... 16 more

    The key words INNER JOIN are new to EJBQL in EJB 3.0. The current EJB 3.0 preview only supports EJBQL 2.1 plus two additional aspects of EJB 3.0.
    Named Parameters
    Bulk Updates.
    Note: You do not need to specify the INNER JOIN as by default all EJBQL joins are inner joins.

  • Select combobox item array into different textboxes

    Hi,
    I would like to know  how to array to different textboxes by select item from combobox ?
    Thanks

    Hello,
    I would not do this as shown but instead not have quantity, book or books with price but if that is what you want let's make it easy.
    Hi,
    Thanks for response.
    I get an error 'text' is ReadOnly. Is that any mistake i make ?
    Public Class BookPrice
        Public ReadOnly Property Text As String
            Get
                If Quantity = 0 Then
                    Return "Select Quantity"
                ElseIf Quantity = 1 Then
                    Return Quantity.ToString & " Book " & Price.ToString("C2")
                ElseIf Quantity > 1 Then
                    Return Quantity.ToString & " Books " & Price.ToString("C2")
                Else
                    Return ""
                End If
            End Get
        End Property
        Public Property Quantity As Integer
        Public Property Price As Integer
        Private Sub PopulateCombo()
            Dim BookPrices As New List(Of BookPrice) From
                    New BookPrice With {.Quantity = 0},
                    New BookPrice With {.Price = 10, .Quantity = 1},
                    New BookPrice With {.Price = 20, .Quantity = 2},
                    New BookPrice With {.Price = 30, .Quantity = 3},
                    New BookPrice With {.Price = 40, .Quantity = 4}
            ComboBox1.DisplayMember = "Text"
            ComboBox1.DataSource = BookPrices
            ComboBox1.DropDownStyle = ComboBoxStyle.DropDownList
        End Sub
        Private Sub ComboBox1_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ComboBox1.SelectedIndexChanged
            If ComboBox1.SelectedItem IsNot Nothing Then
                Dim CurrentItem As BookPrice = CType(ComboBox1.SelectedItem, BookPrice)
                If CurrentItem.Quantity > 0 Then
                    TextBox1.Text = CurrentItem.Price.ToString("C2")
                Else
                    TextBox1.Text = ""
                End If
            End If
        End Sub
    End Class

Maybe you are looking for

  • PROXY_MUST_BE_REGENERATED error

    Hi, While runnig a progrtam that uses abap proxy i get the following error. PROXY_MUST_BE_REGENERATED Proxy is out-of-date and must be regenerated could someone tell me what this is? and how to resolve it,,, regards, prasy

  • Access XML array inside MovieClip. How ?!

    Hello, Ok, I have a code to load Multiple XML files at once and save it to an array named xmlDocs like this: //each xml file to load var xmlManifest:Array = new Array(); //the xml for each file var xmlDocs:Array = new Array(); //the xml file with all

  • Suffix And Prefix

    help me out that how can we utilize Suffix And Prefix in marketing Document. we have created Suffix And prefix but they are not shown in the Document form

  • Using getOADBTransaction() in extended VORowImpl

    We've added a LOV to iProc/Preferences - new field + extended VO. But when we try to add our logic to the xxxVORowImpl, we get a "method getODBTransaction not found in class" ??

  • I Photo 08

    every time i empty my trash in iphoto, it quits unexpectedly and wants me to send the into to apple. of which i do, but why, i empty the trash of photos and it quits and the photos remain in the trash what should i do