Special character issue/ encoding of characters

Hi All,
My scenario is-
IDoc -> Soap lookup-> soap lookup----> Jdbc
here I am using 3 mappings inside the same operation mapping. I am sending Idoc from ECC and doing a lookup using SOAP twice and updating a table.
now the problem is that when I am sending the Idoc having values some special characters the first mapping executed successfully but the when it is doing the lookup ( first SOAP call) it is failing to return proper and correct values, it is returning the values as  "SAX" and when I checked the soap adapter used for lookup it is in error for SAX parsing  with the below error text-
Invalid byte 1 of 1-byte UTF-8 sequence.
I have tried to use one java mapping to transform the encoding from ISO-8859-1 to UTF-8 and other way around and also even tried using the standard soap adapter module-  XMBWS.XMLEncoding as ISO-8859-1 but did not work.
for e.g -  if IDoc contains character  Ñ in any field it is not calling the SOAP call properly and returning the values as SAX and adapter is erroring out as  mentioned above.
Please advise.
Thanks
Vineet

When you use an UDF and you have programmed a Sax parser, then make sure, that the parser works with the correct encoding. So when the result of the webservice is  ISO-8859-1, then assign this to the parser.
In principle the encoding should be part of XML header. Make sure that the encoding of the response is the same as declared in XML header.

