|
Guixt allows you to change the R/3 nomenclature very easily. With one GuiXT line you are able to adapt hundreds of screens simultaneously. |
For example, assume that the concept “material” is used exclusively in the sense “service” in your R/3 system, perhaps for a special user group only. You would like to replace the word “material” by the word “service” throughout. Example:
Standard R/3 screen: “Material”
New nomenclature : “Service” instead of “Material” (5 replacements on this screen) For this example you only need the GuiXT command GlobalTextReplace “Material” “Service” This applies to the following screen text types:
but
It is of no importance whether the word starts with a lower or upper case letter. Replacement according to context Sometimes, in a particular combination, a different replacement is necessary. For example, you want to replace “material” by “service”, but the combination “Material type” is to be replaced by the single word “Category”. This can be done as shown in the following example:
Standard R/3 screen: “Material”
New nomenclature : “Service” instead of “Material”
New nomenclature : “Service” instead of “Material” and “Category” instead of “Material type” The GuiXT commands in this example: GlobalTextReplace “Material type” “Category” GuiXT searches out “Material type” first, because it is longer than “Material”. Where to put the text replacement commands Put the text replacement commands into the file esession.txt (where e means English; it would be fsession.txt for French and dsession.txt for German) in your script directory. This script file is executed after the logon screen, exactly once for each R/3 session. Avoid putting the commands into the file elogon.txt. They will not be executed if the user opens an alternative mode. |