CATT ECC6.0 Control data is obsolete

The catt I use was created in 4.6c. Since the upgrade at ECC6.0, it displays the message after each running :
"Control data is obsolete, rerecord (VERBS-NAME: CREATEOBJECT CATT: create)
Error ATT377 in application transaction IW24
Message no. TT350
Can you please tell me why does this error occur and how to correct it.
Please suggest what should be done to avoid this error.
Your suggestions will be of great help for me.
Abdes.
Edited by: RACHID ABDESSAMAD on Nov 26, 2008 3:11 PM
Edited by: RACHID ABDESSAMAD on Nov 26, 2008 3:23 PM

HI Rachid,
I would assume you are using TCD command to record your transaction.  Sometimes due to some controls like ALV, a TCD command would fail in the eCATT.  Hence there are two options:
1. Rerecord your transaction with TCD.  This might solve your problem, but it can also happen that it does not help at all because of those controls on the UI.
2. Record your transaction use SAPGUI command.  SAPGUI command can handle controls much better.  Hence your problem should be solved completely.
Additionally, for option 1, if you have got such an error and your data can still be created correctly, then you can use MESSAGE...ENDMESSAGE to 'allow' the error message of 'ATT 377 Control Data is obsolete'.  But in this case, it would be necessary to check in the database to make sure that the data is really created.  Otherwise, your eCATT would run with green traffic light, but actually there is an error.
Kind Regards, Qian

