How to create caracter set on version 5.0 ECC

I have difficulty (only on version 5.0 and 4.7) to create caracter set with reference(or create it anyhow).
On version 4.6 there is no problem (I can do that like described in course BC305).
Transaction "spad"->Full administation-> character set->change-> character
set-> character set->create using template(or just create)
How could I do that in version 5.0 ECC?
I have intention to modify char set afterwards as some character are printed incorrecty on a printer device (Digital LG14)after upgrade.
This device is defined on unix acess type "L" with a custom made device type using a custom made character set
9452.
Otherwise(on other printers) I have no problem with characters using acess type "S" with a device type "I2SWIN"(using character set 1406).
Do you have any idea(tomorrow I will visit customer facing this problem first time). I plan to try the custom made device type with character set 1406.
Do you have any idea if I do not succeed?

Hi Tina,
See
<a href="http://help.sap.com/saphelp_nw04s/helpdata/en/d9/4a963651ea11d189570000e829fbbd/frameset.htm">Maintaining Character Sets</a>
<a href="http://help.sap.com/saphelp_nw04s/helpdata/en/d9/4a967751ea11d189570000e829fbbd/frameset.htm">Defining Character Sets</a>
Hope this help!
Juan
Please reward with points if helpful

Similar Messages

  • How to create caracter set with reference(or create it anyhow)on 5.0

    I have difficulty (only on version 5.0 and 4.7) to create caracter set with reference(or create it anyhow). On version 4.6 there is no problem (I can do that like described in course BC305).
    Transaction "spad"->Full administation-> character set->change-> character
    set-> character set->create using template(or just create)
    I have intention to modify char set afterwards
    How could I do that in version 5.0 ECC?

    and therefore in this forum with minor chances to get an answer.
    regards
    Peter

  • To create caracter set with reference(or create it anyhow) on 5.0ECC

    I have difficulty (only on version 5.0 and 4.7) to create caracter set with reference(or create it anyhow). On version 4.6 there is no problem (I can do that like described in course BC305).
    Transaction "spad"->Full administation-> character set->change-> character
    set-> character set->create using template(or just create)
    I have intention to modify char set afterwards
    How could I do that in version 5.0 ECC?

    and therefore in this forum with minor chances to get an answer.
    regards
    Peter

  • How to Create BC SET using Transport Request

    Hi,
    How to Create BC SET using Transport Request.if any one knows help me

    Hi Gowri,
    The below given description might help u out ..
    You want to create a BC Set from a transport request. A transport request containing Customizing data must already exist.
    This Customizing request is a change request with which you can copy and transport the changed system settings.
    The BC Set is based on the data in the Customizing request. You can copy all the data records in the Customizing request into the BC Set, or select a subset.
    You can subsequently edit BC Sets created from transport requests.
    Procedure
    Enter the Customizing request number and Continue.
    -> You can search for requests with the F4 help. The request type is Workbench/Customizing requests. The request status is changeable or released.
    -> You get an overview of the transport objects in the transport request. To put a transport object in the BC Set, flag the row Copy.
    ->The Status column tells you the BC Set-compatibility of the transport object. It can have the following values:
    ·        green traffic light: The transport object can be put in the BC Set.
    ·        yellow traffic light: BC Set creation or activation problems are possible. Check whether all data records have been put in the BC Set, after you create it.
    ·        red traffic light: Table entries exist, but they cannot be interpreted. They cannot be put in the BC Set.
    ·        Cancel: The transport object cannot be interpreted or put in the BC Set.
    You can get detail information about the object at the bottom of the screen, by double-clicking on a row. For detailed information about messages, choose the icon in the Documentation column.
    The Activity column indicates the associated IMG activity. If no unique assignment is possible, the field is empty. To assign an activity or change an existing assignment, choose the Change Activity icon. Position the cursor on the IMG activity to which you want to assign the object, and choose Select.
    When you have made your choice, choose the Save Data from Transport Request icon.
    Make the necessary entries in the following dialog box Create Object Directory Entry. Choose Save.
    To create the BC Set with the selected rows, choose Save.  
    When you read the transport request, the data records are initially only read in the logon language. When you save the BC Set, all languages in the system are also put in the BC Set.
    You can edit the BC Set manually at any time. Proceed as described in Change BC Set.
    Reward if helpful.
    Thankyou,
    Regards.

  • How to create 'BC set'

    Hi,
            We want to know 'How to create BC set'.   
           We  are  looking forward to your answer.
    Regards,
        Gaito

    Hi Gaito,
    The below link could be of help:
    http://help.sap.com/saphelp_nw04/Helpdata/EN/6f/3c3f88fbef11d2958c00a0c930dcc1/content.htm
    Regards,
    Srikishan

  • How to create Field Set in flex

    I need to know best way to do create Field Set as following
    You can see the HTML field set reference from here..
    HTML CODE
    <form>
      <fieldset>
        <legend>Personalia:</legend>
        Name: <input type="text" size="30" /><br />
        Email: <input type="text" size="30" /><br />
        Date of birth: <input type="text" size="10" />
      </fieldset>
    </form>
    So,how can I do it?

    This link should set you off on the right track.
    http://livedocs.adobe.com/flex/3/html/help.html?content=layouts_08.html

  • How to create change set in 9i r2 ?

    I created new change source and new change set , not use 'SYNC_SOURCE' and 'SYNC_SET'.
    after I created change table and activated change set, I update source table's data.
    but I can't find any recored in change table.
    please help, thanks.
    //create change source
    begin
    dbms_cdc_publish.create_change_source(
    change_source =>'hr_change_source',
    source_description=>'Change source for hr test_source',
    logfile_suffix => '',
    logfile_location => ''
    end;
    //create change set
    begin
    dbms_cdc_publish.create_change_set(
    set_name => 'hr_change_set',
    change_source_name => 'hr_change_source',
    begin_date => sysdate,
    end_date => sysdate+5,
    tablespace_name => 'ts_cdcpub',
    ignore_ddl_events => 'y',
    rollback_seg_name =>' ');
    end;
    //create change table
    begin
    dbms_cdc_publish.create_change_table(
    owner => 'cdcpub',
    change_table_name => 'hr_ct',
    change_set_name => 'hr_change_set',
    source_schema => 'hr',
    source_table => 'cdc_test',
    column_type_list => 'id integer, name varchar2(10)',
    capture_values => 'both',
    rs_id => 'y',
    row_id => 'n',
    user_id => 'n',
    timestamp => 'n',
    object_id => 'n',
    source_colmap => 'n',
    target_colmap => 'y',
    options_string => 'tablespace ts_cdcpub');
    end;
    //activate change set
    begin
    dbms_cdc_publish.alter_change_set(
    set_name => 'hr_change_set',
    advance_enable => 'y',
    ignore_ddl_events => 'n',
    rollback_seg_name => '');
    end;
    //source table
    create table hr.cdc_test(
    id integer,
    name varchar2(10),
    primary key(id)
    );

    Dear Niranjan
    the WWI design of a cover letter is very "company" specific. In most cases data like:
    - which material number was "delivered" is shown e.g. with material text
    - some contact adress data from the company shipping the MSDS is shown
    etc.
    Most of the information printed are retrieved using a parameter symbol. Some data might come from information in CVD1; some data is retrieved by using the data from CVD1; e.g. Customer adress information etc. (here data is retrieved from business partner information)
    The parameter symbols you are showing are "standard"; therefore you can use option of Ralph to try to identify the "source" of the data as retrieved.
    There are not many threads related to cover letter topic in this FORUM; I believe not more than 10 threads are related to this topic. I participated in discussion of one of these threads; i was not able to find the thread; sorry
    Only as a hint: don't only concentrate on WWI design; identify as well how you need to "link" the cover letter to a specific "process"; this is done via customizing; e.g. refer to the SDS distribution OSS in which the whole SDS process is described; the process is described well how to "link" the cover letter to a shipment process
    Topic is explained on "very" high level here:
    Cover Sheet Template (DBV) - Basic Data and Tools (EHS-BD) - SAP Library
    So I believe the best option is to us the proposal of Ralph and trying to understand the standard symbols etc.
    C.B.
    PS: after oce again trying to find additional threads I found only these:
    Coverletter - Output of material data
    Parameter Symbols not appearing in Coversheet and/or Acknowledgement Receipt
    How to create Cover letter

  • How To Create A Re-Installable Version Of Aperture 3 From The App Store?

    Hi...
    Another question regarding Aperture 3 and the App Store.
    In the FAQ section of the Apple site it says this:
    http://support.apple.com/kb/HT4461
    "How do I back up my purchases?
    We recommend backing up the contents of your Mac regularly, including photos, purchased movies, TV shows, and apps, to ensure that you can easily recover them in the event of a loss. If you need to recover a previously purchased app from the Mac App Store, you can redownload it if it is still available."
    The important bit for me is... "if it is still available".
    So... having bought the software... that I own, I can only install / reinstall it for as long as Apple keep it in the App Store. I'm pretty sure Aperture 3 will disappear as soon as Aperture 4 appears, so are we all only ever locked into effectively RENTING the software with the ability only to re-install for a limited duration? (Rhetorical).
    Therefore my question is:
    How can I create a re-installable version, so that if I need to re-install Aperture, but it's no longer available in the App Store, then I can still re-install the software that I've bought and that I own?
    Thanks for the help,
    Clown Guy

    Hi Clown Guy,
    How can I create a re-installable version, so that if I need to re-install Aperture, but it's no longer available in the App Store, then I can still re-install the software that I've bought and that I own?
    The App Store also says you can use the app on another computer merely by copying it to another machine. I believe people here have had success in doing that. I believe you can back up that Aperture app package and just drop it back in to the new computer, but I've never had the cause to do such a thing. The app is all you would need to "reinstall", although it isn't truly an installation program at that point. On the other hand, other people have not had success in doing that.
    nathan

  • How to create the Set ID for report writer

    Hi
    I am suppose to create the Set id . Please suggest me the t-code etc for creating set id.
    Thanks
    Shiv

    transaction for  creating the set ID GS01
    further, the menu path  in the application menu is
    information system->Ad Hoc Reports ->Report Painter ->Report Writer ->Set
    if helpful, plz assign point as way of thanks

  • How to create attribute & set types with customer namespace COMM_ATTRSET?

    Hi CRM Gurus,
    I want to create some attributes and set types on CRM system with
    `/FITGL/` namespace but system is not allowed to create objects
    according. After debugging derives that SAP standart coding given below
    on LCOM_ATTRIBUTE_NEWF19 include.
    IF ( lv_systemname <> gc_sap_system ) AND
           ( iv_object_name(1) <> 'Y' AND iv_object_name(1) <> 'Z' ).
    Should we make an enhancement on this include? Is there any side
    efffects of this enhancement creating attribute & set types on CRM
    system during the packaging in terms of related with other attribute & set types objects?
    Kind Regards,
    Fahrettin

    Hi CRM Gurus,
    I want to create some attributes and set types on CRM system with
    `/FITGL/` namespace but system is not allowed to create objects
    according. After debugging derives that SAP standart coding given below
    on LCOM_ATTRIBUTE_NEWF19 include.
    IF ( lv_systemname <> gc_sap_system ) AND
           ( iv_object_name(1) <> 'Y' AND iv_object_name(1) <> 'Z' ).
    Should we make an enhancement on this include? Is there any side
    efffects of this enhancement creating attribute & set types on CRM
    system during the packaging in terms of related with other attribute & set types objects?
    Kind Regards,
    Fahrettin

  • How to create a Set of Group Owners

    Step 1:  Create and bind an attribute called GroupOwner to user objects in the Portal
    Step 2:  Run the following Powershell script as an administrator of FIM.
    Step 3: Create your set based on the updated GroupOwner attribute which will now be true for all your Group Owners
    Step 4:  Make workflows! :)
    The Code:
    $uri
    =
    http://NameofYourServer:5725
    $attributeName
    =
    "GroupOwner"
    # load FIM snapin, ignore errors if already loaded
    Add-PSSnapin
    FIMAutomation
    -ErrorAction
    SilentlyContinue
    # gets the value of a single-valued attribute from an exported object
    function
    GetAttributeValue($exportObject,[string]
    $name) {
    $attribute
    =
    $exportObject.ResourceManagementObject.ResourceManagementAttributes |
    Where-Object {$_.AttributeName
    -eq
    $name}
    if ($attribute
    -ne
    $null
    -and
    $attribute.Value) {
    $attribute.Value
          $users=Export-FIMConfig
    -CustomConfig
    "/Person[ObjectID = /Group/Owner]"
    -OnlyBaseResources
    foreach ($user
    in
    $users) {
    $objectID2=$user.ResourceManagementObject.ResourceManagementAttributes
    | Where-Object {$_.AttributeName
    -eq
    "ObjectID"}
    $objectID2=$objectID2.Value
    $ImportOperation
    = [Microsoft.ResourceManagement.Automation.ObjectModel.ImportOperation]
    $ImportState
    = [Microsoft.ResourceManagement.Automation.ObjectModel.ImportState]
    $importChange
    =
    New-Object
    Microsoft.ResourceManagement.Automation.ObjectModel.ImportChange
    $importChange.Operation
    =
    $ImportOperation::Replace
    $importChange.AttributeName
    =
    ${attributeName}
    $importChange.AttributeValue
    =
    $true
    $importChange.FullyResolved
    = 1
    $importChange.Locale
    =
    "Invariant"
    $importObject
    =
    New-Object
    Microsoft.ResourceManagement.Automation.ObjectModel.ImportObject
    $importObject.ObjectType
    =
    "Person"
    $importObject.TargetObjectIdentifier
    =
    $objectID2
    $importObject.SourceObjectIdentifier
    =
    $objectID2
    $importObject.State
    =
    $ImportState::Put
    $importObject.Changes
    = (,$importChange)
    $importObject |
    Import-FIMConfig
    -uri
    $uri

    Changed the code to allow for skipping values that are already true to reduce FIM level overhead.
    $uri = "http://FQDNofyourServer:5725"
    $attributeName = "GroupOwner"
    # load FIM snapin, ignore errors if already loaded
    Add-PSSnapin FIMAutomation -ErrorAction SilentlyContinue
    # gets the value of a single-valued attribute from an exported object
    function GetAttributeValue($exportObject,[string] $name) {
    $attribute = $exportObject.ResourceManagementObject.ResourceManagementAttributes |
    Where-Object {$_.AttributeName -eq $name}
    if ($attribute -ne $null -and $attribute.Value) {
    $attribute.Value
    $users=Export-FIMConfig -CustomConfig "/Person[ObjectID = /Group/Owner]" -OnlyBaseResources
    foreach ($user in $users) {
    $objectID2=$user.ResourceManagementObject.ResourceManagementAttributes | Where-Object {$_.AttributeName -eq "ObjectID"}
    $objectID2=$objectID2.Value
    $objectID3=$user.ResourceManagementObject.ResourceManagementAttributes | Where-Object {$_.AttributeName -eq "GroupOwner"}
    $objectID3=$objectID3.Value
    if ($objectID3 -ne $true) {
    # write-host $objectID2
    $ImportOperation = [Microsoft.ResourceManagement.Automation.ObjectModel.ImportOperation]
    $ImportState = [Microsoft.ResourceManagement.Automation.ObjectModel.ImportState]
    $importChange = New-Object Microsoft.ResourceManagement.Automation.ObjectModel.ImportChange
    $importChange.Operation = $ImportOperation::Replace
    $importChange.AttributeName = ${attributeName}
    $importChange.AttributeValue = $true
    $importChange.FullyResolved = 1
    $importChange.Locale = "Invariant"
    $importObject = New-Object Microsoft.ResourceManagement.Automation.ObjectModel.ImportObject
    $importObject.ObjectType = "Person"
    $importObject.TargetObjectIdentifier = $objectID2
    $importObject.SourceObjectIdentifier = $objectID2
    $importObject.State = $ImportState::Put
    $importObject.Changes = (,$importChange)
    $importObject | Import-FIMConfig -uri $uri

  • How to create a set up program for my Java application

    Can some one please tell how to create a Setup for my Java Application

    Thanks for your reply.
    But still if you could have answered my query it would have been of a little more help for me, as I am quite new to any of these kinds of forum.
    Still thanks a lot for the reply.

  • How to create report category for PNPCE ldb in ECC 6.0

    Hi Experts,
    How to create report category for the LDB pnpce in ECC6.0
    Thanks in Advance,
    Regards,
    IFF

    Self-Answered.

  • How to create a back-up version of your helpsystem

    My institution is going through a conversion of our core systems in September of this year and I need to develop a process for updating the 700 helpfiles I have within my helpsystem.  Is there a way to create a mirror image of my helpsystem so that I can work con-currently on both helpsystems?  This way when it comes time for conversion in September, I can simply publish the mirror image copy that has been updated with the correct procedures and the old version would no longer be live.
    I am currently using RH7 but we are in the process of being updated to RH9 but I am not there yet.  Any ideas or suggestions would be greatly appreciated.
    Thanks so much!

    Hello again
    Personally, I dislike just double-clicking the XPJ to open things up. It may work fine on your system and if it does, I'd say go for it. But I'm notorious for installing many different versions of RoboHelp and other apps on the same system. So I have avoided working that way to open projects because I want to easily control what version of RoboHelp opens when I open a project. My way of working involves first opening RoboHelp (the version I want to use for the session) then opening the project.
    Can't help you there with adding the project back to source control. I'm aware of Source Control. I know how it's supposed to work in theory. But I've never used it with RoboHelp. At least not in the recent methods where it's all integrated and RoboHelp operates on your behalf by checking things in and out and all that rot. Personally, I've always avoided integrating because it adds a new level of complexity to the mix. This thread is an excellent example of just one of the many reasons.
    Certainly I think I'd try by reversing the steps. And as with anything where you are modifying files, I cannot stress this enough. backups Backups BACKUPS!!!!!
    Cheers and best of luck to you... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • How to create *NEW* set of Recovery Media?

    Hello -
    Accidentally scratched my Recovery DVDs by leaving them in my laptop bag (ie. have external HDs, external slim DVD writer, etc...) in there. How do I re-create a *new* set of recovery media on my T61p since the option is now grey'd out?
    Thanks,
    Michel

    Do you know of any place in your area that would resurface discs? There is a store thats owned by Hollywood Video called "Game Crazy" and they do that all the time think its like $2 per resurface also check out used game stores in your area and see if they have disc resurfacing capabilities.
    Word of warning, Those do it yourself scratch removal kits, and products like scratch doctor or skip doctor will actually make things worse!
    Message Edited by jasonhockeyguy on 05-28-2008 11:54 AM
    Proud supporter of the Toronto Maple Leafs Hockey Club

Maybe you are looking for

  • How can I take a widget to the desktop

    I would like to take a widget to my desktop ¿Is it possible to do it in Lion? I´ve done it before in Snow Leopard but it does not work anymore Cheers!

  • How can I record two instances of Addictive Drums simultaneously?

    Hi, I'm having no luck with something I thought would be simple.  I want to run and record two iterations of XLN Addictive Drums in two separate tracks simultaneously in Garage Band X.  I play a Yamaha DTXtreme IIIs e-kit as the MIDI trigger.  Becaus

  • How do I fix my PS11 will not open

    My PS Elements 11 has suddenly stopped working. It will no open and if I open a photo from a different place, it just closes. I am using an iMAC  osx

  • Taking notes in PDF

    I want to create a digital manual for seminar participants who will only have Adobe reader. I wanted to create a manual they could take notes in without changing the materials I wrote in the manual. To do this I wanted to create a narrow margin so th

  • Updating Property File

    Hi, i want to update the property file which is in //web-inf//classes folder. i can load the file using getResourceAsStream() method. Is there any way to create the OutputStream for that property file?. Thanks in advance.