Subclassed Objects Problem

Dear Sir,
Frm-18108 is displayed when i open a form named "customer". it has an item subclassed from the library "Components".
When I open the library in Developer (Navigator) then the problem is solved. but what to do at deployment time.

This problem would occur if the "Components" is not there at the forms path. If u r using Forms 6i then check the path mentioned in Forms60_Path; If u r using Forms 10g, then check ur Forms_Path. If this file exists
at the path specified then it'll not create any problem.
Regards,
Alok Dubey
Edited by: user583531 on Nov 1, 2008 4:42 PM

Similar Messages

  • Subclassed Objects in frmxml2f.bat utility cause problems....

    Hi everybody,
    I use the frm2xml.bat file in Windows in order to transform the .fmb files to .xml, then i use the frmxmlv.bat file in order to validate the .xml file. These two steps are successfully completed....
    I want to transform the .xml file and overwrite back to .fmb using the frmxml2f.bat. This step fails because of some subclassing errors.....
    The source .fmb files have subclassed object libraries and .pll libraries which have been saved in the directory which FORMS_PATH defines .
    Although the errors have to do with these subclassing.....
    What should I do in this situation...????
    THE ON-LINE HELP SAYS THAT
    Subclassing error: Check that your FORMS_PATH contains all parent modules....
    QUESTION
    The subclassed .olb libs are the parent modules for this .fmb file or is it something else...????
    Thanks a lot
    Simon

    EUREKA!
    the problem was that I was not converting the data back to an image. Here is the snippet to change:
    //transform the image object
    NSData *imageData = [[decoder decodeObjectForKey:@"Image"] retain];
    UIImage *newImage = [[UIImage alloc] initWithData:imageData];
    locImage = newImage;
    The only remaining thing is a memory management question. If I autorelease the data or the temp image the app crashes because I am referencing a deallocated instance. Yet I am concerned about the memory issues here. I have also tried releasing the temp objects at the end and that crashes for the same reason. Should I be copying the temp image into the instance variable of the class?
    MM

  • Forms with subclass object is not compiling----AIX

    Hi all,
    We have OAS 10g in AIX 5.3. First of all there is no Developer in AIX, which is a big problem to fix any error. All though we have developed our application in HP-UX m/c and now change to AIX as in the production it will be AIX servers.
    Now the problem is that, we have a Form, whose objects are being subclassed by all other forms. And in AIX whenever I try to compile any form it gives the error FAILED TO LOAD : MODULE NAME: <REFERNCED FORM> OBJECT NAME: <REFERENCED OBJECT>.
    If I change the subclass object to copy (i.e., when I add the object from Referenced form, it ask for COPY, SUBCLASS and I select COPY), and I compile it, then it compiles without any error.
    But the problem is that we have total 1000 forms in our application and it is not possible to change all these forms again. Moreover it is not a good practice to copy it.
    So I need to overcome this problem. Please suggest me how to overcome this problem.
    NOTE: I have put the REFERENCED form in the path $ORACLE_HOME/forms/ and all the other forms are in respective module's directory. And I have change default.env accordingly.

    Hi ,
    I had the same problem once and i discovered that the problem was on my Environemnt path so try to make sure you set it using :
    export FORMS_PATH=<your library and Super module path>
    and after that make sure it has been setted using :
    echo $FORMS_PATH
    so can you please take a second look on it ..
    Best Regards,

  • FRM-18108 Error when opening a form with subclassed objects

    Dear Group,
    I have 2 forms in Oracle Forms 6i. One of the forms contains an object group. The other form contains the object that I subclassed it to.
    When I open the form that contains the subclassed object group, I get the FRM-18108 error.
    If I open the form with the original object group, then open the subclassed form, there is no error.
    Does this mean I must always open the original form in order to work on the one with the subclassed object group?
    I hope there is an simple solution to what is something I am missing in my Oracle Forms setup.
    Thank you in advance.
    Emad

    Hi Duncan.
    Your suggestion worked.
    Thank you for the fast response!
    Truly,
    Emad

  • Subclassing objects from Object Library

    Hi,
    We have an Object Library that is ever-changing.
    We have several procedures and function in the Object Lib. that
    we subclass in many different forms.
    I expect those subclassed proc/functions to inherit the new
    changes automatically when I re-compile, but I don't see any new
    changes. In fact, the red arrow(subclassed items have red-
    arrows to show that they are subclassed) disappear from the
    subclassed forms.
    I have a source form where I edit/write all the property
    classes, visual attributes, procedures, and functions. Once I
    write/edit them, then, I move(drag) them to object library. Am
    I doing something wrong?

    Once you have an object in the OLB and you dragged it to a form
    it will be marked with a red arrow as subclassed.
    Now if you change the object in the OLB (but keep the previous
    object name, you'll get a replace option message) and save the
    olb, you need to open the form that has the subclassed object
    and re compile it. Make sure the olb is also opened in the forms
    developer. This will make the changes appear in the form's
    object.
    If the arrow disapear then have a look at the subclass property
    of the item in question to see what went wrong.

  • Subclass design problems/best practices

    Hello gurus -
    I have a question problem regarding the domain objects I'm sticking in my cache. I have a Product object - and would like to create a few subclasses - say BookProduct and MovieProduct (along with the standard Product objects). These really need to be contained in the same cache. The issue/concern here is that both subclasses have attributes that I'd like to index AND query on.
    When I try to create an index on the subclasses attributes when there are just "standard" products - I get the following error (which only exists on one of the subclasses):
    2010-10-20 11:08:43.280/227.055 Oracle Coherence GE 3.5.2/463 <Error> (thread=DistributedCache:MyCache, member=2): Exception occured during index rebuild: java.lang.RuntimeException: Missing or inaccessible method: com.test.domain.product.Product.getAuthors()
    So I'm not sure the indexing is working or stopping once it hits this exception.
    Furthermore, I get a similar error when attempting to Filter based on that attribute. So if I want to add the following filter:
    Filter filter = new ContainsAnyFilter( "getAuthors", authors );
    I will receive the following exception:
    Caused by: Portable(java.lang.RuntimeException): Missing or inaccessible method: com.test.domain.product.Product.getAuthors()
    What is considered the best practices for this assuming these really should be part of the same names cache? Should I attempt to subclass the extractors to "inspect" the Object for its class type during indexing or applying filters? Or should I just add all the attribute in the BookProduct and MovieProduct into the parent object and just forget about subclassing? That seems to have a pretty high "yuck" factor to me. I'm assuming people have run into this issue before and am looking for some best practices or perhaps something that deals with this that I'm missing. We're currently using Coherence 3.5.2. Not sure if it matters, but we are using the POF format for serialization.
    Thanks!
    Chris

    Hi Chris,
    I had a similar problem. The way I solved it was to use a subclass of the ChainedExtractor that catches all RuntimeException occurring during the extraction like the following:
    * {@link ChainedExtractor} that catches any exceptions during extraction and returns null instead.
    * Use this for cases where you're not certain that an object contains that necessary methods to be extracted.
    * F.e. an object in the cache does not contain the getSomeProperty() method. However other objects do.
    * When these are put together in the same cache we might want to use a {@link ChainedExtractor} like the following:
    * new ChainedExtractor("getSomeProperty.getSomeNestedProperty"). However this will result in a RuntimeException for those entries that
    * don't contain the object with the someProperty. Using the this class instead won't result in the exception.
    public class SafeChainedExtractor extends ChainedExtractor
         public SafeChainedExtractor()
              super();
         public SafeChainedExtractor( String sMethod )
              super( sMethod );
         @Override
         public Object extract( Object entry )
              try
                   return super.extract( entry );
              catch(RuntimeException e)
                   return null;
         @Override
         public Object extractFromEntry( Entry entry )
              try
                   return super.extractFromEntry( entry );
              catch(RuntimeException e)
                   return null;
    }For all indexes and filters we then use extractors that subclassed the SafeChainedExtractor like the following:
    public class NestedPropertyExtractor extends SafeChainedExtractor
         private static final long serialVersionUID = 1L;
         public NestedPropertyExtractor()
              super("getSomeProperty.getSomeNestedProperty");
    //adding an index:
    myCache.addIndex( new NestedPropertyExtractor(), false, null );
    //using a filter:
    myCache.keySet(new EqualsFilter(new NestedPropertyExtractor(), "myNestedProperty"));This way, the extractor will just return null when a property doesn't exist on the target class.
    Regards
    Jan

  • Subclass Object Library

    Hi,
    Did anyone faced this problem.
    I've created an object library. I then drag the object from the library to form using the subclass -> remove path option, compiled the form and run the application the references subclass worked fine.The object libray path has been defined in forms_path and default.env file. I then made a mod to the object library, updated it and saved. Now,forms don't recognize the change that I made in the object library at runtime but i see the modified informatioin at design time.I am using forms 10.1.2.
    Thanks

    Hi..
    Recompile the form again.
    Thnx and regards
    Sriram

  • Report with OLE Object Problem (Crystal Report 11)

    Post Author: ibertola
    CA Forum: General
    Hi all,I'm a new user, and I've got a problem with OLE object. I would like to have a report that show me ONLY one of many OLE (word document) in Crystal structure.I've created 3 section detail, and in each one I've insert OLE object (creating from a file, and LINK).So, if I change one document stored locally, and then refresh the report, the content doesn't change like the linked file! Actually I've got all locally  Please help me.

    CR XI r2 is not supported on WIN 2008. See the [supported platforms|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7081b21c-911e-2b10-678e-fe062159b453]
    documentation  and [this|https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=56787567] wiki.
    Ludek

  • Web Analysis Spreadsheet object problem

    Hi All,
    I am facing an issue in WA where a report connected to an Essbase cube, has 2 spread sheet objects in it.
    Each spread sheet object uses 4 dimensions in them of which 3 dimensions are used as columns for both spread sheets sheets and the row dimension differs,
    Say spread sheet A has Dim A as the row and DimC,Dim D and Dim E as columns, and spread sheet B has Dim B as the row and DimC, Dim D and Dim E as columns.
    There exists some sort of a link between SS A and SS B, where SS A is connected to the data source and SS B is linked to SS A through dimension Dim B.
    When I drill down on Dim A of SS A, the consolidated value at the top level of Dim B in SS B gets doubled.
    Actually the consolidated value at the top level of Dim A in SS A should be equal to the consolidated value at the top level of Dim B in SS B, because Dim A is fixed to its uppermost member in SS B.
    Meaning the value in the cell which holds the consolidated value at the top level of Dim B in SS B, gets incremented by the consolidated value at the top level of Dim A in SS A, for the first drill down.
    Can anyone tell me of a way by which I can clear the contents of the cell which holds the consolidated value at the top level of Dim B in SS B, using any function of the spreadseet or if there is a way in code that I can use to clear the contents of this cell?
    Thanks in advance.
    Regards,
    Anindyo

    Just check with your (essbase)administrator has set any security filters to the users having this problem
    - Natesh

  • File (Directory) object problem?

    Hi there. My problem is as follows. The method below is supposed to access an pre-existing directory with five previously saved test files, read in those files as account objects, add the objects to an ArrayList, then return the ArrayList. It seems to be able to create a file object representing the directory alright but it then insists that there are no files in the directory! Have I fouled up or is there some subtlety that I'm unware of? I was wondering if the fact that the account files have a .bac extenstion had something to do with it.
    Here's the method, with the two lines of code where I think the problem might lie in bold print:
    public ArrayList retrieveAccounts()throws IOException{
    ArrayList accounts = new ArrayList();
    File accDir = new File("C:" + File.separator + "accounts"); //creates a directory object
    //The following S.o.p statements are for test and maintenance purposes rather than user feedback
    System.out.println("Directory " + accDir.getCanonicalPath() + " opened");
    System.out.println("Confirm Accounts directory exists: " + accDir.exists());
    System.out.println("Directory: " + accDir.isDirectory());
    String [] accFiles = accDir.list(); //gets a list of files in the directory and saves it as a String array
    System.out.println("Number of files in directory: " + accDir.length());
    while(i < accDir.length()){
    filename = accFiles;
    try{
    //open layered input Streams to access the next account file in line
    ObjectInputStream in = new ObjectInputStream(new FileInputStream("C:"+ File.separator + "accounts" + File.separator + filename));
    account = (Account)in.readObject();
    accounts.add(account);
    in.close(); //closes Streams for that particular file
    }catch(IOException e){System.out.println("Filing error as follows: " + e);
                }catch(ClassNotFoundException e){System.out.println("Class not Found. Details: " + e); }
    filename = null; //frees up reference for next file
    i++;//counter increments by one
    return accounts;

    This is what I was trying to do minus the comments and maintence and test code:
    public ArrayList retrieveAccounts()throws IOException{
    ArrayList accounts = new ArrayList();
    File accDir = new File("C:" + File.separator + "accounts");
    String [] accFiles = accDir.list();
    while(i < accDir.length()){
    filename = accFiles;
    try{
    ObjectInputStream in = new ObjectInputStream(new FileInputStream("C:"+ File.separator + "accounts" + File.separator + filename));
    account = (Account)in.readObject();
    accounts.add(account);
    in.close();
    }catch(IOException e){System.out.println("Filing error as follows: " + e);
    }catch(ClassNotFoundException e){System.out.println("Class not Found. Details: " + e); }
    filename = null;
    i++;
    return accounts;
    By the way, your the first Java programmer that I've met that doesn't like comments! :)
    NOTE: Think I may have spotted where I went wrong in my code.
    filename = accFiles;
    Forgot to point it at the specific element of the array, like so:
    filename = accFiles[i];
    Thanks for your help!

  • Open as smart object problems

    Hello,
    Im having some problems with Lightroom 4 when using "Edit In" -> "Open As Smart Object in photoshop..."
    Image open fine in CS6, i can make my edits & save. But when i close the image, an dialog box pops up with the following;
    Error 2: photoshop is undefined.
    Line: 1
    ->  photoshop.notifyLightroomDocClosed ('lightroom-2.0', '49071FF0-A8C4-4F2F-B0BB-B28B76F494E6', '');
    The image is saved to the correct place, link to lightroom is not. Need to manully syncronize the folder to get the image in the catalog.
    Running Lightroom 4.4, CS6 (13.0.4) on OS X (10.8.3)
    Anyone know whats wrong?

    This hack: http://kb2.adobe.com/cps/401/kb401629.html?
    Is Edit in Photoshop CS5 enabled?

  • Smart object problems, from AI to PS = pixelated

    Hello and greetings,
    I am new here and looking forward to getting some help, and hopefully giving advice. How is everyone today?
    Ok my problem is:
    I am designing a website is Illustrator and finalizing it in photoshop (as this is the file the web developer asked for) I have the main design done, buttons and panels etc -
    so I copy the object I want from Ai to PS as a smart object. The web doc in PS is set to 72dpi, which is fine - it looks 'clean' at 100%. However when I do this process on the works PC the result is fine and good eg - looks 'clean' at 100% -
    I took my work home to finish on my Mac and when I did the same process it was really pixelated beyond beleif! This is not good! NOT GOOD!! I have compaired one of the buttons from the doc at work to one of the buttons on the same doc dome on my Mac and the difference is terrible.
    HELP - Are there some settings I am over looking? I have checked the 'clipboard' settings in Illustrator to recomended to what I could find on the web and nothing has changed? Do I have to close the program for the preferences to work? Please please help
    Many thanks Elles.x x
    ps: I am running CS4 at work on a PC and at home CS3 Mac

    Thanks Ozzwoman for your advice , it seems to be the thing to do as I have read on here to sort this issue - shall I be doing the same for Illustrator? Or do you know the settings for AI clipboard prefs?
    Nice pooch by the way, does he have a name?
    elles.x x
    ps: will try 'Operation deleting prefs' when I get home, bout an hour or so, I will let you know how is goes!

  • Copy in illustrator, paste in photoshop as smart object problem

    Hello. I am posting this here hoping that this message might be seen by someone more experienced who knows the answer. I have already tried to find a solution on my own, but to no avail, and I already lost a whole day just  with this problem.
    I'm trying to build an example website, in anticipation for a real one that I want to build later on. I've done the wireframing and design (some of it) in illustrator, and now I want to copy to photoshop what I did in illustrator. I need to copy it as a smart object. The problem is that when I copy to photoshop, even though I choose the same dimensions, the file is not the same size. I have inserted some images to try to explain this more clear.
    These are some settings in illustrator.
    These are the dimensions in illustrator.
    I select the whole content from illustrator, copy it
    And after that I go to photoshop. I choose to create a new file
    Even though when I created a new file in photoshop I selected the same dimensions that were in illustrator (960 px 1810px), the copied object does not match the canvas when I press enter.
    I've searched online for people that had the same problem and I found something somewhat similar, but not helpful. The problem for them was that the anti-alias was not selected. However, as can be seen in the images, in my case the anti-alias is selected. The difference I noticed is that for them the W and H are both directly 100% when the object is pasted into photoshop, but for me this never happens, it is always something different. In the images here it is w 99.99% H 99.94%, and I created another layout before this that had even worse dimensions, something like W 97.68%  H 98%. I tried to fix this by putting manually 100% for each before I press enter, I even selected the "maintain aspect ration" icon (situated between W and H) but after that the image gets distorted.
    I should also mention that I created different other smart objects with these files and they have the same problem - I selected the header for example, made it a smart object, and every time they are introduced to photoshop they are not W 100% H 100%  but are 9X % 9X% or something.
    I also tried, when creating a new document in photoshop, to put instead of 72pixels/inch  - 300pixels/inch and its the same problem..
    I also looked at the illustrator file so that there are no strokes on the edges of the document.
    So, please, if there is someone who know how to fix this, to paste it so that I will have the same dimensions (W 100% H 100% automatically) so that the documents will match how it is normal, I would really apreciate the help. If there are any other details and setting one might need, I will look for them and mention them after that. Thank you!

    Use
    file >> export > psd instead
    Your resizing problem is coming from what is in your clipboard is not 960 x 1810, but larger (960.078 x 1810.048 as seen in your 3rd screenshot), and Photoshop is resizing trying to fit.
    To fix this yourself, make a new document, your clipboard size will automaticallly be used if you make a new .psd doucment, then paste, than drag over to your 960 x 1810 .psd document and reposition.

  • Word pdf object problem

    Acrobat Pro 9.1/Word 2007/WXP
    I have multiple users who are unable to open embeded PDF objects in a word document.  When they click the icon, they get "The program used to create this object is AcroExch.  That program is not installed on your computer...".  This problem didnt appear until we upgraded everyone to v9 but I cant say for sure they were embedding pdfs prior to that.
    I have repaired Office 2007, reinstalled Acrobat Pro, confirmed that HKEY_CLASSES_ROOT\AcroExch.Document.7\shell\Open\command really is pointing to "C:\Program Files\Adobe\Acrobat 9.0\Acrobat\Acrobat.exe" "%1" and that that app does run.  The users are able to open the actual PDF files.  Other PDFs embeded on the same document work.  This is not limited to just one PDF either, there are multiple embeded PDFs that are not working.  I have also noticed that sometimes the embeded PDF will open once, then if you close it and reopen it, Word gives you the same error.  How it can work one time and then tell me the it can find AcroExch the next I dont understand.  Ive also tried to open some of these documents with Reader 9 installed on a clean test PC and they do the same thing.
    I considered the possibility that the doc was somehow corrupt but inserting the PDF into a new document has the same result.  Any ideas why it would tell me AcroExch is not installed regardless of whether Acrobat Pro or Reader is actually installed and why some embeded PDFs would work and some wouldnt?  If a reinstall of both Office and Acrobat doesnt fix this and it occurs on a clean install, how do I fix it?
    Any help is appreciated. 
    *** Update***
    It would appear that if I open those specific PDFs in Pro, resave them, then reembed them in Word, this problem does not occur.  After inquiring further, those specific PDFs where created via a Sharpdesk scan from copier to PDF feature.  Why they can be opened with Reader/Pro directly but cant be opened as embeded PDFs in word without being resaved I dont know.      

    I'm still having this problem.
    I've updated to 10.1.0, I've tried unchecking the "Enable Startup" option, I've tried the advanced option one where I select Adobe 10.1.0 as my default.
    I still can't embed a PDF in a word document and receive the same error as when we had Adobe 9.
    Anyone have any other ideas?
    Thanks in advance,
    Cheryl

  • [CS3 JS] Find/Change Object Problem

    app.changeObjectPreferences = NothingEnum.nothing does not seem to clear the change object preferences for me.
    app.findObjectPreferences = NothingEnum.nothing works as expected, as do both app.findTextPreferences = NothingEnum.nothing and app.changeTextPreferences = NothingEnum.nothing.
    Does anyone else use the new Find/Change Object?

    Hello. I'm new here but it seems to be the only place where I can post this question to.
    I'm working in a C# application that uses InDesign CS3 scripting. I'm trying to create an index automatically from a tabbed list of words in a text file.
    As C# is a strongly typed language, I have to cast all objects to the right type. I'm having problems when I try to add the page numbers to the created index entries using the following code (I've used the CreateIndexEntry.jsx scrip as a starting point).
    //Find all occurrences of the word or set of words (the topic name)
    ((InDesign.FindTextPreference) app.FindTextPreferences).FindWhat = topic.Name;
    InDesign.Objects foundTexts = doc.FindText(System.Reflection.Missing.Value);
    It's supposed to be an Array of Text objects (InDesign.Text) but when I try to cast each object using this
    //Code is forced because I've tried everything here
    //Loop through each finding and add page numbers to topic
    IEnumerator textEnum = foundTexts.GetEnumerator();
    while (textEnum.MoveNext())
    object text = textEnum.Current;
    topic.PageReferences.Add((InDesign.Text)text, InDesign.idPageReferenceType.idCurrentPage, System.Reflection.Missing.Value, System.Reflection.Missing.Value);
    I got the following exception (translated).
    text is not an InDesign.Text object (Interfaces doesn't match)
    So the question is what object type should I use to cast each object resulting by calling the Document's FindText method.
    Every suggestion will ve very welcome.
    Thank You very much.

Maybe you are looking for

  • How can I use the call's list?

    Dear friends, I have some problems with a call I received and with my boss. On my Iphone 4S I can see the list of the last calls. Let's say that I have a 45minutes incoming call from my friend. Looking the detail by the arrow, on the right, I can see

  • Hyperlinks don't work in PDF Form

    We use Acrobat Pro 10 / LiveCycle Desginer to create our fill-able forms to then publish on our website.  Our users can click the form on our webpage, the PDF opens in Chrome just fine and they can fill in the fields.  But when a user trys to click o

  • Error in flat fle load

    Hello, i am trying to load flat file data for some of the selected fields in 2lis_13_vditm infosource. Following error is displayed when tried to preview in the infopackage: Error 8 when compiling the upload program: row 227, message: Data type /BIC/

  • Opening a PDF File from WebDynpro

    Hello Everyone, I have a Webdynpro project and need to create a link on one of the views to display a .PDF document. 1.  Where should I store the PDF document within the webdynpro project? 2.  How do I open the PDF file? I've created a link with acti

  • Keep losing button icons

    A short while ago I had a problem with all apple apps losing their icon pictures (can only see the button) I followed the reply and did a safe mode restart and all came back and was working well. now the only way to get the buttons to display correct