Is there any log of object-generating ? - why is an object generated?

is there any log of object-generating ? -
why is an object generated?
in Table REPOLOAD, i can see that an object / program is generated  (SDAT, STIME)
is there any log-file, where i can see, why this object is forced to be generated ?

it is a JavaBean class that implements Serializeable. suppose i have a method called copyObject(Object o) that returns a copy of o
public Object copyObject(Object o)
Object newObject = null;
Class c = o.getClass();
newObject = c.newInstance(c.getName());
PropertyDescriptor p[] = Introspector.getBeanInfo(o.getClass()).getPropertyDescriptors();
for (int i = 0; i < p.length; i++) {
//this is the part i am not really certain, how do i read value from o, so i can set it to newObject for each element
//String name = p.getName();
//String value = p[i].getReadMethod() .;
p[i].getWriteMethod().invoke(newObject, value);
//how do i use the introspector to invoke method to copy from o to newObject?
return newObject;

Similar Messages

  • Are there any possible reason RMAN generates some corrupt archive log files

    Dear all,
    Are there any possible reason RMAN generates some corrupt archive log files?
    Best Regards,
    Amy

    Because I try to perform daily backup at lunch time and found out it takes more than 1 hour had no any progress. Normally we take around 40 minus. The following is the log file:
    RMAN> Run
    2> {
    3> CONFIGURE CONTROLFILE AUTOBACKUP ON;
    4> CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/u03/db/backup/RMAN/%F.bck';
    5> CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 1 DAYS;
    6> allocate channel ch1 type disk format '/u03/db/backup/RMAN/backup_%d_%t_%s_%p_%U.bck';
    7> backup incremental level 1 cumulative database plus archivelog delete all input;
    8> backup current controlfile;
    9> backup spfile;
    10> release channel ch1;
    11> }
    12> allocate channel for maintenance type disk;
    13> delete noprompt obsolete;
    14> delete noprompt archivelog all backed up 2 times to disk;
    15>
    16>
    using target database controlfile instead of recovery catalog
    old RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    new RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    new RMAN configuration parameters are successfully stored
    old RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/u03/db/backup/RMAN/%F.bck';
    new RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/u03/db/backup/RMAN/%F.bck';
    new RMAN configuration parameters are successfully stored
    old RMAN configuration parameters:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 1 DAYS;
    new RMAN configuration parameters:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 1 DAYS;
    new RMAN configuration parameters are successfully stored
    allocated channel: ch1
    channel ch1: sid=99 devtype=DISK
    Starting backup at 31-MAR-09
    current log archived
    After that I go to archive log directory "/u02/oracle/uat/uatdb/9.2.0/dbs" and use ls -lt command to see how many archive logs and my screen just hang. After we found out that we cannot use ls -lt command to read arch1_171.dbf
    archive log, the rest of archive logs able to use ls -lt command.
    We cannot delete this file as well. We shutdown database abort and perform check disk...... and fix the disk error and then open database again. Everything seems back to normal and we can use ls -lt command to read arch1_171.dbf.
    The strange problem is we have the same problem in Development and Production..... one ore more archive logs seems to be corrupted under the same directories /u02/oracle/uat/uatdb/9.2.0/dbs.
    Does anyone encounter the same problem?
    Amy

  • Is there any downside mixing Objective-C with C++ for iOS apps?

    I'd like to use C++ since it's fast and more dynamically in memory reference.
    Is there any downside mixing Objective-C with C++ for iOS apps?
    When googled for info, I only found tutorials about how to let xcode compile Objective-C with C++.
    Thanks for help.

    hokanst wrote:
    Both Objective-C and C++ are (more or less) extensions of C.
    C supports manipulation of pointers and casting of pointers, this implies that both Objective-C and C++ will be able to manipulate C data like arrays, structs ...
    Objective-C has classes like NSData to read/write blocks of bytes from/to file and to access ranges of bytes when the data is loaded into memory.
    C++ probably has similar classes (I'm not well versed in C++ so I don't know).
    If you want to look into using C++ you will probably want to look at Objective-C++, the link below has links to docs on how to use C++ with Objective-C:
    http://stackoverflow.com/questions/3684112/what-is-objective-c
    Thanks for the info, NSData does what I need.
    A replied in the link also mentioned that he's using C++ in his application too. As long as I'm aware of memory management (prevent memory leaks, etc) as @disguise said, it should be fine.
    @etresoft indeed, but C is the base language of ObjC, there are ways to deal with.

  • Is there any function module that generates date of 30th september of next

    is there any function module that generates date of 30th september of next year.?

    May be u mean...20100930
    You can simply
    Add 10000 to this years sept 30...If you want sept 30 from today...
    Data: G_DATE Type Sy-DATUM.
    G_DATE = Sy-DATUM.
    G_DATE+4(02) = '09'.
    G_DATE+6(02) = '30'.
    G_DATE0(04) = G_DATE0(04) + 1.
    Santhosh

  • Are there any Java classes  which generates UI Maps based on UI Hints

    Hi,
    I would like to know how UI Hints work and how UI Maps are generated based on UI Hints.
    Are there any java classes behind?

    Can someone help me on how to do this?

  • Is there any template framework to generate flex pages at runtime?

    Earlier I have worked on Apache Velocity project. With a single velocity template I was able to render 800+ different jsp pages at runtime.
    Is there any framework/functionality similar to Velocity or Freemarker framework, in flex?

    Create a zip and rename it to .cab. - that's what half of the cab files around are.
    (not a serious suggestion, but there are at least four different CAB file formats, zip included, some used in Microsoft official products, others in common products that run on Windows like Install Shield, and you need to find out what whatever is going to read it expects to be in the-file-that-happens-to-end-in-CAB before you can look for code to write it)
    (which reminds me of a web content filter at one company I used to work out which blocked all URLs which ended in CAB, so every now and again you'd get blocked from sites which used hex session keys in their URLs)

  • Is there any order for objects in a relationship collection

    I am using two cmp ejbs A and B which are in a many to one relationship.
    This is like : Any Order has 0 to * OrderLines.
    For this my ejb A has a cmr fild of type Collection:
    public abstract Collection getBs();
    public abstract void setBs(Collection x);
    My question is if there is any way to indicate the position in which the related objects are saved in the collection.
    This is very important for me. Because I want to generate a view to the
    user for ejb A that should be allways in the same order.
    This is like:
    The view of the "order" should show the "orderLines" allways in the same positions: first orderline, 2nd orderline , 3rd orderlin,....
    And if the user replace the 2nd "orderLine" with an other orderline, next time the view should still show it in the 2nd position in the "order" page.
    If I use the following code:
    Collection x = getBs();
    x.add(someObject);
    It won't be in any specific position.
    I wanted to do the following:
    Collection x = getBs();
    Vector v = new Vector(x);
    v[anyPosition] = someObject;
    setBs(v);
    But then I read that I should never use the set method for a cmr field of type Collection! Because this will be done exclusively by the container!
    So what to do?????

    Hi sarkarati,
    As J2EE requires the usage of the Collection interface, the only way is to order the OrderLine by hand before display.
    Regards,
    -- markus.

  • Is there any way I could generate CAB (M$ stuff) files at run time?

    Hi,
    I was wondering if there is any way I could be using to generate a CAB file at runtime. Sure, it has to be a Java Class or Library.
    The goal is to set some files in the configuration settings and then sending this CAB to a Windows Mobile powered device.
    I have been googling for such a thing, but had no joy.
    Does anyone have any idea?
    Cheers

    Create a zip and rename it to .cab. - that's what half of the cab files around are.
    (not a serious suggestion, but there are at least four different CAB file formats, zip included, some used in Microsoft official products, others in common products that run on Windows like Install Shield, and you need to find out what whatever is going to read it expects to be in the-file-that-happens-to-end-in-CAB before you can look for code to write it)
    (which reminds me of a web content filter at one company I used to work out which blocked all URLs which ended in CAB, so every now and again you'd get blocked from sites which used hex session keys in their URLs)

  • Is there any Adobe LiveCycle PDF Generator for PS EXPERTS?

    There seems to be a lot of question about this product with no answers. When you call Adobe you get the run around.
    How is the product supposed to work?
    When a basic installation is performed it does not do what is expected.
    If you are suppose to be able to create Postscript files or drop Office documents in a watch folder or email them to the server and it converts them. Why does it not work? These are the basic function not a lot of development required. The only files that are converted are .PS and then it appends .PDF to the end of it. (test.ps.pdf) if fails on all office documents with an "Error Code: 11,020 Reason: The source file you submitted is not supported by this version of PDF Generator. If this product does not support this function then why did the installation require you to install Office before the Livecycle product is installed?

    Hi Steven,
    What you refer to is PDF Generator version 7.x Postscript edition.
    In version 7 of the product there were 3 editions:
    1. PDF Generator Professional
    Create PDF files from a wide range of source files:
    Print (PS, EPS, PRN)
    Image (JPG, GIF, BMP, TIFF, PSD)
    Standard office formats (DOC, XLS, PPT, WPD, MPP)
    Text (TXT, RTF)
    Web (HTML)
    Design files (DWG, VSD)
    Generate all types of Adobe PDF file formats:
    PDF 1.3, 1.4, 1.5, 1.6
    PDF/X-1a and PDF/X-3 for prepress document exchange
    PDF/A for archiving with easy search and retrieval
    Searchable PDF files from images
    Convert PDF files to:
    HTML documents
    Text (TXT, RTF, accessible)
    Images (TIFF, PNG, JPEG)
    Print (PS, EPS)
    2. PDF Generator Elements
    Create PDF files from a wide range of source files:
    Print (PS, EPS, PRN)
    Image (JPG, GIF, BMP, TIFF, PSD)
    Standard office formats (DOC, XLS, PPT, WPD, MPP)
    Text (TXT, RTF)
    Web (HTML)
    Design files (DWG, VSD)
    Generate all types of Adobe PDF file formats:
    PDF 1.3, 1.4, 1.5, 1.6
    PDF/X-1a and PDF/X-3 for prepress document exchange
    PDF/A for archiving with easy search and retrieval
    Convert PDF files to:
    HTML documents
    Text (TXT, RTF, accessible)
    Print (PS, EPS)
    3. PDF Generator Postscript
    Create PDF files from a wide range of source files:
    Print (PS, EPS, PRN)
    Generate all types of Adobe PDF file formats:
    PDF 1.3, 1.4, 1.5, 1.6
    PDF/X-1a and PDF/X-3 for prepress document exchange
    PDF/A for archiving with easy search and retrieval
    So basically what you have is the very limited edition, doing exactly what you said. For more functionality you should opt for one of the other editions (that for version 7.x)
    Today's version is the newer LC PDF Generator ES. You can look for its specifications at http://www.adobe.com/products/livecycle/pdfgenerator/
    Thanks

  • Q: Is there any tool/api that generates a db shema programmatically

    hi all!
    I am trying to find a tool which can construct a database schema during the running of an application. In general, the user will define the structure of the new database. When the user click a button the code will generate the database. Do you know any tool that is capable to do this task?
    I visited the torque, apache project, but I realized that the database schema is created by the ant make tool. I dont want to use an external program to create the db just only something like that.... dbSchema.create()

    I searched in the hibernate site for something similar
    to that i want but i didn't find anything. From the
    hibernate site I can conclude that the hibernate use
    an already created database in order to map the
    database with java objects.
    If I am wrong please correct me.
    If hibernate can create a database from an xml file,
    please give me some useful links.
    thank you in advance, kostashibernate can do what you want: it has things like schemaUpdate, export... and do what you want. you need to spend a few days on this, though.

  • Are there any logs to review....?

    when the "find my iphone" feature has been used on my phone?   curious to see if a partner that has had access to my .me account has been checking on my using the find my iphone function...does anyone know if there is a way i can find out through my account or any other way at all?  thanks!!

    How long have you waited so far?
    Torsten Meringer | http://www.mssccmfaq.de

  • Is there any way how to generate JPG image from DNG easily?

    I use PS, FW and Bridge.
    I have often a problem to show images for preview from DNG files.
    Please can you explain me, how to do it as a batch easily? Generate preview images from a whole folder?
    Do you generate JPG in original size or do you archive only DNG?
    Thank you

    Little confused here.  Are you saying you do not get a thumbnail for a DNG and therefore can not view as a preview?
    If you want to batch convert a DNG to a jpeg you can use tools/photoshop/image processor.

  • HT201304 is there any way to find out why i can not purchase something while in app?

    I am trying to make a in app purchase yet the game is telling me that a error or something occured and tells me to contact apple.com/support/itunes/ww/.
    I dont think I can see the whole link they are giving me. the game is Legends of Cryptid

    phamin1 wrote:
    I... a error or something occured and tells me to contact apple.com/support/itunes/ww/
    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Why my apple id password always incorrect? after i reset it today, it always tell me wrong just in the next day. therefore, is there any solution of that?

    why my apple id password always incorrect? after i reset it today, it always tell me wrong just in the next day. therefore, is there any solution of that?

    why my apple id password always incorrect? after i reset it today, it always tell me wrong just in the next day. therefore, is there any solution of that?

  • Is there any way to find out who accessed the BW reports in Portal

    Hi! Experts
    We have some BW reports which are published through SAP Portal and access given to only Team Leaders, now we want to see who are accessed or trying to access those reports other then Team leaders. Is there any way we can generate a LOG file etc.  to see  those user IDs. Any suggestions will be highly regarded with points
    Syam

    Hi Syam,
    I reckon this SDN blog has all the information that you require:
    /people/damian.reyesdiaz/blog/2005/11/11/documents-hits-count-km-activity-reporting
    Hope it helps.
    Thanks,
    Michael

Maybe you are looking for

  • Google Search stops responding in Firefox 28

    Hi folks, I have searched an read and tried the following, but the problem keeps coming back. After "some" period of time in a browser session, Google bookmarked pages and searches just stop responding. They look like they try to connect, but fail af

  • Playing rented movies without an Internet connection?

    I'm in the middle of moving, and won't have cable or Internet service until sometime next week. I'm wondering if I could take my AppleTV to the office, hook it up to the net, rent some movies, and then play those movies at home over the weekend? In s

  • Are there any simple LabVIEW motion program for Newport MM4006 controller

    My system consists of a PC with a IEEE488.2 from NI that connects to 2 Newport MM4006 controllers, which, in turn control a high-precision stage. I would like to know if you can provide me with any simple motion programs in LabVIEW. Since I am starti

  • Does m-audio torq works with os 10.8.3?

    i have bought the m-audio torq system and my question is does it works with mac os 10.8.3?

  • Why was blocking mode disabled from GS3?

    I do not understand why blocking mode was disabled from the latest update, it was very useful tool for me as I have trouble sleeping. Last night my phone drove me crazy, LED blinking, emails, texts etc... I finally turned my phone off, which would de