Welcome to the dBforums forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions, articles and access our other FREE features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload your own photos and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact support.

If you prefer not to see double-underlined words and corresponding ads, place your cursor
here for ContentLink opt out.

Go Back  dBforums > Database Server Software > Oracle > Warning about Oracle Workflow views

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 03-01-07, 16:34
EdwinW EdwinW is offline
Registered User
 
Join Date: Feb 2007
Posts: 8
Warning about Oracle Workflow views

The metadata views of Oracle Workflow use the variable userenv('LANG') a lot (see example below).
It costed me 2 hours to figure out why certain views were empty when examined from one machine and not empty from another client.

Well, in case you run into the same problem, this is a possible cause.


CREATE OR REPLACE VIEW WF_LOOKUPS
(ROW_ID, LOOKUP_TYPE, LOOKUP_CODE, PROTECT_LEVEL, CUSTOM_LEVEL,
MEANING, DESCRIPTION)
AS
select /* $Header: wfcorev.sql 26.0 2000/07/05 23:42:38 kma ship $ */
B.ROWID ROW_ID,
B.LOOKUP_TYPE,
B.LOOKUP_CODE,
B.PROTECT_LEVEL,
B.CUSTOM_LEVEL,
B.MEANING,
B.DESCRIPTION
from WF_LOOKUPS_TL B
where B.LANGUAGE = userenv('LANG')
Reply With Quote
  #2 (permalink)  
Old 03-03-07, 14:41
JMartinez JMartinez is offline
Registered User
 
Join Date: May 2004
Location: Dominican Republic
Posts: 704
I just stumped upon a similar problem but with OUI (Oracle Universal Installer), interactive installation. It was not able to find the oraparam.ini even though when launched from CD. This was trying to be done on a computer with spanish as the os language. Turned out to be OUI choosing a different language than the OS, changing the LANG regedit key fixed the problem.

Thanks for letting us know this.
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On