What table is a user's language in?

The end result: I desire is a list of the language from the communication tab of a user profile.(This is different than the one under the defaults tab.)
Langu_p is the field name.
spras is the data element name.
We are running ECC6.0 (no data stored in usr03)
I thought it should be fairly easy to find the table but when i f1 the field and go to technical details it gives the tabel name as ADDR3_DATA, which I found out is actually a structure.
Any help ?

> Now I wonder how come the LANGU field in usr01 is the language field from the defualts tab but the Langu  field on ADRC is the one from the Address tab? 
The first one actually plays a role in the account and logon and the second one doesn't. All 'non-essential' address data has been moved to the central address tables recently.

Similar Messages

  • Select Query, Showing What Tables a Specific User Key Can Be Found?

    I need to have query or Filter to show me all data elements where user_key='001' is found in database.
    Basically what tables would I find user_key='001'
    Select * ______________ where user_key='001';
    Need help on what to put in the above... because I want to search all database and Not specific table.
    Thanks.
    JDog29

    Hi,
    Here's a SQL*Plus solution.
    You run this script:
    --          Find_Number.sql -- Find all NUMBER columns where &1 occurs
    --     FIND_NUMBER finds which number columns in the database
    --     contain a given value, such as 12345
    --     find_number writes and executes a script called find_number_1.sql,
    --     which contains rows like
    --          @@find_number_sub     SCOTT     EMP     EMPNO     12345
    --     When run, this line will produce the output
    --          SCOTT          EMP          EMPNO
    --     if there is a row in scott.emp where empno=12345.
    SET     FEEDBACK     OFF
    SET     LINESIZE     200
    SET     PAGESIZE     0
    SET     VERIFY          OFF
    DEFINE     target_num     = &1
    DEFINE     dir          = o:\oradba\dbobj
    SPOOL     &dir\find_number_1.sql
    PROMPT     SPOOL     &dir\find_number_&target_num..lst
    PROMPT
    SELECT     '@@find_number_sub'
    ,     owner
    ,     table_name
    ,     column_name
    ,     &target_num
    FROM     all_tab_columns
    WHERE     data_type     IN ('NUMBER')
    AND     owner          IN ('SCOTT')   -- If needed
    -- AND     ROWNUM          <= 50     -- For testing
    ORDER BY
         owner
    ,     table_name
    ,     column_name
    PROMPT
    PROMPT     SPOOL     OFF
    SPOOL     OFF
    @&dir\find_number_1On the same directory, you should have the following script:
    --     Find_Number_sub.sql - See if any row of
    --          table &1.&2 column &3 is equal to &4
    --     If so, &1, &2 and &3 will be displayed
    --     If not, nothing will be displayed
    SELECT     '&1'     -- Owner
    ,     '&2'     -- Table name
    ,     '&3'     -- Column name
    FROM     dual
    WHERE     EXISTS
         SELECT     0
         FROM     &1..&2
         WHERE     &3 = &4
    ;     To search for columns containing the number 12345:
    @find_number  12345A file called find_number_12345.lst, containing the results, will be produced.

  • Please tell me SQL to see, what tables are locked by which user

    could you please tell me the query
    so that I can see, what tables are locked by which user in a databse
    Thanks

    The only way you can ensure that only one transaction touches the data at any one time is to use a select .. for update nowait statement to select the rows to be updated.
    Try this::
    Where I select the data i want to update in a cursor Incase the row is locked due to any reason it will throw me an error as shown below;
    SQL>DECLARE
      2   cursor c
      3   is
      4   select * from emp
      5   where empno = 10
      6   for update nowait;
      7  BEGIN
      8 
      9   for rec in c
    10    Loop
    11     update emp set ename ='J' where empno = 10;
    12    End Loop;
    13   
    14  DBMS_OUTPUT.PUT_LINE('Record Updated');
    15 
    16  EXCEPTION
    17 
    18  WHEN OTHERS THEN
    19 
    20  DBMS_OUTPUT.PUT_LINE(sqlcode || sqlerrm);
    21 
    22  END ;
    23  /
    -54ORA-00054: resource busy and acquire with NOWAIT specified
    PL/SQL procedure successfully completed.Edited by: J99 on Jul 28, 2009 4:57 PM

  • How i can find user locale/language from his/her request header ?

    Hi
    thank you for reading my post
    what is request header field that shows user agent language/locale ?
    is there any http header value that shows user locale/language ?
    if yes , how i can extract it ?
    thanks

    Certainly there is.
    http://www.w3.org/Protocols/HTTP/HTRQ_Headers.html#z12
    The header is "accept-language"
    You can get it via
    request.getHeader("accept-language");
    You can use request.getHeaderNames() to give you an enumeration of all the headers sent by the browser, so you can see them and the values.
    Here is an extract from a test page I use every once in a while that prints out useful information. This bit prints out request headers (using JSTL)
    You can just drop it into a jsp page (don't forget to import the JSTL tag library) and it will show you all the request headers.
    <h3>Headers </h3>
    <table>
    <c:forEach var="h" items="${header}">
      <tr><td><c:out value="${h.key}"/></td><td><c:out value="${h.value}"/></td></tr>
    </c:forEach>
    </table>Cheers,
    evnafets

  • Clarification on table T002, report RSCPLANGU and language installation

    Hello everyone,
    We need to add a language key to table T002.  There are already several postings in SDN related to this topic, but none seem to be fully answered.  I have also not found a clear answer on this topic in the SAP Help Library or on SAP Service Marketplace.
    We have a ERP 6.0 EHP4 Unicode system.  In our system, table T002 contains 41 entries.  However, we do not have 41 languages installed in our system (we have ~12).  How did the additional language keys get added to table T002?
    Table T002X, which also appears to contain language keys, contains 560 entries.  I found report RSCPLANGU, which copies all entries in table T002X to table T002, including the additional language key that we need.  However, I am wondering what exactly does this accomplish? 
    If we do not need to login to the additional language, is it necessary to actually install the additional language?
    Thanks in advance for any information you can provide. 
    Tommye

    Hi,
    Please distinguish terms "language key" and "language (translation) data":
    The language keys defined in a system specifiy for which languages it can process data; THIS Note covers ONLY the definition of language keys.
    Language data are the translated texts for a language which you can install in order to have a user interface in that language.
    You can define a language key, but not install the user interface data of that language.
    Additionally, you can check SAP note 579937.
    Thanks
    Sunny

  • Making parmanent changes to a internal table inside a user exit

    Hi All,
    I am having a User exit to which I am passing a structure as importing parameter.
    The user exit is not exporting the same structure, but is exporting some other values.
    My problem is that I want to make parmanent changes in the structure I am passing to the user exit.
    Currently what is happening:
    I am passing the structure to the user exit. It has got 6 rows. Inside the user exit I am making some changes to a particular field of all the rows. Till the program control is inside the user exit the changes in the structure are visible. As soon as the control come out of the user exit, the values for the field are switched to teh old values(values before passing to teh user exit).
    My question is, is there any method to make changes to a internal table inside a user exit and these changes are visible outside it when the program control come out of the user exit. (This is when the internal table to which the change is made in not exported by the user exit)

    Hi Dear,
    Your changes done in import parameters will not reflect outside exit. You can only change the values of export parameters...
    If you have very urgent requirement then make changes in SAP''s Standard code.
    For your problem you can write to SAP. In many cases SAP provides the solution.
    Award Points If Useful.

  • Include User Defined Language Items

    I am currently developing an app that needs to let users
    define their own editable text for some items.
    I didnt want to include all of these options in the database
    to avoid having a large database and lots of cfquery's so I though
    having them in a file of some sort would be best, and just
    including the file as needed.
    So, having thought that I put a bunch of cfset's in the
    language file and set all these variables, but then I realised that
    someone could put a cfdump in there and have the app spit out
    information that they shouldnt see.
    So how can you let users define language items in a file and
    load them as usable variables, but not allow them to put other CF
    tags in that page?

    Is it possible to use regex somehow to loop over a file that
    contains lines like <varname = 'what you want'> and have
    everything between the '' stored in an two dimensional array with
    the variable name as the name?
    Are there any suggestions about the best way to handle
    this?

  • Update the database table inside an user exit.

    Hi Experts,
    I have a issue where i have to update a custom table in an User exit.
    I am using Lock object for ENQUE/DEQUE.
    I have tried to use statements like UPDATE/MODIFY inside the user exit.
    But the problem is that it's not updating the database table at the same time.
    I know if i use COMMIT WORK it can update at the same time but it's not advisable to use COMMIT inside a work.and also it gives a short dump.
    The real issue is that this custom table is read for batch creation at the same time for different users.
    Now if it the program does not update the database table at the same time then other users also read the same data and create the same Batch number..
    While requirement is to create a different/unique batch numbers.
    Program is updating the table but it's taking time..so in between other users are creating the same batch number.
    Please guide me what would be the best solution for this.
    Regards,
    Amit Kumar Singh

    Thanks for your quick reply.
    My actually requirement is like that.
    I have to create a Process Order using tcode COR1.
    After passing some input value it goes inside an User Exit.
    There one Custom table is maintained which stores some fields like month,year,numeric key field,etc.
    The new batch number is created using the combination of these table fields.
    Once a new batch number is created it increment the numeric key field number by one.
    Issue is we have to update this new numeric field value into the database field so that other users can read a diffrent numeric field value.hence it will create a new/different batch number.
    Here i am not able to update the database table inside this User Exit.
    Table is geeting updated but after some time and out of this User Exit.
    Please suggest what's required in that case?
    Regards,
    Amit Kumar Singh
    Edited by: Amit  Singh on Feb 3, 2009 11:33 AM

  • EVT_, SM and SMP_ tables in a user schema

    I found some tables and indexes in a user schema that this user hasn't created. 15 tables have a prefix EVT_, about 35 start with SM and about 30 have the prefix SMP_ . It seems they are some type of tables created by Oracle. What are they for and can they be deleted?
    Thanks in advance!
    Best regards,
    Tzonka
    Please see the list of some of them:
    TABLE TABLESPACE
    EVT_CARRIER_CONFIGURATION USERS
    EVT_DEST_PROFILE USERS
    EVT_HISTORY USERS
    EVT_INSTANCE USERS
    EVT_MAIL_CONFIGURATION USERS
    EVT_MONITOR_NODE USERS
    EVT_NOTIFY_STATUS USERS
    EVT_OPERATORS USERS
    EVT_OPERATORS_ADDITIONAL USERS
    EVT_OPERATORS_SYSTEMS USERS
    EVT_OUTSTANDING USERS
    EVT_PROFILE USERS
    EVT_PROFILE_EVENTS USERS
    EVT_REGISTRY USERS
    EVT_REGISTRY_BACKLOG USERS
    PLAN_TABLE USERS
    SMACTUALPARAMETER_S USERS
    SMAGENTJOB_S USERS
    SMARCHIVE_S USERS
    SMBREAKABLELINKS USERS
    SMCLIQUE USERS
    SMCONFIGURATION USERS
    SMCONSOLESOSETTING_S USERS
    SMDATABASE_S USERS
    SMP_AD_ADDRESSES_ USERS
    SMP_AD_DISCOVERED_NODES_ USERS
    SMP_AD_NODES_ USERS
    SMP_AD_PARMS_ USERS
    SMP_AUTO_DISCOVERY_ITEM_ USERS
    SMP_AUTO_DISCOVERY_PARMS_ USERS
    SMP_BLOB_ USERS
    SMP_BRM_ACTIVE_JOB_ USERS
    SMP_BRM_CHANNEL_DEVICE_ USERS
    SMP_BRM_DEFAULT_CHANNEL_ USERS
    SMP_BRM_RC_CONNECT_STRING_ USERS
    SMP_BRM_SAVED_JOB_ USERS
    SMP_BRM_TEMP_SCRIPTS_ USERS
    And some indexes:
    TABLE INDEX TABLESPACE
    EVT_CARRIER_CONFIGURATION SYS_C006660 USERS
    EVT_MONITOR_NODE SYS_C006662 USERS
    EVT_OPERATORS SYS_C006664 USERS
    EVT_PROFILE SYS_C006668 USERS
    ... etc.

    Hi,
    >>What are they for
    As I know SMP_ and EVT_ tables are used by Enterprise Manager, and comprise the Enterprise Manager Repository. When logging into Enterprise Manager, always log in as the repository owner.
    >>can they be deleted?
    if your oem repository owner is different from the user in which these tables are listed then the objects can be dropped
    Cheers

  • Query to determine what inventory org a user or person belongs to??

    I feel silly for asking this, but it's not obvious to me - does anybody have a query to determine what inventory org a user or person belongs to? I assumed there would be a simple join to hr_locations, but I'm not finding it. I'll check TRMs next, but I don't see a FK in fnd_users or per_people_f...so it might be more complicated than I thought.
    11.5.9 by the way...
    Thanks!
    Scott

    What I mean is,
    Where can I know the update capabilities for a Form or a function
    I was asked by my manager to make a report to input the UserName so that the output displays the UserNmae and its associated Responsibilities and the Menu prompts registered with the responsibility(Tree Structure) and the User Form Name and User Function Name and the Update Capabilities.
    For the Update Capabilities I have to display 'Yes' if the form/function has update capabilities or not.
    And have to check whether it has Job Scheduling Capabilities or not.
    For this (Update Capabilities), which tables I have to refer?
    Thanks.

  • What table hold info about Start Page

    what table hold info about Start Page where responsibility and form are chosen when login to Oracle
    step:-
    Login to Oracle apps
    Click on Preferences
    Scroll down to Start page
    Need to find out after you choose the responsibility and it’s value what table name holds that info

    It is a profile option and all profile option values are stored in fnd_profile_options, fnd_profile_option_values, fnd_profile_options_tl
    Note: 201945.1 - How to list E-Business Suite Profile Option values for all levels using SQLPlus
    Note: 282382.1 - How to Search all of the Profile Options for a Specific Value
    Note: 367926.1 - How To Find All Users With A Particular Profile Option Set?
    Thanks,
    Hussein

  • Change user session language in HANA Studio

    Hi All,
    I have created a calculation view and used text join with a text table. The text table contains description in 2 language (say English and German).
    When I check of the output of the calculation view via SQL query (or data preview), only the english description is coming; which is perfect.
    My question is, how does HANA studio knows that my user session language is English? Can I change it to a different language?
    Say I want to see the German description. How can I get that?
    Regards,
    Raja 

    Hi Raja
    You can change the language settings in the properties dialog for the logon data.
    As the logon language is set at logon time, you need to re-connect after changing the settings to see the effect.
    BTW: this question had been answered already several times - using the search bar is not a crime...
    - Lars

  • Which text editor can use User Defined Languages?

    On Windows, Notepad++ is able to use User Defined Languages. On a mac, I know of no text editors that can use them. Not only that, my mac stubbornly refuses to acknoledge the existence of .ecl, .dnh, and other scripting languages. I bundled Notepad++ and used AppleScript to make an executable, but it is not funny when you have to manually open Notepad++, then search for your file, then open it, then do things with it rather then clicking the file for it to open.
    I would like to know if there are ANY text editors that can run User Defined Languages on a mac. Please do not tell me to use Winebottler to package Notepad; I already have Notepad++

    Or, put your text file on DropBox, using the iPad app and email a link to others, or put it on MobileMe (iDisk app) or sharevvia iWork (online sharing for Pages documents).
    Besides the word processing apps like Pages, there are a ton of notes and notebook apps which have various file sharing capabilities. Plain Text is a free plain text editor which links to a DropBox folder, e.g. And the Elements app will sync to DropBox and also let you email. There are many others.
    The trick is figuring out what you need--how much formatting, e.g.--and what type of access by your PC is most convenient. I use apps that sync to DropBox or MobileMe, so that those files are always accessible. Much as I love MobileMe for syncing my calendars, contacts and to do lists, I prefer DropBox for document access and I've found iWork unreliable.

  • HT4208 App store user interface language

    Recently, the user interface language of the App Store turned from German to Japanese. How can I set it back to German?

    The iTunes and App store will usually only display the language of the country you made the subscription I can only down load from Japan iTunes and sometimes they do not have Apps or what ever but someties it depends on you language prefferences too ,it is quite annoying and confusing I use Finnish and English Swedish.
    Apple is not altogether internatonal because of international agreements and local protectionism that is why there is no Finnish dictionary and spell checker
    we are bound by the laws of the country we live in at the present and Apple and any other company does not want us to mixit up ,but they the internationalists Capitalists can do this  like make Apple pruducts in China cheap labour.
    yet it took years for Chinese to get Apple products ! Apple Japan is not very popular beause Japanese do not like the translations of Japanese by Nissei Japanese who live in the US!
    Look at all the language preferences  in Apple OSX they do nothing I use about 5 languages and find a total mix up my keyboard does not know what I am using better to have different computers install different language.

  • What system privs do user have to have in order to.....????

    Hi ,
    I have issued the following commands in SQL*PLUS as user SYS:
    SQL> CREATE USER test_user identified by test_user default tablespace users
      2    temporary tablespace temp QUOTA 8M ON USERS
      3    QUOTA UNLIMITED ON INFORMATICS_IDX_TBL
      4  /
    User created
    SQL>
    SQL> grant create session to test_user;
    Grant succeeded
    SQL> grant create table to test user;
    grant create table to test_user
    SQL> grant create table to test_user;
    Grant succeeded
    SQL> grant dba to test_user;
    Grant succeededWhen i connect to EM as user test_user i do not see the hyperlinks "Setup" , "Preferences" on the up-rightmost corner .....
    What system privs does he have to be granted ....??????
    I use OraDB10g v.2
    Thanks....
    Sim

    Eventually... i have added my newly created user to the Administrators of EM (upper-rightmost corner of EM)...selection "Setup"....
    I don't know if this action has indirectly issued a command like this : grant role MGMT_ROLE TO <user>......!!!!!
    Thanks... anyway,
    Sim

Maybe you are looking for

  • Delete Crystal Report Design in Report and Layout Manager

    Hi All How to permanently delete a customised Crystal Report Design imported in Report and Layout Manager? There is no Delete button at all unlike Form Design? Kedalene Chong

  • Can multiple users on one mac access Photoshop Elements?

    Hi all, I am considering purchasing Photoshop Elements on our family Mac, there are four user accounts, when Elements is installed is it possible for all users to access it? I appreciate that I will probably have to amend the users access rights thro

  • Iphoto directory structure and multiple copies

    I want to manage the directory structure of my photos because I use them with applications and want to put them where I want to. Thus, I never cared for iPhoto 08 and how it organized the directory structure how it wanted to. Additionally, it seems i

  • SOAP processing failure, error id = 1001

    Hi, I am trying to implement the yahoo widgets usingthe following blog: BI Data Widget - Weblog Series & Pre-requisites I am stuck at STEP 14. I am getting the error : "An error has occurred. Maybe the request is not accepted by the server: SOAP proc

  • Am I just a reTard?

    Ok so the headset arrived March 3rd, and I've tried downloading the driver and app, to obtain the control center for the headset numerous times. Everytime it just takes me to a page which asks me to identify the product I'm looking for and it is like