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

new namespace

Former Member
0 Likes
899

Hi,

we have got new namespace from SAP. But we developed the code already with "Z". Now we would like to record all the objects which we developed under "Z" want to tranfer to our new namespace. But i have no idea how we can do that???

Will you please help me in this regard??

Thanks

anu.

1 ACCEPTED SOLUTION

Hi,

we have got new namespace from SAP. But we developed the code already with "Z". Now we would like to record all the objects which we developed under "Z" want to tranfer to our new namespace. But i have no idea how we can do that???

Will you please help me in this regard??

Thanks

anu.

7 REPLIES 7
Read only

0 Likes
827

Hi,

I already got a new namespace from SAP and now i would like to record all the objects which are already developed under standard "Z" to our new namespace.

Thanks

anu.

Read only

0 Likes
827

Hi,

U can copy the existing Z program to another in ur namespace.

Message was edited by: Judith Jessie Selvi

Read only

jayanthi_jayaraman
Active Contributor
0 Likes
827

Hi,

Check this link for mass downloads of source code including function groups, text pools, and reports.

In that program,give your program name , downloaad[check],location to be downloaded.

http://sap.ittoolbox.com/code/d.asp?d=1623&a=s

Then try to upload those files to the specified location.

Have a look at this link.

http://sap.ittoolbox.com/code/d.asp?d=2275&a=s

It's code copies variants from one program to another

Regards,

J.Jayanthi

Read only

0 Likes
827

Hi,

Just try giving your program name and checkmark the download to downlaod the file you want.Just see the code for that.

http://sap.ittoolbox.com/code/d.asp?d=1623&a=s

Check whether it is downloaded.

After that just give that downloaded filename in that program and give the new program name.Check this link for the code.

http://sap.ittoolbox.com/code/d.asp?d=1622&a=s

In that they have used parameter ,just try it with select-option.

Hope this helps.

Read only

Former Member
0 Likes
827

Hi,

Try renaming all the 'Z' objects to new name space, using the rename option available. Hope this helps.

Rgds,

Read only

jayanthi_jayaraman
Active Contributor
0 Likes
827

Hi,

The very best I suggest is write a report program.

In that frame the select statement like this.

select * from trdir into table itab where name like 'Z%'.

This will put all your Z program names into itab.

Loop this itab.

inside the loop run the BDC for SE38.

[you can very well record the same in SHDB]

Then all your Z programs will be transfered to new name space.

Hope this solves your problem.

Try this and reward points if it is useful.