CONVT_CODEPAGE codepage '4110' to codepage '4103'

Hi Experts,
I'm really new with ABAP and I'm trying to ivestigate as to why a job got cancelled previously. As per DUMP information:
Short text                                                                               
A character set conversion is not possible.
  What happened?                                                                               
At the conversion of a text from codepage '4110' to codepage '4103':                                    
    - a character was found that cannot be displayed in one of the two
    codepages;
    - or it was detected that this conversion is not supported                                                          
    The running ABAP program 'RFEKA400' had to be terminated as the conversion
    would have produced incorrect data.
The exact line of code where its having trouble with is inside UPLOAD_FROM_UNIX of the program RFEKA400:
READ DATASET AUSZUGFILE INTO SWIFT-ZEILE.
My custome proogram's code is as follows:
     OPEN DATASET file1 FOR INPUT IN TEXT MODE ENCODING
     NON-UNICODE MESSAGE mess IGNORING CONVERSION ERRORS .
     OPEN DATASET file2 FOR OUTPUT IN TEXT MODE ENCODING
     NON-UNICODE MESSAGE mess IGNORING CONVERSION ERRORS .
I'm not really sure what to do next. I checked if the standard program got the OSS notes release. I think it did for I saw the Notes #. I already read some of the responses from around here, some have the same issue but it did not got a reply.
Please help me, your response would be much appreciated.
Thank you in advance!

Thank you for your prompt response Anup. I'll try to use that, as soon as I can, I still need apporval to make changes.
Just an additional thought and please correct me if I'm wrong.
I just noticed that RFEKA400 open datasets are as follows:
OPEN DATASET AUSZUGFILE IN TEXT MODE encoding default FOR INPUT.
IF l_upload_codepage IS INITIAL.                                "n928965
    OPEN DATASET AUSZUGFILE IN TEXT MODE encoding default FOR INPUT.   "UC
  ELSE.                                                           "n928965
    OPEN DATASET AUSZUGFILE IN LEGACY TEXT MODE CODE PAGE         "n928965
      l_upload_codepage FOR INPUT.                                "n928965
  ENDIF.                                                          "n928965
I'm not really sure if I'm making any sense. Do you think using DEFAULT encoding will work? As far as I know if you use the DEFAULT, encoding will depend on what is the preset encoding of the system. Is that right? Maybe matching up the standard program's exact way of OPENING DATASET with my custom program's way might help. I still have to find out. Any thought on this?

