EBS Customizations (MOSC)

MOSC Banner

Make DFF reuired trough CUSTOM.PLL

edited Oct 19, 2010 8:32PM in EBS Customizations (MOSC) 4 commentsAnswered ✓
Hi all,
I am trying to make the Descriptive Flexfield on the Invoice Workbench form, required. Since i haven't found a way of doing this trough Forms Personalizations, i am trying to do this with CUSTOM.PLL using :

        IF (event_name = 'WHEN-NEW-BLOCK-INSTANCE' AND block_name = 'LINE_SUM_FOLDER') THEN

                fnd_descr_flex.update_definition
                (
                BLOCK => 'LINE_SUM_FOLDER'
             ,FIELD => 'LINE_DF'
             ,ENABLED => 'Y'
             ,REQUIRED=> 'Y'
             );

        END IF;

But the problem i am facing, is that the form does not compile. It errors : wrong number of types and arguments in call to 'UPDATE_DEFINITION'. If i am deleting the REQUIRED = 'Y' line it works.

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center