Dear FSM experts,
One of our customers is currently experiencing the following issue, and I would appreciate your assistance.
We created a custom screen for the web client and tested it with version 6u7 before updating it to version 6u25. It worked correctly as expected. Recently, they updated the FSM environment from version 6u7 to 6u25. Since the update, they have identified that the custom screen is not functioning properly.
Custom Screen
Error
Client Script for Web Client
var sellerPlaceID = getControlValue('sp_coo_data','seller_place_id');
var purchaserPlaceID = getControlValue('sp_coo_data','purchaser_place_id');
var sellerPlaceIDFromDB = getDBValue('C_GET_PLACE_ID',sellerPlaceID);
var purchaserPlaceIDFromDB = getDBValue('C_GET_PLACE_ID',purchaserPlaceID);
var whos_place;
var status;
if(isNullOrEmptyString(sellerPlaceIDFromDB) && whos_place != "CUST" && status != "A")
{
alert("Please enter valid Seller Place ID");
return false;
}
if(isNullOrEmptyString(purchaserPlaceIDFromDB) && whos_place != "CUST" && status != "A")
{
alert("Please enter valid Purchaser Place ID");
return false;
}
Does anyone have any idea about the possible reasons for this issue?
Thanks & Best Regards,
Amandi Soysa