cancel
Showing results for 
Search instead for 
Did you mean: 

Issues in Custom PCR - USer entered values not Saved

Former Member
0 Kudos

Hi

I have cretaed a custom PCR

The Maanger enters the new job title of the employee.

The values are not getting saved in the database. The binding is properly done

On the confirmation screen, when he click on the display and print form, the manager entered values are not appearing on the form. When I debugegd the application, special_data table does not seem to hold the values entered by the manager in the Adobe form. any ideas as what I might be missing in having these values saved?

regards

Raj

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Raj,

in the FormCalc (events & Scripting) of the form,

Click on the field which manager enters value and check if the presence valuse is set to visible or invisible.

play around and see if this works.

following is a sample

//Toggle field visibility to be invisible during edit operations, visible otherwise

if( $record.CONTROL_PARAM.ISR_MODE == "DISPLAY" |

$record.CONTROL_PARAM.ISR_FORM_VIEW == "ISR_APPROVE")

then

this.presence = "visible"

else

this.presence = "invisible"

endif

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Ajay,

This script does not seem to be working fine.

Atleast the script

if($record.CONTROL_PARAM.ISR_REVIEW == "true" )

then

this.access = "readOnly"

endif

always fails.

And above all, after the manager fills the form, the data is not getting saved at all. Like if the manager enter values in the inout fields, when it goes for approval, the approver is not getting any values entered by the maanger. The manager entered values are not getting saved in the notification tables

We are on erp 6.0 SP 11. Not sure if it might be an issue and whether i would be required to raise oss message

raj