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

hi all script

Former Member
0 Likes
446

hi all only expert pl

i want to change developement class of a form ( in script).

how to change the developement class of a form???

thanx

rocky

3 REPLIES 3
Read only

Former Member
0 Likes
431

Hi,

Use the Program RSWBO052 to create the Transport Request for a SAPSCRIPT, In the Selection screen of the program, give R3TR – FORM – Give the Form name and press Execute button, it will ask the Development Class and the transport Request No.

Regards

Sudheer

Read only

Former Member
0 Likes
431

in se71, in EDIT mode, use the menu "goto-head", there put in another dev class.

Read only

varma_narayana
Active Contributor
0 Likes
431

Hi..

This can be Achieved by Updating the Table TADIR directly.

UPDATE TADIR SET DEVCLASS = 'ZTEST' "Your Package/Dev class

WHERE OBJ_NAME = 'ZZFORM1' "Your Form

AND OBJECT = 'FORM'

AND PGMID = 'R3TR'.

<b>Reward if Helpful.</b>