TDMS in same system

Hello TDMS Group Members,
We had setup TDMS environment,
Our BI 7.0 sandbox system is central system.
Production copy sandbox client 100 is sender
Production copy sandbox client 120 is receiver
Both sender and receiver are on same ECC 6.0 system.
Is there any issue foreseen or any issue to sender client data,
Any information would be highly appreciated.
Thank you,
AKL

hi Pankaj,
i want to ask you regarding TDMS logging activities, if you could help me.
I have written my own program for creating conversion scrambling rules and when i run it in the tdms interface
i want to do the logging of this stuff for e.g from which user , time, date , and all the same as SAP default logging
protocols are doing, i am going through this program cnv_mbt_def_046 again and again, but so far not successfull to know that
how is the mechanism working, if  you could help me please how could i logg all the activities, as the SAP default logging
procedure is working.
Thanks in advance,
regards,
Umer Malik

Similar Messages

  • TDMS ECC Intra System

    I have a scenario were i need to run the "ERP Initial Package for Time based Reduction" within the same system but different clients.
    Is this possibe?
    When i reach the step maintain RFC Destination, i maintain all the details and when i save the settings it shows a message "Not all RFC destination is ready for use".The RFC destinations get created in the Central/Control System.But not in the Sender/Receiver Client.
    I believe this is because, the RFC name that the TDMS package generates is such that it cannot be run within the same system. 
    Can someone throw light on this? Is this scenario possible?
    Thanks.

    Hi,
    You can run TDMS package on the same system and between different clients. However SAP don't recommend to run TDMS package on the same system.
    We tried this scenario, but we faced with the problem that Data Deletion step was very slow. Reason was because there are 2 ways to delete data in receiver system: Array delete and drop insert.
    Drop insert is faster way to delete the data from the receiver client. But in this method it first delete data from all clients during the run and restores it back when deletion is completed. But this method you cannot use as receiver and sender both are on same system.
    You have to use Array Insert only which is usually very slow as it first select the all the entries in table related to target client and then drop it. So, it is slow.
    That is the reason SAP don't recommend to have TDMS run in same system.
    Thanks
    Sunny

  • Development and consolidation same system

    Hello All,
    Can i declare both the development and consolidation as the same system without specifying test and production system in a track? If yes then is there any other factors to be considered?
    Also the SC state is in grey whereas if i click synchronize DC dependencies it turns green. Any suggestions on this?
    Regards,
    Anand

    HI,
    Can i declare both the development and consolidation as the same system without specifying test and production system in a track?
    you can declare development and consolidation as the same system. but then you wont be able to distnguish between the changes you made.
    keeping consolidation virtual is an good option than keeping development and consolidation as the same system.
    and without specifying test system is not a good option, test system should have to be there, as at that stage only you assemble and check you development as a complete application.

  • Bapi_po_create1 is giving same system messages  multiple time in the joblog

    Hi Experts,
    Bapi_po_create1 is giving same system messages multiple times in the job log when we ran the program in the background
    can u plz suggest how to prevent these multiple appearances of same messages.
    I am pasting the code below whn i ran this program in backgorund job log is having the messages.
    Date       Time     Message text                                                                 Message class Message no. Message type
    08/06/2009 08:11:53 Job started                                                                       00           516          S
    08/06/2009 08:11:53 Step 001 started (program ZZZTEST, variant &0000000000008, user ID BREDDY)        00           550          S
    08/06/2009 08:11:54 Commitment plan contains no account assignment data                              MECP          020          S
    08/06/2009 08:11:54 Commitment plan contains no account assignment data                              MECP          020          S
    08/06/2009 08:11:54 Status "Initial Block" of material 20111 does not allow external procurement      ME           053          E
    08/06/2009 08:11:54 Status "Initial Block" of material 20111 does not allow external procurement      ME           053          E
    08/06/2009 08:11:54 Source not included in list despite source list requirement                       06           722          E
    08/06/2009 08:11:55 Pricing/euro: Attention: Euro Customizing not maintained                          VH           777          S
    08/06/2009 08:11:55 Pricing/euro: Attention: Euro Customizing not maintained                          VH           777          S
    08/06/2009 08:11:55 Status "Initial Block" of material 20111 does not allow external procurement      ME           053          E
    08/06/2009 08:11:55 Purchase order still contains faulty items                                       MEPO          000          E
    08/06/2009 08:11:55 Job finished                                                                      00           517          S
    Edited by: bhavani prasad kotharu on Aug 6, 2009 3:09 PM

    HERE IS THE CODE OF THE PROGRAM, WE R JUST PASSING SOME PO DATA TO THE BAPI_PO_CREATE1,ON RUNNING THIS PROGRAM IN BACKGROUND SAME SYSTEM MESSAGES ARE APPEARED MULTIPLE TIMES,----
    REPORT zzztest.
    DATA :    lwa_bapimepoheader TYPE bapimepoheader
             ,lwa_bapimepoheaderx TYPE bapimepoheaderx
             ,li_bapimepoitem TYPE STANDARD TABLE OF bapimepoitem
             ,lwa_bapimepoitem TYPE  bapimepoitem
             ,li_bapimepoitemx TYPE STANDARD TABLE OF bapimepoitemx
             ,lwa_bapimepoitemx TYPE bapimepoitemx
             ,li_conditions TYPE STANDARD TABLE OF komv
             ,li_return TYPE STANDARD TABLE OF bapiret2
             , n TYPE c
    PARAMETERS: p1 TYPE c AS CHECKBOX.
    IF p1 = 'X'.
      lwa_bapimepoheader-doc_type = 'NB'.
      lwa_bapimepoheader-purch_org = 'NA00'.
      lwa_bapimepoheader-pur_group = 'C02'.
      lwa_bapimepoheaderx-doc_type = 'X'.
      lwa_bapimepoheaderx-purch_org = 'X'.
      lwa_bapimepoheaderx-pur_group = 'X'.
      lwa_bapimepoitem-po_item = '10'.
      lwa_bapimepoitem-material = '000000000000020111'.
      lwa_bapimepoitem-plant = 'CA01'.
      lwa_bapimepoitem-vend_mat = '1000'.
      lwa_bapimepoitem-quantity = '10'.
      lwa_bapimepoitem-orderpr_un = 'M'.
      lwa_bapimepoitem-no_more_gr = 'K'.
      lwa_bapimepoitem-agreement = '4600000095'.
      lwa_bapimepoitem-agmt_item = '10'.
      lwa_bapimepoitem-pricedate = 'X'.
      lwa_bapimepoitem-price_date = '20071030'.
      lwa_bapimepoitem-no_rounding = 'X'.
      APPEND lwa_bapimepoitem TO li_bapimepoitem.
      lwa_bapimepoitemx-po_item = '10'.
      lwa_bapimepoitemx-po_itemx = 'X'.
      lwa_bapimepoitemx-po_itemx = 'X'.
      lwa_bapimepoitemx-material = 'X'.
      lwa_bapimepoitemx-plant = 'X'.
      lwa_bapimepoitemx-quantity = 'X'.
      lwa_bapimepoitemx-po_unit = 'X'.
      lwa_bapimepoitemx-orderpr_un = 'X'.
      lwa_bapimepoitemx-acctasscat = 'X'.
      lwa_bapimepoitemx-agreement = 'X'.
      lwa_bapimepoitemx-agmt_item = 'X'.
      lwa_bapimepoitemx-pricedate = 'X'.
      lwa_bapimepoitemx-price_date = 'X'.
      lwa_bapimepoitemx-preq_no = 'X'.
      lwa_bapimepoitemx-preq_item = 'X'.
      lwa_bapimepoitemx-no_rounding = 'X'.
      APPEND lwa_bapimepoitemx TO li_bapimepoitemx.
    DATA: lo_msg_handler  TYPE REF TO cl_message_handler_mm.
      CALL METHOD cl_message_handler_mm=>get_handler
        IMPORTING
          ex_handler = lo_msg_handler.
      lo_msg_handler->remove_all( ).
      lo_msg_handler->cleanup( ).
      CALL FUNCTION 'BAPI_PO_CREATE1' "in background task
           EXPORTING
             poheader   = lwa_bapimepoheader
             poheaderx  = lwa_bapimepoheaderx
             testrun    = 'X'
           NO_MESSAGING = c_x
           NO_MESSAGE_REQ = c_x
             no_authority = 'X'
           IMPORTING
             expheader  = lwa_bapimepoheader
           TABLES
             return     = li_return
             poitem     = li_bapimepoitem
             poitemx    = li_bapimepoitemx
             conditions = li_conditions.
    ENDIF.
    Edited by: bhavani prasad kotharu on Aug 6, 2009 3:38 PM

  • Same system being shown multiple time in Solution for Early Watch Report

    Hi Gurus ,
    I have some satellite system configured to Solution Manager . Today I can see the same system entry multiple time in the
    Operations: Solution Monitoring -> Early Watch Alert.
    eg .,
    I have a system whose SID is ABC , i can see the ABC entry for todays date (i.e., 4 FEB 08) nearly 4 time .And this systems are not rescheduled for the next EWR (i.e scheduled for 11 FEB 08- since we have kept a period of 7 days )
    Please suggest
    Anthony

    Hi Anthony,
    There was an error, that EWA sessions for one systems were scheduled multiple times per week.
    Please check [SAP Note 1083108 - Duplicate EarlyWatch Alerts|http://service.sap.com/sap/support/notes/1083108]
    Search for SAP Notes with key words: EWA, multiple, duplicate.
    Application area: SV-SMG-OP
    What's the software configuration of your SolMan?
    Best regards,
    Ruediger

  • Migrating Transports via CHaRM to the same system more than once

    Good Day;
    Does anyone know if CHaRM has the capabilities to migrate transports (within a maintenance cycle) to the same system multiple times?
    Let me explain.
    When we move a maintenance cycle (release) through our landscape we move from;
    Development system - Quality system - Volume system. Then to production
    UAT is being done in both the quality system and the volume system.
    Once all testing is complete, we refresh the volume system with a fresh copy of the production system and re-import all the transports. This is to allow our BASIS team to do regression (batch) and load testing.
    Is there a way to use CHaRM to migrate the transports or is this something that needs to be done manually (as it is today).
    Thanks All,
    Regards
    Don Newton

    Just Ceaning up

  • Multiple agentry servers installed in the same  system?

    Hello Experts,
              There are two agentry servers installed in the same system,but in different drives(C and D drive).I have given access to one server remotely,in the sense the applications to the server in one drive are published by other developers who are connecting to the server through network. In the other drive server iam publishing the applications developed locally.But after deployment,when i connect to the server to retrieve definitions,iam getting the latest application published.
    Is this situation possible,because when we connect to the server we are using ip address of the system where the server is installed,if both the servers are running in different drives,then which server application will be deployed,Is there any possibility to connect to the server instances(in my system two server instances),so that the application that is deployed to individual servers can be retrieved?
    Thanks in advance
    Regards,
    Sravanthi
    Message was edited by: Michael Appleby

    Hi Sravanthi,
    I do not believe that you can run two Agentry Servers on the same hardware without making other changes (like running them on SMP 2.3).  I would suggest that you look into the documentation for SMP 2.3 as your best solution at this time.  Hopefully some more savvy Agentry folks will chime in with a more detailed response.
    Regards, Mike
    SAP Customer Experience Group - CEG
    Message was edited by: Michael Appleby

  • Material Master - Client to client copy (Same System)

    Hi,
    The requirement is to copy a list of Material Master available in a specific client to a different client within the same system.
    How to perform this activity with minimal manual intervention. Please give the solution in Detail.
    (The Business scenerio is that, So for certain list of materials were procured & handled in specific Client. Now the same materials are now going to be handled in different client within the same System.)
    Regards,
    Baskar

    Hi,
    Use LSMW or BDC with MMZ1 t.code for material ( old material or used material) uploading to new client.
    Regards,
    Biju K

  • After firefox update it will not stream video, explorer will on the same system, what is the problem?

    Firefox notified me that an update was available to install and after this install was complete I could not stream video from any site. I was instructed to clear my browser cache, I did ti no avail. I updated Adobe Flash and exhausted the extent of my troubling abilities w/o causing any major system unrest. I accessed the same video steam through explorer on the same system, but firefox is a far superior browser and I like to solve this problem to avoid having to find another browser.
    Please advise
    Aaron Schuler

    I have the same problem.  After the upgrade, my wifi is greyed out, and the battery won't hold a charge long. I reset all the settings, tried all the things suggested by Apple, but it didn't work.  I took the phone to Verizon, but they said they can't fix it, go to Apple
    I made an appointment at the Genius bar, where the staff was incredibly rude and dismissive. A representative told me that the wi-fi is broken and I would need to buy a new phone for $200, because mine is out of warranty. I'm due for an upgrade in a few months, so I'm not going to pay $200 for another 4S now.  I'm also not going to buy any more Apple products.  Their upgrade caused this problem, and they are not standing behind their producet.

  • Dreamweaver 8 and DW cs4 or DW cs5 on the same system?

    Hi all,
    I'm using DW8 + MX Kollection 3.7 pro for large sites and I I'm thinking to install DW CS4 or CS5 along with it.
    So, my question:
    can I install DW CS4 + ADDT or DW CS5 (alone) on the same system?
    Do they interfere each other?
    I don't mind working on the same website with different version of DW.
    But it could happen that I will need to edit a page of a website with a different verison of DW. Is there any problem to do this?
    For example: will DW CS4 + ADDT retain all server behaviuors created in DW 8? or, at least, will DW CS4 editing break server behaviour so that I will not able to work again on the page with DW8?
    Sorry for all these /dumb) question but I fear upgrading (every application) will break something working right away.
    TIA
    tony

    So, my question:
    can I install DW CS4 + ADDT or DW CS5 (alone) on the same system?
    Do they interfere each other?
    Yes, you can install them on the same system, and no, they won't interfere with each other.  Each version of DW installs as a complete, standalone application.
    But it could happen that I will need to edit a page of a website with a different verison of DW. Is there any problem to do this?
    No there's not a problem.

  • CS2 & CS4 Extended on the same system

    I have downloaded the CS4 Extended Trial but did not uninstall CS2 before doing so. Can these both exist on the same system without issues?
    Thanks!

    Yes. I have Photoshop 2.5.1, PS 6, PS 7, CS, CS2, CS3, CS4 all playing nice together on the same machine.

  • Final Cut Pro X and 7 on same system

    I am using Final Cut Pro 7 and I was not very keen on Final Cut Pro X when I tried it out.
    However, I have just learned that it could be advantageous workwise if I am prepared to work on some FCPX projects.
    I'm just curious to know if it is safe to run both applications on the same system; e.g. do they share preference files? Do they use the same plugins folder etc.?
    I know that in the past (and I mean the distant past) I have had problems trying to run different versions of the same software in the same machine and I'm too comfortable with FCP7 to just leap into working with an application about which I got an unfavourable impression and which many fellow professionals have told me instigated a move to Premiere.
    Can somebody give me some definitive advice, please?

    Alf Megson wrote:
    I
    I'm just curious to know if it is safe to run both applications on the same system; e.g. do they share preference files? Do they use the same plugins folder etc.?
    Yes it's safe and no they don't use same plug-ins.
    I'm running FCS3 and FCPX, Motion5, Compresor 4 on two systems. No problems.
    Bets would be to follow these steps – the same start-up explanation.
    Russ

  • Risks of two development groups in the same system

    Hi,
    I need your help.
    I'm looking for a document about the risks having two development groups in the same system.
    The point is: An external party will come soon and start the implementation of a mini H2R in the same system as we (the internal team) are working for SD, MM, CO,... As the developments are cross-client, I'm asked to write a document explaining the risks in such cases like:
    conflicts: working on the same objects
    authorisations: each group should be assigned to different packages
    planning: the go-live should be at the same time
    transports: there can be conflicts on a transport-level
    If you have any documentation that can help me, please let me know.
    Kind regards, Gilles.

    I hope this is not considered a link farm:
    Potential conflicts between already released transports:
    Program to validate transport sequence
    Uwe Schieferstein's blog on "Dangerous Liaisons in User-Exits and How to Avoid Them":
    /people/uwe.schieferstein/blog/2008/11/11/dangerous-liaisons-in-user-exits-and-how-to-avoid-them
    Just two of many things to observe...
    Thomas

  • ALE in same system.

    Hi All,
    Is it not able to execute ALE in the same system but in different clients. I tried it but there is some probelm with the IDocs passed. I do the configuration in client X in the same system with multiple clients. Since ALE configuration is cross client all the changes appear in client Y. I configure everything correctly and use MATMAS as the message type. I create the material through MM01 and send the material through BD10. The IDoc get transferred without any problems. But after I get the IDOC in client Y being the recieveing system it says that the Partner profile is not present. But if i try to distribute the model view once again it says that it is already done...Is ALE not possible within clients of the same machine.. or where am i doing wrong...
    Thanks in Advance,
    Sudhi

    Hi,
    Thanks a lot for the inputs... i did generate the partner profile in the recieving system as well now the error has chaged i recieve the IDoc without any problems and also i can see the data in the segment. I am using MATMAS as the message type and in the segment E1MARAM and E1MAKTM i can see the data as well but now the status code in WE02 is '51' which says that the Application Document not posted and gives additional information saying that the Function Module AFS_RETAIL_ARTMAS_IDOC_INPUT is not allowed. I am on version 4.7 .anybody knows how to get out from here ?

  • OBIEE 11.1.1.5 and OBIEE 11.1.1.6 Installation on same system.

    Hi All,
    Is it possible to have OBIEE 11.1.1.5 and 11.1.1.6 on same system?
    I know this is not practical and kind of unrecommended thing to do. But we have an OBIEE 11.1.1.5 instance installed on a server. And we don't want to deinstall it. Rather, if possible, we want to install OBIEE 11.1.1.6 along with this 11.1.1.5 instance.
    Also, is it possible to have OBIEE 10g and OBIEE 11g on one system?
    Thanks in advance...
    Dev.

    Hi,
    Why don't you go with Upgrade option..thats best way...you just upgrade obiee11.1.1.5.0 to 11.1.1.6.0
    Upgrade help Doc:
    http://blog.guident.com/2012/03/upgrade-obiee-11-1-1-5-to-11-1-1-6/
    http://gerardnico.com/wiki/dat/obiee/patch_11g_111160
    Also, is it possible to have OBIEE 10g and OBIEE 11g on one system?
    never tired you can tried to configre manual port configuration way
    Thanks
    Deva

Maybe you are looking for