Translated table HR_LOCATIONS_ALL_TL Question

I would like to know the difference between language and source_lang columns on the table ‘hr_Locations_all_tl’. Both columns hold the same data with ‘US’ language.
Do we need to look only LANGUAGE column or both columns when querying? Will this ever differ? Why was this new column added? Curious...thanks!
desc hr.hr_Locations_all_tl
Name Null? Type
LOCATION_ID NOT NULL NUMBER(15)
***LANGUAGE NOT NULL VARCHAR2(4)
***SOURCE_LANG NOT NULL VARCHAR2(4)
LOCATION_CODE NOT NULL VARCHAR2(60)
DESCRIPTION VARCHAR2(240)
LAST_UPDATE_DATE DATE
LAST_UPDATED_BY NUMBER(15)
LAST_UPDATE_LOGIN NUMBER(15)
CREATED_BY NUMBER(15)
CREATION_DATE DATE

Answers in MOS Doc 393861.1 (Globalization Guide for Oracle Applications Release 12) - section "Multilingual Table Structure"
Also, see explanation in MOS Doc 356849.1 (How Do Item Description Field Changes Work When Multiple Languages Are Involved?)
HTH
Srini

Similar Messages

  • Translation table for Program name/screen number for ECC 6.0

    Hello Experts,
    Do you know if there is a translation table and/or document that would list the Program Name / Screen Number for the transactions in SAP 5.0 and the equivalent Program Name / Screen Number for those same transactions in SAP 6.0?
    The reason that I ask is that we our encountering errors within the TxShuttle macros we are testing that are telling us that the current screen name listed in the macro in no longer valid in the 6.0 environment.
    Regards,
    Atul

    I thnk we dont have any such program .Try searching for a SAP Note if its a standard program.
    Can u tell me the program name and screen number which is not available in ur system.

  • LSMW automatically update 1:1 translation table

    In LSMW, under the 1:1 translation table... control data tab.  I noticed there was a checkbox called "1:1 Translation Table Added to Automatically".  If this checkbox is checked, is there a program that can be executed to automatically upload a file from the R/3 application server to update the 1:1 translation table in the background?

    Karthick_Arp wrote:
    978184 wrote:
    Hi.
    I have a table :
    PAYMENT_PERIOD
    ID char(10()
    DUE_DATE date
    VALID Char(1)
    In above table ID is customer's ID, DUE_DATE field contains date greater than Current Date and VALID field can contain either 'V' or 'I'. Initially when I insert row in table VALID is V and DUE_DATE is any date greater than Current Date.
    My Problem is
    When Due_Date becomes less than Current Date then VALID field should be automatically updated by 'I'.
    How can I do that?
    Thanks.Use a TRIGGER or even better have a custom Transaction-API to do the job.And what event causes said trigger to fire?
    From what we know so far, the only thing that makes the row "invalid" is the passing of time and the relation of DUE_DATE to SYSDATE. As John said, don't store VALID at all, just calculate it when needed.

  • Translation table syntax error

    While trying to install oracle 815se on
    Red Hat 6.1, the ./runInst.sh script
    barfs copiously like this:
    Warning: translation table syntax error: Unknown keysym name: osfCancel
    Warning: ... found while parsing ':<Key>osfCancel: ManagerParentCancel()'
    Warning: translation table syntax error: Unknown keysym name: osfSelect
    Warning: ... found while parsing ':<Key>osfSelect: ManagerGadgetSelect()'
    SIGSEGV 11* segmentation violation
    stackbase=0xbffff600, stackpointer=0xbffff228
    and then the installer just dies - I never even get to see a window: Anyone have any idea what might be causing this? It seems
    vaguely AWT related, but I'm far from an expert on java...

    Well, I finally figured it out:
    the 815 installer needs files from the Xfree86 rpm to be installed, otherwise it falls over, so even on a headless server, you have to install X. [and not just the clients]
    The actual command I had to issue was:
    rpm --force -i XFree86-3.3.5-3.i386.rpm
    Because rpm was complaining about locale.alias clashing with files from the glibc-2.1 package.

  • Script Language Translation - Very Common Question, but unable to resolve !

    Hi Gurus,
    I know this is very common question, but I am stuck, unable to get this one resolved.
    Need to translate sap script "TEXT SYMBOLS" from "English" to "French".
    Have maintained language translation text symbol values in table TTDTG.
    But when i login through French language, these are still getting printed in English !!
    Any Pointers to resolve this will be of great help.
    Many Thanks,
    Madan

    hi
    1) Copy the Script into FR language and then change the Corresponding ENGLISH text to FRENCH text.
    2) Pass ur logon langauge   in the OPEN_FORM FM  Import parameters
                                                                                    LANGUAGE = sy-langu.
    so that whatever is ur logon langauge it corresponding Form will be called.
    surya

  • The data from my web page insert in SQL table as question marks

    I use Farsi language in my web page for inserting customer data. The data that is inserted in webpage and submitted, showed as ???? in SQL table. A lot of developers say that I should use N' before the Unicode character, but I don't know how I can use it
    in my code. I attached the code. Can someone say me where I should insert the N in my code?
    protected void cmdInsert_Click(object sender, EventArgs e)
    //Checking the validation of required fields
    if (cboCustomerType.Text == "" || cboTitle.Text == "" || SearchableName.Text == "" ||
    FinalName.Text == "" || NationalID.Text == "" || BusinessID.Text == "" || MobilePhone.Text == "")
    lblStatus.Text = "لطفا فیلدهای اجباری را حتما پر کنید";
    return;
    //define ADO.NET objects.
    string insertSQL;
    insertSQL = "INSERT INTO Customers(";
    insertSQL += "CustomerType,CustomerTitle,CustomerFirstName,CustomerLastName,CompanyType,";
    insertSQL += "CompanyName,SearchableName,FinalName,NationalCode,BusinessID,City,Address,PostalCode,";
    insertSQL += "Zone,MobileNumber,WorkPhone1,WorkPhone2,HomePhone,FaxNumber,Email,Website,Note)";
    insertSQL += "VALUES('";
    insertSQL += cboCustomerType.Text + "','";
    insertSQL += cboTitle.Text + "','";
    insertSQL += CustomerFirstName.Text + "','";
    insertSQL += CustomerLastName.Text + "','";
    insertSQL += cboCompanyType.Text + "','";
    insertSQL += CompanyName.Text + "','";
    insertSQL += SearchableName.Text + "','";
    insertSQL += FinalName.Text + "','";
    insertSQL += NationalID.Text + "','";
    insertSQL += BusinessID.Text + "','";
    insertSQL += City.Text + "','";
    insertSQL += Address.Text + "','";
    insertSQL += PostalCode.Text + "','";
    insertSQL += Zone.Text + "','";
    insertSQL += MobilePhone.Text + "','";
    insertSQL += Phone1.Text + "','";
    insertSQL += Phone2.Text + "','";
    insertSQL += HomePhone.Text + "','";
    insertSQL += FaxNumber.Text + "','";
    insertSQL += Email.Text + "','";
    insertSQL += Website.Text + "','";
    insertSQL += Note.Text + "')";
    SqlConnection con = new SqlConnection(connectionString);
    SqlCommand cmd = new SqlCommand(insertSQL, con);
    //try to open the database and execute the insert
    int added = 0;
    try
    con.Open();
    added = cmd.ExecuteNonQuery();
    lblStatus.Text = added.ToString() + "اضافه شد";
    catch (Exception err)
    lblStatus.Text = "Error inserting record.";
    lblStatus.Text += err.Message;
    finally
    con.Close();
    //If the insert succeed, refresh the customer list.
    if (added > 0)
    FillCustomerList();
    Regards,

    Because you're composing the SQL statement with string concatenation, you would put the "N" before the single quote,
    VALUES(N'";
                insertSQL += cboCustomerType.Text + "',N'";
                insertSQL += cboTitle.Text + "',N'"; // ...etc
    However, composing SQL statements with string concatenation is not a suggested practice because it's open to SQL injection (see:
    https://technet.microsoft.com/en-us/library/ms161953(v=sql.105).aspx). A safer way to do this is to use command parameters to represent the values (see SqlCommand.Parameters
    property). If you use parameters, you can specify parameter data type as SqlDbType.NVarchar, which will ensure your text values are passed in as Unicode. Also ensure that the columns in question are defined in the database table definition as Unicode (NVARCHAR
    rather than VARCHAR).
    Hope this helps, Bob

  • Partitioning on a Table - Few Questions, Confusions

    Hello All,
       I've a table with around 300 Million Records. This Table has one Key Column (Auto Incremented by 1 ) and a Unique ID Field.
    Primary Key (Clustered Primary Key) was created on Key Column of this Table.
    Now If I want to partition this table based on UniqueID Field, SQL Server is not allowing me to do it! It throws the error something like "Partitioned Column should present in Primary Key (Clustered Index)"
    Is it mandatory that the partitioned column should definitely be present in the clustered index or primary key of the table if exists.
    Could someone tell me what are the prerequisites to partition a table that already have a primary key on FieldA and Unique Non Clustered Index on FieldB and I'd like to partition the table based on FieldC?
    Thanks in Advance...
    Unknown

    Hi Roger,
    I am a little confused, why do you want to partition a table based on a UniqueID? Partioning is more of a logical thing to do like dividing a table yearly, for ex the table can be divided on a year by year basis which would make more sense as the older data
    can be moved over to slow storage if it's used as often as the new one based on the environment.
    A UniqueID would just be a random number, I am not sure how are you planning to create a partition scheme on this and would that be effective.
    Just to answer your question, it's not mandatory to have a PK column included in the partitioning.
    For Ex, one of the scripts that I wrote
    --CREATE PARTITION FUNCTION PF_test (datetime)
    AS RANGE LEFT FOR VALUES
     ('2010-12-31 23:59:59.999',
     '2011-12-31 23:59:59.999',
     '2012-12-31 23:59:59.999',
     '2013-12-31 23:59:59.999',
     '2014-12-31 23:59:59.999',
     '2015-12-31 23:59:59.999')
    GO
    I would suggest that you watch the below video to have a better understanding:-
    http://technet.microsoft.com/en-US/sqlserver/gg545008.aspx
    Please mark the answer as helpful if i have answered your query. Thanks and Regards, Kartar Rana

  • SRM table CFF_CONT question : huge table, what is that table for ?

    Hello
    We are looking to have more details about table CFF_CONT on a SRM system
    The tolat size of DB is 344 GB
    and only for table CFF_CONT we do have 284 GB, compared to total size this is really huge
    the rest of the DB is only about 60 GB
    What is that table for ?
    Would it be normal to see that table on SRM growing much more than the others ?
    Is that table something that can be clean up ?
    Those questions are poping up becasue we are doing a system copy with sapisnt and R3load
    and we see that this table only is requiring a so huge amount of thime to be exported
    Regards

    By the way ...
    That CFF_CONT table belongs to cFolder components

  • Table design question

    Hello,
    I have a quick question on a table design. I currently have a table that will store approval information on a report. The individual report will need to go through 3 levels of approval before it's considered final. I have considered a few different scenarios on how to design the table but I'm not sure on what is the best choice. Currently I'm using 3 columns that will store each approval. For example,
    Table 1:
    file_id,
    subject,
    summary,
    division_approve,
    program_approve,
    group_approve
    I thought about using one column and simply stepping through a higher numeric value for each approval but found that doesn't work if I want to view items that were approved only at the division_approve level. Does anyone else have any suggestions? Hopefully I provided enough information.....
    Thanks in advance!
    Randy

    yes, better going for higher level of normalisation and desiging more tables:
    tab_aproval ( id,File_id,Approval_authority,rank )
    id      File_id Approval_level rank
    1     1 first_level 1
    2     1 second_level 2
    3     1 third_level 3
    4     2 first_level 1
    5     2 second_level 2
    tab_file_approval
    file_id, subject, summary, id
    1 'doc 1' 'first level done' 1
    1 'doc 1' 'second level done' 2
    1 'doc 1' 'third level done' 3

  • Size of dimention table  fact table ratio  question..

    Hey Guys !!!
    I have  very basic question regarding the ratio of size of dimention table and fact table..
    its mentioned that the ratio of dim table / fact table  sizes should not be greater than 1:20 for performance reasons .. thats OK..
    now lets say if i have fact table with customer dim_id ,some other dimention ids , and revenue (KF) .. with 1 million records ..
    so ideally my customer dimention table should not have more than  200,000 recods (.ie 200,000 different customers ).
    doesnt this put limitation on number of customers in a cube ?
    if so, how do we handle this ?
    please correct me if i am wrong  in interpreting the concept of dimension table.
    thanks in advance
    swapnil

    Hi ASRao ,
    thanks  for replying ...
    you said exactlly what i know  ..
    sorry i didnt put my question in correct prespective ...
    whay i meant was...
    lets say  , i need to have more than specified (1:20 ) number records in dimension table ,it will definately hamper my reporting performance ...
    so, is there any solution to handle this kind of problem ?
    like how would i maintain my efficiency of reporting in this case ?
    thanks in advance

  • Dynamic Table Creation Question

    Can you dynamically add a column to a data table at run time using JSC and JSF? I have a case where I want to add a column to a table based on a selection by the user.

    Hi
    I have been trying to this when I saw your question first time two days back. I tried changing the rowset's query but nothing seems to work. I will try again and I am sure that I can give you something on this if there is any straight solution to this.
    Thanks
    Srinivas

  • Table validation question

    Hi
    I have created 2 tables zposition, zwork.
    The fields in zposition is department and position.
    The fields in zwork is empid, department, position, firstname and lastname.
    I wanted to create a validation that when i insert the data into the zwork, the system will automatically check against the zposition tables for the department and position that was store inside it. How do i do it?

    in ur zwork table where u find the fields department and position..
    in the table fields of zwork just put the cursor on this field say department and click the key button(on the top) it will propose for a check table and in there give the zposition table relavant field department.
    the answer is there in ur question itself ...
    // check against the zposition tables for the department and position--> u need to propose the check table on that field .
    so all in ur are validating the zwork department entry with zposition department field..

  • Translate table field from German to English? Info on SCI generated table?

    I need to translate the desc field of SLIN_DESC table. I am using 'select' statement to pull 'DESC' field. The data is stored in German. How do i translate it to English before i display the data? Or is there any other table which contains the description when SCI generates error/warning report. Basically i need to display error/warning description generated by SCI when it is executed. Any help will be appreciated.
    Thanks
    Nahman

    Hello Nahman
    This table appears to be a special one. When I call SE16 (logon language = EN) I see the German code descriptions like you did.
    If you look at package SLIN you will find class <b>CL_SLIN_TEST_INFO</b> which has a static method <b>DESC_GET_DESCRIPTION</b>. When I call this method for code='0000' I get the English text (<i>Program contains syntax errors</i>).
    Regards
      Uwe

  • Translate table field from German to English?

    I need to translate the desc field of SLIN_DESC table. I am using 'select' statement to pull 'DESC' field. The data is stored in German. How do i translate it to English before i display the data?
    Thanks
    Nahman

    Hi Nahman,
    I think you need to have values for german in your table to get the greman content.
    But you can have an option to change repository text for a table using transaction code SE63.
    For this Click on Translation->Repository texts.
    It will display list of reposotiy text that you can do translation.
    Data Elements
    Matchcode IDs
    Matchcode Objects
    Search Helps
    Table Descriptions
    Table Types
    Type Groups
    Fixed Values for Domains
    Views
    Thanks,
    Vinay

  • Margin and Table Cell Question

    Hi,
    The main banner at the top of each page changes it's position
    when I view it in the browser. For example, on this page it is okay
    http://www.foryourbackyard.com.au/products.htm
    Though this page the banner slips down a touch.
    http://www.foryourbackyard.com.au/sheds.htm
    Any ideas welcome.
    Also on this site the table cells seem to have a gap at the
    bottom of the roll over image.
    http://www.d-force.com.au/
    I'm not sure why.
    Thank in advance.
    Ray

    For anybody who might stumble on this in the future looking for an answer to the same or a similar question, I figured this out with the help of Andreas Kiel and Philip Buckley on the Applescript Studio mailing list. Below is the answer.
    Given a data source named "D" and table columns named "bc1" and "bc2" (both of which contain a checkbox style button cell), this is the syntax:
    tell data source "D" --to check the checkboxes
    set content of data cell "bc1" of every data row to true
    set content of data cell "bc2" of every data row to true
    end tell
    tell data source "D" --to uncheck the checkboxes
    set content of data cell "bc1" of every data row to false
    set content of data cell "bc2" of every data row to false
    end tell
    The problem I was having is that I used the name of the button cell itself in the data cell reference rather than the name of the table column.
    Hope someone finds this useful
    St!ff

Maybe you are looking for

  • IPhone won't auto launch iTunes anymore

    I just updated to Lion and the new version of iTunes. When I plug in my iPhone, however, iTunes won't launch and autosync anymore. I checked the settings and, based on my preference settings, it should autolaunch. I tried to click and unclick on the

  • Problem with showing Message Box in InputVerifier

    I am trying to create an application and require to validate input fields. I have successfully written the code to use the InputVerifier class to validate the input and showing JOptionPane dialog to notify errors. This code working fine with Jdk 1.3.

  • ITunes thinks daughter's Shuffle is my iPad

    I've been trying to charge and put music onto my daughter's 4th-gen iPod Shuffle by connecting to my MacBook Pro running OS X 10.9.2. Regardless of which USB port I use (any one of three), iTunes detects the shuffle as my iPad -- displays my iPad dev

  • Query Builder - Tables not Appearing

    Hi, I am encountering a problem when trying to use Query Builder. If I have a table that is joined to by more than one other object and wish to drag TWO instances of this table into Query Builder, it will not allow it to happen. It doesn't give any e

  • Apple TV menu does not appear on screen

    No menu appears on the tv screen even though the Apple TV unit has a glowing light indicating that is responding to remote control