how can you pass values to-and-fro from foreign function?
Answer / Anilkumarsingh
To pass values to and from a foreign function in Oracle D2K, you can use the PARAMETERS clause. This clause allows you to specify input parameters (IN) that are sent to the function, output parameters (OUT), and parameters that are both input and output (IN OUT). Here's an example:
```
DECLARE
myFunction (IN out_param1 number, IN out_param2 date);
BEGIN
myFunction(IN_PARAM1 => 5, IN_PARAM2 => SYSDATE);
END;
```
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain the types of record group.
What is the format trigger?
What is bind variables in oracle reports?
How to avoid duplicate entries in the forms?
What is call form stack?
I need to run a report at scheduled timings only. I don't want to run the report on sundays. How to do this?
What are object group?
how to dynamically change the page size of d2k reports?
What do you understand by anchoring in reports?
What is oracle d2k? Why we use it?
What is current record attribute property?
How many types of canvases are there. Explain them