Siebel – Symbolic Strings – Change default ‘X_’
by Nitin JainThis is a smaill tip I was working on, which got me interested in Symbolic Strings all of a sudden. We have already discussed previously about the Symbolic Strings
Siebel – Symbolic Strings
Siebel – Symbolic Strings – Usage
In the usage section we outlined how every new record is automatically prefixed with ‘X_’. This could be a typical problem, as in most of the projects we follow a specific naming convention for all the custom objects. This is also a recommended practice by experts for easy identification.
Let’s see if we have a requirement such that all custom objects in Siebel must begin with ‘GEEK_’ in place of ‘X_’, how we may implement this in case of Symbolic Strings.
Navigate to your tools.cfg corresponding to the your Siebel installation where you want to change this.
Navigate to the section titled, ‘[Siebel]‘.
Look for the parameter, “SymStrPrefix”
My guess is, you would find the following as per Siebel vanilla:
[Siebel]
; SymStrPrefix parameter needs to be X_ for Siebel Customers.
SymStrPrefix = X_
Now, change this value from ‘X_’ to ‘GEEK_’. The section should now look like:
[Siebel]
; SymStrPrefix parameter needs to be X_ for Siebel Customers.
SymStrPrefix = GEEK_
Save and close.
Voila! Now, if you try to create a new Symbolic String, it would be preceded with ‘GEEK_’ rather than Siebel OOB, ‘X_’.
Hope it helps somebody, someday!
Related posts:
- Siebel – Symbolic Strings – Usage Symbolic Strings appear directly in Siebel Tools’ Object Explorer, an...
- Siebel – Symbolic Strings Consider this a brief introductory tutorial on Symbolic Strings in...
- Metalink3 to My Oracle Support – Change Log There are a number of significant changes, or enhancements coming...
- Siebel – Unable to check out objects I will discuss the following most prominent ways to enable...
- Siebel – Run Case Insensitive queries This is a nice tip I ran across. All the...
- Siebel – Number of rows displayed in List Applet Siebel Web Client by default shows only the first 7...
- Siebel- Close Browser window when logging off In case of standard interactivity applications like eSales , eService,...
Links updated!