* Dec 3, 2004 Mistakes in assignment of value labels were corrected for some variables. * ffppns ffmmns. value labels ffppns ffmmns 88 'Not applicable' . missing values ffppns ffmmns (88). formats ffppns ffmmns (f2.0). recode ffppns ffmmns (8 = 88). execute. * Sep 2, 2005 In the question asking kind of spouse's job, the wrong code "no answer" was assigned to a respondent who does not have a spouse, instead of "not applicable." /* The wrong code was corrected in this case. * ssxxhqx. do if (iduse = 1159). recode ssxxhqx (999 = 998). end if. execute. * Sep 20, 2005 In the question asking kind of the first job, the wrong code "not applicable" was assigned to a respondent, instead of "no answer." /* The wrong code was corrected in this case. * xxfstwp xxfstjb. do if (iduse = 214). recode xxfstwp (998 = 999). recode xxfstjb (998 = 999). end if. execute. * Sep 26, 2005 In the question asking kind of father's job, a wrong code was assigned to a respondent, instead of "not applicable." /* The wrong code was corrected in this case. * ppjbxx15. do if (iduse = 534). recode ppjbxx15 (649 = 998). end if. execute. * Oct 24, 2005 A wrong name of religion was corrected. * xxrl ssxxrl. value labels xxrl ssxxrl 10 'Buddhism' 11 'Zen sect' 12 'Tendai sect' 13 'Jodo sect' 14 'Jodoshin sect' 15 'Shingon sect' 16 'Nichiren sect' 17 'Ji sect' 20 'Shinto' 22 'Ooyama Nezunomikoto Shinji Kyokai' 29 'Buddhism and Shinto' 30 'Christianity' 31 'Catholicism' 32 'Protestantism' 33 'Greek Orthodox Church' 35 'Jehovahs Witnesses' 41 'Soka Gakkai' 42 'Risshokosei Kai' 43 'Reiyu Kai' 44 'Busshogonen Kai' 45 'Kofuku-no Kagaku' 51 'Sukyo Mahikari, Mahikari' 52 'Tenri Kyo' 53 'Shinnyoen' 54 'Shinyugenkyusei Mahikari Bunmei Kyodan' 55 'PL Kyodan' 56 'Reiha-no Hikari' 57 'Byakko' 58 'Seicho-no Ie' 59 'Konko Kyo' 61 'Ontake Kyo' 80 'Ancestral worship' 81 'Sai Baba' 85 'Other' 87 'Dont know' 88 'Not applicable' 99 'No answer' . execute. * update. preserve. set print off. add document 'JGSS-2000 English dataset was updated to version 6.1 in January, 2006.'. display documents. restore. * Aug 3, 2009. * This respondent was not allowed to affiliate in a labor union because of the job he had. /* The wrong code was corrected in this case. * joinuni. do if (iduse = 1572). recode joinuni (1 = 3). end if. execute. * update. preserve. set print off. add document 'JGSS-2000 English dataset was updated to version 6.2 in August, 2009.'. display documents. restore.