Add_Info

Add_Info (lu_name_ IN VARCHAR2,
	  text_ IN VARCHAR2,
	  p1_ IN VARCHAR2 DEFAULT NULL,
	  p2_ IN VARCHAR2 DEFAULT NULL,
	  p3_ IN VARCHAR2 DEFAULT NULL)

Purpose

This procedure adds an information tag to the buffer for information and warnings.

Parameters

NameDescription
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_

Returns

None.

Pragma

None.

Comments

Use this interface when information message boxes are wanted to be shown in the client environment.

Example

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;
..