Similar Messages

  • Control data is obsolete, rerecord (VERBS-NAME: CreateObject CATT

    Hello experts,
    To create factory calendar holiday(t-code SCAL), I use t-code secatt for the purpose.
    But when running the test configuration script, I face the following error
    Error in eCATT command TCD SCAL
    Message no. ECATT507
    Control data is obsolete, rerecord (VERBS-NAME: CreateObject CATT: <none> Callno: 000001)
    Message no. TT377
    I use a tab separated text file with numbering of records.
    I read on this forum some topics about the error but it doesn't solve the issue.
    Please suggest what should be done to avoid this error
    Thanks in advance for your reply.

    thanks AP for your reply.
    I have deleted and  I have recreated the file with new recording but the error still ramains.
    Can anybody assist to solve the issue ?
    Thanks in advance.

  • Error in SECATT - ATT 377 Control data is obsolete, rerecord (&1&2&3)

    Hello,
    I get an error while running a TCD REC secatt, in the log of the test configuration , there are red errors "ATT 377 Control data is obsolete, rerecord (&1&2&3)", although the secatt was sucessfully done (meaning i should get green light...).
    I've implemented Note #965439, in order to solve this error.
    but the error still occurs.
    Any ideas...?

    thanks AP for your reply.
    I have deleted and  I have recreated the file with new recording but the error still ramains.
    Can anybody assist to solve the issue ?
    Thanks in advance.

  • Obsolete control data in eCATT

    Hello All,
               I am getting the error message
    '<b> Control data is obsolete, rerecord (VERBS-NAME: CreateObject CATT: <none>
    Callno: 000001)'</b> while executing the  eCATT script. Could any one clarify what could be the possible reasons. I recorded the transaction using TCD mode.
    Thank you in advance.
    --Venkat

    Hello Venkat
    I cannot tell you the error cause yet I have experienced this error message too while recording a simple dialog transaction (like CG3Y).
    I am not sure if this is a bug in eCATT (at SAP release 6.40) or somehow releated to the SAPGUI release (patch level) on the presentation server (i.e. the local PC).
    Perhaps you could overcome this recurring problem using a different recording pattern.
    Regards
      Uwe

  • Data Origin Types not filled in the tab "Control Data" of BP interface

    Hello experts,
    I have loaded the clients from ECC6.0 to CRM 4.0.
    Before I have loaded the clients I have maintained the data origin type for the BP in spro -> cross application components -> SAP Business Partner -> Business partner -> Basic settings -> Data Origin -> Maintain Data Origin Type.
    After I have done the load initial of clients, the field  "Data Origin" is empty in  the tab "Control Data" in BP interface. If I do F4 in the field appear the configuration that I did in spro appear.
    For this field will appear filled I'll need to do more configurations in spro?
    Best regards,
    Mary

    Hi Mary,
    The middleware does not fill this field in BP master data. You can maintain data origin type in SPRO, however the mBdoc does not use this customizing in order to fill this field.
    Please try to use the BADI CRM_DATAEXCHG_BADI in order to fill this field during master data download.
    It hope it helps.
    Regards,
    Gabriel Santana

  • MM01-Legal Control Data

    Hello Experts,
    I have a requirement regarding creation of material.The version i am using is ECC6.0.
    I am creating a material by copying from existing material.By giving enter in each and every tab the data is getting copied.
    when coming to foreign trade export tab there is button LEGAL CONTROL DATA,the user does'nt want to click that button but he wants the legal control data to get copied without clicking the button.
    I got to know about the BADI BADI_MATERIAL_REF , but i didnt find the legal control structure MAEX in this BADI.
    Experts!! Is there any possibility to copy the LEGAL CONTROL DATA without clickting the button in FOREIGN EXPORT TRADE tab??.I want to know is there any Enhancements or any other alternative solution for this.
    Thanks in Advance,
    Syed Maheboob.

    I got the solution,
    i have done through implicit enhancement spot by adding the code required in the program LMGMMI31.

  • How to modify changes of table control data in PAI

    I have a table control where the columns are brought by dict fields.I am able to bring data into table control through an itab.
    Now what i want is whenever user edits data in table control and clicks on save button the corresponding changes should be made in database.
    For this according to my understanding we need to (in PAI) modify the changes in itab from the table control and then in SY-UCOMM of SAVE button we need to update in database table using itab.
    For this , I am not able to write code for modifying the changes in itab from table control. Here is my code below.Please tell me how to do this.
    PROCESS BEFORE OUTPUT.
    MODULE FILL_DATA.
    LOOP AT ITAB INTO ZEMPLOYEE_MASTER WITH CONTROL EMPTABLE CURSOR
    EMPTABLE-CURRENT_LINE.
    ENDLOOP.
    MODULE STATUS_0001.
    PROCESS AFTER INPUT.
    LOOP AT ITAB.
       MODULE MODIFY_ITAB.
    ENDLOOP.
    MODULE USER_COMMAND_0001.
    REPORT  ZDATA_FORM1.
    TABLES: ZEMPLOYEE_MASTER.
    CONTROLS EMPTABLE TYPE TABLEVIEW USING SCREEN 0001.
    data: begin of itab occurs 0,
           emp_no like zemployee_master-emp_no,
           name like zemployee_master-name,
           city like zemployee_master-city,
          end of itab,
          rowno TYPE I VALUE 1.
    *&      Module  STATUS_0001  OUTPUT
    *       text
    MODULE STATUS_0001 OUTPUT.
    *  SET PF-STATUS 'xxxxxxxx'.
    *  SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0001  OUTPUT
    *&      Module  USER_COMMAND_0001  INPUT
    *       text
    MODULE USER_COMMAND_0001 INPUT.
      MESSAGE 'Inside INPUT' TYPE 'I'.
    CASE SY-UCOMM.
       WHEN 'SAVE'.
         UPDATE zemployee_master.
       WHEN 'EXIT'.
         LEAVE PROGRAM.
    ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0001  INPUT
    *&      Module  fill_data  OUTPUT
    *       text
    MODULE fill_data OUTPUT.
      select emp_no name city from zemployee_master into TABLE itab ORDER BY emp_no.
      Describe table itab lines EMPTABLE-LINES.
    ENDMODULE.                 " fill_data  OUTPUT
    *&      Module  modify_itab  INPUT
    *       text
    MODULE modify_itab INPUT.
    * MODIFY itab from zemployee_master index
    * MESSAGE 'Inside modify_itab' TYPE 'I'.
    ENDMODULE.                 " modify_itab  INPUT

    Hi
    In the following module of your code
    MODULE modify_itab INPUT.
    MODIFY itab from zemployee_master index tc-current_line " Where TC is the name of the Table control on the Screen
    ENDMODULE.
    Table control data gets refreshed on *enter*
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/2165e990-0201-0010-5cbb-b5c2ad436140
    Cheerz
    Ramchander Rao.K

  • Hi In ALE ,IDOC  HOW  CONTROL DATA IS TRANSFERRED

    Hi Experts,
                          Hi In ALE ,IDOC  HOW  CONTROL DATA IS TRANSFERRED .
    Thanks & Regards
    Bhaskar Rao.M

    Hi Bhaskar Rao,
    Good Check out the following documentation.
    /people/kevin.wilson2/blog/2006/11/13/ale-scenario-development-guide
    http://searchsap.techtarget.com/tip/0,289483,sid21_gci1230385,00.html
    Some good links on ALE/IDOC
    ALE/ IDOC
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.sappoint.com/abap/ale.pdf
    http://www.sappoint.com/abap/ale2.pdf
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/0b/2a60bb507d11d18ee90000e8366fc2/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/78/217da751ce11d189570000e829fbbd/frameset.htm
    http://www.allsaplinks.com/idoc_sample.html
    http://www.sappoint.com/abap.html
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.allsaplinks.com/idoc_sample.html
    ALE/ IDOC/ XML
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://www.thespot4sap.com/Articles/SAP_XML_Business_Integration.asp
    http://help.sap.com/saphelp_srm30/helpdata/en/72/0fe1385bed2815e10000000a114084/content.htm
    IDOC Convertion
    /people/kevin.wilson2/blog/2005/12/07/changing-fields-in-an-idoc-segment
    Please check this online document for ALE and IDoc.
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDALEIO/BCMIDALEIO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDALEPRO/BCMIDALEPRO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFAALEQS/CABFAALEQS.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVEDISC/CAEDISCAP_STC.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVEDI/CAEDI.pdf
    Also check this links for additional information.
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    Good Luck and thanks
    AK

  • Control data for storage type  is missing Message no. L3006

    Dear Mates
    i am trying to create a transfer order from delivery. the moment i click on save in LT03 its giving me the error message as
    Control data for storage type  is missing
    Message no. L3006
    i have explored every thread regarding the same issue and also implemented some measures like
    -> extending the material to particular warehouse and maintaining stock removal and stock placement strategies in it(i created new one from MM01 itself)
    -> going to spro path SPRO->Logistics Execution->shipping->picking->Lean WM->Define storage type. and assigned storage type.
    but still i am getting the same message in LT03
    can you please help me out on this.

    Please take a look at the following links and see if they will help at all.
    Error on creating a TO - Control data for storage type  is missing
    "control data for storage type is missing"
    Kind Regards,
    Jason

  • "control data for storage type is missing"

    Hi Guys
    I am trying to create a goods receipt for an inbound delivery.
    I created the inbound delivery VL31N - sucessfully
    But when trying to create a putaway LT0F - error
    control data for storage type is missing. msg no. L3006
    Do i maiantain this control data for storage type in the Material master?
    is there anything Im doing wrong?
    Can someone help please.
    Thanks in advance for the help.
    Ahmad Yahya

    Hi,
    Check in SPRO > Logistics Execution > Warehouse Management > Master Data > Define storage type, here for your warehouse and storage type check stock placement and stcok removal control is configured.
    Regards,
    Prabu

  • Control data in VENDOR MASTER..?

    hi gurus
    Can can anybody explain me about the how many views are there in vendor master like (material master-28 views).
    In Control data , what is the use of   --- GR based IV..?
    Please explain me clearly
    Thanks in advance
    sap-mm

    Hi,
    We can do MIRO(Invoice before GR) by deselecting the GR based IV block.
    We normally use it in case of Import process where we have to clear planned delivery cost(Customs duty,transportation charges) & then do the GR.
    But in domestic procurement, if we do IV without GR, we will not be able to get proper PO history.
    Hope this will solve your query.
    Reward if useful.
    Regards,
    Piyush

  • Price Control Date as GR Date in Purchase Order?

    Hello Friends.
    We have a requirement where we need to take the price at the time of GR. I have tried to set the Price control date as GR date (5) in Purchase order, Info Record and even in Vendor Master. Unfortunately, it is always taking the price as P.O. price and it is not taking the price which changes between P.O. Release and GR date.
    I made several P.O.'s and did GR for the same with less quantity. Then i made changes in the Inforecords and again did GR for the same P.O. It took the price from the P.O. only. Albeit I set the Price determination date as GR Date in P.O., Inforecord and vendor master too. We have requirement of not changing the P.O. once it is created and we dont want to change the price in P.O. once we do one GR for a particular P.O.. We need to re-determine the price at the time of GR without changing the price in P.O. as it require several authorizations.
    I need to know if I am missing any setting in P.O., Info-record, Vendor master or any changes required in customizing. Or I need to install any enhancement package for the same.
    This is a very critical requirement and hence request MM consultants to provide their valuable inputs.
    Regards
    Gurcharan

    how did you test? did you always create new POs after your changes in master data? Or did you just expect that the existing PO would automatically get to know about such changes?
    Was the existing PO price found from the info record? Can you proof that from the analysis in the condition tab?

  • T.code FS00: changing the SORT KEY in the 'Control data'

    Hi All,
    I need to change the SORT KEY in the 'Control data' of a G/L master data.
    Is there a SAP standard program by which the field 'Assignment' is updated.
    Thanks
    Gandalf

    Sorry,
    i did't mean updating a field ...
    I meant:
    is there a program which changes the content of the field 'Assignment' according to the new content of the field 'Sort key'?
    Thanks

  • How to add new row in KL02 trx - Activity type control data

    Hi guys.
    I am not a FI-CO consultant, but I want to add a row since KL02 transaction within a cost center, with a new fiscal year. When you access KL02 (change activity type), you set the activity type, then press Master Data and the basic screen appears. If you press the Display planning control button, you will see the "Display Activity Type Control Data" List. I wanna add a row for a specific cost center here, because the cost center I refer has not 2011 as fiscal year. I tried to use, since basic screen of KL02, use the Change planning control button, but when I set my cost center and 2011 as fiscal year, the Save button is inactive. Furthermore, I tried to press the Period screen and a message appeared "No data has been entered yet". So I dont know how to add one row for a cost center in the Planning control (Activity type control data) list of the KL02 transaction, specifically for an activity type. Do you know? Thanks in advance

    Hi,
    The list of cost centers in which the activity type is planned is given in KL02 under planning data.  In order to add a new cost center to this, you need to enter the activity type in transaction KP26 for a particular year. 
    Goto transaction KP26
    Give version - 0
    from period 1 to 12
    year - 2011
    cost center - mention the cost center
    Activity type - mention activity type
    goto overview screen F5 and add the plan price for the activity in the cost center.  This step will automatically add new row in the activity type control data.
    Hope this helps.
    Thanks,
    Ram

  • Capture data changes to Control Data

    Hi,
    I want to replicate any data changes made to the config/control data of SPRO to a non-SAP system. Would there be user exits or change pointers for these transactions? How can I confirm this? If this is not possible then what options are available in SAP ECC?
    Eagerly awaiting a response..
    Thanks in advance

    Dear folk,
       In SAP we have two tables CDPOS and CDHDR for the changed data to be maintained.
      CDHDR-Header data
    CDPOS-Item data.
    Based on ur requirement , u can check these tables by giving the table name and field name.
    to the appropriate fields in the CDHDRa nd CDPOS.
    Revert if u need any help regarding this.
    Regards
    Abhilash.

