Exclude GUID field from tables in tdms transfer.

Hi,
We have been asked chek whether it is possible to exclude GUID fileds from tables in TDMS ERP data transfer.
We ran data replication from ECC to CRM in out pre-prod system, replication populated the CRM GUIDs in ECC. We are going to use pre-prod as sender system for TDMS transfer. GUID field is part of the corresponding object table so the receiver system tables also populated with GUID. What we don't know is how replication behaves when the GUIDs are already populated.
As I know there is a way to set the GUID filed to NULL value in tdms transfer using scrambling rule. The only concern I am having is how this could affect the ISU data in other tables.
Please share your opinions on this.
Thanks
Praveen.

The "GUID fields" are used to normalize the data and is the key fields for all CRM applications. If you don't transfer those the system will be "empty" because data relations cannot be found.
Markus

Similar Messages

  • Update PRODH field from table T179T

    hi,
    i want to update PRODH field from table T179T into table VBRP. for this we
    need to take selection option also.
    selection option will be :
    ·             Sales Organization (field VBRK-VKORG)
    ·       Billing Date Range (VBRK-FKDAT)
    ·       Distribution Channel (Vbrk-vtweg
    while i have done this for one field by using hard code but like:
    TABLES: VBRP.
    CLEAR VBRP.
    UPDATE VBRP SET PRODH = 'PLC01' WHERE VBELN = '0008300051'.
    SELECT SINGLE * FROM VBRP WHERE VBELN = '0008300051'.
    WRITE: VBRP-VBELN,VBRP-PRODH.
    but this is not the right way. please guide me how to solve this.

    TABLES: VBRP.
    CLEAR VBRP.
    UPDATE VBRP SET PRODH = 'PLC01' WHERE VBELN = '0008300051'.
    <b>commit work.</b>
    SELECT SINGLE * FROM VBRP WHERE VBELN = '0008300051'.
    WRITE: VBRP-VBELN,VBRP-PRODH.
    use commit work after update statement.
    But this code would make vbrp-vbeln as plc01 only.
    If you want to get the prodh value from t179t, then write a sleect on t179t and then update.
    TABLES: VBRP.
    CLEAR VBRP.
    select single prodh
      from t179t
    where......
    UPDATE VBRP SET PRODH = t179-prodh WHERE VBELN = '0008300051'.
    commit work.
    SELECT SINGLE * FROM VBRP WHERE VBELN = '0008300051'.
    WRITE: VBRP-VBELN,VBRP-PRODH.

  • How to hide a field from table maintenance view?

    Hi,
    How to hide a field from table maintenance view? 
    The field is used for data created date. I need to hide it from display.
    Thanks

    Chk this link.
    http://help.sap.com/saphelp_nw04/helpdata/en/66/33f52010dd11d6999300508b5d5211/frameset.htm
    Maintenance Attributes
    You can assign a maintenance attribute P to individual fields in the maintenance view definition in the Dictionary (SE11). It can be  H (hidden)
    H (hidden)
    A field flagged H is not displayed on the screen. This field must also be filled in the background by a routine at an event.
    The system writes R and H fields to the database like all other fields when a new data record is saved.

  • Add Fields from table ADRC (Fields Name 1 to 4) for Open Item Processing

    Hi SAP Expert:
    Our client requires vendor/customer name to be displayed in the open item processing line layout for transaction code f-58, so they can double check if the vendor name is complete as intended. 
    We intend to add fields from table ADRC instead of REGUH since the characters in maintaining vendor/customer name is 40 characters and REGUH - ZNME1s are only 35 characters. 
    We have managed to add fields from ADRC and change the SAPDF05X program and were able to display the names in open item layout, except that the program seems to "automatically" create a generic table which only carries 30 characters of the vendor/customer name.  The source table should be RFOPS_DK but the program automatically looks up from table RFOPS_GEN for the particular fields - Name 1 to 4.  Is there a way to "instruct" the program to use RFOPS_DK instead of RFOPS_GEN?
    Hope this will merit somebody's attention... Thanks !!!

    Thanks,  i have assigned the layout via o7v3,  it is the program that i have a problem with,  actually another program that we change is the program MF05BFPO where it generates data to be displayed in the FBZ4 screen,  though we add a field with 40 characters (ADRC Name 1 to 4)  what the program dispalys is a 30 character Name1 to 4 from structure RFOPS_GEN. 
    My question is can i extend/change the structure RFOP_GEN to 40 characters,  is there any SAP standard program that will aftected if i do so?  thank very much...
    Lorena

  • Problem in selecting object currency fields from table COSP and COSS

    Dear All,
    We are facing a issue while creating a virtual DataSource   for CCA plan from tables COSS and COSP.
    The issue is that we are able to activate the view by including the fields value in object currency ( WOG001 - WOG012 ) but not able  to create a DataSource   on the view.
    We are able to include the transaction currency value but as our application requires us to include the object currency fields.
    Error displayed:Invalid extract structure template .This operation failed, because the template structure quantity fields or currency fields, for example, field WOG001 refer to a different table.
    Any tips to resolve this issue would be valuable.
    Thanks in advance
    Rashmi Nair.

    HI,
    Can you see this thread.
    Re: How to display BAPI decimal values into webdynpro!
    Thanks
    nageswar

  • Remove fields from table key

    I define a customize table (maintenance only by cust., not SAP import).
    5 of the fields are the table keys.
    When I remove 2 fields from the key and adjust the table I get the following errors
    “Primary key change not permitted for value table ZT7IL60”
    “Activation of Table ZT7IL60 not possible (please check)”
    Any clue why and how to remove some fields from the key?

    hi there,
    the reason for  this error can be any....
    may be you are using that field in the foreign key reference of another table. thats y it is not allowing the change option as it will affect other table's values.
    another thing can be the one suggested in the above post.
    do reply if any of the methods mentioned helps.
    Do reward if helpful./

  • Select fields from Table PA0001 where condition in PA0000 EQ X.

    I'm quite new here at SDN an to ABAP as my code below will show.  =)
    I have two tables PA0001 and PA0000 and I want to show the PERNR from Table PA0001 WHERE PA0000-stat2 EQ '3'.
    SELECT PERNR STAT2 FROM pa0000 INTO CORRESPONDING FIELDS OF TABLE it_act WHERE stat2 EQ '3'.    "this works fine
    SELECT * FROM pa0001 INTO TABLE it_pos.
    LOOP AT it_pos INTO wa_pos WHERE It_pos-pernr EQ it_act-pernr.                
    WRITE......
    ENDLOOP.
    Isn't it possible to put the conditions in the LOOP statement? Should i somehow do i join in the select instead?
    If you dont understand what I mean just ask and I will try to explain.
    Best Regards Claes.

    Hi Claes Widestadh ,
    I have total Code for you, to solve your Problem, I have written the code for you & tested it, and it was Working Very Fine.
    Please find the Below Code.
    TABLES : PA0000, PA0001.
    DATA : IT_PA0000 LIKE PA0000 OCCURS 0 WITH HEADER LINE,
           IT_PA0001 LIKE PA0001 OCCURS 0 WITH HEADER LINE.
    DATA : BEGIN OF IT_FINAL OCCURS 0,
           PERNR LIKE PA0001-PERNR,
           END OF IT_FINAL.
    SELECT PERNR STAT2 INTO CORRESPONDING FIELDS OF TABLE IT_PA0000 FROM
    PA0000 WHERE STAT2 = '3'.
    SELECT * FROM PA0001 INTO TABLE IT_PA0001.
    SORT IT_PA0001.
    LOOP AT IT_PA0000.
      READ TABLE IT_PA0001 WITH KEY PERNR = IT_PA0000-PERNR.
      IF SY-SUBRC = 0.
        IT_FINAL-PERNR = IT_PA0001-PERNR.
        APPEND IT_FINAL.
        CLEAR IT_FINAL.
      ENDIF.
    ENDLOOP.
    LOOP AT IT_FINAL.
      WRITE :/ IT_FINAL.
    ENDLOOP.
    Note: If you find this Answer is very Helpful Please allot me the Points.
    Please do let me know any isssues at your end.
    Thanks,
    Satya Krishna.M

  • Exclude one field from application.cfm loop

    i am using a cfloop collection tag in the application cfm file to loop through and remove special charachters from submitted forms for xss protection. I want to exclude one or two fields from this because they are date time fields so can't have all the restrictions all of the other fields can. I am picturing something like
    <cfloop collection="blah" item="blahblah">
         <cfif field name is not one of the date time fields>
    < general remove bad charachters code>
         <cfelseif field name is one of date time fields>
    <remove special charachters code>
    </cfif>
    </cfloop
    how do i get the field name to use in the condition above?

    Ummm...
    <cfloop collection="form" item="field">
    <cfif field NEQ "aDateField" AND field NEQ "bDateField" AND field NEQ "cDateField">
       Processs the non-date fields
    <cfelse>
      Process the date fields
    </cfif>
    </cfloop>
    Or slightly easier to maintain.
    <cfloop collection="form" item="field">
    <cfif NOT ListFind(field, "aDateField,bDateField,cDateField")>
       Processs the non-date fields
    <cfelse>
      Process the date fields
    </cfif>
    </cfloop>
    Or the best yet, would be to provide the list you are checking against from sometype of data repository where it is easy to maintain, like a database or configuration or something.  But I will leave that exercise to you to figure out.

  • Exclude "note" field from syncing to plaxo?

    Is it possible to exclude the "note" field from syncing to plaxo or google contacts? I want the names and contact information, but not the notes. I keep personal information there. Thanks!

    You can uncheck songs in the Library and there is an option for your iPod to ignore them. Connect your iPod, go to Preferences>iPod>Music, tick the radio button "only update checked songs"

  • How to instantiate class using GUID field from a table

    Hi,
    There is a class ' /MRSS/CL_SGD_COMPLEX_DEMAND ' and method /MRSS/IF_SGE_COMPLEX_DEMAND~ITEMS_GET.
    Actual requirement is field called GUID from the table instantiate the class and i can use its methods to get the reference to assign object.

    If i understand the requirement correctly , you need to perform items_get based on the guid. Then create the constructor with a parameter for your GUID , then store this guid in a class member variable. And then you can use the same in the ITEMS_GET( ).
    Regards
    Kavindra

  • Exclude one field from Logical Database's dynamic selection screen

    Hi Guru,
    I have a requirement to amend a program to exclude the document number field (bsik-belnr) from the dynamic selection-screen of the logical database KDF(Vendor Database) so that the program will not filter according to the document number.
    I have use the below syntax in my zprogram.
      selection-screen exclude select-options: doc-no.
    However I get syntax error "The addition EXCLUDE is only allowed in INCLUDE DBKDFSEL".
    Please advice.
    Best Regards,
    Fung

    The selection part of the logical database defines input fields for selecting data.
              The runtime environment displays these on the selection screen when you run an executable program linked to the logical database.
              Include called DB<ldbname>SEL.
            SELECTION-SCREEN BEGIN OF VERSION ver TEXT-xxx.
                                                                    SELECTION-SCREEN EXCLUDE ... .
                                                    SELECTION-SCREEN END OF VERSION ver.
    Defines a selection screen version (with a three-character name ver ). Between BEGIN OF VERSION and END OF VERSION , you can exclude selection screen objects for the version ver , i.e. remove them from the selection screen with SELECTION-SCREEN EXCLUDE.
              SELECTION-SCREEN DYNAMIC SELECTIONS FOR TABLE dbtab
    If one of these tables is active in the report (i.e. it is declared under TABLES or lies somewhere on the path from the root of the database hierarchy to a table declared with TABLES ), a pushbutton called 'Dynamic selections' appears on the selection screen.

  • HELP TO MOVING FIELDS FROM TABLES

    HI EXPERTS,
    i have two tables and i wont to move fields of  price to table ZEMPKOSTLPRICE_REC where dates are match.
    <b>I REWARD KINDLY</b>
    i give example
    table
    <b>INTAB_A132[]</b>
    resrc                         datbi                            datab                       price
    0000010599               <b>20081231      20080401</b>     15000.00
    0130130130     <b>20081031      20080301</b>     84000.00
    0130130130     <b>20081231      20081101</b>     0.01
    table
    <b>ZEMPKOSTLPRICE_REC</b>
    i wont like that
    reserc                       period         price        date
    0000010599     042008     15000.00     20080401
    0000010599     052008     15000.00     20080501
    0000010599     062008     15000.00     20080601
    0000010599     072008     15000.00     20080701
    0000010599     082008     15000.00     20080801
    0000010599     092008     15000.00     20080901
    0000010599     102008     15000.00     20081001
    0000010599     112008     15000.00     20081101
    0000010599     122008     15000.00     20081201
    0130130130     032008     84000.00     20080301
    0130130130     042008     84000.00     20080401
    0130130130     052008     84000.00     20080501
    0130130130     062008     84000.00     20080601
    0130130130     072008     84000.00     20080701
    0130130130     082008     84000.00     20080801
    0130130130     092008     84000.00     20080901
    0130130130     102008     84000.00     20081001
    0130130130     112008     0.01     20081101
    0130130130     122008     0.01     20081201
    this is my code
    DESCRIBE TABLE intab_a132 LINES a_index.
            IF a_index GE 1.
              DO a_index TIMES.
                LOOP AT  zempkostlprice_rec INTO wa_zem.
                  READ TABLE intab_a132 INTO wa_intab_a132 INDEX a_index  .
                  IF wa_intab_a132-datab GE wa_zem-date.
                    IF  wa_zem-kbetr IS INITIAL AND wa_zem-konwa IS INITIAL
                    AND wa_zem-kostl IS INITIAL .
                      MOVE: wa_intab_a132-kostl TO wa_zem-kostl,
                            wa_intab_a132-kbetr TO wa_zem-kbetr,
                            wa_intab_a132-konwa TO wa_zem-konwa.
    MODIFY zempkostlprice_rec FROM wa_zem TRANSPORTING kbetr konwa kostl
                WHERE resrc = wa_intab_a132-resrc AND date GE wa_intab_a132-datab.
                      CLEAR:wa_zem,wa_intab_a132.
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                a_index = a_index - 1.
              ENDDO.
            ENDIF.
    i try with this code but i get 84.0000 insred 0.01 in month 11 and 12 in 2008
    0000010599     042008     15000.00     20080401
    0000010599     052008     15000.00     20080501
    0000010599     062008     15000.00     20080601
    0000010599     072008     15000.00     20080701
    0000010599     082008     15000.00     20080801
    0000010599     092008     15000.00     20080901
    0000010599     102008     15000.00     20081001
    0000010599     112008     15000.00     20081101
    0000010599     122008     15000.00     20081201
    0130130130     032008     84000.00     20080301
    0130130130     042008     84000.00     20080401
    0130130130     052008     84000.00     20080501
    0130130130     062008     84000.00     20080601
    0130130130     072008     84000.00     20080701
    0130130130     082008     84000.00     20080801
    0130130130     092008     84000.00     20080901
    0130130130     102008     84000.00     20081001
    <b>0130130130     112008     84000.00     20081101<---- insted  0.01
    0130130130     122008     84000.00     20081201</b>
    REGARDS

    hi varma
    thankes for your answer
    i try your code exactly and what i get is that
    0000010599     042008     15000.00     20080401
    0000010599     052008     0.00     20080501
    0000010599     062008     0.00     20080601
    0000010599     072008     0.00     20080701
    0000010599     082008     0.00     20080801
    0000010599     092008     0.00     20080901
    0000010599     102008     0.00     20081001
    0000010599     112008     0.00     20081101
    0000010599     122008     0.00     20081201
    0130130130     032008     84000.00     20080301
    0130130130     042008     0.00     20080401
    0130130130     052008     0.00     20080501
    0130130130     062008     0.00     20080601
    0130130130     072008     0.00     20080701
    0130130130     082008     0.00     20080801
    0130130130     092008     0.00     20080901
    0130130130     102008     0.00     20081001
    0130130130     112008     0.00     20081101
    0130130130     122008     0.00     20081201
    regards

  • Finding fields from table

    Hi all,
    trying to find databse table for  field pikmg (put away  quantity), its from the structure lipsd, and in the transactions vl32n, under the tab stock placements.
    Thanks in advance.
    Anupma Chandra.

    HI,
    CHECK IN TABLE <b>DD03L</b>.
      <b>TABNAME                       FIELDNAME
      DLVRY_SPLT_HEAD               PIKMG
      E1VPDLI                       PIKMG
      E2VPDLI                       PIKMG
      E3VPDLI                       PIKMG
      FRM_LIPSVB_EXTENDED_T         PIKMG
      LEINT_LDOCV_ITEM              PIKMG
      LEINT_LIPSVB                  PIKMG
      LESHP_ITEM_DATA_TO_CREATE     PIKMG
      LIPOSTV                       PIKMG
      LIPOV                         PIKMG
      LIPSD                         PIKMG
      LIPSVB                        PIKMG
      LVBPOK                        PIKMG
      LXDCKM_INBLDOCV_ITEM          PIKMG
      LXDCKM_OUTLDOCV_ITEM          PIKMG
      LXHME_LDCVI                   PIKMG
      LXHME_LDOCV_F                 PIKMG
      LXHME_LDOCV_ITEM              PIKMG
      LXHME_LDVDT                   PIKMG
      SHP_VL10_DELIVERY_SINGLE_SEGM PIKMG
      VBPOK                         PIKMG
      VBPOKKOMMI                    PIKMG</b>
    Regards,
    Kishore.

  • Onblur get values for form field from table.

    Hello,
    I created one from with report for TableA.TableA has 5 column. Now after i enter first field ,on blur, i want 2 other fields should get populated.They should get the 2 values from TableB.Table A and Table B are connected through primary key foreigh key constraint.First field is primary key of TableA.
    How can i do this.I am writing a javascript function which i am calling from first form field.
    But in the function how to take values from the table for the other 2 fields.
    Can i just Select statements inside javascript function?
    Thanks
    Swapna.T

    Swapna,
    You can do this using AJAX. See link.
    Hope it helps
    Cheers,
    Hari

  • How to select max (field) and one more field from table?

    Hi experts!
    I need to select maximum value of ENDDA from PA0023 and BRANC of max ENDDA.
    How can I do that ?
    When I trying this code:
    This is the  code:
    SELECT MAX( endda ) branc
      FROM pa0023
      INTO (pa0023-endda, pa0023-branc).
    I get error message:
    The field "PA0023~BRANC" from the SELECT list is missing
    in the GROUP BY clause. Addition INTO wa or INTO (g1,...,gn)  is required.
    So what is the problem?
    Thanks forehead.

    Hi
    Though am not totally sure of your requirement, check below code samples without any syntax errors:
    1. As per you current coding:
    TABLES: pa0023.
    SELECT MAX( endda ) branc
           FROM pa0023
           INTO (pa0023-endda, pa0023-branc)
           GROUP BY branc.
    ENDSELECT.
    2. Above code results only on one record where as the criteria can be more than one. Eg: for a specific data more than one record can exist. Below code helps you handle the same:
    TABLES: pa0023.
    TYPES: BEGIN OF t_pa0023,
             endda TYPE endda,
             branc TYPE brsch,
           END OF t_pa0023.
    DATA: i_pa0023 TYPE TABLE OF t_pa0023,
          wa_pa0023 TYPE t_pa0023.
    SELECT MAX( endda ) branc
           FROM pa0023
           INTO TABLE i_pa0023
           GROUP BY branc.
    LOOP AT i_pa0023 INTO wa_pa0023.
    ENDLOOP.
    3. If the requirement is to get the Industry Key for the record with highest End Date. We can acheive it by using subquery something like:
    TABLES: pa0023.
    SELECT SINGLE endda branc
           FROM pa0023
           INTO (pa0023-endda, pa0023-branc)
           WHERE endda = ( SELECT MAX( endda ) FROM pa0023 ).
    Kind Regards
    Eswar

Maybe you are looking for

  • Uninstall BOE XI R2

    We have a BOE XI R2 version still running on a server that needs to be removed. How can we remove  it without disturbing the other applications that are running on the same server. Do we use the Windows Add/Remove program or is ther a specific tool t

  • Intel and Adobe to Extend Flash Platform to TVs

    Intel and Adobe to Extend Flash Platform to TVs http://www.intel.com/pressroom/archive/releases/20090105corp.htm What does this mean for Flex developers?

  • Can you stop a restore in the middle?

    Can you stop a restore in the middle on the Iphone 5?

  • Problem occured when extracting archive-- student edition

    Hi, I am trying to install the free student version of CS6 Photoshop on Windows 8. I downloaded both files, but when I try to run the executable one, I get the error message "Problem occurred when extracting archive, please redownload". I have downlo

  • Delete App ID

    Hello Developers, I am lead developer, Henry Chen, of the SJS Development Team. I recently created 2 wrong App IDs for my teacher, who is the owner of this account, SJSDevTeam. He needs his suffix to be .Calculator, but the Provisioning Portal is tel