Similar Messages

  • Problem conversion of a text from codepage '4110' to codepage '4103'

    Hi!
    I upgrade my SAP version ECC 5.0 no Unicode to ECC 6.0 Unicode .
    Now, when I execute some reports I get a dump  because when I open my file with 'OPEN DATASET'  and then READ and TRANSFER to another file the result is :
    At the conversion of a text from codepage '4110' to codepage '4103':
    - a character was found that cannot be displayed in one of the two
    codepages;
    - or it was detected that this conversion is not supported.
    This dump is got when the file contain special characters like 'Á,Ñ,...)
    I have searched some information and the source error I think is about UTF-16 to UTF-8 conversion. I look for some SAP notes but I don't clear what I have to do.
    Thanks in advace.
    Ana

    Hi Ana,
    please check the code page of the uploaded file. In your scenario the assumption is that it is based on UTF-8.
    If it is based on Non-Unicode, you need to use OPEN DATASET .... ENCODING NON-UNICODE ...
    Best regards,
    Nils Buerckel

  • Explain why READ DATASET conversion from codepage '4110' to codepage '4102'

    I am unfamiliar with unicode but I am trying to solve a problem in an ABAP program.
    Our code is
    OPEN DATA p_in FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    DO.
      READ DATASET p_in INTO i_tab.
    The program gives me the error  'At the conversion of a text from codepage '4110' to codepage '4102'.  The program abends on a line in the file that contains the special character '#'.
    Does this mean that the file I am reading is in codepage '4110' and the internal format of i_tab is codepage '4102'?  If so, how do the codepages get assigned to unix files and internal structures   How can I make the both codepage '4110' or codepage '4102'?  Also, what is the difference between these two codepages?
    thanks.
    Ryan
    My

    Hi,
    Use
    open dataset DSN in text mode for input encoding utf-8.

  • CONVT_CODEPAGE conversion of a text from codepage '4110' to codepage '4103'

    Hi,
    I am receving the runtime error when i am trying to read the data from the application server(the data is loaded in the application server from the FTP server). The issue is with the character ' ¦ ' . Looks like the system is not able to convert this character from one code page to another.
    I am getting this issue in both Development and in Quality Systems. Both systems are unicode systems.
    I have gone through the existing threads on it and found 2 solutions. One is adding UTF-8 in the Open Dataset statement and other is adding IGNORING CONVERSION ERRORS. I tried both these options and the issue still exists.
    Runtime error text:
    Characters are always displayed in only a certain codepage. Many
    codepages only define a limited set of characters. If a text from a
    codepage should be converted into another codepage, and if this text
    contains characters that are not defined in one of the two codepages, a
    conversion error occurs.
    Moreover, a conversion error can occur if one of the needed codepages
    '4110' or '4103' is not known to the system.
    Regards,
    Karthick.

    Let's first name the code pages you've given: 4110 is UTF-8 and 4103 is UTF-16LE. A conversion between Unicode code pages should not be an issue, but converting from a Unicode page to a non-Unicode page obviously is likely to face conversion issues due to missing characters in the non-Unicode target code page.
    So let's check the real problem: It sounds like you're reading a file that's not in a UTF-8 encoding, yet you claim it is. I.e. you mention the character ¦ is causing problems. Assuming that you actually copied the character you can already see that it's a bit unusual, i.e. it's not the normal pipe symbol | (which is closed, whereas your character is divided). Now taking the hex code of the character off your posting I get a A6 (decimal 166, binary 10100110). Now in UTF-8 only ASCII (i.e. 7 bit values) are 1 byte characters (i.e. one character equals to one byte).
    Now if you check the UTF-8 table you'll see that your pipe symbol with hex value A6 is a continuation character, i.e. it has to be part of a longer multibyte sequence. So if your file errors out on this specific character it's probably simply due to the fact that you don't have a UTF-8 file, but some other encoding (e.g. often it's latin1). So your first step should be to figure out what encoding your file is that you're reading. Once you know it, conversion from that code page to UTF-8 or one of the UTF-16 flavors is no challenge.
    By the way, one easy check for invalid UTF-8 byte sequences is to load the file into a web browser. E.g. in your case you could try copying the following data into a file and opening it in your favorite web browser (load will fail).
    <?xml version="1.0" encoding="UTF-8"?>
    <data>¦</data>
    After testing that, change the encoding from UTF-8 to latin1 and you'll see that you can load the page into the web browser...
    Cheers, harald

  • Error: At the conversion of a text from codepage '4110' to codepage '4102':

    I am trying to open an ANSI file from Application server.
    I am using "open dataset F_FILENAME for input in text mode encoding default."
    For some ANSI files it works fine, and for some it fails. I want to open this file and validate it , post it back on to application server
    with its original format.
    How do I achieve this? THanks,
    Below is the system config.
    Database codepage                         Unicode
    Current Codepage of Appl. Server    4102
    Codepage of Front End               4110  UTF-8 GUI

    Hi Shabbir,
    The statement "open dataset F_FILENAME for input in text mode encoding default" would open the file with the default codepage of your system which is 4102 for your system.
    Due to which the SAP system implicitly coverts the characters in the file to 4102 codepage. You might get "CONVT_CODEPAGE" error if system is not able to convert some characters in the file.
    You should use
    Open dataset F_FILENAME for input in legacy text mode code page 1100
    Check the following link for syntax.
    [open dataset in SAP|http://help.sap.com/saphelp_nw04/helpdata/en/79/c554a0b3dc11d5993800508b6b8b11/frameset.htm]
    You can also use " IGNORING CONVERSION ERRORS " to avoid "CONVT_CODEPAGE" errors..
    Cheers
    Ajay

  • Codepage 4110 / 1100 conversion error

    Hi there,
    I am trying to connect to my MDM Repository using the ABAP API.
    The connection to the server works, but as soon as I want to connect to the repository, I get an error saying there is a converion error between codepages 4110 and 1100. Has anyone come across this problem before?
    MDM 5.5 SP05 (Patch Level 00)
    SAP kernel 700 created on NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10                 
    Database version. SQL_Server_8.00
    Patch level. 109  
    Thanks and best regards,
    Sabine

    Hi there,
    I am trying to connect to my MDM Repository using the ABAP API.
    The connection to the server works, but as soon as I want to connect to the repository, I get an error saying there is a converion error between codepages 4110 and 1100. Has anyone come across this problem before?
    MDM 5.5 SP05 (Patch Level 00)
    SAP kernel 700 created on NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10                 
    Database version. SQL_Server_8.00
    Patch level. 109  
    Thanks and best regards,
    Sabine

  • Error "conversion of a text from codepage '4102' to codepage '1100' "

    Hello,
    If some could help me with this error while tryning to transfer a structure containning the character "u20AC" to a file:
    OPEN DATASET p_fic FOR OUTPUT
                     IN text MODE ENCODING non-unicode.
    transfer wt_textes to p_fic.
    close dataset p_fic.
    wt_textes contains the a string with the character "u20AC".
    This code dumps:
    At the conversion of a text from codepage '4102' to codepage '1100':
    - a character was found that cannot be displayed in one of the two
    codepages;
    - or it was detected that this conversion is not supported
    The running ABAP program 'ZREPRISE_TEXTES' had to be terminated as the
      conversion
    would have produced incorrect data.
    The number of characters that could not be displayed (and therefore not
    be converted), is 1. If this number is 0, the second error case, as
    mentioned above, has occurred.
    thanks in advance

    Hi,
    the problem is that code page 1100 (ISO-8859-1) does not support the u20AC-symbol. However the NON-UNICODE mode usually takes this code page if you logon with EN or DE (or any other Western European language).
    As alternative, you could use OPEN DATASET ... LEGACY TEXT MODE... CODE PAGE 1160 ...
    Code Page 1160 is the SAP number for MS 1252, which includes the u20AC-symbol.
    The other alternative would be to download the file in UTF8 mode and then use the tools described in SAP notes 747615 or 752859  to convert the file content from code page 4110 to 1160 (code page 4110 is the SAP number for UTF-8).
    Best regards,
    Nils Buerckel

  • Asp CODEPAGE="1252" or CODEPAGE="65001"

    Hi yea,
    I see when |I creaet a new page using cs3 I get the head
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
    where as when using dw8 I used to get
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
    I am confused as I have set the preferences the same wht I
    beleve I had dw8
    set at.
    my doc's are also set as
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    http://www.w3.org/TR/html4/loose.dtd">
    why is the code page set different, and will it make a
    different.
    regards
    Kenny

    Dave
    Thank you,
    I was very confused now you made it all more clear.
    regards
    kenny
    "David Powers" <[email protected]> wrote in message
    news:f6l7at$51u$[email protected]..
    > Twocans wrote:
    >> When I used dw8 the default was 1252,
    >
    > In DW8, the default encoding was Western European
    (iso-8859-1), which is
    > the equivalent of ASP codepage 1252. In CS3, the default
    encoding is
    > UTF-8, which is the equivalent of ASP codepage 65001.
    >
    >> should I go back and change all my pages to 65001
    now i am using cs3,
    >> should it make a difference to what i have created
    so far.
    >
    > The file format of a Web page must be the same as the
    @CodePage used in
    > the page.
    >
    >
    http://www.asp-dev.com/main.asp?page=96
    >
    > If you are creating web pages that use the CS3 default
    encoding UTF-8, you
    > must use codepage 65001. If you switch back to the DW8
    default encoding,
    > both the web page encoding and the codepage must match.
    >
    > The choice is yours. UTF-8 supports most written
    languages (including
    > English), so is a good choice. However, it's not a good
    idea to mix
    > encodings on the same website, particularly if you're
    working with a
    > database. If you're working with an existing database
    that was populated
    > using codepage 1252, you should stick with that encoding
    (and make sure
    > that the web page encoding is iso-8859-1. If you're
    working with a new
    > site and new database, go with UTF-8 and 65001.
    >
    > --
    > David Powers, Adobe Community Expert
    > Author, "Foundation PHP for Dreamweaver 8" (friends of
    ED)
    > Author, "PHP Solutions" (friends of ED)
    >
    http://foundationphp.com/

  • Error converting XSTRING to STRING (unicode, codepage)

    Hi all,
    I have a problem converting data from an external file into SAP.
    The file is uploaded via an application created in web dynpro, where I use the upload functionality. This returns the file in the XSTRING format, and  then use the following to convert (where l_xstring is the file and l_string is how I want the file):
      l_string TYPE string,
      l_xstring TYPE xstring,
      convt = cl_abap_conv_in_ce=>create( input = l_xstring ).
      convt->read( IMPORTING data = l_string ).
    This worked perfectly - until I recieved a file containing russian characters
    The SAP system (BI) is in Unicode, so this should be ok.
    I get a:
    CONVT_CODEPAGE
    CX_SY_CONVERSION_CODEPAGE
    Error, when trying to run it.
    Also the following migth be helpful:
    At the conversion of a text from codepage '4110' to codepage '4102':
    - a character was found that cannot be displayed in one of the two
    codepages;
    - or it was detected that this conversion is not supported
    The running ABAP program 'CL_ABAP_CONV_IN_CE============CP' had to be
    terminated as the conversion
    would have produced incorrect data.
    The number of characters that could not be displayed (and therefore not
    be converted), is 18141. If this number is 0, the second error case, as
    mentioned above, has occurred.
    I have tried setting the codepage parameter of the READ method, but to no success.
    Anyone ??
    -Tonni

    Friend,
    Call the FM like below....
    CALL FUNCTION 'ECATT_CONV_XSTRING_TO_STRING'
      EXPORTING
        IM_XSTRING        = x
       IM_ENCODING       = 'UTF-8'
    IMPORTING
       EX_STRING         = x.

  • Unicode issue: Codepage Error

    Hello,
    I get the following codepage error on executing a program :
    A character set conversion is not possible.
    At the conversion of a text from codepage '4110' to codepage '4102':
    - a character was found that cannot be displayed in one of the two
    codepages;
    - or it was detected that this conversion is not supported.
    Please suggest a solution for this.
    I Codepage '4110' was hardcoded in the prg. I called FM 'NLS_GET_FRONTEND_CP' and used legacy text mode with dataset stmt.
    => OPEN DATASET w_outfile FOR INPUT IN legacy Text Mode code page l_codepage.
    I dont get the dump now but get some junk characters.
    Please help with this.

    Please check the following link.
    short dump like  A character set conversion is not possible.

  • CONVT_CODEPAGE  error in DATASET Statement

    Hi All,
    I have used the statement in my custom program scheduled as background
    OPEN DATASET strtemp FOR INPUT ENCODING DEFAULT IN TEXT MODE.
    It resulted in the cancellation of the job
    The rror is ABAP/4 processor: CONVT_CODEPAGE
    Detailed error description:
    Runtime Errors         CONVT_CODEPAGE
    Except.                CX_SY_CONVERSION_CODEPAGE
    Date and Time          11.11.2010 18:05:18
    Short text
         A character set conversion is not possible.
    What happened?
         At the conversion of a text from codepage '4110' to codepage '4103':
         - a character was found that cannot be displayed in one of the two
         codepages;
         - or it was detected that this conversion is not supported
         The running ABAP program 'ZJSHE000' had to be terminated as the conversion
         would have produced incorrect data.
         The number of characters that could not be displayed (and therefore not
         be converted), is 7. If this number is 0, the second error case, as
         mentioned above, has occurred.
    Please help to resolve the issue. The file comes from an EDI system and places in App server.
    The SAP system is unicode enabled.Why this error and how can we reolve this.
    Regards.

    maybe you should use other parameter when doing the open dataset
    instead of OPEN DATASET filename FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    try:
    OPEN DATASET filename FOR INPUT
        IN legacy TEXT MODE
        code page codepage.
    have you searched OSS with the keywords supplied in the note?

  • Short dump CONVT_CODEPAGE in transaction I18N

    Hi,
    I'm trying to install the french language into a Solution Manage 4.0 system.
    SQL Server 2005 database + Windows 2003 X64
    When I run I18N > I18N Menu > I18N Customizing > I18N System Configuration in order to activate french I have  a dump (more details bellow).
    Same error when I try to run report RSCPINST.
    I'm running out of idea, I'm unable to find a way to solve this issue, anybody can help me ?
    Thanks in advance,
    V.Ch.
    Short dump long text :
    Runtime Errors         CONVT_CODEPAGE
    Except.                CX_SY_CONVERSION_CODEPAGE
    Date and Time          21.01.2008 22:02:16
    Short text
    A character set conversion is not possible.
    What happened?
    At the conversion of a text from codepage '4110' to codepage '4103':
    - a character was found that cannot be displayed in one of the two
    codepages;
    - or it was detected that this conversion is not supported
    The running ABAP program 'SAPLSCP2' had to be terminated as the conversion
    would have produced incorrect data.
    The number of characters that could not be displayed (and therefore not
    be converted), is 1. If this number is 0, the second error case, as
    mentioned above, has occurred.
    Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_CONVERSION_CODEPAGE', was not
    caught in
    procedure "CHECK_PROFILE" "(FORM)", nor was it propagated by a RAISING clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    Characters are always displayed in only a certain codepage. Many
    codepages only define a limited set of characters. If a text from a
    codepage should be converted into another codepage, and if this text
    contains characters that are not defined in one of the two codepages, a
    conversion error occurs.
    Moreover, a conversion error can occur if one of the needed codepages
    '4110' or '4103' is not known to the system.
    If the conversion error occurred at read or write of  screen, the file
    name was 'G:\usr\sap\L1D\SYS\profile\DEFAULT.PFL'. (further information about
    the file: "X 2673")
    Missing RAISING Clause in Interface
    Program                                 SAPLSCP2
    Include                                 LSCP2U23
    Row                                     103
    Module type                             (FORM)
    Module Name                             CHECK_PROFILE
    Trigger Location of Exception
    Program                                 SAPLSCP2
    Include                                 LSCP2U23
    Row                                     142
    Module type                             (FORM)
    Module Name                             CHECK_PROFILE
    Source Code Extract
    Line
    SourceCde
    112
    fname = a_profilefilename.
    113
    parname = a_parname.
    114
    115
    open dataset fname for input in text mode encoding default.
    116
    do.
    117
    read dataset fname into rec1.
    118
    if sy-subrc <> 0.
    119
    if sy-subrc = 8.
    120
    rec3 = 'OpenErr'.
    121
    exit.
    122
    elseif sy-subrc = 4.
    123
    rec3 = 'NotIn'.
    124
    exit.
    125
    else.
    126
    rec3 = 'rcNot0.'.
    127
    exit.
    128
    endif.
    129
    else.
    130
    if rec1 np '##*' and
    131
    rec1 cs parname.
    132
    rec3 = rec1.
    133
    exit.
    134
    endif.
    135
    endif.
    136
    enddo.
    137
    close dataset fname.
    138
    139
    fname = a_defaultfilename.
    140
    open dataset fname for input in text mode encoding default.
    141
    do.
    >>>>>
    read dataset fname into rec1.
    143
    if sy-subrc <> 0.
    144
    if sy-subrc = 8.
    145
    rec2 = 'OpenErr'.
    146
    exit.
    147
    elseif sy-subrc = 4.
    148
    rec2 = 'NotIn'.
    149
    exit.
    150
    else.
    151
    rec2 = 'rcNot0.'.
    152
    exit.
    153
    endif.
    154
    else.
    155
    if rec1 np '##*' and
    156
    rec1 cs parname.
    157
    rec2 = rec1.
    158
    exit.
    159
    endif.
    160
    endif.
    161
    enddo.

    Hi,
    Check [this note.|Note 990971 - Error in character conversion:CX_SY_CONVERSION_CODEPAGE dump] This will solve your problem.
    Feel free to revert back.
    --Ragu

  • CONVT_CODEPAGE, CX_SY_CONVERSION_CODEPAGE

    A character set conversion is not possible.
    At the conversion of a text from codepage '4110' to codepage '4102':
    - a character was found that cannot be displayed in one of the two
    codepages;
    - or it was detected that this conversion is not supported
    The running ABAP program 'ZXXXXXXX' had to be terminated as the
      conversion
    would have produced incorrect data.
    The number of characters that could not be displayed (and therefore not
    be converted), is 2. If this number is 0, the second error case, as
    mentioned above, has occurred.

    Hi,
    I have also come across this error when i was trying to upload a cProject form cProject 3.1 to cProject 4.0.
    as mentioned by you, Where do we make these changes and how?
    Can you pleas let me know the steps involved.
    Thanks in advance
    Amit
    [email protected]

  • Error on line read dataset p_zfile into it_int

    hi while executing this below code..
    open dataset p_zfile for input in text mode ENCODING DEFAULT.
        if sy-subrc = 0.
          v_one = 1.
          do.
            v_no = v_no + 1.
         *read dataset pzfile  into it_record*_ this is giving short dump as below
    code to read file
    end do
    short dump
    the following error is being prompted
    CONVT_CODEPAGE
    CX_SY_CONVERSION_CODEPAGE
    A character set conversion is not possible.
    At the conversion of a text from codepage '4110' to codepage '4103':
    - a character was found that cannot be displayed in one of the two
    codepages;
    - or it was detected that this conversion is not supported
    where
    it_record is type infile_struct,
    and infile_struct is as below
    types: begin of infile_struct,
            data(1150)           type c,
           end of infile_struct.
    and p_zfile is used in fm call file_get_nam
    please suggest this code is working fine in 4.6 c not upgraded to SAP ECC 6.0 this error is occuring in the code
    regarda
    arora

    here is code
    open dataset p_infile for input in text mode ENCODING DEFAULT.
    f sy-subrc = 0.
          v_one = 1.
          do.
            v_no = v_no + 1.
            read dataset p_infile into in_record.        if sy-subrc = 0. here dump is occuring at last record i deleted the last record in the file but again the dump comes on last record only when all records are read and finally when the cursor come to read dataset statement last time
              if v_no <> v_one.
                split in_record at v_tab into wa_record-idno
                                              wa_record-stonumber
                                              wa_record-stolineno
                                              wa_record-sched_line
                                              wa_record-pur_group
                                              wa_record-frmplant
                                              wa_record-frmstglocatin
                                              wa_record-toplant
                                              wa_record-tostglocation
                                              wa_record-material
                                              wa_record-matdesc
                                              wa_record-quantity
                                              wa_record-dockdate
                                              wa_record-splinst1
                                              wa_record-splinst2
                                              wa_record-splinst3
                                              wa_record-splinst4
                                              wa_record-delete
                                              wa_record-block.

  • RM06IBI0 Batch-Input record info Unicode

    help me,
    launching the program standards RM06IBI0, I get this error :
    Errore run-time        CONVT_CODEPAGE
    Eccezione              CX_SY_CONVERSION_CODEPAGE
    Data e ora             17.04.2009 10:55:09
    At the conversion of a text from codepage '4110' to codepage '4103':
    - a character was found that cannot be displayed in one of the two
    codepages;
    - or it was detected that this conversion is not supported
    The running ABAP program 'RM06IBI0' had to be terminated as the conversion
    would have produced incorrect data.
    I discovered that
    The problem is with the characters: "°" "ò"
    which are present in the "txt file"
    created for the B.I.
    know a quick solution, thanks.
    Fiorenzo Di Marco

    Hello Fiorenzo,
    Were you able to resolve this issue?
    Could you please share the solution?
    Thanks in advance!
    Regards!
    Emanuel

Maybe you are looking for

  • HP 8500A Plus - Keeps going offline.

    An old problem but I still can't see a realistic solution on the net. Keeps going offline - sometimes in the middle of a print run. Turning Print Spooler off and on always cures it for a short while but this is inconvenient. 'Use Offilne' is NOT tick

  • XML Error after upgardation to OBIEE 11g

    Hi, We upgaraded from 10 g to 11g and we came accross a error in XML geneartion in 11 g env how could we resolve this error? Regards, 981864

  • Parsing XML string with XPath

    Hi,- I am trying to parse an XML string with xpath as follows but I am getting null for getresult. I am getting java.xml.xpath.xpathexpressionexception at line where getresult = xpathexpression.evaluate(isource); is executed. What should I do after x

  • HT1338 safari is quitting unexpectedly. any help?

    Process:         Safari [173] Path:            /Applications/Safari.app/Contents/MacOS/Safari Identifier:      com.apple.Safari Version:         5.0.5 (6533.21.1) Build Info:      WebBrowser-75332101~6 Code Type:       X86-64 (Native) Parent Process:

  • Probelm Addind new Table in Physical Layer, Create Dim in Business Model ..

    I have completed a task for a dash board, that is running sucessfully. Now I added a new table in "physical layer", (file->import->from database), table added successfully Now, I droped this table in "business model", but when I want to create its di