Application Development 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: 

program

Former Member
0 Kudos

sir

i want to transport the data development server into production server so plz give me program or step

thanks

ritu

6 REPLIES 6

Former Member
0 Kudos

t_code se10 release it.

You call the initial screen of the Transport Organizer with Transaction SE09 or SE10. You can also access the request overview of the Transport Organizer from all ABAP Workbench transactions by choosing Environment ® Transport Organizer (Requests).

The Display function lets you search for all requests that belong to the specified user and match the standard selection criteria set. You can change the standard selection as required.

The status selection for requests is used by default for the task selection. However, you can change this by going to the initial screen and choosing Settings ® Other settings.

Tasks that are not assigned to a request can no longer be created. This means that these tasks are no longer displayed as standard. If you still own tasks of this type, use the request search to display them.

The right side of the initial screen shows you cross-system information on the status of transports and repairs, and also lets you display the transport proposal inbox of the transport workflow.

You can find various tools for searching for, analyzing, and managing change requests by choosing Goto ® Transport Organizer tools.

Message was edited by:

Karthikeyan Pandurangan

Former Member
0 Kudos

Hi,

Use this Program....

*&---------------------------------------------------------------------*
*& Report YMNDTCOPY *
*& *
*&---------------------------------------------------------------------*
*& *
*& *
*&---------------------------------------------------------------------*

REPORT YMNDTCOPY MESSAGE-ID US NO STANDARD PAGE HEADING.

PARAMETERS: TABLE LIKE DD02L-TABNAME,
MANDT_FM LIKE T000-MANDT DEFAULT '207',
MANDT_TO LIKE T000-MANDT DEFAULT SY-MANDT.

TABLES: DD02L, T000.

DATA: LINES LIKE SY-DBCNT VALUE 0.
DATA: ICURSOR TYPE CURSOR.
DATA: ICURSOR1 TYPE CURSOR.
DATA: BEGIN OF TMP OCCURS 1000,
MANDT LIKE T000-MANDT,
REST(8189) TYPE C,
END OF TMP.
DATA: BEGIN OF TMP1 OCCURS 1000,
MANDT LIKE T000-MANDT,
REST(8189) TYPE C,
END OF TMP1.
data : ws_flag, ws_ans.
*OPEN CURSOR WITH HOLD ICURSOR1 FOR
* SELECT * FROM (TABLE) CLIENT SPECIFIED WHERE MANDT = MANDT_to.
*do.
* FETCH NEXT CURSOR ICURSOR1 INTO TABLE TMP1 PACKAGE SIZE 1000.
* IF SY-SUBRC = 0.
* ws_flag = 'X'.
* CLOSE CURSOR ICURSOR1.
* EXIT.
* ENDIF.
*enddo.
*
*if ws_flag = 'X'.
* CALL FUNCTION 'POPUP_TO_CONFIRM'
* EXPORTING
** TITLEBAR = ' '
** DIAGNOSE_OBJECT = ' '
* TEXT_QUESTION = text-001
** TEXT_BUTTON_1 = 'Ja'(001)
** ICON_BUTTON_1 = ' '
** TEXT_BUTTON_2 = 'Nein'(002)
** ICON_BUTTON_2 = ' '
** DEFAULT_BUTTON = '1'
** DISPLAY_CANCEL_BUTTON = 'X'
** USERDEFINED_F1_HELP = ' '
** START_COLUMN = 25
** START_ROW = 6
** POPUP_TYPE =
** IV_QUICKINFO_BUTTON_1 = ' '
** IV_QUICKINFO_BUTTON_2 = ' '
* IMPORTING
* ANSWER = ws_ans
** TABLES
** PARAMETER =
** EXCEPTIONS
** TEXT_NOT_FOUND = 1
** OTHERS = 2
* .
* IF SY-SUBRC <> 0.
** MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
** WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
* ENDIF.
*
*endif.
*if ws_ans = '1'.
DELETE FROM (TABLE) CLIENT SPECIFIED WHERE MANDT = MANDT_TO.
COMMIT WORK.
OPEN CURSOR WITH HOLD ICURSOR FOR
SELECT * FROM (TABLE) CLIENT SPECIFIED WHERE MANDT = MANDT_FM.
DO.
FETCH NEXT CURSOR ICURSOR INTO TABLE TMP PACKAGE SIZE 1000.
IF SY-SUBRC <> 0.
CLOSE CURSOR ICURSOR.
EXIT.
ENDIF.
LOOP AT TMP.
TMP-MANDT = MANDT_TO.
MODIFY TMP.
LINES = LINES + 1.
ENDLOOP.
INSERT (TABLE) CLIENT SPECIFIED FROM TABLE TMP.
CALL FUNCTION 'DB_COMMIT'.
ENDDO.

WRITE: / 'for table', TABLE, LINES, 'lines are copied.'.
*endif.

<b>Reward Points if this helps</b>

Satish

former_member188829
Active Contributor
0 Kudos

Hi,

You can do this one through Transport Request...

Tocode is SE10...

Former Member
0 Kudos

Hi Ritu,

We can use both <b>SE09</b> and <b>SE10</b>.

Regards,

Vijay.

Former Member
0 Kudos

goto SE10 transaction.

select the request no that you want to transport,

first select the particular task under that request and goto the truck sign on application toolbar and in the same way release main request also.

Former Member
0 Kudos

Hi,

You can use the following transaction codes for working with the transport organizer:

SE10-Transport Organizer: Enables you to view all the Workbench and Customizing requests created by different users.

SE01- Transport Organizer(Extended View)

SE03-Transport Organizer Tools: Tools are a collection of programs that help you to work with the Transport Organizer. You can change the package for a particular development object , or generate a transport request for any local object and several oter utilites are available.

Hope the information was useful to you..