Encoding of Arabic text

Hi All,
i have a oracle database 9.2, it contains a table with arabic text of datatype char. as im new to oracle im not able to view the data in arabic format, im getting the output in symbols. so how to i view the data in arabic format from my table.
Thanks
Fairozkhan

I'm not sure that WE8MSWIN1252 contains any arabic characters seeing as the WE stands for Western European and the MSWIN1252 presumably for the Windows 1252 codepage.
In which case, what you are storing is not genuine arabic characters. Therefore it's likely that you can only view this through the application as it only makes sense to the application. Outside of the application, it's effectively gobbledygook.
I have come across such a situation previously where an application did something similarly crazy and to translate the garbage that it inserted into the database (via a reverse process of the following) the application a) took the UTF8 stored converted it to Unicode, applied Windows codepage 1252 to the byte stream of that and then to the the result of that applied codepage 1251. This was the cyrillic alphabet ... for the application at least. To everyone else, garbage
If you had genuine arabic character representation - which it sounds like you don't - then you'd need a client that supported that characterset and then have the relevant local settings applied.

Similar Messages

  • Displaying arabic text in jsp page

    Hi,
    Iam displaying some arabic values which will come from server in my jsp page.
    but the problem when display the values its showing rubbish like �������������
    when i select the view-->encoding from browser its showing arabic values..
    i set <meta http-equiv="Content-Type" content="text/html; charset=windows-1256"> like this in my jsp page..
    When i put the arabic text in normal .html page its working fine its displaying fine..
    when iam calling jsp page iam getting above problem..
    do i need to make any setting in server..iam using j2ee refrence server..
    Regards,

    use UTF-8 for character encoding then arabic text will display

  • Arabic Text problem in Excel

    Hi All,
    I am downloading my data using GUI_DOWNLOAD FM into Excel ,
    Here the issue is in excel the Arabic text is displayed as # ,
    I have gone through the scn and worked on some suggestions given like to add code page
    tab delimiter etc... but could get the desired output..
    can anyone suggest me the way to get the Arabic text correct in Excel.
    Thanks,
    Pavan

    Hi Pavan,
    Could you please describe shortly about how ,where is the data being retrieved to the program?
    whether you are performing any conversions?
    what kind of encoding used ?
    it would help me to understand and give you the useful inputs to achieve the desired output
    Regards,
    Prakash

  • Problem displaying arabic text in xml document

    Hi ..
    I have an xml type coloum where i store an xml document that contains some arabic texts with UTF-8 encoding, m using an xsl file to transform the xml and display it in an html page.
    At the database level when i select the xml col to dispaly the document, arabic texts are displayed correctly (DB is set to 1256), however when trying to display the text on html it gives me junk values. XSL sheet's encoding is set to windows-1256. M using Jdeveloper 1012 and BC4J frame work in my application.
    How do i solve this problem.?
    P.S.it wud b great if u support ur answer with examples .
    Regards

    You have to do it yourself -  I don't have a ready solution. Just look into documentation how StyleSheets are used and see what properties work best for you:
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/text/TextField.html
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/text/StyleSheet.html
    Also, with embedded fonts you need to play with TextFormat settings and AntiAliasType
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/text/AntiAliasType.html
    In addition, on my machine even if I don't emebed fonts - Arabic works in Arial, TImes and others.

  • Arabic text in excel attachment in mail

    my requirement is to mail the excel file so I used the internal table
    to create an excel and used FM SO_NEW_DOCUMENT_ATT_SEND_API1, While the
    excel file is created but however the arabic is not downloaded
    correctly. It is downloaded with junk characters.
    CONSTANTS:y_k_con_tab TYPE c VALUE
    cl_abap_char_utilities=>horizontal_tab,
    y_k_con_cret TYPE c VALUE
    cl_abap_char_utilities=>cr_lf.
    LOOP AT lt_output INTO ls_output.
    MOVE ls_output-zdate_changed TO lv_datechanged.
    MOVE ls_output-zdate_created TO lv_datecreated.
    CONCATENATE ''''
    lv_datechanged
    INTO lv_datechanged.
    CONCATENATE ''''
    lv_datecreated
    INTO lv_datecreated.
    *Concatenate text fields to send the email in the r=uired format.
    CONCATENATE ls_output-zexcess
    ls_output-zbranch
    ls_output-znotes
    ls_output-zstatus
    lv_datechanged
    ls_output-zdate_changed
    ls_output-zemp_changed
    ls_output-zinitial_status
    lv_datecreated
    ls_output-zdate_created
    ls_output-zemp_created
    ls_output-zproduct_name
    ls_output-zministry_name
    ls_output-zentity_name
    ls_output-zposting_date
    ls_output-zservice_id
    INTO y_wa_htop_new SEPARATED BY y_k_con_tab .
    CONCATENATE y_k_con_cret
    y_wa_htop_new
    INTO y_wa_htop_new .
    APPEND y_wa_htop_new TO y_i_htop_new.
    CLEAR: y_wa_htop_new.
    ENDLOOP.
    *ENDLOOP.
    i_attachment] = y_i_htop_new[.
    SUBJECT OF THE MAIL.
    w_document_data-obj_name = 'MAIL_TO_HEAD'.
    w_document_data-obj_descr = text-001.
    BODY OF THE MAIL
    w_body_msg = text-002.
    APPEND w_body_msg TO i_body_msg.
    CLEAR w_body_msg.
    w_body_msg = space.
    APPEND w_body_msg TO i_body_msg.
    CLEAR w_body_msg.
    w_body_msg = text-003.
    APPEND w_body_msg TO i_body_msg.
    CLEAR w_body_msg.
    w_body_msg = space.
    APPEND w_body_msg TO i_body_msg.
    CLEAR w_body_msg.
    w_body_msg = text-004.
    APPEND w_body_msg TO i_body_msg.
    CLEAR w_body_msg.
    w_body_msg = space.
    APPEND w_body_msg TO i_body_msg.
    CLEAR w_body_msg.
    w_body_msg = text-005.
    APPEND w_body_msg TO i_body_msg.
    CLEAR w_body_msg.
    WRITE PACKING LIST FOR BODY
    DESCRIBE TABLE i_body_msg LINES g_tab_lines.
    *describe table i_attachment lines g_tab_lines.
    w_packing_list-head_start = 1.
    w_packing_list-head_num = 0.
    w_packing_list-body_start = 1.
    w_packing_list-body_num = g_tab_lines.
    w_packing_list-doc_type = 'RAW'.
    APPEND w_packing_list TO i_packing_list.
    CLEAR w_packing_list.
    WRITE PACKING LIST FOR ATTACHMENT
    w_packing_list-transf_bin = 'X'.
    w_packing_list-head_start = 1.
    w_packing_list-head_num = 1.
    w_packing_list-body_start = 1.
    DESCRIBE TABLE i_attachment LINES w_packing_list-body_num.
    w_packing_list-doc_type = 'XLS'.
    w_packing_list-obj_descr = 'Service_Details'.
    w_packing_list-obj_name = 'Service_Details'.
    w_packing_list-OBJ_LANGU = 'A'.
    w_packing_list-doc_size = w_packing_list-body_num * 255.
    APPEND w_packing_list TO i_packing_list.
    CLEAR w_packing_list.
    FILL THE DOCUMENT DATA &GET SIZE OF ATTACHMENT
    w_document_data-obj_langu = sy-langu.
    READ TABLE i_attachment INTO w_attachment INDEX g_tab_lines.
    w_document_data-doc_size = ( g_tab_lines - 1 ) * 255 + STRLEN(
    w_attachment ).
    RECEIVERS LIST.
    w_receivers-rec_type = 'U'. "Internet address
    w_receivers-receiver = y_lv_emailid.
    w_receivers-com_type = 'INT'.
    w_receivers-notif_del = 'X'.
    w_receivers-notif_ndel = 'X'.
    APPEND w_receivers TO i_receivers .
    CLEAR:w_receivers.
    SEND MAILS TO RECIPIENTS
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = w_document_data
    put_in_outbox = 'X'
    commit_work = 'X'
    IMPORTING
    sent_to_all = g_sent_to_all
    TABLES
    packing_list = i_packing_list
    contents_bin = i_attachment
    contents_txt = i_body_msg
    receivers = i_receivers
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8.
    IF sy-subrc = 0 .
    *MESSAGE s WITH 'Mail has been Successfully Sent.'.
    ENDIF.
    Kindly suggest how will I get arabic downloaded and sent as attachment
    in email. Can I write a file to application server and send that
    particular file as attachement? Can I use BCS class for mailing excel
    file? Will it support arabic text?

    with Excel it is always a good idea to encode your data in UTF-16 LE.
    to do so, take your internal table in SOLI format and call
    CL_BCS_CONVERT=>TXT_TO_SOLIX
    with iv_codepage = 4103 and iv_add_bom = 'X'.
    you will get a binary table SOLIX as a result and just have to attach it to your message

  • Arabic text displayed incorrectly on sites!

    Arabic text characters are all connected one to another in a word, but FireFox displays the letters right, except they are disconnected and each letter is on its own, making it very difficult if not impossible to read.
    What I used to do in the past is, pages that contain Arabic Text for me such as Facebook, I used to install IETAB2 and set facebook to always open with IETAB and then the text would display correctly.
    The strange thing is, if you use IE, it would display the same garbage isolated Arabic letters, but the IETAB with IE7 emulation works like a charm.
    With that said, recently, FF stopped displaying arabic text correctly even with IETAB2
    But Google Chrome always works like a charm without the need for anything.
    I have tried changing the encoding on the site but that doesn't help
    Can anyone suggest anything please?
    Google Chrome, Correct display of Arabic Text:
    http://img148.imageshack.us/img148/9937/chromefc.png
    FireFox with IETAB or without, same result:
    http://img11.imageshack.us/img11/8855/firefoxlh.png
    Anything other than UTF-8 will just display as jibberish.
    But the problem with UTF-8 is that the Arabic letters are not linked one to the other, each one is seperated, makeing it very difficult to read.
    What's even weirder is, I checked with Chrome, which displays Arabic Text just fine, and it is also using the UTF-8 encoding but it works!? Please help as I don't want to use Chrome :(

    The point is to see if disabling that setting temporarily and selecting some other fonts makes a difference.<br />
    It is possible that the Lucida Grande font that you have isn't working properly.

  • Message Bundle for Arabic Text

    Hi folks,
    I am trying to have a Arabic text in the message bundle properties file, however when i try to copy Arabic text, it shows up as junk characters.
    How do i go about resolving the same.
    Thanks.

    Got the solution,
    I was getting the above problem when i was trying to copy the Arabic text in the notepad; however I opened a plain text document in the eclipse and have copied the arabic code in it, and that worked. However we got to do a little change by modifying the properties of the file to have pointing to UTF-8 encoding.
    Thanks.

  • Arabic text showing garbage in old version report

    I have an Arabic report created in old version of Crystal Report and used in VB 6 application.
    Its working well from the VB 6 application.
    Now I want to make slight changes in report when I open it in any of Crystal Report versions 8.0, 9.0, Visual Studio 2005, Visual Studio 2008 etc. it shows Arabic text as garbage boxes in both data and labels instead of text in Arabic.
    I tried everything to resolve this problem, I tried several different versions of Crystal Report but not solved. I am not sure which version it was originally created but I know about the version of ActiveX controls application is using i.e. 8.0.
    Any clue to solve this problem? Anyone faced similar problem.
    Thank you very much in advance.

    Hi Adil,
    Please try the following:
    This behavior has been resolved in CR 9 as CR 9 supports UNICODE. For versions earlier than CR 9, proceed to the solution provided in this article.
    ====================
    In order to display double-byte characters correctly in the English Build of Crystal Reports, follow these rules:
    · Use an operating system that is able to handle the appropriate language set.
    For example:
    To show Thai characters in the Crystal Reports designer, a Thai operating system must be used.
    · Use an appropriate font for each field.
    For example:
    To show traditional Chinese characters (Big5 encoding) in the Crystal Reports designer, select a font such as Mingliu.
    · If you are using a Japanese database client, ensure the encoding on the client is set to Shift-JIS. Please note that we do not fully support UNICODE.
    NOTE ======
    The English version of Crystal Reports has not been fully tested with non-English characters or on non-English operating systems.
    Crystal Reports is localized into the following languages: Japanese, French, German, Spanish, Italian, and Portuguese. Customers using data stored in these languages are recommended to use these versions of Crystal Reports as they fully support the respective language and operating system.
    ============
    Known limitations of using non-English data with the English build of Crystal Reports are:
    · Exporting to Microsoft Word and Excel 8.0 yields corrupted characters. This is a limitation of the export dlls.
    · Non-English characters within the Crystal Reports formula editor appear corrupted, however, the output of the formula appears correctly when previewing the report.
    · Database field names and table names in non-English characters may appear corrupted in the field explorer or may be unable for selection.
    NOTE:Same steps can be applied for  languages such as the European languages French, German, Italian, Spanish, and Portuguese as well as Greek, Thai, Arabic, Hebrew, and Russian.
    ============
    Hope this helps,
    Shraddha

  • Display Arabic text

    Hello All,
    I have a sample arabic text, which i have stored into file. I want to read that file and display the arabic text on the screen.
    If anyone has any idea please give me some inputs.
    Thanks & Regards,
    Faiz.

    Hi,
    I have wrote some code for reading the text from file, and have also hardcoded some arabic text in TextField which shows up properly. But after reading the arabic text from file and setting the text to TextField the text is not shown properly its like ??????.
    Please see the source code below.
    * ReadText.java
    * Created on December 2, 2009, 8:42 AM
    package arabicsample;
    import java.awt.Color;
    import java.awt.ComponentOrientation;
    import java.awt.Font;
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.UnsupportedEncodingException;
    import java.nio.charset.Charset;
    * @author  faiz.chachiya
    public class ReadText extends javax.swing.JFrame {
        /** Creates new form ReadText */
        public ReadText() {
            initComponents();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {
            jLabel1 = new javax.swing.JLabel();
            txtArabic = new javax.swing.JTextField();
            jButton1 = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            jLabel1.setText("Text");
            txtArabic.setFont(new java.awt.Font("Lucida Sans", 0, 10));
            txtArabic.setText("&#1603;&#1610;&#1601; &#1581;&#1575;&#1604;&#1603; ");
            jButton1.setText("Read");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createSequentialGroup()
                            .addContainerGap()
                            .addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 32, javax.swing.GroupLayout.PREFERRED_SIZE)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(txtArabic, javax.swing.GroupLayout.PREFERRED_SIZE, 299, javax.swing.GroupLayout.PREFERRED_SIZE))
                        .addGroup(layout.createSequentialGroup()
                            .addGap(162, 162, 162)
                            .addComponent(jButton1)))
                    .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(txtArabic, javax.swing.GroupLayout.PREFERRED_SIZE, 22, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                    .addComponent(jButton1, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(22, Short.MAX_VALUE))
            pack();
        }// </editor-fold>
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
            // TODO add your handling code here:
            readTextFromFile();
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new ReadText().setVisible(true);
        public void readTextFromFile() {
            try {
                final File file = new File(System.getProperty("user.dir") + "/conf/arabictext.txt");
                final BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(file), Charset.forName("utf-8")));
                final String str = br.readLine();
    //Charset.forName("utf-8").newEncoder().encode(in)
                System.out.println("File text : " + str);
                System.out.println("            " + txtArabic.getText());
                System.out.println("Reading Process Completly Successfully.");
                Font font = txtArabic.getFont();
                System.out.println("GetFont " + font);
                txtArabic.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
                txtArabic.setBackground(Color.ORANGE);
                txtArabic.setText(str);
                final String UTF8Str = new String(str.getBytes());
                System.out.println(UTF8Str);
            } catch (UnsupportedEncodingException ue) {
                System.out.println("Not supported : ");
            } catch (IOException e) {
                System.out.println(e.getMessage());
        // Variables declaration - do not modify
        private javax.swing.JButton jButton1;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JTextField txtArabic;
        // End of variables declaration
    }Please see the UTF-8 text file below. When i open the file, i see the text something similar in below.
    ??? ????One from UTF file from wordpad.
    &#1603;&#1610;&#1601; &#1581;&#1575;&#1604;&#1603;So can you please correct where i am going wrong.
    Thanks and Regards,
    Faiz.

  • Printing Arabic text in Oracle Application(R12i) using XML Publisher.

    Hi,
    I am using Oracle Application R12i version with Oracle database as 10g, base language as English and installed language as Arabic.
    I am trying to print the data which is there in English/Arabic in Oracle Application(using XML Publisher).
    I've created a rdf using Report Builder 10g and registered as concurrent program (XML as Output format). There after i executed the concurrent program and generated the XML file.
    Based on the XML file, i created a rtf file using XML Desktop(in Ms word) and register the same rtf file in XML Publisher Administrator for creating the XML definition and Template and Output as PDF.
    After creating a XML template, when i executed the Concurrent program, english text is shown in english but arabic text is shown some ascii characters like Question Mark(up side down).
    Could anyone please let us know the steps for doing the same or plz let us know are we missing any step.
    Quiet urgent.
    You could also reply to [email protected]
    Thanks in advance
    Your help will be appreciated.
    Edited by: user10772035 on Aug 20, 2009 10:23 PM

    Same Problem here, if you are able to solve it, please also help me.

  • Arabic text in my web application using iText..

    Hey Guys,
    I'm using the iText library to produce PDF reports in my web application; platform (ADF 11g and Weblogic 10g). I'm having a problem with rendering arabic text on the page, is there a way to print arabic text outside of a PdfPTable ?? I need to print a simple text like the title of the report , the subtitle and so on... please guys I need an answer...
    Thanks in advance.
    AccadSoft

    gimbal2 wrote:
    sabre150 wrote:
    AccadSoft wrote:
    please guys I need an answer.To get answers about using iText I use "iText In Action, 2nd edition" by the prime author of iText - Bruno Lowagie.Classic way to make money - make the API free and sell the documentation. Also an honorable way to make money IMO.I was using iText before 2004 when the first edition of the book came out ( 4 years or so after the library was first introduced) and it was hard work. PDF is a very complex document format and just using the Javadoc does not really get you anywhere. There are many 'gotchas' in iText and most of the iText tutorials cover only the very basics and pretty much none of the 'gochas'. The book starts off with very simple examples that could be constructed from the Javadoc but then it does move on to the more complex issues. Worth every penny.

  • How to print Arabic text along with the English in smartform ( ECC6 version

    Hi All,
    our is ECC6 version, Non unicode, ABAP stack ( not dual stack )
    is it possible to print in Arabic language in the above version ?
    if yes, then please let me know how to print Arabic text and English text in the same smartfrom.
    i tried in the following procedures :
    1) i created standard text (SO10) in arabic language.
    i called in the smartform ( include text - i )
    langage AR
    but system throws error message saying, required language is not installed.
    2) if i use READ_TEXT function module.
    text getting printed in diff format but not in arabic.
    waiting for your replies..

    ECC6 and Non-Unicode? I think you'll need multiple code pages, I doubt there's a mixed Arabic/Latin1 available. And I don't think SAP supports new MDMP systems any more. If you need to support multiple languages you really need to go Unicode. It's probably easier to do the Unicode conversion than to try to support multiple code pages and you have to make the switch eventually.

  • How to print arabic text as water mark in XML Publisher

    Hi All,
    I am working with Arabic reports,which is conversion of RDF Reports to XML Publisher Reports.
    I Developed RTF template,here problem is how  can i use Arabic text as a water mark in template.
    Please provide me suggestions.
    Thanks in advance
    Regards
    Amar

    do you have arabic text in your report ? is it correct ?
    How To Setup XML Publisher To Show Arabic Characters (Doc ID 556995.1)
    so you can try
    ARABIC Font Shows As ?? Question Marks In Postscript Reports (Doc ID 981174.1)
    you can also post SR

  • Support for Arabic text and Direction:rtl

    I am using HTML/CSS/Javascript to develop my application.
    I have been trying to get direction:rtl (right to left) to
    work to display Arabic text in the right form with no luck.
    Does Adobe AIR lack the support for this feature ? If so,
    what are the alternatives to Adobe AIR ??
    I hope one of the Adobe employees reply to this....

    > Any update on the Arabic support in Air ??
    http://labs.adobe.com/technologies/textlayout/
    "Bidirectional text, vertical text and over 30 writing
    systems including Arabic, Hebrew, Chinese, Japanese, Korean, Thai,
    Lao, the major writing systems of India, and others.
    Selection, editing and flowing text across multiple columns
    and linked containers, and around inline images"

  • How can I fix my Safary navigator (and other aplications) when I'm receiving the arab text code?

    Well, I'm receving constantely the arab text code by mail or on Twitter app (by IOS)  and all aplications crashes.
    Sometimes I'm surfing and the god dammit code is in the homepage source and crash the aplications. The same thing at IOS.
    I'm without ideas about guys.
    Any help?

    Mail unexpectedly quits when viewing certain messages

