cancel
Showing results for 
Search instead for 
Did you mean: 

ESS Marital Status field not visible in Review screen of Personal Data

Former Member
0 Kudos

Hi,

When an India user selects some value from the Marital Status dropdown in the Personal Data Edit screen, and clicks Review, no value shows up against the label 'Marital Status' in the Review screen.

This behaviour is observed only for some employees and for others, it works just fine.

Could you please suggest what all I need to check?

Thanks,

Priya

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi Priya,

After little investigation I found there is some issue with country and state handler, seems to be a bug in Personal Data application.

Meanwhile you can raise OSS or if you want to resolve the issue your-self, change the code in review screen method (wdDoModifyView) as shown below this will do the trick.



TextFieldInfo[] fieldInfo = new TextFieldInfo[]
    { new TextFieldInfo("Anred", "Title_0"),
      new TextFieldInfo("Sprsl", "Language"),
	  new TextFieldInfo("Gesch", "Gender"),

/*
 * ******************************************************************************************
	   * Below line [new TextFieldInfo("Famst", "Marital_Status")] position is changed to get executed before Country of birth and State1 field is displayed.
	   *  Therefore Marital_Status will get executed at fieldInfo[3] instead fieldInfo[8]
	   *  The changes are done because if the states drop-down has no value for any few specific countries, Marital Status field is not displayed in Review and Save perspective.
	   *  
******************************************************************************************
*/
	  new TextFieldInfo("Famst", "Marital_Status"),
	  new TextFieldInfo("Gblnd", "City_Of_Birth"),
	  new TextFieldInfo("Natio", "Nationality"),
	  new TextFieldInfo("Gbdep", "State1"),
	  new TextFieldInfo("Nati2", "Nationality2"),
	  new TextFieldInfo("Nati3", "Nationality3"),
	  new TextFieldInfo("Konfe", "Religion"),
    };

Regards,

Former Member
0 Kudos

This should be due to missing context element binding with screen element.

Similar was on Australia bank scenario, which we raised with SAP and they send a fix in SP13. Meanwhile you can fix it if you have NWDI setup in your environment.

Cheers,

Sudhir

Former Member
0 Kudos

I faced this issue....then i created a new UI Element on the ReviewView and binded it to the Context Attribute for Marital Status...

Shikhil

Former Member
0 Kudos

Hi Shikhil,

Any idea as why this issue is appearing in IN PDATA?

Regards,

SJ

Former Member
0 Kudos

This is probably because of incorrect context mapping in the pdata webdynpro...between the Fc and the Vc components....

Regards,

Shikhil

Edited by: Shikhil Arora on Dec 8, 2008 2:34 PM

Edited by: Shikhil Arora on Dec 8, 2008 2:35 PM

Former Member
0 Kudos

_

Former Member
0 Kudos

Hi,

Right could be, but I observed a strange behavior!!!

When Country of birth is set to India or other country that has value for state field, Marital Status is displayed in Review Screen, else itu2019s blank.

Now not getting exactly what could the relation be between getting values in drop-down for state and Marital Status being displayed in Review screen?

We have similar scenario in Italy but the following error is not observed for PData Italy application.

Regards,

SJ

siddharthrajora
Product and Topic Expert
Product and Topic Expert
0 Kudos

Ensure you have not done any modification to the screen, and also

Please remove the check box of Unused columns from both the tables

V_T588MFPROPS and V_T588MFPROPC, Then check out the results