Urgent..FI-SL table transport

when anew table is created in FISL what all should be transported.
Any help is highly appreciated.
Thank you

When you create a table group You have to make sure if have all the dependent objects of that table has to go through. IF you have create any custom data elements for that then those need to go. once you have transported the table group make sure u run this program  RGZZGLUX so that it can update all the structures associated with it
Assign points if helpful

Similar Messages

  • URGENT : ABAP Program latest transport

    Hi gurus,
    I have to get the latest version (in fact the transport request pertaining to that version) of an ABAP Program.
    I can see the request number in the Version Management,but which table stores it ? Or how this info can be retrievd by..say a  dummy program into a file ?
    This is very urgent.Kindly help.
    Regards,
    Sandip.

    Hello Sandip,
    From the tables E070 & E071, you can get the details for the latest request and its status. Follow following procedure -
    1. Get the list of objects for which you want to find the latest request.
    2. For this list of objects, first get the details from SE16 transaction. Goto table E071.
    3. Give the list of object as input in the field OBJ_NAME & execute.
    4. You will get the list of requests linked to this OBJ_NAMEs.
    5. Take this list of requests and go to table E070 in transaction SE16.
    6. Pass on the list of request in the input of field, TRKORR. Here also select the appropriate status from input field TRSTATUS search help like released etc. Other input parameters can also be given here. Finally execute.
    7. Now in the output, sort the list on date in descending order.
    Here you get the list of latest requests for your objects. Same logic, you can use in your program by select queries.
    Hope this sort out your query.
    PS: If the answer solves your query, plz close the thread by rewarding points to each reply.
    Regards

  • Cannot set status of Urgent Change after manual transport

    Hi all,
    We are usng CHARM in Solution Manager 7.1 for import to the SAP ECC (EHP6) systems.
    I cannot set the status of the Urgent Change document (ZMHF) to status "To be Tested" after the transports were manually released and manually imported to the ECC QA system.
    When I use action "Pass Urgent Change to Test", the system stopped with error "Not all task are yet released" and will not change the status .
    Based, on the Task List log, the system started the release process although no transports were released.
    Is there any way that I can update the status of the Urgent Change document to "To be Tested"?
    I tried program CRM_SOCM_SERVICE_REPORT but still did not change the status.
    Any suggestion?
    Thanks,
    Tess

    Hi Venu,
    have a look under System Administration - System Configuration -- Knowledge Management -- Configuration --Content Management -- User Interface -- Commands -- UI Command Groups -- StatemanagementGroup.
    See Java class: com.sapportals.wcm.rendering.uicommand.cm.UIStatemanagementGroupCommand. Take the class and decompile this and everything needed around to understand how this class works.
    Then you can choose to extend this CommandGroup to also have a command "Resubmit for Approval" or you can implement your own UI Command only for resubmitting (you will also have to activate your command (group) by settings within the configuration).
    On the other hand, if all this is completely new to you, I'm a bit sceptical if the task isn't a bit too big as a first task on KM implementation topics...?
    Hope it helps
    Detlev

  • Reg. table transport.....have ur points.

    Hi all,
    As we know we can't directly put data in table in production server, I've a z table on development server. I used it for validation purpose. So when i'll transport it...how i will put data in production server..
    Pleas assist me.
    Have ur point.s

    Please check the code ..
    First create table maintaince.
    now create program and add table name in list.
    select one of the radio button ,it will take you sm30 and when you create record at Sm30 -> then it will ask request #.
    so you can transport the data.
    Table diclaration
    tables: tvdir.
    Selection screento table View
      selection-screen skip 2.
      parameter p_tabnm(30) as listbox visible length 30 obligatory.
      selection-screen skip 1.
      selection-screen begin of block s1 with frame title text-001.
      parameter: p_radio1 radiobutton group g1,
                 p_radio radiobutton group g1.
      selection-screen end of block s1.
    Add values to list box
    at selection-screen output.
      type-pools: vrm.
      data: name  type vrm_id,
            list  type vrm_values,
            value like line of list.
      name = 'P_TABNM'.
      refresh list.
      <b>value-key = 'Table name'.   " Add your table name</b> 
         value-text = text-002. "'Table description'.
      append value to list.
      call function 'VRM_SET_VALUES'
           exporting
                id     = name
                values = list.
    start-of-selection.
    Get flag of corresponding table view
      select single tabname flag from tvdir into tvdir
                    where tabname = p_tabnm.
    Set flag of corresponding table view
      if p_radio1 eq 'X'.
        if tvdir-flag ne 'X'.
          update tvdir set: flag  = 'X'
                     where tabname = p_tabnm.
        endif.
      endif.
      if p_radio eq 'X'.
        if tvdir-flag eq 'X'.
          update tvdir set: flag  = ''
                       where tabname = p_tabnm.
        endif.
      endif.
    Execute View/Table
      call function 'VIEW_MAINTENANCE_CALL'
        exporting
          action                               = 'U'
          view_name                            = p_tabnm
       exceptions
         client_reference                     = 1
         foreign_lock                         = 2
         invalid_action                       = 3
         no_clientindependent_auth            = 4
         no_database_function                 = 5
         no_editor_function                   = 6
         no_show_auth                         = 7
         no_tvdir_entry                       = 8
         no_upd_auth                          = 9
         only_show_allowed                    = 10
         system_failure                       = 11
         unknown_field_in_dba_sellist         = 12
         view_not_found                       = 13
         others                               = 14.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    Reset flag of corresponding table view
      update tvdir set: flag  = tvdir-flag
                    where tabname = p_tabnm.
    Thanks
    Seshu

  • Table transport

    hi experts, please solve my problem.
    i want to know the detailed  steps (if possible screen shots) needed to transport a table along with data from dev to quality/production  server.
    Edited by: dickybud on Oct 6, 2009 5:21 PM
    Moderator message - Please see Please read "The Forum Rules of Engagement" before posting!  HOT NEWS!! before posting - post locked
    Edited by: Rob Burbank on Oct 6, 2009 11:30 AM

    Hi Martin,
    As already stated, if you table maintenance dialog has "standard recording" switched on, then all changes made through SM30 will be recorded in a change request which you can transport.
    To manually transport the entries you already have, add an entry to your change request (or create a new one) with R3TR TABU ZWERKSCONFIG.
    If you double click on this entry it will prompt you which keys you wish to transport.  If you want all, then just specify the client and then * to take all values (if you double click again, it will show you the actual key names to help you specify more precisely what should be transported).
    Cheers,
    Brad

  • TABLE TRANSPORT PROBLEM

    i am in a real fix, i want to know the proper way of transpoprting table entries from dev server to q/a, prod
    i came across 2 ways
    first way
    se11 => ztable.
    menu => transport entries
    assign it to a req no.
    check in se09 /10
    release.
    (i am giving the link)
    Link:[http://sample-code-abap.blogspot.com/2008/06/transporting-table-entry.html]
    second way
    table: ztable.
    go to se10 =. display => workbench request.
    dbl clk the req number.
    now in change mode  in 'objects' tab => object name = ztable.  clk on 'functions' key.
    a new screen appears => dbl clk on the first empty line.
    provide the table entries to be transported.
    select the radiobutton 'entire table / table contents as per req /  table contents by current key '.
    save.
    which of the above is correct and wats the diff ?  pls suggest. which one shud i  follow?

    Hi,
    both procedures have the same result but unfortunately both have the same restrictions and lead to the same errors.
    Tables which need transportation should always be defined and maintained in a way that the transport integration is ensured. This includes the correct table type (e.g. C table for customizing), maintenance only via maintenance view (generated or own defined) and transport integration activated (TCode SCC4). This is the only way the consistency between the systems is ensured. If you only put the table entries into a transport from time to time you only send the current table lines but deletion of lines won't be transported so you will end with more / outdated lines in qa and prod system. So if your z table contains customizing information you should define it as table type C, generate a maintenance view and maintain it e.g. via T-Code SM30. So every time someone changes the entries a transport request pops up automatically.
    While this all does not seem to difficult to handle for small developments, propper transport integration and table definition is important if you head into greater projects perhaps with delivery to multiple customers. In such scenarios it is very important for the software logistic guys that the developers keep the basic rules for table definition as no S type table w/ client field, never put an integer type field into table key, never put asterisks in customizing transport (except langu field), never use the wrong transport type by manually adding table entries in workbench transports which belong in customizing ones and so on. It's really no fun if one year of development w/ some thousand man days of work can't be delivered because one of 2k tables was not defined properly.
    Kind regards
    Roman

  • Urgent : CO/PA Datasource Transport from R/3 DEV to R/3 QA

    Hello!
    I am trying to transport the CO/PA datasources that show up in RSA6 in R/3DEV to R/3 QA. All the transports have been moved. Nothing shows up in RSA6 of QA. I can display the datasource in KEB0 but cannot do the extraction in RSA3, as it gives the error 'It is not defined in the system".
    I have already executed the program ZCOPACLT and that is how I can display the datasource in KEB0.
    Am I missing something somewhere?
    Any suggestions are welcome.
    Kind of urgent. Appreciate your time.

    Hi Sonal,
    1) check in DEV if the extractstructure was generated there.
    2) check the object list of the transport to see wether the extractstructure was included.
    if the structure was not generated in DEV you might have to recreate the Datasource, unless anybody knows a better way.
    if the structure is inactive (e.g because Description is missing) try to activate the structure and recollect the transport.
    If the structure is available in Dev and active annd was not in transport you should recollect and retransport.
    Sorry, thats all I can think of right now.
    Michael

  • URGENT : Regarding External Table

    Hi,
    We have some external tables in our production environment. In unix level we have two users 1) ORACLE (Primary Group DBA, Secondary group RELEASE)
    2) PROD (Primary Group RELEASE).
    Now the log file directory of external table owned by PROD user and RELEASE group.
    What minimum priviledges is reqire in unix level, so that ORACLE user can create log files for external tables there.
    I have tried with 775, but it is trrowing the follwoing error :
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04063: unable to open log file log_flow.log
    OS error Permission denied
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
    ORA-06512: at line 1
    Can any one suggest ASAP.
    One more Issue I have facing with external tables. The follwoing select "select * from dba_directories" showing all the directories I have created (data,log,reject,error), but "select * from dba_external_locations" showing only the data file locations not showing the error,log and reject location, and when the DATABASE is bounced due to some other reason the DDL of external table get changed (error,log and reject file location was not there). Can any one suggest any work around.
    Any body can call me up in any one of the following nos.
    Ph(O) : (+44)1173024701
    Ph(M) : (+44)7772341689
    Thanks & Regards,
    Koushik Chandra

    Hi,
    Have you try to create a file manually with oracle user ito this log directory ?
    Have you check the good directory ?
    dba_external_locations It describes the locations (data sources) of all external tables in the database.
    Nicolas.
    PS : you know, today is saturday, and in most of countries, saturday is the week-end - in other word not working -, since this forum is based on volunteers, you can wait some time an answer, if you have. If it's very urgent, contact your oracle support service.

  • Custom table Transport Request

    Hi,
    I have created a ztable and assigned a package and tranport request, then I have created table maintennance generator for the same table but saved the table maintenance generator under $TMP.  As the table maitenance generator is not allowing to change the object directory entry, I have deleted the table maintenance generator and then freshly created the TMG for that table, this time I have given the package for TMG and the system haven't prompted any Transport request for my TMG and my TMG  got              saved(I guess it stored under the table request, but not sure).
    My doubt is, does my transport request will have the table and the table maintenace generator in it or not.....  if I transport the request will everything goes fine into the other system or not.
    Thanks
    Raju....

    Hello Raju,
    Why are you asking this question here ?
    Did you check the TR in SE10 ? Was the Function Group you have given in the TMG included in the TR ?
    If yes, it should be OK.
    @ Other posters: Do you guys have access to the OP's system ?
    BR,
    Suhas

  • Urgent....Transported Update rules active version but still not active....

    Hi Gurus,
    i have changed a datasource and an <b>ODSA</b>
    and this <b>ODSA</b> which also acts as a datamart to <b>ODSB</b>
    so i have transported, transfer rules, transfer structure, infosource, update rules of <b>ODSA</b> and also the
    update rules of <b>ODSB</b> as well
    And before realsing the request into quality i have replicated the datasource from R/3 as well and then realsed this request to Quality everything is active like transfer rules, infosource, transfer structure
    <b>ODSA</b> update rules
    But the <b>ODSB</b> update rules are not active kindly tell how to make them active.
    so again i have regenerated the export datasource and then again i transported only update rules of
    <b>ODSB</b>.
    but still the update rules are inactive, kindly someone guide me how to make them active
    as i have to send this to production which is having 4 years of historical data so please kindly
    help me.
    thanks and regards
    Harish

    Hi A.H.P, vishvesh, anil, and buvanna
    thankyou guys for your info and support i tried all that u have said
    except activating them manually...as it is urgent i am going with manually activating
    and vishvesh i could do check the update rules by basis help. thanks for that
    A.H.P i have manually activated the update rules its working fine, so  i am praying that everything should be fine in production as i have requested to have permissions to activate in prd as well
    thankyou very much for all the support.
    i am relieved that i have at last solved it
    thanks and regards
    harish

  • Table:Transportation

    Hi All,
    1.How can i transport a particular  table  contents from one system to another system?
    2.How can i import the transport request with in the same system?
    Thanks in Advance

    Hi Sanjeeva,
    You should fill "Program Id" and "object type" fields with "R3TR" and"TABU" and table name that will be transported into the "Object name" field. Then double click on table name that you just determined on the screen. At the upcoming screen, you'll see key fields of the table. Double click on an empty line in the list, popup will be appeared. By doing so, you can easily enter keys that belongs to records, you want to transport. Save your changes and export the transport request.
    For the second answer, as far as I understand, you want to import this file into the system. Since perform this operation, you should execute "tp addtobuffer" and "tp import" at the OS level.
    Best regards,
    Orkun Gedik

  • Regarding table transport

    dear all ,
                    i have copied a table and activated and used it in a program and transported both program along with tables to quality
    . i got error RC = 8.(some domains and data elements not activated). i have again checked and activated all fields and data elemnts and domains , assigned it to a new request and transported again.
    i got the same error. RC = 8.
    what might be the problem and any altenate solutin becouse there are more than 200 fields in these tables,any help wud be gratefull.
    regards,
    naren

    With complex developments you have to be very accurate about your transport requests, so that all relevant objects make it into the next system in the landscape.
    1) import transport request(s)
    2) if RC = 8 or worse, scan the transport logs for all errors
    3) correct the errors in DEV, create new transports containing missing objects, etc.
    4) go back to 1)
    Sometimes there are circular dependencies between objects, then it can help to import all relevant transport requests again at once. If the number of transports becomes too large, you can combine all objects in those transports into a single one via tx SE03.
    Good luck.
    Thomas

  • Refreshed BA codes table transport

    I just refreshed the table with BA codes through a load program , and its in dev . I dont have a transport for it . The table as we know is TBRCT and TBRC tables which has the BA codes or the industyry codes. Now that the codes have been loaded , I would like to know how do I transport theses to the QAT to take effect there. I dont have atransport generated in thgis . How do I create a transport to carry these codes to the QAT. Kind help will be greatly appreciated.
    thanks
    Aarav

    Can anyone please let me know how do I generate a transport for this. I tried generating a tarnsport through spro in the define industry code , in DEV i have a complatee list and then generated this transport but I dont get the elemenst attached in the transport , it has just customising task in the transport, no tables has been attached with it . HOw do I generate a transport for the industry code to QAT .
    Thanks

  • Inconsistent custom table transport movement

    Hi All,
    I have appended new records in two custom tables and moved it from development client to quality client using one transport request. Changes to one custom table are reflected whereas the other did not in quality client. What might have caused this issue?
    And if i use a new transport request to correct the issue might create an other problem. Please suggest a fix for the issue at the earliest.

    Max,
    Thank you for the reply.
    I have generated the TR by manually placing the values in TR. This is a workbench request. The delivery class is "A" and data class is USER. I was able to insert values in table using a maintenance view but was not able to include the table changes into TR.
    The other custom table where values were transported properly has delivery class "A" and data class APPL1. I was able to manually maintain and attach values to a TR and it transported perfectly to quality client.

  • About customize table transport

    Hi All,
    I changed a customize table Zxxx,added a field to it.Then transported it to the PRD system,but in the PRD system, this table was not active,and the change did not implement fully.In the DEV system,the table works well.Was there any problem of my transport? There is two option in the STMS(I did not check them when I transport): Overwrite originals,Overwrite objects in unconfirmed repairs.
    What do they mean? Do I need to check these option when I transport?
    Thanks very much!
    Pole

    Hi,
    If you add a field to a table which has data in it you may have to run database utility to convert and activate the table . You can run database utility on DEV system and transport to Production. But there are chances of data loss if you chnage key of a table. I assume you added a field at the end and a non key field .
    Cheers.

Maybe you are looking for