Tuesday, September 12, 2017

API to Create FND Message (FND_NEW_MESSAGES_PKG.LOAD_ROW)

BEGIN
   FND_NEW_MESSAGES_PKG.LOAD_ROW (x_application_id     => 0,
                                  x_message_name       => 'TEST1',
                                  x_message_number     => 0,
                                  x_message_text       => 'Test1',
                                  x_description        => 'Test1',
                                  x_type               => NULL,
                                  x_max_length         => NULL,
                                  x_category           => NULL,
                                  x_severity           => NULL,
                                  x_fnd_log_severity   => NULL,
                                  x_owner              => -1,
                                  x_custom_mode        => 'FORCE',
                                  x_last_update_date   => NULL);
END;
/

No comments:

Post a Comment

API to Delete FND Application (FND_APPLICATION_PKG.DELETE_ROW)

BEGIN    FND_APPLICATION_PKG.DELETE_ROW (X_APPLICATION_ID => 20003); END; /