Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

OAOR Transaction

Former Member
0 Likes
886

Hai,

Is it possible to create new folder in OAOR transction? If CLASS NAME = PICTURE & CLASS TYPE = OT

Hai,

Is it possible to create new folder in OAOR transction? If CLASS NAME = PICTURE & CLASS TYPE = OT

2 REPLIES 2
Read only

Former Member
0 Likes
680

Hi Uday,

try this,

You have to solve it within ABAP.

DATA: lv_comm(50) TYPE c,

lv_dir(50) TYPE c.

lv_dir = 'mydir'.

CONCATENATE 'mkdir' lv_dir INTO lv_comm SEPARATED BY space.

dir = unixcom = lv_comm. "command to create dir

or,

Just ask your basis to do it for you as they have all the authorizations.

cheers,

Hema.

Read only

Former Member
0 Likes
680

HAi Hema,

I can't understand your input why we should write coding to crate folder in OAOR transaction, and i can't understand what is unixcom, dir