How to keep all developments in one package

Hi
I have a requirement
In my company one new training server was installed for which all developments should be copied from other servers client.
For this i have to keep all developments in one package.
Can anyone suggest me how to do this
urgent plz
thanks in advance
sateesh

Hello Sateesh
In the transport organizer (<b>SE10</b>) you can create a workbench request of the following type: <b>Relocation of objects with package change</b>
That's the documentation of this request type:
Select relocation of objects with package change
    Relocations of objects with a package change are transports with which
    o   you change the original location of the objects entered and
    o   reassign the objects to an appropriate new package.
Use
    The package change means that you can automatically adjust the transport
    attributes of the objects to the new development system. This means that
    you edit the objects immediately after they have been imported into the
    target system.
I have not yet used this kind of request but with some playing around you should easily find out how it works. I am sure this is (one of the possible) solutions to your problem.
Regards
  Uwe

Similar Messages

  • Query Designer: how to keep all char. in one vertical column when running?

    In query designer, if dragging char. one by one from the left to the row section, when running the query, these row characteristics all show in different columns.  How to show them in one column?  Just give you an example, usually the query result format would like the following:
    Salesman--Sales Office-Sales Org----Quantity
    John--Office1Org1--
    50
    Mark--Office2Org2--
    100
    Kevin--Office3Org3--
    30
    Now, we would like the query result looks like the following format:
    Salesman------Quantity
    John----
    50
    Mark----
    100
    Kevin----
    30
    Salesman Total------180
    Sales Office------Quantity
    Office1----
    xx
    Office2----
    xx
    Office3----
    xx
    Sales Office Total------xx
    Sales Org-------Quantity
    Org1----
    xx
    Org2----
    xx
    Org3----
    xx
    Sales Org Total------xx
    How to generate the above query?
    Thanks and we will give you reward points!

    Hi,
    What you want to do is 3 different views of the same report
    If you publish the information in Excel (workbook) you have to call 3 times the query in three different sheets, and manually do a summary....
    If you publish in the web, then you can have 3 times the same query but with different views on the same page. you can then control the three tables with the same navigation block...
    But your request is not the way Bex works...
    PYG

  • How to delete all objects in a package?

    Hello,
    I've seen a similar question here. But is there a tool or a smart way to delete all objects in a dev class or a transport request?
    Best Regards
    Volker

    These are really 3 questions??
    1. To delete objects in a request there are a number of ways, here is one:
    Position cursor on modifiable request.
    Double click on request and choose 'Objects' tab
    Choose object line you want to delete and click 'Delete'
    Save your changes.
    2. To delete objects in a Dev Class:
    Go to work bench --> edit object, Class and give your class name, you will see delete option at the bottom of the screen.
    3. How to delete all objects in a package:
    here is a link with the steps you need for this: http://benxbrain.com/en/index.do?onInputProcessing(brai_object_thread)&001_threadid=0000161442&sysid=WP5&pgmid=R3TR&object=DOMA&obj_name=DEVCLASS&child_param=

  • How to print all columns in one page

    Hi,
    Can anybody explain me how to print all columns in one page.we have around 15 to 20 columns for 4 reports and all these reports are build on one multiprovider.we are using BW 3.5.
    Can anyone explain me  how to print ALL COLUMNS IN ONE PAGE  .currently they are getting all columns in 2 to 3 pages. They are using PORTAL to run the reports here.
    Is it possible to do by customizing Webtemplate or by macros in Workbook.Please help me
    Edited by: kotha123 on Oct 11, 2010 5:58 PM

    Hi,
    Your best bet is to use a workbook template or else Excel to pdf option...Thanks

  • Can I access my husband's iTunes acct. from my iPad?  I have his permission & pass code.  We want to keep all music in one place & family accessible.

    Can I access my husband's iTunes acct. from my iPad?  i have his permission & pass code.  We want to keep all music in one place & family accessible.

    If you log into his account and download some of his past purchases on your iPad then you risk tying your iPad to his account for 90 days : iTunes Store: Associating a device or computer to your Apple ID
    But it looks like that might change when iOS 8 is released in the Autumn (no date has been announced yet) : http://www.apple.com/ios/ios8/family-sharing/
    If you have his content in your computer's iTunes library then you could sync it from there instead of risking the 90 days association on your iPad. If you don't then you could copy it from his computer and then sync it to your iPad e.g. copy his music to a flash drive and then add it to your library via File > Add To Library

  • How to divide all textFrames in one-character-per-textFrame?

    Hello:
    How to divide all textFrames in one-character-per-textFrame?
    Example: the textFrame "Letters" will be divided in 7 textFrames: "L", "e", "t", "t", "e", "r", "s".
    Help, please.

    Hi Paul, try this one
    #target Illustrator
    //  script.name = splitSelectedFramesIntoWords2.0.jsx;
    //  script.description = splits selected texFrames into separate words;
    //  script.required = select point text textFrames before running;
    //  script.parent = CarlosCanto;  // 10/14/11
    //  script.elegant = false;
    var idoc = app.activeDocument;
    var sel = idoc.selection; // get selection
    var selCount = sel.length; // count items
    var tFrames = []; // to hold the textFrames
    for (j=selCount ; j>0 ; j--) // loop thru selection & get textFrames backwards
                        tFrames[j-1] = sel[j-1];
    for (k = 0 ; k<tFrames.length ; k++) // loop thru textFrames
                        var xpos = tFrames[k].position[0]; // get x
                        var ypos = tFrames[k].position[1]; // get y
                        var words = tFrames[k].contents.split(/\s/g); // get all words into an array
                        //$.writeln(words);
                        var space = tFrames[k].duplicate(); // dup to get width of a space
                        space.contents = " ";
                        var sw = space.width;
                        space.contents = words[0]; // replace space with first word
                        var w = space.width;
                        var wordCount = words.length; // count words
                        for (i=1; i<wordCount ; i++) // loop thru words
                                            xpos2 = xpos+w+sw; // next words position = previous word pos+width+space
                                            var iword = space.duplicate(); // duplicate previous word
                                            iword.contents = words[i]; // add next word
                                            iword.position = [xpos2,ypos]; // position the character = original position + new width
                                            w = iword.width; // get words width
                                            xpos = iword.position[0]; // get words position
                        tFrames[k].remove(); // remove textFrame

  • How to delete all mails with one klick?

    It's annoying to delete every single mail.
    How to delete all mails with one klick, like in the paperbasket?
    Thanks

    If the emails have been previously deleted (I.e. in the trash folder), tap Edit at the top of the list. You should see a delete all button at the bottom. If the messages are in a standard folder, they need to be handled one at a time.

  • How to transfer all materials from one plant to other plants?

    How to transfer all materials from one plant to other plants?

    Hi
    To transfer stock in one step  between plants belonging to same company code use movement type "301" and using transaction code "MIGO". IF you like in two step it helps to monitor stock in transit use movement type "303" and "305".
    303 Transfer posting plant to plant in two steps - removal from storage
    305 Transfer posting plant to plant in two steps - placement in storage
    to transfer stock between plants of diffrent company code go for stock transpor order using tcode "me21n"
    hope it helps

  • Does anyone know how to keep all songs in the same album when they say featuring someone?

    Each time I load a CD onto Itunes that has an artist who features another artist on that particular song, it puts it in my library as a separate CD even though it will have the same album listed.  For instance Lady Gaga's song just dance features Colby O'Donnis that song is in its own spot while the rest of the cd is together that one song is separate and I don't know how to keep them all together.  Someone help.

    Get the Informations for that song and have a look in the "Sorting" area if there is something different. The data inserted there is just for how iTunes will order the songs.
    If the Interpret in the general informations is "Lady Gaga" and in the sorting area is "Lady Gaga feat. xxxx" than you'll see Lady Gaga as the interpret but it's sort to a second entry "Lady Gaga feat. xxxx".

  • How to delete all objects for one user from SE80

    Hi all,
    If i want to delete the customer objects defined in the customer space Y or Z from SE80. Object of one user is defined in one package, if i want to delete the pakcage it says, it contain the subobject. So can anybody help me how to delete the customer objects from SE80.
    Your response will be highly rewared.
    Tahnks,
    Salahuddin.

    hi
    good
    i think here you want to delege the development class, if you want to delete the particular development class you have to go for se09 where after selecting the particular development class you can select the delete button.
    thanks
    mrutyun

  • How to keep all files in differents browsers

    I use differents browsers how to keep the bookmarks organised in all of them ?
    Is better url manager or Bookit ?
    Thanks

    What del.icio.us would do is make all bookmarks you create there available to any browser on any computer you happen to be using. It will not give you the same set of bookmarks in each of your browsers. I mentioned it because it has become a popular way of keeping bookmarks which is not dependant on any one browser and is available even when you are not on your own computer.
    The bookmark/url managers would be the better way to go to actually manage the bookmarks in your various managers. With them being shareware, you can try them out to see it they fit your needs before you would have to pay for them. The two I mentioned both got high user ratings on VersionTracker. You might be able to find other url managers there as well. It has been a while since I tried any url managers myself, so I cannot give a personal recommendation on any of these programs.

  • Multiple devices on same account - how to transfer ALL files in one place?

    Hi,
    I am using my Apple ID on 5 apple devices, incl. 2 laptops and Mac. Need to migrate all files to one computer for syncing with iPhone and cut out some devices, but...
    Question 1:  How I can move ALL my music files from old MB Pro (runs Mac OS X 10.5.8) with iTunes 10 to Mac (runs Mac OS X 10.9.2) with iTunes 11.1.5?
    Note, this includes songs purchased outside of iTunes and burnt from CDs. Is it possible to somehow easily identify the songs that are missing on Mac and copy just them from the old computer, but without manually comparing? For now for whatever reason Mac only has 401 songs vs my old MB Pro has 1670+ songs. So, please suggest how to make the import on the missing songs to Mac as efficient as possible.
    Question 2: How do I deauthorize the device once I copy my old music to Mac? Currently only see the button "Deathorize All" in iTunes on Mac. What if I want to choose which computers I still want to be able to stay on the same Apple ID in iTunes?
    Thanks a lot!!

    Decide which Mac is your primary. On the Mac that is not the primary - create a folder on the desktop - drag all the tunes from iTunes into that folder - copy that folder to an ext HD or a memory stick.
    Plug into the primary Mac and tell iTunes to import all the tunes from the folder.
    iTunes has good sort options so it won't take long to get rid of the duplicates using the Show Duplicates from the View dropdown menu.
    An alternative would be to check at http://dougscripts.com/itunes/ and see if there is a script that will take care of what you want.
    MJ

  • How to delete all HU in one storage type

    Dear experts I did use the /SCWM/ISU for uploading of the stock but now I need to change something in the structure of the storage bins.
    I cannot change anything, because the bins are having HU already. Could someone give me a tipp how I can delete all HUs from one specific storage type?
    Thanks in advance
    BR
    Denis

    Hi Denis,
    If the HUs are empty then the above solutions as Pet and Ifran mentioned should work for you.  Else, if you have stock in the HUs then you need to scrap the stock, you can do this using /n/scwm/adgi look up the HUs then scrap them.  This will empty the bins.
    Thanks,
    Faical

  • How to get all songs on one album artwork

    I have 1 album that is listed twice on the albums list. I have 2 songs on one and one song on the other. I cannot get them all on just one. I have checked all the info on the info tab and everything is the same. I have copied all the songs in one file on my desktop and deleted everything from itunes and my music folder and when I add it back to that artist it adds two. The only thing that is different is one song was downloaded on itunes and the other 2 were from a CD.
    selected all the songs and when to get info and retyped the name of the artist and the artist album and fixed it like blood sugar sex magik.

    how about the less painful click the first song then shift-click the last song?

  • How to keep all text and formats the same on multiple computers?

    I'm creating a file in InDesign CS6 on my Windows computer. I keep everything on my flash drive. When I go to school, I bring my flash drive with me and open it up on the Mac computer, but then there are are compatibility issues. There seems to be missing fonts and formats but the school uses the same version of InDesign I do. Now I was told a lot of things of how to keep the fonts and formats the same (embed the links, package the files, outline the text, save as IDML). However, it is not clear to me what each of those options do, so I don't know when or why to use them. So I just want to make sure that when I bring in my file in next Monday, I won't have any missing fonts or formats. What would you suggest is the proper things to do to keep everything the same on multiple computers? And could you please explain why?

    If you want cross-paltform comaptibility limit the fonts to OpenType or Windows TrueType formats, both of which work on both Mac and PC. To avoid missing font warnings the fonts must either be installed on each computer, or they must be in a folder named Document Fonts in the same location as the .indd file they are to work with. Packaging the file will build taht folder for you.
    the rest of the stuff in your list won't help you. .idml would allow you to open on an older version, but does nothing for your situation. Embedding the links will keep you from having missing links, but so will packaging, and embedded links will make the file much larger and harder to work with.
    For goodness sake, don't even think about outlining the text. It stops being text when you do that and you can no longer edit it.
    And finally. do yourself a big favor and don't attempt to actually work on your file directly from the flash drive. Copy the whole package folder to the hard drive, work on it, then copy back. You don't want to know how many files are fatally damaged by write errors on flash drives.