Similar Messages

  • Special character issue while loading data from SAP HR through VDS

    Hello,
    We have a special character issue, while loading data from SAP HR to IdM, using a VDS and following the standard documentation: http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e09fa547-f7c9-2b10-3d9e-da93fd15dca1?quicklink=index&overridelayout=true
    French accent like (é,à,è,ù), are correctly loaded but Turkish special ones (like : Ş, İ, ł ) are transformed into u201C#u201D in Idm.
    The question is : does someone know any special setting to do in the VDS or in IdM for special characters to solve this issue??
    Our SAP HR version is ECC6.0 (ABA/BASIS7.0 SP21, SAP_HR6.0 SP54) and we are using a VDS 7.1 SP5 and SAP NW IdM 7.1 SP5 Patch1 on oracle 10.2.
    Thanks

    We are importing directly to the HR staging area, using the transactions/programs "HRLDAP_MAP", "LDAP" and "/RPLDAP_EXTRACT", then we have a job which extract data from the staging area to a CSV file.
    So before the import, the character appears correctly in SAP HR, but by the time it comes through the VDS to the IDM's temporary table, it becomes "#".
    Yes, our data is coming from a Unicode system.
    So, could it be a java parameter to change / add in the VDS??
    Regards.

  • Special Character Issue in Country Name Côte d'Ivoire encoding ISO-88509-1

    soa suite 10.1.3.4
    I am reading an xml file using file adapter. The file has encoding type ISO-88509-1 and the country name is coming as <country_name>Côte d'Ivoire</country_name>.
    When I see the BPEL instance, this character is converted to "C\234te d'Ivoire" jumbled character. The target endpoints receives the country name in jumbled format only. I can't change the incoming file format. Is there a way I can read it properly and keep the special character as it is during SOA process.
    Any idea how can I progress in this issue?

    Any idea on this ? My soa suite server is on Solaris and the folder where I am reading the file from is on Windows.

  • Special character issue with Resource Object in OIM 11g

    Hello
    While creating Resource Object with special character '/' in OIM 11g, it's not allowing me.
    For ex: Peoplesoft Finance/Reporting
    Do we have any other workaround without changing the Resource Object name??
    Thanks for your help.

    Nothing is there in system configuration related to special character.

  • XML Data from PL/SQL procedure -- special character issue (eBS)

    Hi All,
    I am developing a report, where the XML data is created by a PL/SQL procedure. I chose this approach over a data template, since there is a lot of processing involved in producing the actual data, and it cannot be done by select-statements alone. The report is run as a regular concurrent request.
    So far so good. There is a problem though. Every time the data contains special characters (ä, ö, umlauts), the concurrent request is completed with a warning, the log confirms that "One or more post-processing actions failed.", also there is no output file. The XML structure is valid as such. The report runs smoothly and produces the output when the XML data does not contain special characters.
    I am producing the XML lines by using the standard FND_FILE.PUT_LINE procedure: Fnd_File.put_line(Fnd_File.output, '<?xml version="1.0" encoding="UTF-8"?>'); This seems like a character encoding issue, but declaring the UTF-8 encoding in this way does not solve the problem.
    Any ideas what can be done to fix this? I have been searching Metalink but cannot find an answer. Many thanks for your kind help.
    Best Regards, Matilda

    Hi Rajesh,
    One idea I have, is that it might be possible to modify the PL/SQL code into a "before report" type trigger, attached to a data template. The code would process the data and write the lines into a temporary table, from which the data template could retrieve them in a simple select-query. However, it would be neat to be able to solve this without adding an extra layer of processing, since BI Publisher supposedly supports PL/SQL procedures as the data source.
    The data in this case is all correct, special characters are an intrinsic feature of the Finnish language. :)
    Best Regards, Matilda

  • Special Character Issue in outbound file(Extra length)

    I have a big issue when generating output file.
    I have data like party_name=00CONSTRUÇÕES JOSÉ VIEIRA, LDA.
    The data is for Spain client and so the need those special characters.
    So in the cursor query I used following convert function like CONVERT(TRIM(hp.party_name),'WE8ISO8859P1')
    and appending into the file
    v_output_file := UTL_FILE.fopen (v_path, v_filename, 'A');
    p_record:=SUBSTR(RPAD(NVL(TRIM(l_sales_order_details_rec (i).party_name),
    30,
    ),1,30)--- All these funtions I applied because, i am trying to avoid that issue.
    and then
    UTL_FILE.put_line (v_output_file, p_record)
    When inserting into file it inserts 2 spaces extra(only if there is a character like Ç and/or Õ, not for É) for which the length its becoming 32(actually should be 30). And so effecting the subsequent values of that record.
    Any one please let me know any ideas, this is very critical for me. Thanks in advance.

    Please post the details of the application release, database version and OS.
    What is your database characterset?
    I have a big issue when generating output file.How do you generate the output file?
    I have data like party_name=00CONSTRUÇÕES JOSÉ VIEIRA, LDA.
    The data is for Spain client and so the need those special characters.What is the NLS_LANG setting on the client side?
    So in the cursor query I used following convert function like CONVERT(TRIM(hp.party_name),'WE8ISO8859P1')
    and appending into the file
    v_output_file := UTL_FILE.fopen (v_path, v_filename, 'A');
    p_record:=SUBSTR(RPAD(NVL(TRIM(l_sales_order_details_rec (i).party_name),
    30,
    ),1,30)--- All these funtions I applied because, i am trying to avoid that issue.
    and then
    UTL_FILE.put_line (v_output_file, p_record)How do you run this code?
    When inserting into file it inserts 2 spaces extra(only if there is a character like Ç and/or Õ, not for É) for which the length its becoming 32(actually should be 30). And so effecting the subsequent values of that record.
    Any one please let me know any ideas, this is very critical for me. Thanks in advance.Please provide more details about the issue and answer the above questions.
    Thanks,
    Hussein

  • Special character issue

    Hi
    I am getting following error while uploading master data.
    Master data (dealt by table level) has errors
    Detected duplicate member ID 'Agrippal'
    Dimension member DNA/PLG Prime + GP14 is an invalid member ID
    Dimension member DTaP/alum vaccine (p is an invalid member ID
    Dimension member DTwP + Hib full liqu is an invalid member ID
    Dimension member DTwP + Hib lyophilis is an invalid member ID
    Dimension member Flu + MF59 + CpG is an invalid member ID
    Dimension member Fluvirin + MF59 is an invalid member ID
    Detected duplicate member ID 'H. pylori'
    Dimension member HBV/MF59 is an invalid member ID
    Dimension member Hepatitis C (E1E2HCV is an invalid member ID
    Dimension member Laminarin-CRM197 + a is an invalid member ID
    Dimension member MenB (New Zealand st is an invalid member ID
    Dimension member MenB (Norwegian stra is an invalid member ID
    Dimension member MenB Engineered (Chi is an invalid member ID
    Dimension member MenC lyophilised + M is an invalid member ID
    Detected duplicate member ID 'Rabies vaccine'
    Dimension member Rhein-Biotech DTaP/H is an invalid member ID
    Dimension member Staph Aureus (Staphy is an invalid member ID
    Detected duplicate member ID 'Td-IPV'
    Dimension member V Quinvaxem (DTwP) p is an invalid member ID
    Dimension member VLP-H5; Virus-Like P is an invalid member ID
    Dimension member Vi - CRM (NVGH Vacci is an invalid member ID
    Error in Admin module
    Record count: 80
    Accept count: 0
    I unsuccessfully tried with couple of options wirting javascript in internal column of conversion file.  Any body could you please guide me to rectify this issue.
    Thanks in advance
    regards
    mahi

    Hi,
    I don't think that it is an OSS Note that you require to implement as it appears the source data has special characters in?
    What does the source data look like?
    BPC has restrictions on the ID's allowed imported into BPC, and a useful OSS note explains some of these restrictions:
    SAP Note 1448836 - [Link|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1448836]
    You can use javascript in a conversion file to use EXTERNAL column to ' * ' so it selects all, then use js: javascript to remove special characters. You'll need to do a bit of research into exactly how you'd set it up but the SAP help file has some guideance here:
    [http://help.sap.com/saphelp_bpc70/helpdata/en/81/94a8a5febd40268d5c59b4fc31be37/content.htm|http://help.sap.com/saphelp_bpc70/helpdata/en/81/94a8a5febd40268d5c59b4fc31be37/content.htm]
    Hope it helps,
    Nick

  • Special character issue in JSP

    How to handle the special characters like %,(Option+' in Mac),(Option+" in Mac),+,& etc entered within a string and passed on to another page through AJAX, where it is retrieved using request.getParameter(). It comes as '?' character or empty space. Also how to save such values into MySQL database so that again while displaying it after fetching from database will be proper.

    Any idea on this ? My soa suite server is on Solaris and the folder where I am reading the file from is on Windows.

  • Master data loading special character issue in bw

    Hi ,
    while extracting Material master data from r/3 system due to special characters load is getting failed even after enabling in RSKC.
    is there any length restriction  in RSKC to enable special characters like 20 or 30 only.
    If i specify the "ALL_CAPITAL " in RSKC what exactly it will do .
    Regards
    Ravi

    Hi,
    No small letters are permitted for characteristic values (in the InfoObject maintenance). It depends, however, on the language being used as to whether a character is capitalized.
    It is guaranteed that the characters ' !"%&''()*+,-./:;<=>?_0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ' are capitalized in all languages. Thus these characters are permitted for characteristic values.
    Expl:
    The bit combination, that stands for an 'Ö' in German, displays a small 'sch' in the Russian character set. In this way, a German 'Ö' is not capitalized in Russian.
    In the German character set, the bit combination shows a "pictured reflected P" for the Russian capitals "SCH". The conversion of small letters into capitals is, therefore, language-dependent.
    If you have a system, that delivers you permitted characters other than ' !"%&''()*+,-./:;<=>?_0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ', you can enter these characters here. The system the checks whether these characters are capitalized in all of the installed languages in your system . If this is the case, then these characters are also accepted in characteristic values.
    You should only add additional characters to the permitted characters, if you have already installed all the languages that you wish to use later. All languages that you install subsequently are not checked.
    It is possible that the validity of these additional characters is then not guaranteed, and the selectability of the entire master data is, therefore, put at risk.
    Edited by: venu pawar on Jan 7, 2010 1:22 PM

  • Special character issue with Adobe Reader 11.03 in hyperlink path

    Adobe Reader changes a [ character in a hyperlink path to a % sign, thus changing the path and destroying the link,when opened in version 11.03.  This does not happen with 11.01.  This is a serious problem for our customers with a critical linked document, because the customers are generall not tech savvy, and categorically refuse workarounds. They will not adjust their Adobe version for fear of security issues. Can this be corrected in a future version of Adobe Reader?

    This is the Bridge Forum, try posting in acrobat froum http://forums.adobe.com/community/acrobat

  • Special character issue with Adobe Reader 11.03 Hyperlink path

    Adobe Reader changes a [ character in a hyperlink path to a % sign, thus changing the path and destroying the link,when opened in version 11.03.  This does not happen with 11.01. I have also seen this with Acrobat X, but not sure which update. This is a serious problem for our customers with a critical linked document, because the customers are generall not tech savvy, and categorically refuse workarounds. They will not adjust their Adobe version for fear of security issues. Can this be corrected in a future version of Adobe Reader?

    This is the Bridge Forum, try posting in acrobat froum http://forums.adobe.com/community/acrobat

  • Character issue in Excel

    Hi All,
    For special character issue ..
    in Report Builder--> XML Prolong Value: <?xml version="1.0" encoding="iso-8859-1"?>
    then issue is vanished,its ok..
    but now my issue is for some characters.. the description is printing like CM&U OWI Rußdorf  (1) SDL
    instead CM&U OWI Rußdorf  (1) SDL. but some description printing properly,:(
    Please let me know if I miss any thing ?
    THanks
    HTH
    Edited by: user633508 on Oct 8, 2010 4:52 PM
    Edited by: user633508 on Oct 8, 2010 5:10 PM

    Hi Kavipriya,
    Thanks for quick reply.
    This issue after generating output -> Excel..
    I am not getting any issue..
    but in place of special character , it shows some squar box symbol.. remaining ok..
    and remaining special characters are working fine..
    the following examples which I got in my excel output..
    CM&U Enertrag Randow-Höhe (8) SDL
    CM&U Prützke 1-4  SDL  I & II
    CM&U Kulder Hof Tönisvorst (4) SDL phase I+II
    the output is generating perfect.. but client reports some bad characters are coming in place of Ö. Ü,ß,.....etc
    Please let me know how can we correct the above one.
    Thanks..

  • Special character in title property of file in KM

    Hi Friends,
    In KM, I have uploaded some german,spanish files. When I set title with special character It shows square characters. If I write unicode, I displays unicode as it is..
    So Can anybody help me in this case?

    Hi 
    Refer this link
    http://social.technet.microsoft.com/Forums/office/en-US/6e7a7eae-26fc-467f-bfdc-7c5d5ff49a95/discussion-forum-storing-special-character-in-title-differently?forum=sharepointdevelopmentlegacy
    It seems that SharePoint will allow the Title of the discussion board to remain with the special characters, but the actual URL will not be allowed and will strip them from the final URL.  SharePoint Manager easily shows this, btw.
    So, there are probably many different ways to get what you are looking for, but one way could be to have a Linq query look for all Discussion Boards on a given site and then return the Title and the DefaultViewUrl, which the latter could then be prefixed by
    the SPWeb.Url to give you something like "Testing? , /" for the title and http://mysite/Lists/Testing/AllItems.aspx (assuming
    that is the actual default view) which you could then use as the final URL for your hyperlink in your web part.
    In the code snippet below you can see the Linq query (which I assumed from your post that you need to query to find the Discussion Boards) and a simple DataTable that you could then use to populate a repeater or you just omit the DataTable and
    enumerate the results from the query yourself:
    var linqResults
    = from list in oSPWeb.Lists.Cast<SPList>() where list.BaseTemplate
    == SPListTemplateType.DiscussionBoardselect list;
    DataTable oDataTable
    = new DataTable();
    DataColumn oDataColumn_Title
    = new DataColumn("Title", typeof(string));
    oDataTable.Columns.Add(oDataColumn_Title);
    DataColumn oDataColumn_URL
    = new DataColumn("URL", typeof(string));
    oDataTable.Columns.Add(oDataColumn_URL);
    foreach (SPList oSPList in linqResults)
    DataRow oDataRow
    = oDataTable.NewRow();
    oDataRow[
    "Title"]
    = oSPList.Title.ToString();
    oDataRow[
    "URL"]
    = oSPWeb.Url + oSPList.DefaultViewUrl.ToString();
    oDataTable.Rows.Add(oDataRow);
    oDataTable.AcceptChanges();
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • EPMA dimension import issue with spanish characters

    We are using special characters for spanish words, like the word Español.
    When this was imported into EPMA using the Import Profile and importing a flat file, EPMA added the alias member as espan then showed a square box and then the l. Then, when deploying the app, no errors recorded in EPMA but planning showed errors since SQL query could not deal with this strange character (the square box symbol) in its query. When I manually change the member in the dimension library to Español, then the app deploys. So my relational database clearly accepts the characters.
    So, the problem is in the Import of the text file when it has the special character ñ or other spanish characters with the accent marks or tildes. Is there something I need to do when importing a file with this character or other spanish language special characters?
    Thanks
    using V11.1.1.3 EPMA with weblogic
    Jeff

    Hi!
    We have the same problem. Please somebody could help us?
    Thanks in advance!
    Analía

  • Exception caught when special character sent to lookup

    Hi Experts,
    When I sent a special character in the name field via "Address-Look-up (Java-Look-up)" an exception caught - (The exception is not visible - so used a value which get populated to all the target field where the loop-up is used). Receiver URL correctly maintained for the look-up channel.
    please suggest how to resolve this special character issue.
    regards
    Pankaj Rajak

    Pankaj,
    Can you explain your end to end scenario so that we identify where the problem is ?
    Also, this sometimes happens when the one of the two systems which are communicating are not Unicode Compliant. Please check if this is the issue is due to this.
    Regards,
    Amit

Maybe you are looking for

  • Camera fill not working correctly crashes app

    I've tried using the camera fill feature on both the iPhone 5 and 5S. In both cases the app crashes when trying to camera fill. It is working just fine on the iPad. Hopefully this will be corrected soon.

  • How do I install XFCE4?

    I would think it would be something like "pacman -S xfce4", but after searching the older forum messages - it looks a lot more complicated than that.  One message looked like I had to download about 20 pieces and compile from scratch using "abs". Is

  • Problem occured while installation of SAP XI

    Hello,         In my home I am trying to install SAP XI.....installed Central instance and Database instance..then i created a new client 100 and then..         Installed Java-addin for ABAP....installed successfully...        1) Then gone to usr\sap

  • After Effects error: Quicktime export failed - Out of memory (-108)

    I am using CS3 After Effects and have been receiving this After Effects error: Quicktime export failed - Out of memory (-108).  Can anyone help with this issue? I am using a Mac Pro 6-Core Intel Xeon 2.66 GHz with 6 memory slots at 1GB DDR3 ECC at Sp

  • Keyword search across multiple folders

    Is it possible to do keyword searches across multiple folders and drives in Bridge CS3? On disk I have organised my images by geographical location, but want to keyword them and search for them by theme. This will cut across several drives each with