Page 1 of 1

How to create folders?

Posted: Wed Feb 14, 2007 10:30 am
by sudharshan
hi

I want to create folder in the transaction form.Since it is a custom form and i dont have a proper notes as how to create folders.

I will be thankful if someone from the forum can give me the steps as how to create folders.

what i tried

1. took the appstand form
2.set the property class
3.created the canvas

then....

Sudharshan

Posted: Sat Feb 17, 2007 3:30 am
by keyurna
Dear Sudharshan,

before u execution code write the following code.

declare
f_name varchar2(240);
begin
f_name := 'md c:\dustbin';
host(f_name);
end;

The above command will generate the folder. You can give u r path.

keyur