Problem in transporting change document

Hi guys,
I have created one change document for customized field.
I m getting problem while transporting this change document.
The view is not generating in production system.
Function group is coming blank for change document object in production.
Is there other way of generating the change document ???
Kindly reply.
Regards,
Siya

Check this.
1. Deletion flag is set or not.?
2. Execute MCDOKDEL and check for the document
3. Archiving path Storage Path location.?
Thanks
S.N.

Similar Messages

  • Transporting Change document Object from development to quality

    Hi All,
    I have created a change document object from SCDO for my custom table. Now I want to transport this object from development server to quality server.
    As while creating Objects some enteries are made into standard table CDHDR and CDPOS which is client dependant so how to work this object on another client.
    Do I need to create seperate objects on quality server and then on production server?
    Thanks

    Hi Kiran,
    use transport connection to collect the objects to request, rsa1->transprot connection.
    use infocube as starting point to collect objects, left side choose 'object type', middle frame choose 'infocube' expand 'select objects', locate/search your infocube' and 'transfer', it will go to right side.
    in right up, there are buttons, click 'mode' and choose manual, and grouping 'only necessary objects', and execute, this will collect infocube and required objects like infoobjects, infoarea, etc.
    after that change grouping 'in dataflow before' and execute, this will collect update rules, ods, infosource, transfer rules, datasource assigned etc.
    remember to assign source system, click yellow box with X icon and mark the source system.
    after that use grouping 'in dataflow afterwards' to collect query, web template, role etc.
    take a look transport docs
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3010ba90-0201-0010-2896-e58547c6757e
    http://help.sap.com/saphelp_nw2004s/helpdata/en/0b/5ee7377a98c17fe10000009b38f842/frameset.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e883de94-0501-0010-7d95-de5ffa503a86
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b5/1d733b73a8f706e10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/57/38e1824eb711d182bf0000e829fbfe/frameset.htm
    Re: Transport Organizer---
    transport query (bex objects)
    http://help.sap.com/saphelp_nw2004s/helpdata/en/38/5ee7377a98c17fe10000009b38f842/frameset.htm
    hope this helps.
    (Courtesy AHP from Re: transport)
    Bye
    Dinesh

  • Transport change docuement object

    Created a change document object in SCDO as local object.
    Now if I have to transport it, I don't find a way to change the development class. Do I have to assign individual components to the transport like the structures generated, function group generated etc.,
    Any help is appreciated. Thanks
    Anupama

    Hi,
      Change the Pakage of the function Group ; all the item in that particular group be assigned a same request and pakage.
    for that go to
    SE80--->Enter function group name
    Right click on function group name
    More functions--->Change Pakage assignment.
    those who which r not in that particular function group ; u have to manually assign to that particular group.
    use same procedure
    Regards
    Message was edited by: Manoj Gupta

  • Problem while creating change document

    hi all
    i am creating change document for master data like project type , project applicant
    but i am unable to complete it as i am very new to ABAP
    can any one give me step-by-step procedure to do the same?
    I have followed the procedure given in sap Liabrary i.e.
    1 -  Define the change document object
    2 -  Check in the Dictionary, whether the data elements of the fields which are to
          be logged are flagged appropriately.
    3 -  Generate the update.
    4 -  Program the appropriate calls in your program.
    But then i got stucked on point 4...what exactly I need to do in that?
    Regards
    Sheetal

    Hi,
    The table you have used is having the key which comprises both MANDT and ID. However, while writing the code you must have used only the ID. The system takes MANDT and ID both as the key fields.
    This may be the reason of the error you are encountering.
    Thanks,
    Jyoti

  • Problems in extracting changed documents

    Hi Experts,
    I am new to sdn and this is my second post, My requirement is to extract changed documents from CRM to BW as they are neither stored in any database tables nor i think i can fetch them through function module but I can view them in for example in Business Partner transaction under Extras menu->changed documents i can find the records which i need to pull , would anyone suggest me what are the steps I need to follow in order to extract them to BW.I appreciate it in advance and If you need any additional information let me know.
    Thanks
    Regards
    Kishore

    Hi Marco,
    when i checked to know where exactly the changed documents are stored after choosing Change Documents in Extras menu I see a structure CDRED in technical Information screen after pressing F1 on any field in changed documents but when I check in CDHDR or CDPOS I didnot see the documents which I am expecting. Would You please suggest me some steps how to pull records using structure CDRED or If I am wrong please correct me as I am new to CRM BW and also I appreciate if you would explain me in detail.
    Thanks
    Regards
    Kishore.

  • Problem in archiving change document

    Hi Experts,
    While doing function ' check in archive ' (CV02N) I am getting error that "problem in archive path"
    Can anybody tell me what may be the problem for this and how to overcome the same?
    Please do the needful.
    Thanks and best regards,
    Pravee

    Check this.
    1. Deletion flag is set or not.?
    2. Execute MCDOKDEL and check for the document
    3. Archiving path Storage Path location.?
    Thanks
    S.N.

  • SCDO - Change Document

    Hye,
    Facing problem with the change document with update status. The tables CDHDR & CDPOS are getting updated , however my custom table ZEMPTABL is not getting updated with new values.
    The steps for creation i followed is as:
    1) Custom table : ZEMPTABL with Change document ticked for data elements
    2) SCDO - Object created.
    3) My program which calls function module for write document:
    REPORT  ZMSR_TRACKCHNG_CUSTOMTBL.
    TABLES : ZEMPTABL.
    DATA : GS_EMPTABL LIKE ZEMPTABL,
           LS_EMPTABL LIKE ZEMPTABL.
    DATA : T_CDTXT TYPE STANDARD TABLE OF CDTXT WITH HEADER LINE.
    BREAK-POINT.
    SELECT SINGLE * FROM ZEMPTABL INTO GS_EMPTABL
      WHERE EMPNUM = '101'.
    LS_EMPTABL = GS_EMPTABL.
    GS_EMPTABL-EMPNUM = '101'.
    GS_EMPTABL-EMPNAME = 'TET'.
    T_CDTXT-TEILOBJID = 'ZTEST_TABL_CHNG'.
    T_CDTXT-TEXTART = 'TEST'.
    T_CDTXT-TEXTSPR = 'EN'.
    T_CDTXT-UPDKZ = 'U'.
    APPEND T_CDTXT.
    CALL FUNCTION 'ZTEST_TABL_CHNG_WRITE_DOCUMENT'
      EXPORTING
        OBJECTID                         =  'ZTEST_TABL_CHNG'
        TCODE                            =  SY-TCODE
        UTIME                            =  SY-UZEIT
        UDATE                            =  SY-DATUM
        USERNAME                         =  SY-UNAME
       PLANNED_CHANGE_NUMBER            = ' '
       OBJECT_CHANGE_INDICATOR          = 'U'
       PLANNED_OR_REAL_CHANGES          = 'U'
       NO_CHANGE_POINTERS               = 'U'
       UPD_ICDTXT_ZTEST_TABL_CHNG       = 'U'
        N_ZEMPTABL                       =  GS_EMPTABL   "new values
        O_ZEMPTABL                       =  LS_EMPTABL  "old values
       UPD_ZEMPTABL                      = 'U'
       LV_OPT                           = ' '
      TABLES
        ICDTXT_ZTEST_TABL_CHNG           =  T_CDTXT
    COMMIT WORK.
    WAIT UP TO 3 SECONDS.
    Can anyone let me know why the table is not getting updated with new values

    You should have TWO function modules to call, like
    * Update Database Table(s)
    CALL FUNCTION 'ZTEST_TABL_CHNG_UPDATE' IN UPDATE TASK
         EXPORTING
              n_zemptabl                 = gs_emptabl  "new values
              o_zemptabl                 = ls_emptabl  "old values
              upd_zemptabl               = 'U'.
    * Insert Change Document(s)
    CALL FUNCTION 'ZTEST_TABL_CHNG_WRITE_DOCUMENT' IN UPDATE TASK
         EXPORTING
              objectid                   = 'ZTEST_TABL_CHNG'
              tcode                      = sy-tcode
              utime                      = sy-uzeit
              udate                      = sy-datum
              username                   = sy-uname
              planned_change_number      = ' '
              object_change_indicator    = 'U'
              planned_or_real_changes    = 'U'
              no_change_pointers         = 'U'
              upd_icdtxt_ztest_tabl_chng = 'U'
              n_zemptabl                 = gs_emptabl  "new values
              o_zemptabl                 = ls_emptabl  "old values
              upd_zemptabl               = 'U'
              lv_opt                     = ' '
         TABLES
              icdtxt_ztest_tabl_chng     = t_cdtxt.
    COMMIT WORK.
    Regards
    Raymond

  • Displaying change documents(MM03) in Material master

    Hi All
    One User having problem in displaying change documents(MM03) made by the some of the users for the materials
    (It is not the authorization as he is provided with the same to diplay the change doc)
    Kindly let me know how i can view the change docs made by all the uesrs
    Thanks
    Regards
    Manju

    Hi,
    You can check the MM04 Transaction to check the Changes for Material master.
    System will display the date, time & user name who changed the material, if you click the line then system will display all the details for the changed material master.
    rgds
    Chidanand

  • Error releasing transport request for change document object

    Hi Gurus,
    I created a new change document object for a Z-table. When i try to release the transport request in the development system it terminated with a message "Export application-defined objects       17.12.2009 11:07:45 Not yet executed". The transport request continued to be in the "Release started" status and i am not able to release it.
    I checked in the co file & data file directory for this request, The co file is available but the data file is not created.
    Could you please let me know how to solve this?
    Regards,
    Immanuel.

    It was a problem with some basis settings. Was rectified by the basis team.

  • Problem with Change Document FM  - Not all fields are tracked in CDPOS

    Hello everybody,
    Using transaction SCDO and following necessary steps described in forum, I have created a change document ZFBR to track changes of a table ZFBR. The problem is, the generated FM ZFBR_WRITE_DOCUMENT does not track changes of some fields of the table (inserts are always ok, problem is with updates). After some debugging I realized that the FM DDIF_NAMETAB_GET was returning the table DFIES_TAB where the LOGFLAG was empty for some fields (which are not tracked) so that changes of these fields were not visible in table CDPOS. However, fields with LOGFLAG = 'X' are tracked succesfully (changes are visible in table CDPOS).
    I did not specify any fields to be get logged or not during the steps in SCDO (can we do such a specification anywhere?), does anyone know why the field LOGFLAG has the value '' (space)?
    Best regards;
    Ozcan.

    Hi again,
    The problem has been solved.
    The data elements used in a table are the reason for the problem I have described above. When displaying the details of a data element, under tab "Further Characteristics" , the "Change Document" checkbox has to be selected to enable change document tracking. I have copied the problematic data elements with Z prefix and made the necessary enabling. I have replaced the data elements with their Z equivalents.
    Best regards.
    Ozcan.

  • Problem while generating Update progam for a Change Document Object

    Hi,
    I'm trying to deal with Change Document concept in a R/3 4.6C environment and to establish new Change Document object for my (Z)-table. I haven't using any namespace and created object with name ZTEST. Following the online documentation I came to the point, where I have to generate include program. I made all the nessesary inputs (using Z prefix) but faced
    "Function module name is reserved for SAP"
    Creating everything similarily using some of our registered namespaces (/somenamespace/) I succeed to generate the Update program and to integrate it in my Z-programs as well.
    My question is: is it possible to use Change Document Object-names without predefined namespace - being a regular customer developer, but not an SAP developer - means, if I am allowed to manage programs in the customer namespace (Z,Y, X) only. If yes, how to do this?
    Further (I decided not to open a new thread) - generated Update program uses
    CALL FUNCTION 'xxxxx' IN UPDATE TASK
    for creation of Change Numbers for generated Change Document Object. This CALL doesn't work when I implemented it in my Z-program, but when changed  (IN UPDATE TASK was commented) - everything goes well and the system creates records in CDHDR/CDPOS tables for my object class and table.
    Why is that? According to the documentation I shoud only fill appropriate variables for the Change Document Object (class, tr.code, etc.) and call generated FM, nothing is pointed out about any possible problems? Am I doing something wrong?
    Well, to be precise, I think I have to give a sample:
    1. I have a sample Z-table with few fields (their data elements are marked as Change-Document relevant).
    2. Using own z-progam I created a new record for this z-table. Also fill all the nessesary variables included in the interface of generated FM for Change Document Object (for example - FM-mane CD_CALL_my_object).
    3. I call the CDO FM.
    4. Check what is happening (directly in both tables CDHDR/CDPOS or using FM CHANGEDOCUMENT_READ).
    Further, I perfom the steps from 1 to 4 updating the created in previous loop record in my Z-table.
    In both cases if the FM 'CD_CALL_my_object' is called IN UPDATE TASK nothing happens, but in case of direct call (without addition IN UPDATE TASK) the system behaves as expected. Well, obliously I can change the generated code for our production needs, but it doesn't seems to be the correct decision - in case of next possible modification of the Change Document Object definition, respectively in need of re-generation of the code.
    Any hints are wellcome.
    Thanks in advance.
    Ivaylo Mutafchiev
    Edited by: Ivaylo Mutafchiev on Jan 24, 2008 10:24 AM

    "IN UPDATE TASK" resolved by myself. The one should explicitly call 'COMMIT WORK' from Z-program after CALL FUNCTION '...' IN UPDATE TASK in order to get changes in the CDHDR/CDPOS commited. The key in this issue for me was to check the documentation of CALL FUNCTION :-).
    Regards,
    Ivo

  • Problem in multiple item for change document objects

    hi gurus,
    I have created change document object in tcode SCDO . It had giveN function module /TMW/CHG_OBJ1_WRITE_DOCUMENT.
    CDPOS AND CDHDR tables are updated with changed data. now i am trying to display all old and new data in se38 program.
    here my problem is when ever i changed multiple  item data , my program showing first item details only . I need to show all item data when ever i changed parallel . please help me where is my problem .
    thank you

    I think this is issue with function module generated thru SCDO Please check in your function module inside that the following function modules are used
    CALL FUNCTION 'CHANGEDOCUMENT_OPEN'
    CALL FUNCTION 'CHANGEDOCUMENT_MULTIPLE_CASE'
    CALL FUNCTION 'CHANGEDOCUMENT_CLOSE'
    if not then there may be issue with SCDO

  • Number range "change document" problem

    Hi
    Some body has changed the number range group in production server for specific order type.Can i trace the user id who has done this changes, is there any log generated for number range group changing as no transport request is generated.
    I have checked  "utilities-change document" in OION but no log is generated.
    Regards
    Santosh

    hi
    if the group has been changed ,system will certainly write the change documents .in OION from menu Goto>change documents
    Also i think it will create the request also ,after changing the value from OION screen choose Interval>Transport ,and press yes in the corresponding dialog box system will prompt the request no
    check and revert back
    regards
    thyagarjan

  • Create Change document update problem

    Hi Abap expert,
    I am a newbies in the ABAP world, recently i got some requirement to synchronize data from customize table.
    i already create new change document object (SCDO) and also generate update program and others step
    like BD
    The problem is thet the tables bdcp / bdcps do not have any data  after i make any changes to the table . Is there some missing link,
    is that requirement can be done ?
    Thank you and Best Regards
    Fernand

    If its a warning you can simply you can ignore the same.
    If its a hard error, make sure your function group / module name starts with a Z / Y.
    If its still gives a error, use the naming convention something like this
    ZXX_XXXX or YXX_XXXX...
    Regards,
    Ravi
    Note - Please mark all the helpful answers

  • CR10----WORK CENTER CHANGE DOCUMENT PROBLEM

    HI FRIENDS,
    CR10 SHOWS U THE CHANGE DOCUMENT FOR WORK CENTER.
    I HAVE ALREADY TICKED THE CHECK BOXES IN OP40 TO REFLECT CHANGES MADE IN WORKCENTER TO THE DOCUMENT SHOWN IN CR10.
    NOW MY PROBLEM IS WHEN I M CHANGING DATA IN ANY FIELD IN WORKCENTER ITS NOT GETTING REFLECTED IN CR10.
    THE DATA IS GETTING REFLECTED ONLY WHEN I CHANGE RULE FOR STANDARD VALUE MAINTENANCE. (FIELD NAME-----VGMXX).
    WHAT SHOULD I DO SO THAT DATA WILL REFLECT IN CR10 WHEN I CHANGE ANY FIELD IN WORK CENTER.
    PLEASE GUIDE........

    Dear Nitin,
    Sorry for thge late reply.
    Please follow the link below.
    http://help.sap.com/saphelp_47x200/helpdata/en/b1/c0384f439a11d189410000e829fbbd/frameset.htm
    You can do this with the help of ABAPPERS.
    Regards
    Kannan
    Reward if useful.

Maybe you are looking for

  • Failed: The disk could not be read or written from... HELP

    Ok, well this is now the third different error message I've received. Why so many problems with 7.0? obviously apple is working towards a fix right? Anyways, anyone know what this means? Thanks

  • Trigger badi after giving data in custom tab of po item

    Hi, We have added custom tab in po item level, now we want to make those fields manditory for specific document type.We are using badi ME_PROCESS_PO_CUST . The message is getting triggered initially , but after giving data in the custom fields the ba

  • How to change host name or host ip in AIA after installation

    Hi, we have AIA11.1.1.5.0 and O2C PIP installed. we need to change host name used in AIA to some different value. Could you please suggest what all steps are required for this. Thanks & Regards, Bob

  • Show result before I click "Find" button~

    HI ALL~ I have a problem~ ex: A-Group has "Find Page=true"...... when I navigate FindA-Group.jsp , there has result in the page before I press "FIND" button.(I combine fine page and result page to same page).Of course,I can input some data in query c

  • Write 2D data array to spreadsheet with good alignment

    Using "write to spreadsheet file" function to write 2D array,   I always have the problem that headers cannot align well wiith the data. See attached snapshot please (There are 7 column headers.) WT LV2013sp1 Solved! Go to Solution.