How to include a large amount of objects in a package interface

Hi guys,
I would like to include a large amount of objects (programs, classes, etc.) in a package interface in the package builder (SE21).
I would like to avoid inserting them one by one. Is anyone have a solution? It is not possible to use such characters has " * ". There is no documentation or help provided for this issue.
Thank you in advance for your answers.
Best regards,
Sylvain

Hello,
I do not wish to change the package assignment of all my objects.
I created a new package in which I created an interface to include various objects from others packages (standard and customer specific). I want to make these objects visible into my new package.
Since I have a high quantity of objects to include in my interface, I would have like to know if there was a simple way to do this task rather than entering the name one by one in SE21.
I hope the context is clearer now.
Best regards,
Sylvain

Similar Messages

  • How do i delete large amount of emails with the iPad mini

    how do i delete large amounts of emails using the ipad mini

    To delete multiple emails touch Edit, select all the emails and then touch Trash.
    There is no way to delete all emails from the Inbox. One can delete all emails from Trash.

  • How do I delete large amounts of photos from my ipad?

    a

    Are you using iPhoto on your iPad? Then deleting photos will depend on the album they are in and how they have been added to the iPad.
    See this document for IOS 6 and earlier:   iPhoto for iOS (iPad): Delete photos from iPhoto
    If you also have a Mac, you can delete quickly large amounts of photos from your camera roll by connecting your iPad to your computer using USB and importing the photos into Image Capture, iPhoto, or Aperture. Then set the option to delete the photos after importing.
    Photos you synced to your iPad can only be deleted by syncing again.
    If you are using IOS 7 you can delete larger amounts of photos from your Camera Roll in the "Moments" view:
    n the Photos.app you can select all photos in a "Moment" at once, by pressing "Select" to the right of the "Moment" name. Then press the Trash icon.
    For example:
    Regrads
    Léonie

  • How can I copy large amount of data between two HD ?

    Hello !
    Which command could I user to copy large amount of data between two hard disk drives ?
    How Lion identify the disk drives when you want to write some script, for example in Windows I sue
    Robocopy D:\folder source\Files E:\folder destination
    I just want to copy files and if the files/folders exist in destination the files should be overwritted.
    Help please, I bougth my first MAC 4 days ago.
    Thanks !

    Select the files/folders on one HD and drag & drop onto the other HD. The copied ones will overwrite anything with the same names.
    Since you're a newcomer to the Mac, see these:
    Switching from Windows to Mac OS X,
    Basic Tutorials on using a Mac,
    Mac 101: Mac Essentials,
    Mac OS X keyboard shortcuts,
    Anatomy of a Mac,
    MacTips,
    Switching to Mac Superguide, and
    Switching to the Mac: The Missing Manual,
    Snow Leopard Edition.&
    Additionally, *Texas Mac Man* recommends:
    Quick Assist,
    Welcome to the Switch To A Mac Guides,
    Take Control E-books, and
    A guide for switching to a Mac.

  • How can I edit large amount of data using Acrobat X Pro

    Hello all,
    I need to edit a catalog that contains large amount of data - mainly the product price. Currently I can only export the document into excel file and then paste the new price onto the catalog using Acrobat X Pro one by one, which is extremely time-consuming. I am sure there's a better way to make this faster while keeping the accuracy of the data. Thanks a lot in advance if any one's able to help! 

    Hi Chauhan,
    Yes I am able to edit text/image via tool box, but the thing is the catalog contains more than 20,000 price data and all I can do is deleteing the orginal price info from catalog and replace it with the revised data from excel. Repeating this process over 20,000 times would be a waste of time and manpower... Not sure if I make my situation clear enough? Pls just ask away, I really hope to sort it out, Thanks! 

  • How to delete a large amount of duplicates in itunes quickly?

    I recently had a new hardrive installed, and during the multiple pc backups all my music was doubled, tripled, and quadroupled.  Itunes doesnt have a system to delete a large amount of duplicates.  I cannot sort them by 'date added' and use that method because they were all added at the same time.  Is there a quicker and easier way of doing it rather than deleting all but one of the songs in each set?  Because that would take a month to delete 6000 songs by hand....HELP!

    The show duplicates/show exact duplicates features have been left out of iTunes 11. Rumor suggests they will be restored in the next build. In the meantime I have written two Windows scripts to make playlists of Duplicates and Exact Duplicates, either from a selection of tracks or the entire library. Note that, as with the iTunes feature, this list makes no distinction between "originals" and "dupes", you have to decide which is which.
    There is also my DeDuper script for automatically removing duplicate copies but keeping one remaining copy of each set. This can preserve ratings, play counts, playlist membership, etc. which are lost in a manual clean up. Please take note of the warning to backup your library before deduping. See this thread for background on deduping and the script.
    If you want to manually remove duplicate tracks use shift-delete to remove selected tracks from the library as well as the playlist. Keep one of each repeated group of files and don't send the others to the recycle bin unless you are sure that there are multiple files on the disc as opposed to multiple entries to the same file. Same advice to backup applies.
    tt2

  • How to load a large amount of HTML into HTML region?

    I am trying to display a clickable image map (HTML <map>) in a region. The HTML source for the image map is fairly large and will not fit in the Apex editor (HTTP 400 error when I Apply Changes). I would also rather not manage that much HTML in the Apex web editor. So I stored the code in a file and added it to my applications file storage.
    I have tried various methods of getting the HTML to load when the page is rendered. I tried a URL region, but that leads to all kinds of ACL/security issues that we do not want the customner to have to deal with. i also tried some PL/SQL:
    DECLARE
    l_file_id NUMBER;
    BEGIN
    SELECT id
    INTO l_file_id
    FROM APEX_APPLICATION_FILES
    WHERE filename = 'myhtml';
    APEX_UTIL.GET_FILE(
    p_file_id => l_file_id,
    p_inline => 'YES');
    END;
    But that just replaces the entire page, not just the region it's defined in (even when the HTML is without <head> etc).
    Various attampes wih #APP_IMAGES#myhtml and &APP_IMAGES.myhtml just give me the translation of the APP_IMAGES variable.
    So, how do I load a large chunk of HTML into a region dynamically at run time? I also need this to interact with APEX in the sense that JavaScript will set APEX variables and cause a SUBMIT when the use clicks on the image map.

    Hi Andy,
    ATD wrote:
    Does your HTML define the regions/points on the map using AREA tags?Yes. it is actually generated using MapSefrver from huge tables of SDO_GEOMETRY (Oracle Spatial).
    If so, you could define a report template that does this and use this for a report based on a table that has the settings for shape, coords, href etcHmm, the code (HTML map) is auto-generated so if I understand you correctly, this might be difficult. One of the HTML is approximately 180KB of text.
    I found a way to do this using dynamic PL/SQL. I created a new table that has a varchar filename and a CLOB for the file data. I then imported the HTML into the table using SQL Developer (copy&paste, nice!). I then created an HTML region and used the following:
    declare
    html clob;
    len number;
    st number;
    c number;
    begin
    select length(data)
    into len
    from FILES
    where name = 'state_query.html';
    st := 1;
    while len > 0
    loop
    if len > 32000 then
    c := 32000;
    else
    c := len;
    end if;
    select substr( data,st,c )
    into html
    from FILES
    where name = 'state_query.html';
    htp.p( html );
    st := st + c;
    len := len - c;
    end loop;
    end;
    Edited by: CoyoteTech on May 13, 2009 7:27 AM

  • How can I delete large amounts of mail at once

    On my iPad, how can I delete all of my mail at once?

    How to Delete Email on the iPad
    http://ipad.about.com/od/iPad_Guide/ss/How-To-Delete-Email-On-The-Ipad.htm
    How to Mass Delete Emails from iPhone and iPad Inbox (with video)
    http://suiteminute.com/how-to-mass-delete-emails-from-iphone-and-ipad-inbox/
    How to delete ALL mail messages from iPhone/iPad in one step
    http://www.conferencesthatwork.com/index.php/technology/2014/01/how-to-delete-al l-mail-messages-from-iphoneipad-in-one-step/
     Cheers, Tom

  • How to deal with large amount of data

    Hi folks,
    I have a web page that needs 3 maps to serve. Each map will hold about 150,000 entries, and all of them will use about 100MB total. For some users with lots of data (e.g. 1,000,0000 entries), it may use up to 1GB of memory. If few of these high-volume users log in at the same time, it can bring the server down. The data is from the files, I cannot read it on demand because it will be too slow. Loading the data to maps offers me very good performance, but it does not scale. I am thinking to serialize the maps and deserialize them when I need. Is it my only option?
    Thanks in advance!

    JoachimSauer wrote:
    I don't buy the "too slow" argument.
    I'd put the data into a database. They are built to handle that amount of data.++

  • How to update the large amount of thumbnail images in background process

    in my application i want to load large number of thumbnail images(each images set as icon for separate jradiobutton) into panel. This panel is in left side of JSplitPane.
    when application is starting, now I’m loading the thumbnail buttons without image(to run the application quickly).
    now i want to update the buttons with real thumbnail images in background. i tried with thread and SwingUtilities.invokeLater ,but it stuck the application until updating finish.
    Note:im using java1.4 (not in the possession to use other versions)
    Can anybody give suggestion?
    SwingUtilities.invokeLater(new Runnable() {
    public void run() {
         for (int j = 0; j < imgPagesV.size(); j++) {
         try {
              ImageIcon icon = new ImageIcon((BufferedImage)thumImagesV.get(j)); //thumImagesV vector have thumnail bufferedimages 
              ((JRadioButton)thumButtonPanel.getComponent(j)).setIcon(icon);
              updateUI();
         } catch (Exception e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
    });

    thax for your reply ..
    even i call new smiple thread to load the images it freeze the main gui. is any wrong in my way ?
    Thread Class
    import javax.media.jai.NullOpImage;
    import javax.media.jai.OpImage;
    import com.sun.media.jai.codec.ImageCodec;
    import com.sun.media.jai.codec.ImageDecoder;
    import com.sun.media.jai.codec.TIFFDecodeParam;
    public class TestThread extends Thread {
         File tiffImg;
         TestThread(File img) {
              this.tiffImg = img;
          * extracting form tiff images and creates thumbnail then add into vector
         public void run() {
              ImageDecoder dec = null;
              Vector thumImagesV = new Vector();
              TIFFDecodeParam param = new TIFFDecodeParam();
              param.setDecodePaletteAsShorts(true);
              param.setJPEGDecompressYCbCrToRGB(true);
              try {
                   dec = ImageCodec.createImageDecoder("tiff", tiffImg, param);
                   int start, end = 0;
                   for (int i = 0; i < dec.getNumPages(); i++) {
                        RenderedImage rm = new NullOpImage(dec.decodeAsRenderedImage(i), null, OpImage.OP_IO_BOUND, null);
                        thumImagesV.add(i, ImageHandler.createThumbnail(rm, 150));
              } catch (Exception e) {
                   e.printStackTrace();
    Main GUI Class
         private void buildGUI(File selectedFile) {
              configButtonPanel();
              configThumbnailPanel(selectedFile);//loading with out thumbnail image
              new TestThread(selectedFile).run();
         }

  • Editing large amounts of object properties

    So I'll start with the issue. I have about 3000 buttons in my project and need each one to link to another object (caption for the button) right above it so it shows it on mouse over and hides it on mouse off.
    Going through each individual dot is taking quite some time and driving me crazy. I wanted to see if anyone knew of a better way.
    Ideally I would love if there was some excel-type solution. Is there such a thing as a quickly editable spreadsheet with each object? I have all the buttons and objects named correctly to their corresponding captions. Is there a way to get beneath the file and just type in which object to hide and unhide?
    Any suggestions would be greatly appreciated.
    Thanks

    Sounds like you need a custom InDesign script!
    If you're interested in a quote, send me an email: admin  id-extras.com
    Ariel

  • How to upload a large number of object states?

    Hello,
    We are working on a quiz/poll app and have 582 object states in one page. The file doesn’t respond while uploading and InDesign doesn’t react anymore. There are several button and sound actions inside the states. Does this mean there is a limit to the number of object states? Or does anybody know another solution to upload this document?
    Cheers,
    Edward van Eck

    You should re-design your page to reduce (drastically) the number of object states. There's no way that many object states will render well on mobile devices with limited memory.
    Neil

  • How to write a large amount of measured results with "write to spreadsheet " function in an Excel file?!

    I am going to measure more than 100,000 sampls and I have to write it in an document. I would like to use Excel to present it much more easier but the problem is here that excel can have just 60,000 samples. also using text file is not desired one.
    do you have any solution that helps me ?!?!
    Solved!
    Go to Solution.

    <fullDisclosure> I am a National Instruments employee.  But I was an industrial physicist for 12 years before coming to National Instruments. </fullDisclosure>
    I find Excel to be difficult to work with when you have more than about 2000 points.  With 100,000, you are way over that limit.  Before I joined NI, I would have used Mathematica to do analysis and plotting of that sort of data.  But LabVIEW will do it very easily, as well.  Other NI software which can help are DIAdem or the report generation toolkit (as mentioned above).  For specific types of analysis, you can also check out Wikipedia's list of open source analysis programs.
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • How can i send large amount of emails?

    I have bought Max Bulk mailer (which works well, but stops at 200 emails at one time, and than i can't send any emails for a couple of hours as i have exceeded my quota) and spoke with my internet provider, but they can't advise me. I need to send 2000/ 3000 emails a week at one time.. any advice would be much appriciated! thanks in advance x

    I know you're probably trying to find free options, but there are some good options for companies that send bulk mail. There are pros and cons each way of course. One advantage of using a hosted service is that they will go to work for you if your email gets designated as spam -- assuming that you're using a legitimate permission based list -- which you are, right? I'm not associated with any of these companies, by the way.
    http://www.verticalresponse.com
    http://www.campaignmonitor.com
    May not be what you're looking for, but it's an alternative to sending through your ISP if you can only send 200 a day.
    Peace,
    Kelly

  • 9I: How can get the names of all objects in a package header? [RESOLVED]

    Is there a way to get the names fo all objects (function, procedures) from package header
    select * from user_objects only gives the the header name, I need the object in the header.
    John
    Message was edited by:
    johnminkjan

    Here is an example with dbms_output package!
    SQL> select owner, object_name,procedure_name from all_procedures
      2  where  object_name='DBMS_OUTPUT';
    OWNER                          OBJECT_NAME                    PROCEDURE_NAME
    SYS                            DBMS_OUTPUT                    GET_LINES
    SYS                            DBMS_OUTPUT                    GET_LINE
    SYS                            DBMS_OUTPUT                    NEW_LINE
    SYS                            DBMS_OUTPUT                    PUT_LINE
    SYS                            DBMS_OUTPUT                    PUT_LINE
    SYS                            DBMS_OUTPUT                    PUT
    SYS                            DBMS_OUTPUT                    PUT
    SYS                            DBMS_OUTPUT                    DISABLE
    SYS                            DBMS_OUTPUT                    ENABLE
    9 rows selected.
    "or"
    SQL> desc dbms_output

Maybe you are looking for

  • What Metadata Standard is used for Face Regions?

    Nice to see that LR6 now has support for Face Recognition and Face Regions. However, nowhere in the online help is it stated explicitly what metadata standards are used for the image regions. I would hope that as Adobe is a member of the Metadata Wor

  • Removing attachments not always succeeds

    Most of the times, when I've selected a message which contains attachments and then click Remove Attachments things go well: Mail informs me that the attachments have been removed by showing something like: [The attachment someattachedfilename has be

  • DBMS_METADAT.get_ddl

    Hello every one, Does any one know how to handel if there are dependancy on the table, When we run this and if there are foregin key primary key relation ship between two tables then in the scipt the table with foregien key might come before pk table

  • What are collections in oracle plsql, and Transpose concepts.

    Hi OTN, what are the collections available in Oracle Plsql, what are concepts of collection. How to Transpose a Table from rows to columns or columns into rows. DDL and DML concepts. What is the concepts of statistics in Oracle Plsql. Thanks Edited b

  • Can't install anything from download box

    Hi, I have macbook white uniboty from late 2009 with new os 10.9.2 Got problem with every download boxes. I've download garage band and mainstage3. When i download garageband and run it, box starts downloading content. When it was finished, he ask me