Oracle Cloud ERP -Fusion (SaaS) – Message Creation and Query to extract

Steps to Create

As an administrator, here’s how you can view/create Message

  1. In the Setup and Maintenance work area, go to:
    • Task: Manage Messages
  2. Click on + Add to Create a new Message
-- Query -- to fetch message details
       SELECT
         fa.application_short_name,  fm.message_name, fm.message_text 
        FROM
            xxfnd_new_messages          fm,
            xxfnd_application    fa
        WHERE
                1 = 1
            AND fm.application_id = fa.application_id
--            AND fa.application_short_name = p_app
            AND message_name = 'FND_DOC_ASS_METHOD_INVALID'
            AND language = 'US';

  select * from fnd_message_tokens where message_name='FND_DOC_ASS_METHOD_INVALID'

Comments |0|

Legend *) Required fields are marked
**) You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>
Category: OracleSaaS