2009 Apr 27 5:58 AM
Hi,
I want to transport table entries as is across clients.
For eg: If my source client has 200 entries in the table and target client has 400 entries, then following the import of the Transport Request, I should have only 200 entries in the target client also.
Currently, table entries are getting created in the target client if not available earlier.
Existing Table entries in target client are modified as per entries in Source client.
And extra entries remain as it is.
I want the extra entries to be deleted.
Can I acheive this by means of Transport mangement other than doing it programmatically?
Any inputs would be appreciated.
Thanks,
Binu
2009 Apr 28 5:35 AM
Hi,
We have to delete the entries manually from the target client and transport the 200 entries from the source client to target client via customizing request (tcode SE10).
Create the customizing request in source -> add the entries to the your task under that request and transport them.
Hope it may help ypu,
Thanks
2009 Apr 27 6:05 AM
Hi Binu roy,
by writing the program we can ..
RFC_READ_TABLE is used to get the table entires from remote system..
write code that ..
selct from table in development system.
if sy-subrc =0.
delete entries in the wuality sytem..
and laod entries in the custom table.
endif.
Regards,
Prabhudas
2009 Apr 27 9:25 AM
u can create an RFC in which u can hve the code for deleting the entries.
1st select the entries from DEV SERVER into itab.
if sy-subrc = 0.
loop at itab into wa_itab.
call the RFC now giving the correct logical system id's of the target systems in the DESTINATION.
in this RFC, u will write the code such that
u hve select query with entries from QUAL OR PROD SERVER into itab1.
now compare the values from itab and itab1 and delete the extra entries. This will gve the same entries in both DEV and QUAL.
2009 Apr 28 5:35 AM
Hi,
We have to delete the entries manually from the target client and transport the 200 entries from the source client to target client via customizing request (tcode SE10).
Create the customizing request in source -> add the entries to the your task under that request and transport them.
Hope it may help ypu,
Thanks
2009 Apr 28 7:19 AM
Hi,
If you are working with table maintanance generator then you can transport the values using SCC1 transaction code. Otherwise you can write a program in se38 and execute it in target client then it automatically update database tables. Otherwise create RFC function module to update the tables and call it in program by providing necessary inputs in target client.
2009 Apr 28 10:07 AM