Maybe you are looking for

  • Quality issues for public service commercial

    I work for a college at a University and I have a commercial script that we want to produce into a public service commercial. I am worried about quality. Currently I work with a Canon GL2 mini-DV Can anyone tell me how far away I am from commercial-l

  • No Send buttons when replying to messages.

    Hey Mac Users, When I try to reply to an email and click on "reply" the window that comes up has the adress lines, subject and body, but no buttons across the top for Send, Chat, Attach, Address, etc. To actually Send, I have to close, Save as Draft,

  • Validating the dd-mm and Year data in webui???

    Hi All, I added two new fields in webui, one is a year field ( i took it as Numeric 4, as the user should enter only years as input here ), the second one is of type char5 ( as the user should enter  dd-moth here ). So i need to validate these inputs

  • Web pages not loading in any browser (Chrome, ff, safari); error

    Hi Folks, I'm unable to load pages in any browser, strangely I can load facebook, twitter and google. I recieve an error err_empty_response. The problem is local to my laptop as I've been in phone contact with my isp, pinged a non-loading website via

  • POD relevance issue

    Hi All, We have faced a issue that PODREL field in LIPS table is A(Relevant for POD) for 2line item out of 5 line item but delivery is not relevant for POD relevance. We are not able to open this delivery through t.code VLPODA as system is giving err