Order Management - EBS (MOSC)

MOSC Banner

Need to get the order entry error messages.

edited Jul 1, 2010 10:44PM in Order Management - EBS (MOSC) 3 commentsAnswered
 Hi All,

            Customer is asking us to capture order entry errors, we thought of using the below query for messages

SELECT mt.MESSAGE_TEXT, msg.*
  FROM oe_processing_msgs msg,
       oe_order_headers hdr,
       oe_order_lines lin,
       oe_processing_msgs_tl mt
 WHERE hdr.header_id(+) = msg.header_id
   AND lin.line_id(+) = msg.line_id
   AND msg.transaction_id = mt.transaction_id(+)
   AND mt.source_lang(+) = USERENV ('LANG')
   AND msg.TYPE = 'ERROR'

      But the customer specified their criteria as below

 Qty-open-ord" <> 0
     And Order-date" > ( getdate() )
     OR Request-date" < Order-date"
     OR Request-date" > getdate() + 365
     OR Promise-date" IS  NULL
     OR Promise-date" < Request-date"
     OR Promise-date" = Order-date"

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