Package for transporting the changes of a system generated struture

Hello ABAP gurus,
Quick question. I want to change a standard system generated structure. While creating the transport, the system is not accepting the Package we generally use for regular transports. So, what type and how should a package needs be created for accepting these changes into a transport.
Thanks
Tanya

Well first things first
you should not change an SAP structure like that, even if it is somehow letting you go in the change mode, unless such an excercise is reccomended to you by SAP itself (like an OSS or something, in that case they would give you a package and you will have to register the object even if you are using snote since its a ddic object).
It will be helpfull if you can tell us what is your actual requirement, why do you wnat to change a std struct? it might induce severe inconsistencies throughout your system and in some cases voids the support warranty.

Similar Messages

  • Custome Defined Pacakge for transporting the BW Objects

    hai
    Im going to transport the BW-Objects from the development server to QA server.
    I need to 'Custome Defined Package(ZBW)' for this one . So how can i create the Custome Package for transportating the BW objects.
    pls tell me , i will assign the points
    kumar

    Transaction SE80
    Select development class and create.
    Jaya

  • Create a package for transport

    hi
    I work on a new project, and I wonder how I can create a package for transport  InfoObjects?
    best regard
    francoise

    Hello Francoise,
    When transporting for the first time a complete scenario is transported using the BW objects collector.
    After objects were transported for the first time they are assigned to a package and are recorded on requests automatically.
    Further changes are automatically transported into the target systems.
    You can find help on the BW objects collector here;
    http://help.sap.com/saphelp_nw2004s/helpdata/en/0b/5ee7377a98c17fe10000009b38f842/content.htm
    Best Regards,
    Vincent

  • Steps for transporting the created request

    hi,
    sap gurus,
    kindly explain the configuration steps for
    how we will transport a created request
    from one server to another
    regards,
    balaji.t
    09990019711.

    Transport Request is generated in following scenarios:
    1. Customizing Request - When doing or changing some customization.
    2. WorkBench Request - When configuration is cross-client. Eg Generating new Table, making changes in access sequence, Abap development, etc.
    Transport Request is released through SE10, to be transported to Quality & production server.
    Configuration of Transport Request System is configured by Basis consultant. Basis Consultant is also responsible for transporting the Transport request from Development server to Quality & Production.
    Transport request is not generated for Master Data. For eg: Customer Master, Material Master, price master, etc.
    Benefit of Transport Request:
    SAP Landscape normally has 3- Tier system:
    Development Server - Where customization takes place. Transport request is generated at this level & then first transported to Quality server for testing whether it meets the requirement or not. Once the requirement is met in Quality server then Request is transported from Development Server to Production Server (Actual / Live System)
    Quality Server - Mainly useful for testing.
    Production Server Actual / Live server, where the real transactions are created & posted.
    Regards,
    Rajesh Banka
    Reward Points if Helpful.

  • I have updated iOS 6 in my iPhone 4S and it went perfectly fine. Just after that when I opened the message app I found that the sms body of system generated messages was not visible after tapping on them.

    I have updated iOS 6 in my iPhone 4S and it went perfectly fine. Just after that when I opened the message app I found that the sms body of system generated messages was not visible after tapping on them.

    The terms of service of the Apple Support Communities prevent us from helping anyone with a jailbroken phone.
    You're on your own.  Good luck.

  • Business Package for Transport Management System & Travel Mangement System

    Hi,
    Is there any <b>Business package</b> available for <b>"Transport Management System" and "Travel Mangement System"</b>?
    Please provide some link, if it is available.
    Thanks in advance.
    Manish

    Hi Manish,
       travel management is part of the ESS business package.  As far as transport management, if you are talking about TMS capabilities for moving object in the landscape, go to https://www.sdn.sap.com/irj/sdn/developerareas/contentportfolio and search for "transport"  You will find a thirdparty package for this.
    Good luck.
    John

  • Error in transporting the Transformation to Quality system

    Hi All,
    I am trying to transport the transformation which has field level routine as well as start and end routine.
    I have basically ehanced the standard routine and it works perfectly fine in dev server . I have even loaded the data and generated reports on this cube.
    Now i am trying to transport it to Quality system. It throws up some "syntax error in routine" error. Very strange.
    All my routine in Dev is working but during transport ther is some issue.
    i saw some post on same but they are suggesting to regenerate a new transformation. For me this will be a nightmare as there are so many routnies at field level and as end routine.
    Kindly suggest how can i rectify this error.
    Note:- I had generated this transformation via old update rules with Migration function.
    Thanks & Regards,
    Anup

    Hi Anindya,
    Below is my source code for one field level routine in transformation.
    FORM routine_0080
      TABLES
       p_monitor         STRUCTURE rsmonitor
      USING
        COMM_STRUCTURE TYPE _ty_s_sc_1__rule_52
      CHANGING
        RESULT         TYPE _ty_s_tg_1_full-srvclen
        RETURNCODE     LIKE sy-subrc
        ABORT          LIKE sy-subrc
      RAISING
        cx_sy_arithmetic_error
        cx_sy_conversion_error.
    * init variables
    * fill the internal table "MONITOR", to make monitor entries
      DATA: ultimo LIKE sy-datum.
      IF g_record_no <> RECORD_NO.
        g_record_no = RECORD_NO.
        CLEAR: employee_wa, person_wa.
        CLEAR: employee_md, person_md.
      ENDIF.
      PERFORM read_md_employee
              USING    COMM_STRUCTURE-employee
                       COMM_STRUCTURE-calday
                       RECORD_NO
                       RECORD_ALL
                       SOURCE_SYSTEM
              CHANGING employee_wa
                       RETURNCODE.
      employee_md = employee_wa.
      PERFORM calculate_ultimo
              USING COMM_STRUCTURE-calday+0(6)
                     RECORD_NO
                     RECORD_ALL
                     SOURCE_SYSTEM
              CHANGING ultimo
                       RETURNCODE.
      IF NOT employee_md-entrydate IS INITIAL.
        RESULT = ultimo+0(4) - employee_md-entrydate+0(4).
        IF ultimo+4(4) LT employee_md-entrydate+4(4).
          RESULT = RESULT - 1.
        ENDIF.
      ENDIF.
    * result value of the routine
    * if the returncode is not equal zero, the result will not be updated
      RETURNCODE = 0.
    * if abort is not equal zero, the update process will be canceled
      ABORT = 0.
      p_monitor[] = MONITOR[].
      CLEAR:
        MONITOR[].
    CLASS lcl_transform IMPLEMENTATION.
      METHOD compute_0AGE_RANGE.
    *   IMPORTING
    *     request     type rsrequest
    *     datapackid  type rsdatapid
    *     SOURCE_FIELDS-CALDAY TYPE /BI0/OICALDAY
    *     SOURCE_FIELDS-EMPLOYEE TYPE /BI0/OIEMPLOYEE
    *    EXPORTING
    *      RESULT type _ty_s_TG_1-AGE_RANGE
        DATA:
          MONITOR_REC    TYPE rsmonitor.
    *$*$ begin of routine - insert your code only below this line        *-*
      Data:
        COMM_STRUCTURE   type _ty_s_SC_1__RULE_20,
        l_subrc          type sy-tabix,
        l_abort          type sy-tabix,
        ls_monitor       TYPE rsmonitor,
        ls_monitor_recno TYPE rsmonitors.
      data:
        l_monitor        type standard table of rsmonitor.
      REFRESH:
        MONITOR.
    * Runtime attributs
        SOURCE_SYSTEM  = p_r_request->get_logsys( ).
        MOVE-CORRESPONDING SOURCE_FIELDS to COMM_STRUCTURE.
    *  Migrated update rule call
      Perform routine_0070
      TABLES
        l_monitor
      USING
        COMM_STRUCTURE
      CHANGING
        RESULT
        l_subrc
        l_abort.
    *-- Convert Messages in Transformation format
        LOOP AT l_monitor INTO ls_monitor.
          move-CORRESPONDING ls_monitor to MONITOR_REC.
          append monitor_rec to MONITOR.
        ENDLOOP.
        IF l_subrc <> 0.
          RAISE EXCEPTION TYPE CX_RSROUT_SKIP_RECORD.
        ENDIF.
        IF l_abort <> 0.
          RAISE EXCEPTION TYPE CX_RSROUT_ABORT.
        ENDIF.
    I am not able to change the code which are marked with " * ". Where can i change the code here?
    Regards,
    Anup

  • Find exact package for saving the workbech request for std SAP object

    Hello friends I have edited a std SAP prog for printing the import PO(got access key from market place).After editing while creating transport request I am not able to find the package to which it should be saved.now the problem is that How to move that program to our quality server.
    the program is
    /1BCDWB/LSF00000063TOP

    Hi achal,
    are you sure you modified a standard SAP object. /1BCDWB/ prefix is common with all quick view reports - they are local and user-specific. You can convert a quickview to query to report. Using a modification key you may add it to the standard - choose a package as you prefer. But better copy the generated query report to customer name space - because it never was and never will be SAP standard. If it is in customer name space, release changes are no problem at all.
    Regards,
    Clemens

  • How to transport the changes of lsmw "Read display Program" changes to prod

    Hi,
    i have made some changes in the SAP generated program /1CADMC/SAP_LSMW_READ_<>.
    i.e., in step : Read display program
    the issue is that i made changes...but the changes are stored in $tmp.
    now how to move these changes to Production.
    when i assign to any package it is showing an error saying
    "/1CADMC/SAP_LSMW_READ_<>cannot be assign to package.move to package starting with "/1CADMC/".
    Thanks.
    Kumar.

    HI,
    LSMW cannot be transported from one client to another.
    You will have to do IMPORT EXPORT.
    Run transaction LSMW:-
    Give the Project, Subproject and Object.
    From Menu go to Extras->Export Project.
    Specify the project name
    By default everything in the project will be selected.
    If you want to transfer only a single subobject of the whole project then first deselect everything.
    Deselection can be done by clicking on the description besides then project name.
    After that just select the individual object.
    Then press the export button.
    It will prompt you to save the lsmw in your local machine.
    Save it.
    Similarly Import it to the production system.
    Please note that your changes in the read program will not be copied via import export.
    You will again have to make it in the production system.
    Changing the read program is not advisable as the changes will be lost if someone once again regenerates the progrsm.
    Regards,
    Ankur Parab

  • How to move the changes from one system to other without using CMS

    Hi
    In our project they are migrating NWDI 6.40 to NWDI 7.0.
    During migration CMS won't be available.
    Could you plesae tell what are the different options are there to move the WebDynpro changes from (NWDS) Development to Quality system and then production system without using CMS server?
    If i will create a development package and import this packgae in Quality package will my new changes also be available in Quality server?
    Thanks & Regards
    Susmita

    Hi Susmita
    I wasn't completely sure, but from your description of your problem, it seemed like you would have access to your DTR during your upgrade. The following solution assumes as much. If this is not the case, you'll need to do things slightly differently, but the solution will still be possible.
    Depending on the scope and size of your changes, it may be practical for your developers to deploy directly from their NetWeaver Developer Studio (or for a designated administrator to install the NWDS and do the same). To do so, from the Development Configurations perspective, create a new NWDS project for each of the DCs you want to deploy. Then right-click the project and choose from one of the deployment options. (Deploy new archive and run will allow you to see if your deployment has taken effect.) When deploying, the target server is the one set up as your J2EE engine in the NWDS properties - you'll consequently have to modify this when the target server for your deployment changes (from QA to production, or vice versa).
    Note that this is only applicable in certain situations, and only as a short term stopgap measure. This sort of practice - developers or administrators deploying haphazardly to servers other than those intended for development - is precisely what the NWDI is designed to prevent (and is one of very few things it's fairly good at doing). For instance, if your QA and production systems are attached as TEST and PROD runtimes systems respectively in your NWDI, a full assembly and subsequent full deployment would usually occur to these servers when deploying with the NWDI. This is a much stronger guarantee of consistency than the build that will be performed within your local NWDS to deploy your changes. (Conversely, the rigidity of the assembly is perhaps the NWDI's greatest design flaw.)
    (Also, Snehal: thanks for the information on the sapmake_util blog. It's not something I've encountered before and looks very useful.)
    James

  • Steps for making the changes in DC and checking into NWDI

    Hi Experts,
    I  am new to the NWDI
    I have some questions related to the NWDI and NWDI integration manggement.
    We have some set of SC's got from some team. Now we need to upload to our NWDI .For that  I have done the following steps.
    I have created some track in the CMS.
    I have loded that SC in to the track.
    I have imported that track in to the NWDS.
    The track which imported contains the SC , this SC contains some DC's .
    for getting the project in to the local mechine.
    In the DC prospective -> Inactive DCs -> done the  right click on the respective DC's and choosen as Create project option. Then i am able to see the DC project in the webdynpro prospective.
    Now the project in the local mechine see the code and i need to rebuild and deploy .
    What  are steps need to be done. Please provide the step by step information for doing this
    Thanks& Regards
    vijay

    Hi Vijay,
    Follow this:
    1.Import a development configuration.
    The first step for you as a developer is to import an appropriate development configuration. The development configuration is your connection to the NWDI. By importing a development configuration, you get access to all resources relevant for your work without having to search for the right sources, libraries and servers.
    2.Select the components you want to develop.
    In the Development Configurations perspective, you can create projects for existing components to add them to your development list, The development environment automatically loads the required source files and archives into your local file system and tries to build the selected components locally
    3. Create new components.
    You can use the Development Configurations perspective also to create new components .Create the new component directly in the DTR. The development environment may propose a change list ("activity") or prompt you to create a new activity to be used to record the creation of the component.
    4.Synchronize the source files and libraries.
    From time to time, you should resynchronize your local sources and libraries with the NWDI to receive the most up-to-date changes of other developers.
    5.Change the component sources.
    Before you can change a source file, you must make the intended change known to the DTR (to check out the file) and agree on an activity to record the change. You can create a new activity or use an existing one.
    6.Edit components.
    Depending on the type of the component you develop, you can perform components development using the Java, J2EE, WebDynpro, Dictionary or any other suitable perspective.
    7. Release the changes for the central build.
    After checking the changes in, you can pass them to the Component Build Service (CBS), that is, you perform the activation process.
    8.Release the changes in the development landscape.
    After a successful activation, pass your changes to the Change Management Service (CMS) of the NWDI, which transports your changes within the development landscape, for example, between a development system and a consolidation system.
    Thanks
    Krishna

  • Problem in Transporting the changes in Payslip  after inclusion of new WT

    Dear Experts,
    Here we have added the new wagetypes in Payslip Through Transction code  PE51  in Dev Client.And the changes were saved in a Transport request.After movement to Quality the respective changes are not shown up.Then we checked the  Transport request and is showing only the respective Payslip and is not showing any config part in the TP Request.
    Could you please tell me the way of inclusion of Changes in the Transport Reqest.
    Please advice.
    Regards,
    Vikram.

    Dear Sikindar,
    Thanks for the reply.Already we have added the wagetypes in the Payslip of DEV Server.
    What should i do now.Shall i delete the WT  in the Form from DEV and save them ina new request  and adding  of the same Wt in the same new  Transport request .
    After modifications ..What should i do now(After clicking the Red Van Button)
    Please addvice.
    V Sai

  • How to transport the connection in production system

    hi
    I have a doubt releaated to connection between SAP BI and Xcelsius.
    We have a development server on which i have created universe and then on it Qaaws and finally Xcelsius dashboard.
    My doubt is in future they will transport the SAP BI system from Development system to Production system.
    In this case  Universe ,Qaaws,Xcelsius will work?
    will i have to develop this again in production system, or any how it will work with production system?
    How excetly development work here when we have connection between SAP BI and Xcelsius in different system from development to quality and then in Production?
    Thanks,
    Piyush

    Hi
    assuming that the objects (keyfigures, characteristics, multiprovider) of the underlying query are available in your production system you do not have to create your universe again, rather change the connection data to your SAP server (like SYSID, client number etc) in the universe connection.
    Additionally if you are working ith BO XI 3.1 I would suggest to take a look to the LifeCycleManager, a tool which can simplify the transport process from your development to your production environment.
    Regards,
    Stratos

  • Exit or Badi for controlling the change of user status in notification

    Hi,
    I want to check the current user status of notification while saving the notificaton. If the current user status satisifies particular situation, then the notification should be save else not.
    Is there any user exit or Badi which can be used to control the change of user status in notification.
    Thanks
    SUMIT

    Hi Pushpa,
    Thanks for the reply.
    the problem over here is that the BADi IQS0_STATUS_MAINTAIN only allows to disable the user status.
    the other function module STATUS_READ only fetches the data from JEST.
    whereas my problem is that i want to check on the changed status on the screen(which is not saved also).
    Appreciate your reply on the same.
    Thanks
    SUMIT

  • FM for tracking the changes in materail master

    Hi Experts,
    I want to track the changes done to a material ( like if there are changes to materail description and materail group etc., ) for a given date. Is there any FM which can take the maerail number as input and give out these details. I know MM02 but I need to have an explicit FM to get these details.
    thanks
    sankar

    Hi dieter,
    Thanks for ur reply.
    If I want to check for the chage of a particular field.. for exmaple material description or material group. In CDPOS it is giving the table names only. How do i know which field is exactly changed.
    thanks
    sankar

Maybe you are looking for

  • New MacBook: No Apple Remote Included?

    Looking at the "What's In The Box" contents for the new MacBooks (Penryn), the Apple Remote is no longer included in the contents. Further, the $19 Apple Remote now shows up as an option in the Configure To Order listing. Hopefully, this is a mistake

  • ST06: Load Average

    Hi I've been consulting two different Basis Consultants with this question and got two different answers, so I will just try this forum to figure out which one is right: I have a WEB AS server with 12 CPUs (running Business Warehouse) where the load

  • Good WMM Examples

    Does anyone have a link to any good examples of how WMM works?  I know the process is for the device to look for a clear signal, reduce down the random time and then send frame, but I'm having a hard time visualizing the exact process.  Let me give a

  • Can I use the Mini as an NTP (Time) Server?

    Hello! I was wondering if I can use the Mac Mini as a NTP (Time) Server?  If it does, what would I need to do? Thank you in advance, Brian

  • Installing CuciMOC with a Batch File

    I'm trying to get this thing to install with a batch file and Altiris.  What switches did you guys use on the msi?  What switches did you use on the exe?  Which would you use the msi or the exe? Why? Thanks in advance!  I'm a batch file n00b.