Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

Make Fileds Mandatory In Adobe Forms

Avatar

Level 1

Hi All,

         I want to make few fields as mandatory in adobe forms in SAP CRM.Tel me how to proceed........

1 Reply

Avatar

Level 10

Hi,

I don't know the interface between SAP CRM and LC, so not sure if this will help.

You can access the mandatory property using script, so this would make a field mandatory:

TextField1.mandatory = "error";

This would make a field optional:

TextField1.mandatory = "disabled";

There is an example here: http://assure.ly/hxHupW.

Hope that helps,

Niall