ANY ALTERNATE OF = IN JAVA

I HAVE AN THIRD PARTY APPLICATION
BUT I CAN SET VALUE IN THIS FIELD
IN THIS APLICATION TEXT FIELDS = SIGN IS NOT ALLOWED
BUT I WANT TO ASIGGNT THE VALUE IN THIS FIELD
HOW I CAN ASIGN THIS VALUE

arun240 wrote:
sorry
phien
my question is thst suppose i have a text field in which i have validation for some hacking character should not enter
in my case
suppose i have text field text1 which has validation for not entering the character like % =
now i want to pass a dynamic value in field text1
how i can pass it without using = signI'm going to takea wild guess and assume that you want to not allow = sign in a string that a user types.
If you want to just strip out all the = signs, then str = str.replace("=", "");
If you just want to test whether the string contains the = character, then str.contains("=")If it has something to do with the database, then quite likely the answer is what you were already told--use PreparedStatement.
If it's none of the above, then you have to clarify your question. Note that just repeating the same thing and saing "I want to pass a string not using = sign" does not help. It's not like we didn't read what you wrote the first time. It's that it wasn't clear. So find a way to express yourself better.

Similar Messages

  • How do I access "Firefox is NOT compatible with this application. For best performance, please use Internet Explorer 5.0 and above...." web sites; when I try to download any alternate browser, then a warning that alternate is "imcompatable with your opera

    How do I access websites that warn: "Firefox is NOT compatible with this application. For best performance, please use Internet Explorer 5.0 and above...."? When I try to download any alternate browser, all I get is another warning that the alternate is "not compatible with your operating system." Is Firefox preventing this? The site listed below is a job application site. I've had this same problem with other job application sites also.
    == URL of affected sites ==
    https://storefront.kenexa.com/lithia/cc/Home.ss

    There should be a User Agent Switcher menu item under Tools, which gives you the browser names you can impersonate.
    The menu item name changes to the browser UA you are presently using.
    There is also a User Agent Switcher button, you can add it using View -> Toolbars -> Customize, and dragging the button to your toolbar.
    See http://chrispederick.com/work/user-agent-switcher/features/ and http://chrispederick.com/work/user-agent-switcher/help/
    You can just start trying IE versions (or the versions it says on the site) until it lets you in.

  • I have file with 500 pages created from AutoCad file. In all pages, I have different document numbers.The file is not editable in pdf. How to change all the document numbers using "Comment" feature? Any alternate method?  alternate method? I have Adobe Ac

    I have pdf file with 500 pages created from AutoCad file. In all pages, I have different document numbers.The file is not editable in pdf. How to change all the document numbers using "Comment" feature? Any alternate method?  alternate method? I have Adobe Acrobat X Pro and Windows -7 platform.

    Yes, I just want to cover up all the pages for those particular area of document numbers.
    Nothing sensitive about it. I just want to show the correct document numbers on all pages in print out.
    So, I wanted to cover up by comments, but commenting on each page will be difficult. So, I wanted to comment the same on all pages.

  • Is there any alternate transaction for ME05 ?

    Hi All,
              In ME05, i will have to input material and plant data. Is there any alternater transaction where the input data would include - Vendor as well as purchasing organisation ?
    Thanks & Regards,
    PSS

    Dear PSS,
    ME01 if you want to maintain Source List
    ME11 if you want to maintain Infor Record
    <b>Source List</b>
    A source list specifies the possible sources of supply for a material over a given period of time. It shows the time period in which a material may be ordered from a given vendor or under a certain long-term purchase agreement.
    The source list supports the user in answering the question: "Which vendors or internal suppliers can supply a material at a given point in time?" It is also used in the automatic selection of vendors for a material.
    <b>Info Record</b>
    Info record is short for information record. The info record contains concise information about a vendor and a material that Purchasing already procures from that vendor. An info record thus represents a material-vendor relationship.
    For example, the info record indicates the units of measure in which materials are ordered from the vendor, and the applicable reminder levels. It also shows price changes affecting the material in question. This information can be useful in the process of evaluating quotations to determine the successful bidder.
    Info records are created automatically when you order a material. You can also create, change, and delete info records.
    Hope this will help.
    Regards,
    Naveen.

  • Is there any alternate solution for MDM setup without following Device Enrollment Program (DEP) ?

    Hi,
    Is there any alternate solution  for setting up the MDM Process, without following the Device Enrollment Program (DEP) and managing the devices by creating our own setup controlling through the server, Please let me know.
    Thanks for the help.

    Finally I found the solution for the MDM, after doing some research work with the Apple Configurator, iPhone configuration utility and came across with the Profile Manager after installing Mac OS Server and able to manage, configure, remote access and send the commands using push notifications.

  • Any Mod function in JAVA?

    I did not find 'MOD' function in the Math class. Is there any 'MOD' function in Java?
    Thanks!

    What is your MOD function?
    Does the %-operator do what you need or do you want a strict mathematical modulus that returns only positive values?

  • Any alternate function for FLD in NW7.5

    Hi All
    Is there any alternate function for FLD in NW7.5.
    I can't use FLD in NW.
    In one my script logic i need to get value from property and multiply with an account.
    Edited by: satish193 on Mar 29, 2011 2:15 PM

    Hi,
    You can try using something like:
    <member ID>.<property name>
    Hope this helps.

  • Any reporting component in Java?

    Hi
    Are there any softwares or components that can generate reports(like Crystal reports) and that can be accessed from a Java runtime environment?
    Thanks
    Muler

    There's any OS build in Java? And the JVM is the
    "kernell" of the OS?There even exist hardware JVM's!
    If you want to build a Java OS I think you're better off if you steal/borrow a kernel, for example Linux, and then build the higher OS functions in Java. Java isn't that well suited for low-level systems programming.

  • Any alternate function to EDIT_TEXT?

    Hi!
    is there any alternate function to EDIT_TEXT?
    I want to change the text length of a standard text/long text, which function module to use?
    Also, which function module SAP standard progam used to display a text and change a text length?

    REPORT ZTEXT .
    TABLES: PBIM.
    stxh, stxl, stxb - trans tables for text
    ttxit - text on text-ids
    ttxot - Short texts on text objects
    Transaction MD63
    SELECT-OPTIONS: S_MATNR FOR PBIM-MATNR,
                    S_WERKS FOR PBIM-WERKS.
    DATA: BEGIN OF HTEXT.
            INCLUDE STRUCTURE THEAD.
    DATA: END OF HTEXT.
    DATA: BEGIN OF LTEXT OCCURS 50.
            INCLUDE STRUCTURE TLINE.
    DATA: END OF LTEXT.
    DATA: BEGIN OF DTEXT OCCURS 50.
    DATA:   MATNR LIKE PBIM-MATNR.
            INCLUDE STRUCTURE TLINE.
    DATA: END OF DTEXT.
    DATA: TNAME LIKE THEAD-TDNAME.
    SELECT * FROM PBIM WHERE WERKS IN S_WERKS.
      MOVE PBIM-BDZEI TO TNAME.
      CALL FUNCTION <b><b>'READ_TEXT'</b></b>
           EXPORTING
              CLIENT                  = SY-MANDT
              ID                      = 'PB'
              LANGUAGE                = 'E'
              NAME                    = TNAME
              OBJECT                  = 'PBPT'
            ARCHIVE_HANDLE          = 0
         IMPORTING
              HEADER                  = HTEXT
         TABLES
              LINES                   = LTEXT
         EXCEPTIONS
              ID                      = 1
              LANGUAGE                = 2
              NAME                    = 3
              NOT_FOUND               = 4
              OBJECT                  = 5
              REFERENCE_CHECK         = 6
              WRONG_ACCESS_TO_ARCHIVE = 7
              OTHERS                  = 8.
      LOOP AT LTEXT.
        IF LTEXT-TDLINE NE ''.
          MOVE LTEXT-TDLINE TO DTEXT-TDLINE.
          MOVE PBIM-MATNR TO DTEXT-MATNR.
          APPEND DTEXT.
        ENDIF.
      ENDLOOP.
    ENDSELECT.
    LOOP AT DTEXT.
      WRITE:/ DTEXT-MATNR, DTEXT-TDLINE.
    ENDLOOP .
    regards
    vinod

  • Is there Any alternate software available for the zen microphoto that allows me to

    <SPAN class=postbody>I can only view the contents of my Zen microphoto as folders and files (i.e. it gives me a "Windows Explorer" type view of the contents) - I cannot view my Zen microphoto library in the same way as my PC Music Library (i.e. by Genre, Artist or Album) Is there Any alternate software available that allows me to see and organize my Zen microphoto library in the same way as my PC Music Library (i.e. by Genre, Artist or Album)

    There is program in the App Store called Bookpedia that seems tailor-made for your situation.
       http://itunes.apple.com/us/app/bookpedia/id408505152?mt=12
    Bento is another easy to use database solution.
    Or GoogleDocs has a spreadsheet application, free online, although not really specific to your application.
    If you really are using OS8.6, as your signature states, you may look for an old version of FileMaker on eBay.
    Good Hunting!

  • How to avoid cartesion join is there any alternate way

    Hi,
    I have table
    1.sitemaster
    2.Invmaster
    Sitemaster will have some hundrer sites and Invmaster will have thousands of items or product
    I have an Situation for each site i need to show all product so iam linking with cartetion join but its taking more time
    is there any other alternate way to get same result as cartetion join . Please can any one guide me?

    Hi iam saying i need a result like cartesion join only
    Table invmaster
    INVIID
    SKU
    UPC
    DESCRIPTION
    DATEADDED
    MAINGROUP
    AVAILGROUP
    REPORTGROUP
    COMMGROUP
    TAXGROUP
    EXCHANGEGROUP
    ATTRGROUP
    METERGROUP
    MANUFACTURER
    MANPARTNUM
    MODEL
    ACTIVE
    MADEIN
    QTYSERIAL
    SELLPRICE
    COST
    LOWESTSELLPRICE
    REPLACEMENTCOST
    ALLOWDISCOUT
    DAMAGEWAIVER
    ALLOWSUBRENT
    ALLOWCONSIGNED
    SHELFLOCATION
    BINNUMBER
    PACKAGE
    TYPE
    DEPOSITTYPE
    DEPOSITVALUE
    AFFECTSAVAILABILITY
    URL
    UCDESCRIPTION
    PRINTONORDER
    ISMISCITEM
    LENGTH
    WIDTH
    HEIGHT
    WEIGHT
    BOOKDEPRECIATIONIID
    TAXDEPRECIATIONIID );
    Sitemaster
    SITEIID
    SITEID
    SITENAME
    ADDRESSIID
    GMT
    PARENTIID
    PARENTSERVER
    REGION
    DISTRICT
    CLASS
    SITEPRICEGROUP
    PHONE
    FAX
    DAYSINWEEK
    TIMEZONE
    SHIPDATEOFFSET
    PHYSICALCOUNTSTART
    LOCALE
    GEOGRAPHICALREGION
    CATEGORYGROUPIID
    RETURNDATEOFFSET
    MASTERBILLSHARINGTYPE
    MASTERBILLSHARING
    SERVICECHARGETYPE
    SERVICECHARGEVALUE
    SCONDISCOUNTEDAMOUNT
    SERVICECHARGEONSELLITEMS );
    I have created view such that linking othere table with columns index,
    but only in sitemaster i made cartetion join but my result is as expected but its taking more time below is my
    plan please can you suggest is there any alternate way?
    Execution Plan
    Plan hash value: 4005734062
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 2 | 11822 | 24 (9)| 00:00:01 |
    | 1 | VIEW | ALLITEMVIEW | 2 | 11822 | 24 (9)| 00:00:01 |
    | 2 | UNION-ALL | | | | | |
    | 3 | NESTED LOOPS OUTER | | 1 | 164 | 2 (0)| 00:00:01 |
    |* 4 | TABLE ACCESS BY INDEX ROWID | INVMASTER | 1 | 149 | 2 (0)| 00:00:01 |
    |* 5 | INDEX UNIQUE SCAN | IDX_INVMASTERSKU | 1 | | 1 (0)| 00:00:01 |
    | 6 | TABLE ACCESS BY INDEX ROWID | INVSUBCATEGORY | 2 | 30 | 0 (0)| 00:00:01 |
    |* 7 | INDEX UNIQUE SCAN | PK_INVSUBCATEGORYIID | 1 | | 0 (0)| 00:00:01 |
    |* 8 | HASH JOIN OUTER | | 1 | 1886 | 22 (10)| 00:00:01 |
    | 9 | NESTED LOOPS OUTER | | 1 | 1873 | 19 (0)| 00:00:01 |
    | 10 | NESTED LOOPS OUTER | | 1 | 818 | 17 (0)| 00:00:01 |
    | 11 | VIEW | SITEITEMVIEW | 1 | 676 | 17 (0)| 00:00:01 |
    |* 12 | FILTER | | | | | |
    | 13 | NESTED LOOPS | | 11 | 2827 | 17 (0)| 00:00:01 |
    | 14 | NESTED LOOPS OUTER | | 1 | 226 | 2 (0)| 00:00:01 |
    |* 15 | TABLE ACCESS BY INDEX ROWID| INVMASTER | 1 | 214 | 2 (0)| 00:00:01 |
    |* 16 | INDEX UNIQUE SCAN | IDX_INVMASTERSKU | 1 | | 1 (0)| 00:00:01 |
    | 17 | TABLE ACCESS BY INDEX ROWID| INVSUBCATEGORY | 2 | 24 | 0 (0)| 00:00:01 |
    |* 18 | INDEX UNIQUE SCAN | PK_INVSUBCATEGORYIID | 1 | | 0 (0)| 00:00:01 |
    | 19 | TABLE ACCESS FULL | SITEMASTER | 11 | 341 | 15 (0)| 00:00:01 |
    |* 20 | INDEX RANGE SCAN | IDX_COMSITEAUTHORIZEDPRODUCTS | 1 | 13 | 0 (0)| 00:00:01 |
    |* 21 | INDEX UNIQUE SCAN | IDX_COMSITEAUTHORIZEDPRODUCTS | 1 | 26 | 0 (0)| 00:00:01 |
    | 22 | TABLE ACCESS BY INDEX ROWID | IMAGEFILEREFERENCE | 1 | 142 | 0 (0)| 00:00:01 |
    |* 23 | INDEX RANGE SCAN | IDX_IMAGEFRPARENTIID | 1 | | 0 (0)| 00:00:01 |
    | 24 | VIEW PUSHED PREDICATE | INVITEMVIEW | 1 | 1055 | 2 (0)| 00:00:01 |
    | 25 | NESTED LOOPS | | 1 | 45 | 2 (0)| 00:00:01 |
    | 26 | NESTED LOOPS | | 1 | 30 | 1 (0)| 00:00:01 |
    |* 27 | INDEX UNIQUE SCAN | PK_SITEMASTER | 1 | 10 | 0 (0)| 00:00:01 |
    | 28 | TABLE ACCESS BY INDEX ROWID | INVNONSERIAL | 1 | 20 | 1 (0)| 00:00:01 |
    |* 29 | INDEX UNIQUE SCAN | IDX_INVNONSERIALSITEIIDINVIID | 1 | | 0 (0)| 00:00:01 |
    |* 30 | TABLE ACCESS BY INDEX ROWID | INVMASTER | 1 | 15 | 1 (0)| 00:00:01 |
    |* 31 | INDEX UNIQUE SCAN | PK_INVMASTER | 1 | | 0 (0)| 00:00:01 |
    | 32 | VIEW | | 6 | 78 | 2 (50)| 00:00:01 |
    | 33 | HASH UNIQUE | | 6 | 30 | 2 (50)| 00:00:01 |
    | 34 | INDEX FULL SCAN | PK_SUGGESTEDITEMS | 21 | 105 | 1 (0)| 00:00:01 |
    ----------------------------------------------------------------------------------------------------------------------

  • Search option for multiple lines in iPad for fixed layout ePub is not working. Is there any alternate way to search multiple lines in ePub?

    Search option for multiple lines in iPad for fixed layout ePub is not working. Is there any alternate way to search multiple lines in ePub?

    Hi SAP Gurus
    I need a big favour, I am trying to map serach string with internal order, my search string is MV-38610573 which I have mapped with posting rule 'GENT' which  debits bank account and credit revanue accounts but this revanue account requires assignment with internal order, so I have created another 3 search string with same search string 'MV-38610573' and mapped with BSEG-ASUFNR,60000LC ( internal order),3 (bdc account type) respectively, also maintained three entries in search string use which is for BDC FIELD NAME1, BDC FIELD VALUE 1 & BDC ACCOUNT TYPE 1,
    But this is not working it gives me following error,                                                                 
    > Error: (KI 235) Account 4421 requires an assignment to a CO object
    Your help will be highly appreciated,

  • Any OS build in Java

    Hi everyone.
    There's any OS build in Java? And the JVM is the "kernell" of the OS?
    If none, is it a good idea to build a complete OS in Java?
    Thanks!

    There's any OS build in Java? And the JVM is the
    "kernell" of the OS?There even exist hardware JVM's!
    If you want to build a Java OS I think you're better off if you steal/borrow a kernel, for example Linux, and then build the higher OS functions in Java. Java isn't that well suited for low-level systems programming.

  • Any alternate function for FLD

    Hi All
    Is there any alternate function for FLD in NW7.5.
    I can't use FLD in NW.
    In one my script logic i need to get value from property and multiply with that account.
    EX:
    Account                                     Tax
    A    -
                   50%
    B      -
                  60%
    Any idea

    Hi,
    You can try using something like:
    <member ID>.<property name>
    Hope this helps.

  • Any Program to connect JAVA for DB from SAP

    Any Program to connect JAVA for DB from SAP,
    Rather than JCO Is there any other option,
    Please tell that option ,
    and how to do that,
    thank you,
    Regards.
    Jagrut BharatKumar Shukla

    Hello Al Mamun,
    SM59 is for RFC (remote function call).
    If you are looking for ODBC-like connection, would you consider Tcode DBCO, then use native ABAP code to connect to the remote SQL server?
    Best regards,
    Victor

Maybe you are looking for

  • Just loading Windows XP Pro Sp2 on Sata Raid 0 for first time. Stuck at F6

    Hi Guys: Read Sake's guide and subsequent postings. A bit stuck here, created the diskette with Hyperion64 drivers but not sure if this applys to regular Windows XP Pro or just to Windows XP64. A little confused. I also just copied the TXTWETUP.OEM f

  • Working with Java for beginners!

    To those who might still be interested in knowing how my 'first encounter with Java ended' {color:#0000ff}*I downloaded JDK 5.0 update 12.* Link: java.sun.com/javase/downloads/index_jdk5.jsp{color} and it works I was able to compile and run my first

  • How to check who modified a file

    Hi is there any way to check who modified a file on Windows Server 2008? I tried to display the file's attribute on windows explorer, but it doesn't show anything. Thanks

  • Increment CHAR variable

    Hi, I'm a beginner in ABAP and I have a question.. Is possible increment a char variable? for example I have varible: R001 and i want increment this variable till RZZZ.. There is some solution or some function that i could use to do this? Thanks so m

  • IMac OSX 10.6.8 will not link with my iPhone 4s.

    I connect the phone to my computer via USB and nothing happens. This is obviously disappointing. Can somebody please help me out? Trey