Skip to main content

Featured

Android studio “SDK tools directory is missing”

Following 2 possible solutions will resolve this problem :  Solution1 : To fix the problem, it was required that I list the path to my corporate PAC file by using  Configure -> "Appearance and Behavior" -> System Settings -> HTTP Proxy . I selected "Automatic proxy configuration url:" Delete your  ~/.Android*  folders (losing all of your settings :/). Run Android Studio. It will show you a welcome wizard where it tries to download the SDK again (and fails due to my rubbish internet). Click the X on the wizard window. That will enable you to get to the normal welcome dialog. Go to Settings->Project Defaults->Project Structure and change the Android SDK location to the correct one. Solution 2 : To fix the problem, it was required that I list the path to my corporate PAC file by using  Configure -> "Appearance and Behavior" -> System Settings -> HTTP Proxy . I selected "Automatic proxy configuration url:&quo

What Is The Meaning Of Language Independent And Platform Independent?



Language independence means that you can execute your code, written in any language , in any otherdifferent language.
whereas 
Platform independence means that you can execute/run your application on any machine without being concerned with issues like what is the operating system of the machine etc.Platform independence refers in particular to the ability of the application to run on any machine having any operating system installed on it.


-------------------------------------------------------------------------------------------------------------------------------------------------------------------

About Language-Independent Code


The list of values table contains the following columns:
  • Display Value
  • Language Independent Code
Monolingual and multilingual lists of values display values from the Display Value column. If the user chooses a value in a list, then the actual value that Siebel CRM stores in the Siebel database is different for monolingual and multilingual lists of values:
  • A monolingual list stores the display value.
  • A multilingual list stores the language-independent code.
Language-independent code (LIC) is a mechanism that allows Siebel CRM to do the following:
  • Store data in a form that a user working in another language can retrieve
  • Roll up of data for management reports regardless of the language of the user who enters the data
Table 70 describes an example of how language-independent code works. In this example, a multilingual list displays the Display Value of Mr., Señor, or Herr, depending on the active language of the user. The list stores the value Mr. in the Siebel database because Mr. is the value that is defined in the Language Independent Code column.
Table 70. Example of How Language-Independent Code Works
Display Value
Language-Independent Code
Mr.
Mr.
Señor
Mr.
Herr
Mr.
NOTE:  The language-independent code value for predefined list of values data is typically the same as the American-English version.
Because you define an MLOV on a column basis, the columns that are not configured for multilingual continue to store display values instead of language-independent codes.

Comments