Planner table changes transport in SPRO

Hi all,
I have created a new planner in SPRO and using menu 'Table View'->Transport, I have saved the changes of the planner table under one request number, but I dont see any info under this in se10. Is this right approach or else I missed anything? Please guide.
Thanks in advance.
Regards,
Guru.

Hi Guru,
I think you have followed the right steps...
Please use TCode SE01 where you have options of search by User ID or TR no. etc... there you can input the transport request number (in Display Tab ) which you had created(under own requests) while saving the planner data in SPRO table-/SAPAPO/PLANNER.
If that is not displayed under that view then please check if the entries/changes are correctly saved in table under that TR-Transport Rrequest ,if not save the changes again and create a new TR and follow the steps suggested above.
hope this helps...
Regards,
Digambar

Similar Messages

  • Transporting table changes

    Hi folks,
    I've made changes to a custom table in SE11(including keys and add new fields). Question is, if these changes are being transported to QA system, will the current table in QA system will be overwritten? how about the current content of table? will it be overwritten as well? do we need to adjust the table again in QA?
    Thanks,
    Tremonti

    Hello Karchy,
    You will not loose the data in your QA table once you move the Table changes. The conversion will be managed through a temporary table at the back end. You can expect a few dumps in your QA system while the transport is being imported, if there are programs accessing this table during that time. Basically the DB system will use one of ALTER TABLE or table conversion methodology to adjust your table (as you have data in it). Only if the table is empty, its dropped and re-created (fastest method).
    Once the transport is imported, its better to confirm the status of the table in SE14. If required "Activate and Adjust" the table and look out for issues in the logs.
    When you move this table to the productive environment, do so in a quite time (when the system is least active).
    Regards,
    Jinesh.

  • Logging of table changes

    Hi All,
              We are working on ERP 6.0. Recently Basis team has been asked to activate the table changes logs in Production system. Accordingly we activated the rec/client parameter for Production system client. We are also required to click the log changes tab in the table for which the logs are to be activated.This is to be done through t code SE13. While trying to do so, I have found that our Production system is not allowing to make changes directly as it is configured in non modifiable stage. I have also tried to make changes in devp clinet and then transport it to quality an Production,however it is not working.
    Kindly let me know the exact method by which I can activate the tab in the table.
    Thanks,
    Prasad Thakur

    Hello Prasad,
    This is strange. It is understandable that the table content changes is not getting recorded in case rec/client (in default profile) is not set along with recclient="XXX" (in transport profile) but  table logging activation not getting reflected in QA is a bit weird.
    Are you sure that the transport carried correct contents. Can you list the contents of the transport. It should have an entry related to DD09L.
    Is the table showing as activated ? Just try to activate/generate it.
    For more info on recording please check OSS notes 1916 and 84052.
    With Regards.
    Ruchit Khushu.

  • Need table for Transport Request component

    Hi,
    I need the name of the table that stores the TR name and all the Objects to be transported in them.
    Thnx in advance,
    Chirantan

    Check <b>E070</b>
    E070     Change & Transport System: Header of Requests/Tasks
    E070A     Change & Transport System: Attributes of a Request
    E070C     CTS: Source/Target Client of Requests/Tasks
    E070CREATE     Change & Transport System: Creation Date of Request
    E070DEP     Change & Transport System: Dependencies of Requests
    E070L     CTS: Index for Assigning Numbers to Requests/Tasks
    E070M     CTS: Target Development Class/Layer for Requests
    E070N     UNIX/SAP User Connection
    E070P     Path under which a C correction is created
    E070TC     Help Table for E070 for Client-Specific Imports
    E070USE     Use of Current Requests by Users
    E071     Change & Transport System: Object Entries of Requests/Tasks
    E071C     Change & Transport System: Client-Specific Lock Flag
    E071E     Lang. Transport: Positive List for Generic Object Selection
    E071K     Change & Transport System: Key Entries of Requests/Tasks
    E071KF     Change & Transport System: Nametab Information on Key Fields
    E071KFINI     Change & Transport System: Nametab Information on Key Fields
    E071L     Language Transport: Transport Information
    E07T     Change & Transport System: Short Texts for Requests/Tasks

  • How can i change transport request description

    I need to  change transport request description for one table
    Note:
    Considering this post as Basic and Locking it for futher postings.
    Answer: Double click on the Request and using the change option, change it's Description
    Edited by: Vijay Babu Dudla on Jun 29, 2009 7:02 AM

    Hi,
       I know I am a little to late to the party! But for all those who are going to search for this in the future there is a very good blog...i am posting the link below...
    Basically run the program RDDIT076...
    http://scn.sap.com/community/abap/blog/2015/03/12/program-to-change-transport-request-description-after-release
    Regards,
    Divaker

  • Right way to fire table changes

    suppose i have a class that extends AbstractTableModel and i used a List to store data, like
    public class MyTableModel extends AbstractTableModel
    List dataList = Collections.synchronizedList(new LinkedList());
    public void insertMyData(String data)
    synchronized(dataList)
    // ... do something
    ##Line A##
    ##Line B##
    If i want to fire table changes, say like using
    this.fireTableDataChanged();
    where should i place it?
    at ##Line A## or ##Line B## ???
    or should I use
    SwingUtilities.invokeLater(new Runnable(){public void run(){
      this.fireTableDataChanged();
    Moreover, i would like to ask, if I implement my own TableCellRender and overriding the getTableCellRendererComponent method, all the calls like setText, setBackground, setForeground,...
    should i use SwingUtilities.invokeLater to do that? or just call it as usual ?
    Thanks alot

    Since you mention synchronized several times, I assume your model will be accessed from different threads
    (although you didn't write this.) Client code will have to be careful: getRowCount may return 10, but by the
    time the client gets to row 7 it may no longer exist! What does your model do when getValueAt is based
    indices that are out of bounds?
    As far as synchronization goes, I think you are going overboard with:
    List dataList = Collections.synchronizedList(new LinkedList());...since you are using synchronization blocks elsewhere. In general, I find little use for those synchronizedXXX
    factory methods -- usually the class having a collection member provides the thread safety.
    As far as the listeners go, model listeners assume their event handlers are executing in the EDT, so
    you will have to call the fire*** methods from the EDT. This means you have to use invokeLater or invokeAndWait.
    Using invokeAndWait defeats the multithreading you are building, so I think you
    should call invokeLater, and since this is an asynchronous-style call it makes no sense doing it
    from within a synchronized block. Just be aware that your JTable class may quety the model
    out of bounds.
    Also, if your model's data is written or changed seldom but read often, I would use the serial immutable
    pattern. Have the List reference dataList point to list whose state is immutable. If you want to change
    the data, you make a copy, change that and then have dataList refer to the updated copy.

  • Data in the table changes when multiple users try to submit data

    I have a dynamic table. The table is created in the wdDoModifyView. The user can load data into the table from an excel file. So I have a "Load" button that loads the data from the selected excel file to the table. I also have a "Submit" button. This "Submit" button converts the data to an xml file and make a call to an oracle stored procedure for validation check. If there's an error it will be returned and displayed to the user. If none, a summary of data for posting will be displayed to the user. If the data is correct and the user hit the ok button, the same data will be return to oracle sp for loading in the table.
    The problem we encountered is when multiple users are loading and submitting at the same time, the data displayed in the dynamic tables changes after clicking the ok button. It is as if, the table displays the data being loaded by other user.
    This is an error that is difficult to recreate. This doesn't happen all the time. I hope you somebody could enlighten me why this is happening. I'm not sure if it has something to do with multithreading or session.
    Edited by: Marlyn Agco on Apr 14, 2009 3:57 PM

    Hi Armin,
    Did you mean storing view instances in static references and accessing them outside the wdDoModifyView is not a good idea? In wdDoInit the nodes are dynamically created according to the xml file being returned by the database. This node is stored in a static variable which is also used in wdDoModifyView to create the dynamic table.
    What do you suggest? We're still encountering same issue when multiple users are uploading data.

  • Initial Balances for some of the G/L Accounts  in GLPCT table changed

    Sub : G/L Account Balance( T code FAGLB03 )  and EC-PCA: Totals Table (Table GLPCT) initial balances are not same for some of the G/L accounts ( Initial Balances for some of the G/L Accounts and profit centers in GLPCT table changed )
    Dear Friends
    We are in SAP ECC 5.0. We are using New G/L Accounting
    G/L Account  Balance(Initial Balance)( T code FAGLB03 )  and EC-PCA: Totals Table (Table GLPCT) initial balances are not same for some of the G/L accounts ( Initial Balances for some of the G/L Accounts and Profit centers in GLPCT table changed )
    G/L Account : 1110001 AR Trade - Recon
    G/L Account Initial  Balance( T code FAGLB03 )          36,789,209.26 USD
    EC-PCA: Totals initial balance  (GLPCT table)                14,178,848.14 USD
    I found in GLPCT table initial balances for G/L 1110001 and some of the profit centers are changed. The initial balances are not supposed to change for the entire financial year
    I have checked   none of  documents for this G/L and these Profit centers of last financial year  have been posted or reversed in current financial year.
    Please try to help me what has caused to changed the initial balances and how to correct it
    Please let me know if you guys need more details
    Thanks in advance
    Thanks
    MVS

    Hi Vinay,
    If I understood correctly you are trying to balance  Accumulated Depreciation accounts (from the AA module) with the Cost Depreciation Accounts.
    If they don`t balance zero, it mostly likely means, that some user has posted manually deprecian in your GL, not using the depreciation program.
    Hope this helps.
    KR
    Severina Koleva

  • Help with creating a sql file that will capture any database table changes.

    We are in the process of creating DROP/Create tables, and using exp/imp data into the tables (the data is in flat files).
    Our client is bit curious to work with. They do the alterations to their database (change the layout, change the datatype, drops tables) without our knowing. This has created a hell lot of issues with us.
    Is there a way that we can create a sql script which can capture any table changes on the database, so that when the client trys to execute imp batch file, the sql file should first check to see if any changes are made. If made, then it should stop execution and give an error message.
    Any help/suggestions would be highly appreciable.
    Thanks,

    Just to clarify...
    1. DDL commands are like CREATE, DROP, ALTER. (These are different than DML commands - INSERT, UPDATE, DELETE).
    2. The DDL trigger is created at the database level, not on each table. You only need one DDL trigger.
    3. You can choose the DDL commands for which you want the trigger to fire (probably, you'll want CREATE, DROP, ALTER, at a minimum).
    4. The DDL trigger only fires when one of these DDL commands is run.
    Whether you have 50 tables or 50,000 tables is not significant to performance in this context.
    What's signficant is how often you'll be executing the DDL commands on which the trigger is set to fire and whether the DDL commands execute in acceptable time with the trigger in place.

  • Do indices change, when data of table changes?

    Hello,
    if a table has got many indices and is changed frequently, do the indices change as well. Are all indices corresponding to that table changed. Are these indices processed in any way?
    thanks, resi

    "in indexes, the space can be reused only by rows with the same key-filed"
    That is incorrect. The space left in a index by a deleted row can be used by any key that is between the prior and next keys. For example, if you have Index entries
    Entry 1  Ball
    Entry 2  Bell
    Entry 3  BollNow, you delete Bell, the inndex would look like:
    Entry 1  Ball
    Entry 2  
    Entry 3  BollNow, add Bill, and the index would look like:
    Entry 1  Ball
    Entry 2  Bill
    Entry 3  Bollno wasted space.
    Rebuilding indexes is a waste of time and resources in the vast majority of cases.
    Search Tom Kyte's site here for rebuilding indexes or reorganizong indexes for many, often lively, discussions.
    John

  • Table changes in database are not captured in ODI model level

    Hi All,
    Can any one help me how to fix the bug in ODI.
    Table changes in database are not captured in ODI model level.
    Thanks in advance

    I created the interface which is running successfully.
    Now i did some changes in target table(data base level).
    I reversed the updated table in model section. Till here its ok
    The table which is updated in the model section is not automatically updated in the interface.
    I have to drop the existed datastore in the interface and and re do the entire process of bringing the updated datastore, mapping,etc..
    Please tell the any alternate way.
    Regards
    suresh

  • How to change transport layer in a package

    Hi,
         I would like to change transport layer wrongly assigned to the one availble in the present system without any local change request being created. Please help!!

    Hi,
             Go to attribute of program there is an option for object directory entry click on that go to change mode now change package assigned on that and save it will change package for that.
    You can also use SE03 for this purpose.
    Rewards if helpful.
    Regards
    Gagan

  • Track of table changes in a database

    how to keep track of table changes in a database.
    Some records have been deleleted, is there away of seeing that change.

    basically, if you havn't already set up a mechanism to track these sorts of changes, they are already lost.
    there are a number of things you can do. one method that we use is a trigger on the table to insert a record into an audit table for every row that gets changed or deleted.
    oracle has some other built in auditing tools that I'm not familiar with though.

  • How to trigger a workflow when data inside a table changes

    Hi
    How to trigger a workflow when data inside a table changes ??
    We need to trigger a workflow when STAT2 field value in PA0000 table changes.
    rgds
    Chemmanz

    Make use of Business Object BUS1065. In this business Object you have an attribute Status which you can use. There are a number of events that will get triggered when the status is changed.
    Thanks
    Arghadip

  • Control Table changes

    Hello All,
    Can anyione help me on this. I am not able to understand what control table changes mean. I know what Table controls are but not known to control table.
    And they are different from each other.
    Can anyone please help me on this.
    Regards
    anu

    hi,
    WELCOME  TO SDN.
    *Control Tables
    The search indexes for address data, as well as the address data itself, are client-dependent. There can now be other differentiations within a client. These are called "Index pools".
    The division reflects the fact that multiple areas of master data are involved, which differ from the business embedding in the SAP System and from the technical implementation.
    Two such index pools are currently defined in table TSADRVGRP with a technical key derived from control table TSADRV:
    For More details
    http://help.sap.com/saphelp_nw04/helpdata/en/81/23a63a8e1d1e49e10000000a11402f/content.htm
    Hope this will help you.
    Rewrd points, if found helpful
    Regards
    ANVER

Maybe you are looking for

  • PDF attachements need to be accessed by other non-SAP applications

    I recently was approached with a potential new business requirement that requires access to the documents that have been attached to contracts in our SAP RE-FX system.  Currently the users use the GOS to attach a document of some sort (letter, lease

  • Getting Error while using ebMS

    Hi , I am getting the below exception while sending a message using ebMS. Transport error: [IPT_HttpSendError] HTTP encounters send error :405 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html dir=ltr> <head> <style> a:link               

  • Error while executing COI

    Dear Friends I am getting an error while executing the COI activity. The error message is as below Change of total share in consolidation unit 102001 / 30208 does not equal 0 % Investee 102001 / 30208 : Reported investment data must have exactly two

  • Footer for a report with 2 repeating frames with down/across print directio

    I have a report with a frame for title shown in first page. the content of the report is shown on two columns in a repeating frame(R2) which enclose an other repeating frame (R1). In R2, just after R1, I have a frame for totals. Both repeating frame

  • Can Labview 7.0 control an instrument without the labview driver?

    hellow,i have an instrument which do not have the labview driver,its output signal is RS232,so can i use labview7.0 to read the signal? thanks!