Add_Info(lu_name_ IN VARCHAR2, text_ IN VARCHAR2, p1_ IN VARCHAR2 DEFAULT NULL, p2_ IN VARCHAR2 DEFAULT NULL, p3_ IN VARCHAR2 DEFAULT NULL)
This procedure adds an information tag to the buffer for information and warnings.
| Name | Description |
|---|---|
| lu_name_ | The logical unit name |
| text_ | The info text message in similar syntax as an error message to be language independent. (text_ => 'KEY: Warning text...') |
| p1_ | Text to replace ':P1' in the string text_ |
| p2_ | Text to replace ':P2' in the string text_ |
| p3_ | Text to replace ':P3' in the string text_ |
None.
None.
Use this interface when information message boxes are wanted to be shown in the client environment.
order_rec_ customer_order%ROWTYPE; .. IF (order_rec_.preliminary = '1') THEN Client_SYS.Add_Info('CustomerOrder', 'PREL: The order :P1 is just preliminary.', order_rec_.order_id_); END IF; ..