Oracle Workflow API Reference Release 2.6.3.5 Part Number B12163-02 |
Previous | Next | Contents | Index | Glossary |
procedure GetInfo
(nid in number,
role out varchar2,
message_type out varchar2,
message_name out varchar2,
priority out number,
due_date out date,
status out varchar2);
Java Syntax
public static WFTwoDArray getInfo
(WFContext wCtx,
BigDecimal nid)
Description
Returns the role that the notification is sent to, the item type of the message, the name of the message, the notification priority, the due date and the status for the specified notification.
Arguments (input)
wCtx | Workflow context information. Required for the Java method only. See: Oracle Workflow Context. |
nid | The notification ID. |
The following code excerpt shows an example of how to call getInfo() in a Java program. The example code is from the WFTest.java program.
// Notification Info
System.out.println("Notification Info for nid " + myNid);
dataSource = WFNotificationAPI.getInfo(ctx, myNid);
displayDataSource(ctx, dataSource);
Previous | Next | Contents | Index | Glossary |