Maybe you are looking for

  • Find and Replace text in files

    Is there a function that will find and replace a word in a few text files at once. E.G replace the word database1 with database2 without going into each script individually and doing and search and replace.

  • Lookup in XI

    Hi All, Pls advice. I read the following blog on Lookup by Siva and it very well suits my lookup requirement. /people/siva.maranani/blog/2005/08/23/lookup146s-in-xi-made-simpler Siva has shown a Communication channel created for Lookup. In my scenari

  • Download page does not work in IE v 8

    I was trying to download the service pack and the link would not appear in my browser.  All I could see was the information icon.  This was with IE 8.  I then tried with Google Chrome,and it loads just fine.

  • Can we display GUI windows/dialog boxes from two asynchronus threads?

    Hi All, I'm facing a problem with asynchronous threads. I've a client-server application where client is a Java application and server is a C++ application running on UNIX m/c. The C++ server is implemented equivalent to a HTTP server which handles t

  • Want to Avoid Loop for all entries with select query !!

    Hi Guru's  ! This is my following code . I want to avoid loop  to improve the performance of program. data: lt_cuhd type HASHED TABLE OF /sapsll/cuhd WITH UNIQUE key guid_cuhd,       ls_cuhd type /sapsll/cuhd. data: lt_comments type STANDARD TABLE OF