Maybe you are looking for

  • Missing attributes in soap generated from wsdl schema

    I've generated java control (jcx) from a wsdl and now I'm trying to send a soap message using a generated test jws file. <Values> <Value Line="1"><![CDATA[bla]]></Value> <Value Line="2"><![CDATA[bla]]></Value> <Value Line="3"><![CDATA[bla]]></Value>

  • HT201412 my ipod wont turn on

    ok so one day my ipod say isos 6 is availible, and i was like ok, so i click update..... it tells me a time limit and its like 3-4 hours, so i fall asleep, wake up the next morning and it says i need to connect to itunes so i plug it in and it says d

  • Interactive document problem

    Hi, A client want an interactice document which he can mail to his clients. Witch sliding pictures. How do I make this? Because I cant get it working as interactive PDF. It needs to work on different platfoms and mobile deviceso an ipad, pc or macboo

  • Rman Retention policy to recovery window

    Hi, I have few basic doubts in RMAN backup policy 1 . Is that possible to set Retention policy to recovery window in minutes?? 2 . If i set Backup Retention Policy to recovery window to 3 days and i am performing RMAN differential incremental backup

  • How to get SJSC2-created webapps run on servers?

    Hi everybody, we have developed a nice little webapp with the Sun Studio Creator 2.0 on my local desktop-computer (Windows XP, running Tomcat 5.5). This webapp runs fine on this computer. Then we have packed this webapp as a webapp.war-file and now w