Name reservation issue

Hi all,
I want to enforce name reservation in my NWDI (SLD on same system).
I configured a NWDI landscape with the SLD system on it.
I can see from SLD -> name reservation that the name reservation is on (the button label is: disable name reservation).
However from NWDS, in my pre-existing track and dev conf, I can still see that no naming convention is enforced.
What should I do?
Thanks
regards
Vincenzo

Hi,
Please check for configuraiton steps of activating of name service.
http://help.sap.com/saphelp_nw70/helpdata/en/2f/a72f41b239a831e10000000a1550b0/content.htm
Regards,
Thulasi

Similar Messages

  • How do I change an e-mail name reserved for iCloud?

    How do I change an e-mail name reserved for iCloud?

    Not sure what you mean, do you have an iCloud account that you wish to change the email address of?
    Please explain more fully.

  • Problem using name reservation

    Hi there,
    I'd like to use the name reservation to develop DCs with NWDI 7.00. I already created the following reservations in the SLD:
    Development Component Name: mycompany.com/myapp
    Application Context Root: myapp
    I'd like to use the application context root reservation in my Web project. I opened the application.xml file of the web projects associated EAR project, but I'm not able to set the context root. I get the following error message:
    No connection can be established to the name server of this Development Component project. Therefor, you can only insert context-roots for test applications.
    The nameserver is activated on the SLD and is registered in the domain data of the CMS. What am I missing?
    In addition I'm not sure where I have to set the Design Time Package reservation in the NWDS. I remember that I read somewhere, that some reservations are also created automatically by the NWDS.
    Maybe someone might help me with this.
    Regards,
    Markus
    Changed "Design Time Package" to "Development Component Name"
    Message was edited by:
            Markus Hunke

    Design Time Package name prefixes are normally in the form com.mycompany. They are used to restrict the Java package names that can be used.
    You can find these in the Development Configuration perspective: Browse your DC: DC Metadata -> DC Definition -> Package Names.
    Are you using a local Web project or a Web Module DC?

  • Is it possible to delete something from name reservation server?

    Hello,
    As part of an Activity I created a new Development Component and some new classes. When I realized I had made some mistakes in the classes I decided to revert the whole Activity.
    The problem is that now when I try to recreate the activity I'm getting the message "The 'xxx' is already reserved on the name reservation server" where xxx is the name of the DC.
    Is there some way to remove the DC from the name reservation server so that I can recreate it. I really don't want to give it a different name.
    Thanks in advance for any help!

    Hi David,
    yes you can delete items from the name reservation server. Just log on to the SLD, go to name reservation/server...and there you can get a list of all DCs registered...just select the on you want to delete and remove it.
    Cheers,
    Jeff

  • NWDI: invalid-name-reservation-data

    Hi,
    I am currently preparing my NWDI to start developments in ISA 2B 5.0
    When I try to save my track I get the error message
    <b>x:invalid-name-reservation-data</b>
    Do you know an answer to this?
    The trackID I specified is YISB2B50
    The Trackname I specified is YISAB2BREL50
    For the DTR and CBS URL I specified the full qualified domain name

    Hi Mario,
    I got the same problem.
    Could you send all steps to solve this problem?
    In this case: the procedure to configure NWDI in the SLD?
    It will be very userful.

  • NWDI: invalid-name-reservation-data (CRM ISA)

    Hi,
    I am currently preparing my NWDI to start developments in ISA 2B 5.0
    When I try to save my track I get the error message
    <b>x:invalid-name-reservation-data</b>
    Do you know an answer to this?
    The trackID I specified is YISB2B50
    The Trackname I specified is YISAB2BREL50
    For the DTR and CBS URL I specified the full qualified domain name

    The problem is solved. Apparently the NWDI landscape was not yet configured in the SLD.

  • Prefix name in name reservation

    hi everyone.
    Using  NWDI, I have two questions.
    We're developing  DCs in NWDI  except name reservation .
    First, if I define  prefix in sld,  how it will influnce on DCs developed until now?
    Second,If we want to use dictionary DC,
    do we need the connection between oracle and NWDI? If so, how we can connect them?
    Regards bk Kim.

    Kim,
    DCs developed till now would be created using existing Names prefixes,
    So there is no impact of new prefix on older DCs, for new DCs you can use new prefix defined.
    Also database is associated with the application server you r using for the application deployment, So you dont need putting extra efforts for database connectivity. your NWDI configuration will define your runtime systems(dev, Staging, Prod) through track defined, and each runtime system would be having its database.
    Regards
    Deepak

  • Module Function Name Resolution - Issues with DefaultCommandPrefix

    Just getting started on module development, running PS4, and I've run into an... inconsistency... that I'm trying to understand. I've got two test functions, Get-Something and Set-Something in a script module. In my manifest file I specify a DefaultCommandPrefix
    of 'Test'.
    My issue is the function name resolution doesn't result in an executable result if you leave PowerShell up to it's own process.
    To begin with I closed all sessions and deleted all files in the CommandAnalysis directory. After starting a session I waited for the CommandAnalysis cache to populate. Then I ran a series of test commands to illustrate how, most of the time, the function
    name PowerShell registers with tab completion can't be executed because it lacks the 'Test' prefix. Even worse, much of the time tab completion won't recognize the correct (i.e., with prefix) name of the function and honor tab completion for it.
    Having just learned of the CommandAnalysis cache I assumed I would see it change as PowerShell 'learned' more about the module because the name resolves differently over time. I've included three files at the end of this post, the module code (ModuleTest.psm1),
    the manifest (ModuleTest.psd1) and the capture of output to the PowerShell session (ModuleTest.txt). I've tried to include the times I used <tab> and <ret> for tab completion and execution as well as (comments in parenthesis for things I did like
    starting a new session and checking the CommandAnalysis cache for changes).
    An example is, when first starting a session typing 'get-som<tab>' will resolve to 'Get-Something' (prefix 'Test' missing) and typing 'get-test<tab>' won't resolve to 'Get-TestSomething'. Try to execute the 'Get-Something' from tab completion
    and you'll get the 'name not recognized, blah, blah'.
    Now if you type 'get-som<tab>' PowerShell will resolve to 'ModuleTest\Get-Something' - looks promising... but no.  Try to execute the 'ModuleTest\Get-Something' from tab completion and you'll still get the 'name not recognized, blah, blah'.
    Even though the same key strokes resolved differently there were no changes made to the CommandAnalysis cache so I'm lost on why it produces two different (though equally useless) results.
    Manually importing the module and sometimes running Get-Command -Module ModuleTest will make tab completion of the function names behave correctly. Is this a known issue with using DefaultCommandPrefix in script modules or is there something I need to include
    in the manifest to enforce strict name recognition (including the prefix)?
    <ModuleTest.psm1>
    function Get-Something
     Write-Host "Get-Something Executed"
    function Set-Something
     Write-Host "Set-Something Executed"
    <ModuleTest.psd1>
    # Script module or binary module file associated with this manifest
    ModuleToProcess = 'ModuleTest.psm1'
    # Version number of this module.
    ModuleVersion = '1.0.0.0'
    # ID used to uniquely identify this module
    GUID = '241877ff-64be-40c8-a603-8d5acf7a48d8'
    # Author of this module
    Author = 'wb3'
    # Company or vendor of this module
    CompanyName = ''
    # Copyright statement for this module
    Copyright = '(c) 2015. All rights reserved.'
    # Description of the functionality provided by this module
    Description = 'Module description'
    # Minimum version of the Windows PowerShell engine required by this module
    PowerShellVersion = '2.0'
    # Name of the Windows PowerShell host required by this module
    PowerShellHostName = ''
    # Minimum version of the Windows PowerShell host required by this module
    PowerShellHostVersion = ''
    # Minimum version of the .NET Framework required by this module
    DotNetFrameworkVersion = '2.0'
    # Minimum version of the common language runtime (CLR) required by this module
    CLRVersion = '2.0.50727'
    # Processor architecture (None, X86, Amd64, IA64) required by this module
    ProcessorArchitecture = 'None'
    # Modules that must be imported into the global environment prior to importing
    # this module
    RequiredModules = @()
    # Assemblies that must be loaded prior to importing this module
    RequiredAssemblies = @()
    # Script files (.ps1) that are run in the caller's environment prior to
    # importing this module
    ScriptsToProcess = @()
    # Type files (.ps1xml) to be loaded when importing this module
    TypesToProcess = @()
    # Format files (.ps1xml) to be loaded when importing this module
    FormatsToProcess = @()
    # Modules to import as nested modules of the module specified in
    # ModuleToProcess
    NestedModules = @()
    # Default command prefix
    DefaultCommandPrefix = 'Test'
    # Functions to export from this module
    FunctionsToExport = '*'
    # Cmdlets to export from this module
    CmdletsToExport = '*'
    # Variables to export from this module
    VariablesToExport = '*'
    # Aliases to export from this module
    AliasesToExport = '*'
    # List of all modules packaged with this module
    ModuleList = @()
    # List of all files packaged with this module
    FileList = @()
    # Private data to pass to the module specified in ModuleToProcess
    PrivateData = ''
    <ModuleTest.output>
    PS C:\Scripts\PowerShell> Get-ChildItem -Path 'C:\Program Files\WindowsPowerShell\Modules' -Recurse<ret>
        Directory: C:\Program Files\WindowsPowerShell\Modules
    Mode                LastWriteTime     Length Name
    d----          3/5/2015   9:06 AM            ModuleTest
        Directory: C:\Program Files\WindowsPowerShell\Modules\ModuleTest
    Mode                LastWriteTime     Length Name
    -a---          3/5/2015   8:50 AM       2907 ModuleTest.psd1
    -a---          3/5/2015   9:01 AM        140 ModuleTest.psm1
    PS C:\Scripts\PowerShell> Get-Module -ListAvailable<ret>
        Directory: C:\Program Files\WindowsPowerShell\Modules
    ModuleType Version    Name                                ExportedCommands
    Script     1.0.0.0    ModuleTest                          {Get-Something, Set-Something}
    PS C:\Scripts\PowerShell> get-som<tab>
    PS C:\Scripts\PowerShell> Get-Something<ret>
    Get-Something : The term 'Get-Something' is not recognized as the name of a cmdlet, function, script file, or operable
    program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
    At line:1 char:1
    + Get-Something
    + ~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (Get-Something:String) [], CommandNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
    (No change in CommandAnalysis cache)
    PS C:\Scripts\PowerShell> get-som<tab>
    PS C:\Scripts\PowerShell> ModuleTest\Get-Something<ret>
    ModuleTest\Get-Something : The term 'ModuleTest\Get-Something' is not recognized as the name of a cmdlet, function,
    script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is
    correct and try again.
    At line:1 char:1
    + ModuleTest\Get-Something
    + ~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (ModuleTest\Get-Something:String) [], CommandNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
    (No change in CommandAnalysis cache)
    PS C:\Scripts\PowerShell> get-tes<tab>
    PS C:\Scripts\PowerShell> Get-TestSomething<ret>
    Get-Something Executed
    (New Session)
    (No change in CommandAnalysis cache)
    PS C:\Scripts\PowerShell> get-tes<tab><ret>
    get-tes : The term 'get-tes' is not recognized as the name of a cmdlet, function, script file, or operable program.
    Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
    At line:1 char:1
    + get-tes
    + ~~~~~~~
        + CategoryInfo          : ObjectNotFound: (get-tes:String) [], CommandNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
    PS C:\Scripts\PowerShell> Import-Module ModuleTest<ret>
    (No change in CommandAnalysis cache)
    PS C:\Scripts\PowerShell> get-tes<tab><ret>
    PS C:\Scripts\PowerShell> Get-TestSomething
    Get-Something Executed
    (New Session)
    (No change in CommandAnalysis cache)
    PS C:\Scripts\PowerShell> get-tes<tab><ret>
    get-tes : The term 'get-tes' is not recognized as the name of a cmdlet, function, script file, or operable program.
    Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
    At line:1 char:1
    + get-tes
    + ~~~~~~~
        + CategoryInfo          : ObjectNotFound: (get-tes:String) [], CommandNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
    PS C:\Scripts\PowerShell> Get-Command -Module ModuleTest<ret>
    CommandType     Name                                              
    ModuleName
    Function        Get-TestSomething                                 
    ModuleTest
    Function        Set-TestSomething                                 
    ModuleTest
    (No change in CommandAnalysis cache)
    PS C:\Scripts\PowerShell> get-tes<tab>
    PS C:\Scripts\PowerShell> Get-TestSomething<ret>
    Get-Something Executed
    PS C:\Scripts\PowerShell> moduletest\get<tab><ret>
    PS C:\Scripts\PowerShell> Get-TestSomething<ret>
    Get-Something Executed
    William Busby, PMP

    Hi William,
    yes, that's something you'll either have to do the hard way or live with admin confusion.
    If you're using Sapien's PowerShell Studio as an Editor (hint: Usually a great idea), you can very easily rename a function, even in a multi-file module project, by rightcklicking on the function-name and selecting "rename".
    Alternatively you can do a bulk rename with Powershell:
    Get all functions in your module (Load it and check exportedcommands)
    loop over each function-name
    calculate new name
    search your entire project for all references and replace them.
    Let me see ...
    function Rename-ModulePrefix
    [CmdletBinding()]
    Param (
    [Parameter(Position = 0, Mandatory = $true)]
    [string]
    $ModuleName,
    [Parameter(Position = 1, Mandatory = $true)]
    [string]
    $OldPrefix,
    [Parameter(Position = 2, Mandatory = $true)]
    [string]
    $NewPrefix,
    [Parameter(Position = 3)]
    [string]
    $Path
    # Catch all typos
    Import-Module $ModuleName -ErrorAction 'Stop'
    # Get root path if not manually passed
    if (-not $PSBoundParameters["Path"])
    $Path = (Get-Module $ModuleName).Path
    # Get module files
    $Files = Get-ChildItem -Path $path -Recurse -Include "*.ps1", "*.psm1", "*.psd1"
    # Iterate over each file
    foreach ($file in $Files)
    # Null variable in case you get an empty file somewhere and run this from Win 7
    $data = $null
    # Get Content of file
    $data = Get-Content $file
    # Replace strings
    foreach ($c in (Get-Module $ModuleName).ExportedCommands)
    $newName = $c.Name -replace $OldPrefix, $NewPrefix
    $data = $data | ForEach-Object { $_ -replace $c.Name, $newName }
    # Write back to file
    $data | Set-Content $file
    While I didn't proof it, in theory this should do it (Make a backup before running it :) ).
    Cheers,
    Fred
    There's no place like 127.0.0.1

  • WRT350N access using telnet, fixing DHCP reservation issue

    Hi,
    Got my WRT350N recently and ran into a small bug.
    Somehow I could not set a DHCP reservation for a specific machine/address. For other machines it worked perfectly.
    I found out that I can telnet to the device:
    $ telnet 192.168.1.1 33
    # uname -a
    Linux 2.6.12-arm1 #1 Thu Dec 13 14:07:15 CET 2007 armv5tejl unknown
    That's handy, you know what you are running on the WRT350N!
    Then I found with
    # nvram show
    that the machine failing in DHCP reservation was already listed as first item in variable:
    static_dhcp_clients=eljo:280:000874AB0846:1:joel:192.168.1.12:0015F23B916E:1
    Using 'nvram set' I removed the 'eljo' entry and I could fill it in again correctly using the web interface!
    So I'm a happy user ;-)

    I have the same issue on Solaris 8 with a Linksys WRT54G firmware 3.01.3. I can access the internet using the Netscape 4.7 browser but, only by using http://ip.addr. nslookup works in forward lookups e.g. www.google.com. and sometimes by ip.addr.
    snoop -d le0 shows
    hostname DNS R Error: 3(Name Error)
    I removed dhcp configurations and set a static route on the linksys router under advanced routing and plumbed the interface. I still have the same problem.
    I am using a Sparc20.
    I checked resolv.conf and it is correct. I checked /etc/nsswitch.conf, it uses hosts: files dns.
    defaultrouter is the same as yours.

  • SharePoint 2013 (O365) Name Resolving Issues

    I am a global administrator for my O365 environment.  I am having issues with names resolving in SharePoint
    I am trying to add people as term set managers in the managed metadata interface.  If I just type someone's name and hit save, then it works (although their name is converted into a long garbled string).  If I click the "Check Name" or
    select the user from the Address Book the Save operation does not work (it says that I need to complete a required field - the term store manager field).
    Also, in workflows on lists, I am having a similar issue.  I am creating a workflow in SharePoint Designer 2013. I am trying to have an email send to a DL.  When I manually type out the full URL ([email protected])
    or when I select the DL from the address book within the Email form in SharePoint designer, the email address resolves to a strange string/GUID.  It appears that the workflow is successfully sending an email to this GUID, but nobody who is a member of
    the DL receives the email.  If I select a user's name directly from the Address book (not a DL), that user does receive the email.
    Thanks!

    I believe this is a long standing bug. The first I heard of it was back in late October 2013. Open a case with MSO support.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Name Case issue in Link Palette

    I have imported couple of Links in InDesign CS6. All links are imported well. The issue is happened in case sensitive of links as described below.
    1. I have imported the links with the naming convention as shown below.
         001_FlowerX1.jpg
         002_FlowerX2.jpg
         003_FlowerX3.jpg
         004_FlowerX4.jpg
         005_FlowerX5.jpg
    2. I have renamed the links after imported into InDesign as shown below.
         001_flowerx1.jpg
         002_flowerx2.jpg
         003_flowerx3.jpg
         004_flowerx4.jpg
         005_flowerx5.jpg
    Can you see the difference of the naming convention between points 1 & 2? There is a case sensitive difference.
    InDesign Link palette does not show modified/missing links. The image status looks "OK" in the Link palette after change the original name in point 2.
    I just wonder how InDesign does not show modified/missing links in the Links palette after changing the name. Attached screenshot of case sensitive difference in the links naming convention for your reference.
    Anyone help on this issue to overcome and provide a solid solution of the same.

    Is your Mac set up to use case-sensitive file naming? I'm not a Mac person, but my recollection is you have to go to some pains to format the drive for case-sensitivity.
    If, in fact, you simply change the case without moving the files and you are not formatted for case-sensitivity I would expect ID to continue to recognize the files at the old locations and to update automatically the next time you open the document. If you change the names in Finder whiel the document is open I would expect to see a file modifcation warning, but not a missing file. I don't know why ID isn't updating the spelling, though. Perhaps it's because it doesn't matter.

  • Prefix 's10' cannot be mapped to namespace name reserved for "xml" or "xmlns"

    I have been given a third party set of schemas which I have copied into my BizTalk Schemas project (I copied the top level folder containing the schemas into a folder I created in the BizTalk Schemas project). The set of schemas are stored in a series
    of folders and each schema has one or more imports statement so the structure of the schemas in the folder must be maintained. I cannot change this structure as it is from a third party.
    I get the above error when I try and test a map that uses one of the schemas. The issue is with the
    http://www.w3.org/XML/1998/namespace. When I load the set of schemas in Visual Studio creates a number of 'reference targetNamespace' entry's and it is one of these with the above reserved namespace that is
    causing the problem during XSLT compilation. When I debug the map it shows the prefix s10 assigned to the reserved namespace above which is causing the problem.
    If I look at the raw XSD schema the 'reference targetNamespace' entry's are not present so I can only assume they get added when I copy the set of schemas into the BizTalk Schemas project.
    Has anyone come across this issue or suggest a way around this as at the moment it is a blocker for me, thanks.

    The simple answer to this problem is to go to the schema with the issue, and add the appropriate definition to the top of the schema element.
    I recently had a similar issue and didn't like the whole transform/pipeline approach and figured it had to be simpler than that.
    <xs:schema elementFormDefault="qualified"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:xml="http://www.w3.org/XML/1998/namespace"> 
    <xs:import schemaLocation="xml.xsd"
    namespace="http://www.w3.org/XML/1998/namespace" />
    See the solution in Stackoverflow.

  • Domain name transfer issues

    I am having trouble with a domain name I purchased forward to my .mac. This is the second domain name I have purchased. The first one I had issues with too, but it works fine now when the name is typed in a browser window. I copied the exact info, but I am getting an error from .mac saying name doesn't exist. I published the site in iWeb just like I did my first site....every step was the same. I can not figure out why I am getting an error -- can anyone help?

    I fixed it. iWeb address changed from first site to second site, so copying address to forwarding URL was not enough. I had to make the necessary changes. Thank you for responding

  • [SOLVED] File name encoding issue

    Hi all,
    I have a large series of files with accented characters, they were all displayed nicely, but at some point, when I copied them to another computer, the characters were replaced by codes, for instance: "ó" --> "ó".
    +Renaming ie. "Pasó" (bad encoding of "Pasó") --> Pasó, while writing it, it shows the correct character, but when pressing enter the name remains ("Pasó")
    +If I rename the file to something else and then to the correct name, it will accept it: Pasó --> Pas --> Pasó will display correctly.
    I don't know if it's a system wide encoding issue because new files are displayed correctly, but I would like to know if I have to change file names manually to make them right.
    PS. When copying bad encoded files to another FS (like a USB drive), nautilus and bash refuse to copy them.
    Last edited by Wasser (2012-09-17 21:10:52)

    My fstab:
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    tmpfs /tmp tmpfs nodev,nosuid 0 0
    # /dev/sda2 LABEL=ROOT
    UUID=d2243d9c-b8e7-442a-8446-5a43a4d9221b / ext4 rw,relatime,data=ordered 0 1
    # /dev/sda5 LABEL=HOME
    UUID=e67f5cfa-3ec3-4c06-9c2c-62c4cc188ffe /home ext4 rw,relatime,data=ordered 0 2
    # /dev/sda3 LABEL=VAR
    UUID=caac4924-2a13-4c97-9926-668ac0595ba3 /var reiserfs rw,relatime 0 2
    # /dev/sda1 LABEL=UEFI
    UUID=1E70-6485 /boot/efi vfat rw,relatime,fmask=0022,dmask=0022,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 2
    # /dev/sda4
    UUID=14993c2e-4bc4-42e4-b2e5-9dbc286abb4c none swap defaults 0 0
    Files in question are in /dev/sda5 (HOME)
    Last edited by Wasser (2012-09-16 08:37:52)

  • MRP and Reservation issue

    Dear Gurus,
    Our scenario for chemical industry is  MTS with strategy 10.
    After MRP run for material 15 Planned orders are generated. After converting planned orders to Process orders are generated on same day 05/01/2012.
    But actual production starts earlier on 25/12/2011 when process order date changed to 25/12/2011 and try to do batch determination error occurs as Material not available on 25/12/2011,though enough stock exists.
    After TECO (all other 14 process orders) this allow process order to do Batch determination.
    Why this error occurs ?
    Please guide.
    JHPert

    Hi Pert,
    The issue is in ATP logic. Please check of you have comsidered the reservation in ATP and also the pal orders and production orders as welll.

Maybe you are looking for

  • IPad mini retina constantly reboots after iOS 8.1 update - help!

    Hello, I've downloaded on iPad mini Retina 16 GB iOS 8.1 update and installed it directly from the device (so no iTunes involvement). After it got installed with black apple on white screen (process seemed to be finished) - it started rebooting, but

  • Roles/Authorization to read / select  SAP/BW Tables

    Hi, i 'm trying to figure out: What authorizations/roles are necessary from which schema User to have read / select  access to the SAP/BW Tables in native  SAP/HANA (SAP/HANA Developer Studio) ? ThanXs Best Martin

  • Nw 7.4 Java No DBACOCKPIT

    I just installed a brand new NW 7.4 PO installation. Of course its Java only. This is running on Sybase ASE. So I wanted to run DBACOCKPIT, I cannot seem to find it. All the documentation I see leads me to believe its only an ABAP/Webdynpro program.

  • Keyboard layout OS X 10.5.8

    My keyboard layout changed on start up. I don't know if I pressed a key while booting. 2 is the TM symbol, g is copyright, 3 is euro. Any help on how to get it back to English would be great. Thank you

  • Maintain tables v_t521b and v_521c_b payee keys in production enviroment

    One of our clients has requested as to open tables v_t521b and v_521c_b in the production enviroment to create and maintain payee keys for garnishees and court orders in south african payroll. Is this advisable or not because if these tables are open