steps to create transport request

7
1. Steps to create transport Request. To transport the ABAP report variant go to ABAP Editor (SE38). Enter the name of the program, choose Variants radio button and press Display button. In the ABAP Variants screen, go to menu Utilities –> Transport request When you click on menu Utilities –> Transport request, it will call the SAP standard report RSTRANSP. You can also reach the above screen by just executing the report RSTRANSP in ABAP Editor (SE38). Enter the name of the program and variant name and execute (F8).

Upload: saurabh-wadhwa

Post on 01-Nov-2014

112 views

Category:

Documents


1 download

DESCRIPTION

SAP_ABAP

TRANSCRIPT

Page 1: Steps to Create Transport Request

1. Steps to create transport Request.

To transport the ABAP report variant go to ABAP Editor (SE38).

Enter the name of the program, choose Variants radio button and press Display  button.

In the ABAP Variants screen, go to menu Utilities –> Transport request

When you click on menu Utilities –> Transport request, it will call the SAP standard report  RSTRANSP. You can also

reach the above screen by just executing the report RSTRANSP in ABAP Editor (SE38). Enter the name of the

program and variant name and execute (F8).

Page 2: Steps to Create Transport Request

Select all the variants you want to transport and press continue.

Assign the variant to an already existing Transport request or create a new request.

Page 3: Steps to Create Transport Request

2.

Can We Create a Transaction Code for Table Maintenance Generator?

yes

To create a transaction code for Table Maintenance Generator (TMG), go to transaction code SE93.

 

Enter the name of the t-code to be created and press “CREATE”.

Page 4: Steps to Create Transport Request

In the pop-up enter short description for the new t-code, Select the “Transaction with parameters” radio button and

press continue.

Page 5: Steps to Create Transport Request

In the create parameter transaction screen, Enter “SM30” for transaction and check the Skip initial

screen checkbox. Now add the following parameters using the insert new row button.

NAME OF SCREEN  FIELD VALUE

VIEWNAME ZEMPL

Page 6: Steps to Create Transport Request

UPDATE X

Another way of creating a t-code for TMG is just create a REPORT program and call the function module

“VIEW_MAINTENANCE_CALL” by passing view name and action as parameters. Then create a t-code for the report

program.

With the parameter ACTION, you can specify the processing action to be  performed. Possible actions are:

ACTION DESCRIPTION

S Display

U Change

T Transport

Page 7: Steps to Create Transport Request