Implications of Deleting R/3 Client on BW Objects

Hello All:
We have 2 clients on R/3 DEV 200 and 300. Basis will be refreshing data every 3 months on client 200 by deleting the client and copying from 300.
All BW source related objects are pointing to client 200.
when a client is deleted in R/3, do we need to recreate all transfer rules, replicate datasources etc ? or just activate TRs that become inactive?
Appreciate all responses
Regards
Vijay

Hi,
Your BW objects won't get deactivated usually. You'll just need to see which TRs get deactivated and then reactivate them.
Cheers,
Kedar
Message was edited by: Kedar Patil

Similar Messages

  • Deletion of the client

    It started the deletion of the client and when arrived in the table ACCTIT below shows the error canceling the copy:
    Database error 824 at DEL access to table ACCTIT                                 
    Database error 0 at FET access to table REPOLOAD                                 
    Repost table TST01 (TemSe->XRTAB(3)->64; Flag: MDFF; Key ABAP)                   
    Spool: RT_UPDATE Reports Error 64 for Table                                      
    Repost table TST01 (TemSe->XRTAB(3)->64; Flag: MDFF; Key [600]SPOOL0000004388 ,1)
    Database error: TemSe->XRTAB(2)->128 for table TST01 key [600]SPOOL0000004388 ,1 
    Error at DB commit, return code 001024                                           
    Relevant data:
    S.O. - Windows 2003 SP2
    D.B. - MSSQL 2005
    Someone went through this?
    Thanks.

    It seems your TEMSE is corrupt - run a consistency check (see note 98065 - Spool consistency check with RSPO1043 as of 4.0A).
    Markus

  • Delete bapi wrapper with multi node object

    In delete bapi wrapper how do I discover if only the subnode was deleted ?.
    Because the user can delete operation of  the orderm and operation is subnode of object Orderm.

    Hi esoliveira ,
    Ex:  OrderHeader (Root)
                          --- OrderItems (Child level1)
    OrderSubItems  (Child level2)
    In this scenario, MODIFY will be called when
    1--> Root is updated
    2--> Child1 is updated/Deleted.
    3--> Child2 is updated/Deleted.
    Ex:  When you delete  OrderSubItems(Child2) on client and sync, DOE will call MODIFY BAPI pasing only OrderHeader(Root) and OrderItems(child level1).   Your MODIFY BAPI should have code/logic  to upate Root,OrderItems and delete OrderSubItems.
    Only when you delete OrderHeader on client and sync, DOE will call call the DELETE BAPI by passing the primary key of root(OrderHeader).  Your DELETE BAPI should have the logic to clean the child tables (OrderItems and OrderSubItems)  and then delete the root(OrderHeader) in the Backend.
    Regards
    Rohith

  • Delete a row from a data object using an AQ-driven EMS

    Hello, technetwork.
    I need to show the contents of a table that changes frequently (inserts, updates and deletes) at ORDBMS 10g in my BAM dashboard.
    What i have done is:
    - Create two different queue tables, queues.
    - Create two triggers: one for "AFTER insert or UPDATE" and the other for "BEFORE DELETE".
    - Create two EMS, one configured to Upsert operations and the other to Delete.
    - The Upsert EMS works, but the Delete EMS does not.
    - Both EMS Metrics say that they work fine and commit the messages i send to the ADC.
    - Testing showed records are populated and updated in the ADC but never deleted.
    There is a detailed user case for "Creating an EMS Against Oracle Streams AQ JMS Provider" in the Fusion Midleware Developer's Guide for SOA Suite, but it deals only with Upserts. I am using the last versions of SOA suite and Weblogic. The official support has no information either.
    I hope writing a web service client isn't the only way to delete a row from a data object. Am i missing something? Any help will be much appreciated.
    My EMS config:
    Initial Context Factory: weblogic.jndi.WLInitialContextFactory.
    JNDI Service Provider URL: t3://<spam>:80.
    Topic/Queue Connection Factory Name: jms/BAMAQTopicCF.
    Topic/Queue Name: jms/ProdGlobalBAMD_flx.
    JNDI Username: .
    JNDI Password: .
    JMS Message Type: TextMessage.
    Durable Subscriber Name (Optional): BAM_ProdGlobalBAMD.
    Message Selector (Optional): .
    Data Object Name: /bam/ProdGlobalBAM_flx.
    Operation: Delete.
    Batching: No.
    Transaction: No.
    Start when BAM Server starts: No.
    JMS Username (Optional): .
    JMS Password (Optional): .
    XML Formatting
    Pre-Processing
    Message Specification
    Message Element Name: row
    Column Value
    Element Tag
    Attribute
    Source to Data Object Field Mapping
    Key Tag name Data Object Field
    . BARCODE. BarCode.
    Added my EMS config

    Ram_J2EE_JSF wrote:
    How to accomplish this using JavaScript?Using Javascript? Well, you know, Javascript runs at the client side and intercepts on the HTML DOM tree only. The JSF code is completely irrelevant. Open your JSF page in your favourite webbrowser and view the generated HTML source. Finally just base your Javascript function on it.

  • How can I convert client-side Shared Object in server-side Shared Object?

    Hello world....
    I have a problem...
    I have a program that uses client-side shared Object, like the Example "Ball" il the FMS 3.5 guide: I can move a ball around the stage...
    I need to convert this program so I can use server side shared object. This is because I can load the .swf to another .swf and I must to be able to reset, or delete, the properties of my shared object. With client-side sahred object I can't delete or reset the shared object after I loaded my external .swf....
    My script is:
    private var pointer1_so:SharedObject;
    nc=new NetConnection  ;
    nc.connect (rtmpNow);
    nc.addEventListener (NetStatusEvent.NET_STATUS,doSO);
    Cerchio=new cerchio ;
    addChild (Cerchio);
    Cerchio.x=220;
    Cerchio.y=280;
    Cerchio.addEventListener (MouseEvent.MOUSE_DOWN,beginDrag1);
    Cerchio.addEventListener (MouseEvent.MOUSE_UP,endDrag1);
    private function doSO (e:NetStatusEvent):void
                 good=e.info.code == "NetConnection.Connect.Success";
                 if (good)
                       //Shared object
                       pointer1_so=SharedObject.getRemote("point1",nc.uri,false);
                       pointer1_so.connect (nc);
                       pointer1_so.addEventListener (SyncEvent.SYNC,doUpdate1);
    private function doUpdate1 (se:SyncEvent):void
                 for (var cl1:uint; cl1 < se.changeList.length; cl1++)
                       trace(se.changeList[cl1].code);
                       if (se.changeList[cl1].code == "change")
                            switch (se.changeList[cl1].name)
                                 case "xpos" :
                                       Cerchio.x=pointer1_so.data.xpos;
                                       break;
                                 case "ypos" :
                                       Cerchio.y=pointer1_so.data.ypos;
                                       break;
    private function beginDrag1 (e:MouseEvent)
                     Cerchio.addEventListener (MouseEvent.MOUSE_MOVE,moveMc1);
                     Cerchio.startDrag (false,Rect1);
    private function endDrag1 (e:MouseEvent)
                     Cerchio.stopDrag ();
    private function moveMc1 (e:MouseEvent)
                e.updateAfterEvent ();
                   pointer1_so.setProperty ("xpos",Cerchio.x);
                   pointer1_so.setProperty ("ypos",Cerchio.y);
    Can someone helps me?
    I know I need of a server side script but...
    Please...
    Emiliano.

    ResultSet is not serializable. It is an active connection. If you wish to serialize the info, then read it into an ArrayList in your serializable class and pass the Data that way.

  • How to delete the index for the business object BUS0033

    Hi to all experts,
    I'm applying note 1349496 the error here is no records with F4 help for the funds center .
    solution from the note
    Implement the attached program corrections. Then, in the transaction, delete the index for the business object BUS0033, reactivate it, and start the indexing in the indexing mode "Full". The system then displays the data correctly in the F4 search help.
    how to do the second part i have already applied the note .

    any help

  • Delete attachments linked with a business object

    Hi All,
    I have added some pdf attachments to a business object using Archivelink. I am making use of FM - ARCHIV_CREATE_TABLE.
    This worked. Now we need to either add a retention period for these attachments or archive them or delete them after a certain period of time. I tried some ways till now.. but they havent worked
    1. Setting a delete date in my FM ARCHIV_CREATE_TABLE :
    CALL FUNCTION 'ARCHIV_CREATE_TABLE'
          EXPORTING
            ar_object                      = <archiveobj>
            DEL_DATE                       = '20100624'
            object_id                      = l_arc_doc
    However when I look in OAAD, this delete date doesnt show up!
    2. Using standard reports - RSBCS_REORG, RSSO_DELETE_PRIVATE and RSSODFRE. However my attachments are not even getting selected to be deleted.
    3. I also tried with FM - archive_object_delete and ARCHIVOBJECT_DELETE. Here I am getting an error that states-
    Error during import of physical document from cluster table SOFFCONT1.
    Any ideas towards this ? All your answers are appreciated.
    Thanks, Liz

    All,
    Minutes after I wrote up this question, I tweaked a way to delete the PDF using FM -ARCHIVOBJECT_DELETE. The archive doc id to be given here is from the 'Link' table one would have configured in transaction OAC3 (part of Archivelink config).
    I would still like to know if there is a cleaner way to delete the attachments from a business object.
    Also is there is way to delete the 'link' from transaction OAAD.
    Your input is appreciated!
    Thanks, Liz

  • How to delete unreleased transport request where the objects are locked

    Hi Experts,
      I was created a transport request, but I am facing some probelms with taht request, now I want to delete transport request. I tried to delete them in SE10, I am getting message that the objects are locked. Please tell me how to delete unreleased transport requests where the objects belong to this transport request are locked.

    Hi,
    First go to transaction se03 Choose "Unlock Objects (Expert Tool)" option under "Requests/Tasks" and unlock your task,
    Than go to se10 and delete what you want.
    I hope it helps.
    Bulent

  • Deleting a pointer to a constant object

    I have code in C++ compiled under Sun WorkShop C++ Compiler 5.0 that is able to delete a pointer to a constant object e.g const int * ptr ;
    I'm able to delete it, using delete ptr;
    This just a trivial example ... but I'm able to delete a pointer to any constant object. I'm relatively new to C++ so this is very confusing that it should allow me to do so. When I compile the same code in Microsoft VC++ the compiler catches it rightfully saying that it cannot overload the delete operator with a pointer to a constant or something like that ... So my question is is this an anamoly in Sun compiler ... or does the C++ standard loosely defined as to what should happen(. I thought you couldn't overload a delete operator with pointert to a constant) or maybe my shop needs a patch that will solve this problem .... ?
    Just tried on Forte same thing happened.
    Please Help.

    Yes, it is valid to delete a const object. C++ Standard, section 5.3.5, paragraph 2:
    "Note: a pointer to a const type can be the operand of a delete-expression; it is not necessary to cast away the constness"
    The reason is that since you created the object dynamically, you can remove itdynamically as well. You are just not allowed to change its value while it exists.

  • How to delete sotware component,SWCV and all objects under SWCV

    Hi All,
    how to delete sotware component,SWCV and all objects under this SWCV. Since i have imported all the SWC, SWCV and all interface , mapping object. I want to delete all these imported objects and re import these objects again. Please let me know how to do that.
    Thanks in advance.
    Kalpana

    You will have to delete all the objects under the namespace (then activate the changes), then delete the namespace and then finally delete the SWCV !!
    More ref this latest thread on the same subject: how can i delete software component in the IR

  • In the tranformation i have deleted a rule for an info object material?

    Hi all,
    In the transformation i have deleted a rule for an info object material and then moved into quality. The number of columns is 10 after the material is excluded.
    And the same transport moveed to production with warning messages.
    the number of columns is 11 and it is not 10 when i check in the quality!!
    Can anyone help me on this!!
    thanks
    Pooja

    Hi,
    As you said you removed the rule in transformation for an object (attribute) in matreila master data object.
    Number of column/attrbute will remain same when you will see data in master data object (material). It is just the mapping from source is removed so you will not see any data in that attribute/column for whihc you have removed the rule/transformation.
    For removing column you need to remove attribute/Info Object from Master data object (Material) attribute list.
    I hope it will help.
    Thanks,
    S

  • Master Data Deletion : Logs of deleted MD entry from a MD object

    Hi All,
    I need to find details of deleted MD entry from a MD object and by whom ?
    In SLG1, I'm able to find only the logs showing deleted SID number. and user who has deleted it with date.
    But where, I can find what that deleted MD record is ?
    Thanks in advance !

    Is there any way to find it out ?

  • FM or BAPI to delete a transport request or any object of a transport

    Hi Experts,
    Is there any FM or BAPI to delete a transport request or any object of a transport request.
    Thanks
    Yogesh Gupta

    Hello Yogesh,
    See if this helps:
    If you want to delete a transport from a system queue try FM TMS_UI_MAINTAIN_TR_QUEUE. Just mantain parameters IV_SYSTEM, IV_REQUEST and IV_DEL_REQUEST.
    If you want to delete a request, try using FM TRINT_TDR_USER_COMMAND. Just maintain parameters like this:
    IV_OBJECT = YOUR REQUEST ID
    IV_TYPE = 'TASK'
    IV_COMMAND = 'DELE'
    If you want to delete an object, just put a breakpoint in this FM to see it's logic.
    Kind regards,
    Bruno
    Edited by: Bruno Garcia on Aug 19, 2008 10:31 AM

  • Delete multiple Layers by selecting multiple object?

    Hi Designers,
    I'm going to connect my AI file to After effect.
    So I had to create lots of layers in order to edit them seperatly in After effects.
    But it seems like my amount of layers are too large because AE always crashes (not responding -> Force quit)
    So I wanna break some stuff down in multiple AI files, but I don't wanna go and select every layer and delete it.
    That would take too much time.
    Is there a way to select the multiple objects in Illustrator and delete that but also its layer its in?
    Thank you!

    MisterStylow wrote:
    Delete multiple Layers by selecting multiple object?
    So I wanna break some stuff down in multiple AI files, but I don't wanna go and select every layer and delete it. That would take too much time.
    [Q:] Is there a way to select the multiple objects in Illustrator and delete that but also its layer its in?
    You could do that via a script, here is a quick example:
    // Purpose: Select multiple objects and delete them along with their layer
    // Note: However, it does not differentiate sublayer structures
    // Just select your desired items, then run this script snippet,
    // to remove the selected items along with the layer they are on.
    var doc = app.activeDocument;
    for (var i = doc.layers.length - 1; i >= 0; i--) {
        var layerID = doc.layers[i];
        if (layerID.hasSelectedArtwork == true) {
            layerID.remove();
    Hope it proves useful to your efforts and workflow. Keep us posted.

  • How to delete file from client machine

    Hi all,
    we are using the DataBase: oracle:10g,
    and forms/reports 10g(developer suite 10g-10.1.2.2).
    can anybody help me how to delete the file from client machine in specified location using webutil or any
    (i tried with webutil_host & client_host but it is working for application server only)
    thank you.

    hi
    check this not tested.
    PROCEDURE OPEN_FILE (V_ID_DOC IN VARCHAR2)
    IS
    -- Open a stored document --
    LC$Cmd Varchar2(1280) ;
    LC$Nom Varchar2(1000) ;
    LC$Fic Varchar2(1280);
    LC$Path Varchar2(1280);
    LC$Sep Varchar2(1) ;
    LN$But Pls_Integer ;
    LB$Ok Boolean ;
    -- Current Process ID --
    ret WEBUTIL_HOST.PROCESS_ID ;
    V_FICHERO VARCHAR2(500);
    COMILLA VARCHAR2(4) := '''';
    BOTON NUMBER;
    MODO VARCHAR2(50);
    URL VARCHAR2(500);
    Begin
    V_FICHERO := V_ID_DOC;
    LC$Sep := '\';--WEBUTIL_FILE.Get_File_Separator ; -- 10g
    LC$Nom := V_FICHERO;--Substr( V_FICHERO, instr( V_FICHERO, LC$Sep, -1 ) + 1, 100 ) ;
    --LC$Path := CLIENT_WIN_API_ENVIRONMENT.Get_Temp_Directory ;
    LC$Path := 'C:';
    LC$Fic := LC$Path || LC$Sep || LC$Nom ;
    If Not webutil_file_transfer.DB_To_Client
    LC$Fic,
    'TABLE_NAME',
    'ITEM_NAME',
    'WHERE'
    ) Then
    Raise Form_trigger_Failure ;
    End if ;
    LC$Cmd := 'cmd /c start "" /MAX /WAIT "' || LC$Fic || '"' ;
    Ret := WEBUTIL_HOST.blocking( LC$Cmd ) ;
    LN$But := WEBUTIL_HOST.Get_return_Code( Ret ) ;
    If LN$But 0 Then
    Set_Alert_Property( 'ALER_STOP_1', TITLE, 'Host() command' ) ;
    Set_Alert_Property( 'ALER_STOP_1', ALERT_MESSAGE_TEXT, 'Host() command error : ' || To_Char( LN$But ) ) ;
    LN$But := Show_Alert( 'ALER_STOP_1' ) ;
    LB$Ok := WEBUTIL_FILE.DELETE_FILE( LC$Fic ) ;
    Raise Form_Trigger_Failure ;
    End if ;
    If Not webutil_file_transfer.Client_To_DB
    LC$Fic,
    'TABLE_NAME',
    'ITEM_NAME',
    'WHERE'
    ) Then
    NULL;
    Else
    Commit ;
    End if ;
    LB$Ok := WEBUTIL_FILE.DELETE_FILE( LC$Fic ) ;
    Exception
    When Form_Trigger_Failure Then
    Raise ;
    End ;sarah

Maybe you are looking for

  • Step By Step Example for Application Integrator for Yahoo or any kind of

    All EP Expert, I want to create yahoo or Gmail or any kind of url iView on which I can implement SSO for learning purpose on my Local laptop. I have installed EP SP9 on my laptop. I go through some blog and some discussion but I am not able to find b

  • FTP Adapter: "SshException: The channel unexpectedly terminated" error

    Hi All, My service is using FTP adapter to move the file from local to remote server. Whenever it tried to move the file, the below error is getting throwed. But iam able to connect the remote server using WinScp client. I have checked JNDI for corre

  • PSE 8 Help in Menu not usable

    In my PSE 8 (boutht in 2010)  I cannot use the 'Help' / 'Hilfe'.  Do not understand why.  PSE 8 always crashes, when 'Help' ist clicked on.  Why? Apart from that, PSE 8 seems to work alright.  Who can help me to cure this?

  • WRTU54G-TM no file or print sharing

    Ever since swapping out my Linksys 54G for this t-mobile/Linksys router I no longer have file and print sharing.  I have gone around to all of the laptops and the one wired desktop and reinstalled file and print sharing.  I have turned off all  firew

  • WLS 5.1 SP12 Evaluation Copy - License Expiration error

    Hi, I have installed the evaluation copy of Weblogic Server 5.1 SP12 today (July 09th) on my WinNT system. When I run startWebLogic.cmd to start the server, it gives me licnese expiration error. The expiration date in the license file is 08-July-2002