How to convwert hexadecimal value '13' to character

In unicode program it is required to convert hexadecimal value to char. I do n't find any solution for converting hexadecimal value '13' to character.
Please help

You can try the following:
        CALL FUNCTION 'SCMS_BIN_TO_TEXT'
          EXPORTING
            bin_line  = '13'
          IMPORTING
            text_line = lv_char
          EXCEPTIONS
            failed    = 1
            OTHERS    = 2.
        IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.

Similar Messages

  • How to move the value from a character field to numeric or packed decimal

    Hi,
    can anyone explain me on how to move the value from a character field to numeric or packed decimal.
    Please help me on this. Thanks...
    Regards,
    Rose.

    Hi ,
    if you use keyword MOVE u may loose the decimal and thoussan separator and if u don't want to loose them just call the FM ..HRCM_STRING_AMOUNT_CONVERT.
    i doubt wherther it is HRCM or HCRM just try using *
    this will suit ur requirement.
    Regards,
    KK

  • How to read hexadecimal value in single line

    Hi experts,
    I am getting data in hexadecimal format  "#SBP0#1123456789 #SBS01 "
    while transfering  to internal table it appears in field as
    SBPO1
    1123456789
    SBS01
    but i want SBS01 1123456789 SBS01
    Please tell me how to convert the above hexadecimal format into string format
    Please do not suggest replace all occurences
    Thanks
    Gaurav

    Hi Gaurav,
    field-symbols:
      <any> type any.
    data:
      lv_string type string value '#SBP0#1123456789 #SBS01',
      lv_split type c value '#'."probably not # but cl_abap_char_utilities=>cr_lf or =>horizontal_tab or?
      lt_splits type table of string,
      lv_result type string.
    split lv_string at lv_split into table lt_splits.
    loop at lt_splits assigning <any>.
      concatenate lv_result <any> into lv_result separated by space.
    endloop.
    write / lv_result." SBS01 1123456789 SBS01
    That's it.
    Regards,
    Clemens

  • Error while running Configuration Wizard in SharePoint 2013: Exception in RefreshCache. Exception message :The '?' character, hexadecimal value 0x43A0, cannot be included in a name. Line 1, position 5694.

    Hi Friends,
    I was trying to run configuration wizard in SharePoint 2013 Central Administration and I got below error:
    Exception in RefreshCache. Exception message :The '?' character, hexadecimal value 0x43A0, cannot be included in a name. Line 1, position 5694.
    Yesterday my SharePoint server was running fine and today when I try to update a SharePoint solution (wsp) I got same error. Even if I try to do any operation
    in Central administration like adding new WSP, Updating WSP , I get same error.
    Does any one have any Idea?
    Regards
    Gireesh Painuly

    Posted this a few weeks back - would appreciate any suggestions?
    Thanks,
    Carl

  • Sharepoint 2007 list error - The '}' character, hexadecimal value 0x7D, cannot be included in a name. Line 1, position 440.

    Hi Everyone,
    We have a sharepoint 2007 deployment which in general has been fine since it was built.  
    Version is 12.0.0.6421 (MOSS 2007 SP2 (KB953334 & KB953338))
    on a Windows 2003 R2 SP2 server.
    We created a list a while back to store information for our servers but for some reason it now has an error.
    the symptoms are:
    1) Navigating to the list and choosing any view (a few custom views), we can see the data fine
    2)  Creating new items or modifying existing items brings up:
    An unexpected error has occurred.
    3) Trying to access the list settings brings up:
    An unexpected error has occurred.
    4) Using "view all site content" and clicking on the list brings up:
    The '}' character, hexadecimal value 0x7D, cannot be included in a name. Line 1, position 440.
    I've attempted to search for the error online but the error doesn't bring back anything specific to Sharepoint.
    My gut feeling is either a corruption of the list or a user has entered an invalid character in one of the list entries, but I cannot amend the list in any way.
    Ordinarily I would advise the user to re-create the list and enter the information from scratch, however this list contains alot of information and is crucial to the server teams documentation.
    Does anyone have any ideas on where I should be focusing my search efforts?  I did check the logs and couldn't see any obvious entries for this list.
    Any assistance would be greatly appreciated.
    Cheers,
    Carl

    Posted this a few weeks back - would appreciate any suggestions?
    Thanks,
    Carl

  • Flat file assembler. Hexadecimal value XYZ, is an invalid character

    Hi,
    I'm trying to send file that contains base64-encoded string. With simple xml FTP sending - all works fine. But with flat file pipeline comes this error:
    A message sent to adapter "FTP" on send port "....FlatFile" with URI "ftp://..../.../%SourceFileName%" is suspended. 
    Error details: There was a failure executing the send pipeline: "...., ....Pipelines, Version=1.0.0.1, Culture=neutral, PublicKeyToken=.."
    Source: "Flat file assembler"
    Send Port: "MyFlatFile" URI: "ftp://.../.../%SourceFileName%" Reason: '', hexadecimal value 0x03, is an invalid character. Line 1, position 100.  
    Pipeline:
    Is it impossible to do such operation on Biztalk?
    Thank you!

    Try to set the appropriate value to the "Target charset" property in the Flat file assembler component. This would solve your issue.
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful.

  • Name cannot begin with the '\"' character, hexadecimal value 0x22

    I am trying to create Calculated Column in SharePoint Document Library using Client Object Model.
    However getting following error while executing FieldSchema:
    Name cannot begin with the '\"' character, hexadecimal value 0x22
    Code:
     var calculated = "Calculated";
     var displayName = "Effective Date";
     var internalName = "Effective Date";
     var formula = "=IF(ISBLANK(Col_DocumentEffectiveDate),\"\",TEXT(Col_DocumentEffectiveDate,\"DD-Mmm-YYYY\"))";
     List lib = clientContext.Web.Lists.GetByTitle(docLibName);
     clientContext.Load(lib);
     clientContext.ExecuteQuery();
    string fieldSchema = "<Field Type=\"" + calculated + "\" DisplayName=\"" + displayName + "\" Name=\"" +internalName+ "\" Formula=\"" + formula + "\"
    />";
    lib.Fields.AddFieldAsXml(fieldSchema, true, AddFieldOptions.AddFieldInternalNameHint);
    clientContext.ExecuteQuery();
    Code does't work if i replace quotation marks("\) in Formula with "&quot;"
    Could someone help with issue?

    Hi,
    I suggest you take the code below which works in my environment to do the test again:
    ClientContext clientContext = new ClientContext("http://sp/");
    List list = clientContext.Web.Lists.GetByTitle("List2");
    FieldCollection fields = list.Fields;
    clientContext.Load(fields);
    clientContext.ExecuteQuery();
    var displayName = "Cal2";
    var formula = "=IF(ISBLANK([Created]), \"\" , TEXT([Created], \"DD-Mmm-YYYY\"))";
    var fieldSchema = "<Field Type='Calculated' DisplayName='" + displayName + "' ResultType='Text'><Formula>" + formula + "</Formula></Field>";
    fields.AddFieldAsXml(fieldSchema, true, AddFieldOptions.DefaultValue);
    clientContext.ExecuteQuery();
    Feel free to reply if the issue still exists.
    Best regards
    Patrick Liang
    TechNet Community Support

  • The '\' character, hexadecimal value 0x5C, cannot be included in a name. Line 1, position 29.

    Hi,
     Please guide i sve username="kpsoft/mahemd". It has write suceesfully but when try to read, this error raised "The '\' character, hexadecimal value 0x5C, cannot be included in a name. Line 1, position 29.". Please guide me. 

    Hi,
    I suggest you provide more information(likethe code) for further research.
    If the question is not relate to SharePoint, you can post it to a suitable Forum, you will get more help and confirmed answers from there.
    Best Regards
    Dennis Guo
    TechNet Community Support

  • How to replace key value with character

    Hi Experts
    Can any one tell me, how to replace key value with character, whether it is possible are not. My present report is displaying below format.
    country--city-area-flatnocountry--City-Flatno
    Customer--USACOst1111---UK--HD20--
    C100--11---11--
    C200--11---1--
    For the above example format i am able to display. But now i want to replace 1 with character value for example. For C100
    country is USA at presnt 1 but it should replace with USA.
    You find required format below.
    country--city-area-flatnocountry--City-Flatno
    Customer--USACOst1111---UK--HD20--
    C100--USACOst1111--
    C200--UK--HD20--
    thanks .
    Regards,
    Vishal.

    Hi Markus,
    Thanks for reply,
    Actually i dont have attribute for the customer, the data is maintained in ods, in the form, customer name one info-object and customer value one more info-object this value got text. This value stored in the ods as below
    costomer number  customer value
    C100--USA
    -C100CO
    C100--11-
    C200----
    UK
    C200----
    20
    Please let me know any clarification you need.
    Thanks and Regards,
    Vishal.

  • Hexadecimal value 0x12, is an invalid character. Line 1, position 247.

    Hello! I'm starting with Azure, installed all new SDK, VS Updates, Win8 updates, created MVC4 proyect, executed on local Debug and Release, everything working. Downloaded the publish profile from my website validated the site, All ok! but, when i Hit Publish:
    2>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\Web\Deploy\Microsoft.Web.Publishing.MSDeploy.Common.targets(55,5): Error : '', hexadecimal value 0x12, is an invalid character. Line 1,
    position 247.
    And i can not continue. Files where not modified, that error its from output
    Ideas? Off course, my site still empty, this where my first deploy
    Thanks in advance!

    Hi,
    Do you use MSBuild? If yes, add this to setting: <property
    name="PackageAsSingleFile"
    value="false"/>
    For any issue for MSBuild, please open case in this forum: http://social.msdn.microsoft.com/Forums/uk-UA/msbuild/threads
    Also refer:
    http://blogs.msdn.com/b/webdev/archive/2012/11/20/new-web-publish-updates.aspx
    Thanks,
    QinDian Tang
    MSDN Community Support | Feedback to us
    Develop and promote your apps in Windows Store
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Hexadecimal value 0x10, is an invalid character. Line 1, position 228.

    getting started with Azure.
    I installed VS2013, the Azure SDK for VS2013 and web deploy 3.5
    following the steps on this post
    http://azure.microsoft.com/en-us/documentation/articles/web-sites-dotnet-deploy-aspnet-mvc-app-membership-oauth-sql-database/
    When I try to deploy to a website created in Azure with DB, I get
    Error 1
    '', hexadecimal value 0x10, is an invalid character. Line 1, position 228.
    The details:
    Transformed Web.config using C:\Projects\ContactManager\ContactManager\Web.Release.config into obj\Release\TransformWebConfig\transformed\Web.config.
    Copying all files to temporary location below for package/publish:
    obj\Release\AspnetCompileMerge\Source.
    C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\aspnet_compiler.exe -v / -p C:\Projects\ContactManager\ContactManager\obj\Release\AspnetCompileMerge\Source -u -c C:\Projects\ContactManager\ContactManager\obj\Release\AspnetCompileMerge\TempBuildDir 
    C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Web\Deploy\Microsoft.Web.Publishing.MSDeploy.Common.targets(42,5): Error : '', hexadecimal value 0x10, is an invalid character. Line 1, position 228.
    I have tried uninstalling VS2013, the SDK and even web deploy and reinstalling them and that didn't help.
    One caveat:
    when I try to deploy to a website created without DB, I get don't get the error above.
    any help appreciated
    UPDATE:
    Figured it out.
    My DB Password had the "%" character. I guess that's not well handled by Visual Studio at the moment.
    After removing the "%" character from my DB password, I was able to deploy again.

    Hi,
    Figured it out.
    My DB Password had the "%" character. I guess that's not well handled by Visual Studio at the moment.
    After removing the "%" character from my DB password, I was able to deploy again.
    I'm glad to hear that you have found out the solution, I will close this thread, thanks for your posting, if you have any issues, welcome to our forum again.
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How 2 convert numeric value to character value?

    Hi friends,
    I want to convert numeric value to the character value.
    Is there any FM available?
    Points rewared soon.
    Regards
    Ronn

    REPORT ZSPELL.
    TABLES SPELL.
    DATA : T_SPELL LIKE SPELL OCCURS 0 WITH HEADER LINE.
    DATA : PAMOUNT LIKE SPELL-NUMBER  VALUE '1234510'.
    SY-TITLE = 'SPELLING NUMBER'.
    PERFORM SPELL_AMOUNT USING PAMOUNT 'USD'.
    WRITE: 'NUMBERS', T_SPELL-WORD, 'DECIMALS ', T_SPELL-DECWORD.
    FORM SPELL_AMOUNT USING PWRBTR PWAERS.
      CALL FUNCTION 'SPELL_AMOUNT'
           EXPORTING
                AMOUNT    = PAMOUNT
                CURRENCY  = PWAERS
                FILLER    = SPACE
                LANGUAGE  = 'E'
           IMPORTING
                IN_WORDS  = T_SPELL
           EXCEPTIONS
                NOT_FOUND = 1
                TOO_LARGE = 2
                OTHERS    = 3.
    ENDFORM.                               " SPELL_AMOUNT

  • How to pass ascii values in receiver file contentversion

    Hi ,
    How to define a ascii vlaues in file content conversion(eg ASCII13) in file reciver adapter.
    Regards
    Swathi

    hi,
    Special Characters in the FCC:
    In all strings for separators (NameA.fieldSeparator, NameA.beginSeparator, and NameA.endSeparator), you can specify non-printable ASCII characters. These characters can each be inserted individually in the strings in the form ´0xHH´ (including the quotation marks), where HH represents the character coded as a hexadecimal value. A line break can be entered using the character ´nl´ (including the quotation marks); nl stands for new line. The special character ´0´ is not a separator character.
    and
    Specify the File Type of the document.  :  Binary/ Text
    Under File Encoding, specify a code page.
    The default setting is to use the system code page that is specific to the configuration of the installed operating system. The content of the message is then converted to the corresponding code page before the message is saved as a file.
    You should use this conversion only for plain text and not for XML documents. If you want to change the encoding of an XML document, then select the File Type as Binary and apply XMLAnonymizerBean as an additional module in the Module tab page.
    Permitted values for the code page are the existing charsets of the Java runtime. According to the SUN specification for the Java runtime, at least the following standard character sets must be supported:
    US-ASCII
    Seven-bit ASCII, also known as ISO646-US, or Basic Latin block of the Unicode character set
    please refer sap.help:
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/bab440c97f3716e10000000a155106/content.htm
    thanks,

  • Comparing Hexadecimal value in program

    Hi friends,
    I have requirement in this I have to pick a file and have to write some logic by comparing file contents.
    File contents some hexadecimal character like '#'.
    When I am writing simple if condition like
    if var = '#'.
    endif.
    It is not going in that if condition even when the var has value from # from file. so i think as it is hexadecimal value there is some other way to compare it.
    Please let me know how can I compare hexadecimal value.

    Indeed # is a character representation of a separator (tab or space) which is seen as # in character mode.
    Use below snippet to compare it
    DATA: xsep TYPE xstring,
                    sep TYPE string.
                  xsep = '09'. "if separator is tab mark
                  xsep = '20'. "if it is space
              CALL FUNCTION 'HR_KR_XSTRING_TO_STRING'
                EXPORTING
                  in_xstring = xsep
                IMPORTING
                  out_string = sep.
             "now SEP contains character representation for separator (which is seen as #)
              "you can i.e. split uploaded file data (in iternal table) based on that separator
              SPLIT it_file_data AT sep INTO TABLE it_file_fields IN CHARACTER MODE.
              "for comparing use
              if var = sep.
              endif.
    Regards
    Marcin

  • How do I insert a form feed character in my XSLT?

    I need to finish a transformation with a form feed character and when I use &#12; I get an invalid character exception. &#10; works OK so I guess the syntax is in the correct form but how do I use it for a form feed character (page break)?

    If you know the decimal unicode value for the character you want (which for ASCII characters is the same as the ASCII code for it), just use:
    <xsl:text>&#NNNN;</xsl:text>
    where NNNN is the decimal number. For example, in insert a tab character (number 8), just do:
    <xsl:text>&#8;</xsl:text>
    If you only know the value in hex, you can use the syntax:
    <xsl:text>&#xHHHH;</xsl:text>
    Where HHHH is the hex value.
    null

Maybe you are looking for

  • Unable to open or create files in photoshop CS4

    Suddenly my Photoshop CS4 has stopped working. I can open the program, but are not able to either open files (jpg, psd, tif ++) or create new files. No error message, it just doesn't happen anything. The program doesn't stop working either, I can sti

  • Urg: Not able to import data from DB in OBIEE 11g : Connection has failed.

    Hi Team Recently while working in OBIEE 11g , I was trying to import tables from the data-base but I am getting an error " Connection has failed " . I have put the tnsora file in the network admin folder and the C:\OracleBIHome\Network\admin \OracleB

  • Spooler problem with Laserjet 1018

    When trying to print a PDF document sent to me by an insurance complany my printer froze.  I wanted to install a new driver but I cannot uninstall the old driver -- I get a message saying it encountered an abnormal program execution and setup will sh

  • How to forward the request

    hi all, can somebody tell me how to forward the request from one context to another. thanks in adv. ritu

  • How to complete 2 activities in one sitting

    Hi, I have created a BPM process in which I have the following Activities, with corresponding roles: a. Enter Course Details - Requestor b. Enter Applicants Details - Requestor c. Approval - Approver Basically, the first 2 activities are performed by