Dev 6.0: Bug in ReportBuilder (!!!) How to work around ?

Hi !
I have a problem with ReportBuilder. After Arrange->Size Objects
or Arrange->Allign Objects the child object doesn't belong to
paren frame. There is no such thing in Developer 2000. Can
anybody help me how to work around it ? It's practically
impossible to create complicated report.
Thanks in advance.
null

I don't know is it's possible to just search and replace as part of the checkout. We do it the other way around. Each user uses his own directory but for jdev all development is done in /mnt_dev/...
So you map the users development directory to /mnt_dev. this way the path information stays constant and you don't need change the environment.
Timo

Similar Messages

  • I no longer have access to my icloud email and don't know the answers to my security questions. Does anyone know how to work around this to reset my icloud ID without losing my info? I haven't backed up in a year because of this.

    I no longer have access to my icloud email and don't know the answers to my security questions. Does anyone know how to work around this to reset my icloud ID without losing my info? I haven't backed up in a year because of this.

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (123381)

  • How to work around the java runtime bug -The indentation is overridden

    Hello all,
    I generate xml from a servlet and stream to client as the following code. It works fine in my local machine (The xml is indented nicely) but when the war file deployed on a geronimo server 2.0.2. (It uses java 1.5.0_16). The xml streamed out without indentation
                   response.setContentType("application/xml");
                   response.setHeader("Content-disposition","attachment; filename="+fileName);
                   // set up a transformer
                   TransformerFactory transfac = TransformerFactory.newInstance();
                   Transformer trans = transfac.newTransformer();
                   trans.setOutputProperty(OutputKeys.METHOD, "xml");                
                   trans.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
                   trans.setOutputProperty(OutputKeys.STANDALONE, "yes");
                   trans.setOutputProperty(OutputKeys.VERSION, "1.0");
                   trans.setOutputProperty(OutputKeys.INDENT, "yes");
                   trans.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
                   // create string from xml tree
                   DOMSource source = new DOMSource(doc);
                   ServletOutputStream os = response.getOutputStream();
                   OutputStreamWriter w = new OutputStreamWriter(os, "UTF-8");
                   StreamResult result = new StreamResult();          
                   result.setWriter(w);
                   trans.transform(source, result);This is the bug: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6337981 (The indentation is overridden)
    I tried the work around suggested there by using OutputStreamWriter, it doesn't help.
    (I cannot change anything on the server. I have to accept whatever in the server)
    Please help
    Thank you
    Edited by: mycoffee on Jun 10, 2011 8:16 AM

    You have to set the indent level on the factory, see bug #6296446. This only affects 1.5; 1.6 allows you to set the indent level on the transformer, as you did (and for cross-version compatibility, setting it on both doesn't hurt).
    transfac.setAttribute("indent-number", Integer.valueOf(4));

  • How to work around audio sounding worse in Logic?

    Hi Folks
    We just bought Logic 8 for its MIDI, composing/scoring and loop/instrument resources. Have used Nuendo for 5 years, for audio for video, which has included some music creation.
    I did some quick recording/playback audio tests and here's how I hear the results:
    Voice recorded and played back in Nuendo sounds just like live. Voice recorded in Logic and played back in Logic sounds relatively flat and digital. Voice recorded in Nuendo and played back in Logic sounds relatively flat and digital. Voice recorded in Logic, exported as a file and played back in Nuendo sounds just like live voice and like it was recorded in Nuendo.
    So how do you work around the crummy sounding audio in Logic? Is the problem only the audio playback within Logic? Do you compose in Logic, export as files and then mix in another app? If so, which app? Or do you know the export will sound better outside of Logic? Or what other adaptation have people come to?
    Thanks for reading.

    No audio problems with Logic Pro 8 my side. In fact, it is sounding somehow better than Logic Pro 7 and latency is better. 44/48/96 all sounds great! Bus, FX, output, EXS24, etc. etc. -- wonderful stuff.
    Interface wise everything is at my finger tips and I didn't have to do anything to get my control surfaces to work (Mackie). Everything makes sense -- huge improvement over LP7. Really helps me explore being creative.
    So far Logic Pro 8 is an amazing step forward -- good work Apple.
    Thank you Apple.

  • JTable Java 1.6 Bug Progress ??? Work Around ?

    I was just wondering if there was a work around for the following bug on java 1.6 ???
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6568959
    This has been really annoying me because it's a requirement to use JInternalFrame and of course they want to treat the JTable like a spread sheet and edit cells using the keyboard and mouse. Is there some way to fix this really soon ? I was shocked why my program worked so well until I tried java 1.6 JRE and then the focus problems came.

    I was just wondering if there was a work around for the following bug on java 1.6 ???
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6568959
    This has been really annoying me because it's a requirement to use JInternalFrame and of course they want to treat the JTable like a spread sheet and edit cells using the keyboard and mouse. Is there some way to fix this really soon ? I was shocked why my program worked so well until I tried java 1.6 JRE and then the focus problems came.

  • How to work around a 9546149 bug?

    Hi,
    It is known, that we can't use, for now, the construct adf.userSession.userPrincipalName for a bind variable. adf.securityContext.userName doesn't work as well, though! The error is oracle.jbo.expr.JISyntaxError: Variable securityContext not recognized.
    Is there some another EL, that will be resolved to an authenticated user, not conciderring a source code case (i.e. a method returning ADFContext.getCurrent().getSecurityContext().getUserName() )?
    TIA,
    Y.

    Had to use adf.*context*.securityContext.userName.

  • How to work around dataflow order in front panel simulation?

    I'm on the steep part of the Labview learning curve.  The attached vi is my attempt to simulate the user interface of the product I'm working on.  I'm posting because every workaround I dream up to deal with Labview's dataflow architecture results in more complexity.  I think I'm putting bandaids on top of bandaids!
    If you run the vi you should see what I'm trying to accomplish.  The 5 Mode Select buttons send the machine into one of 5 available modes, implemented with a case structure.  Delay blocks within the cases simulate how the machine will react.  Random number generators simulate occurrence of fault conditions.  RS flip flops simulate momentary contact buttons.
    Some rules:
    - pushing a mode button should instantly switch the machine to the selected mode (my vi doesn't work that way).
    - probe test mode should execute just once.  My vi simulates this one-time operation by latching the test result - kludge!
    - if a fault occurs, it can only be cleared by "power cycling" (stopping and restarting the vi)
    Questions:
    1) is there an simpler way to simulate momentary contact buttons?
    2) is there a simpler, better way to select the cases?  I'd like to automatically go from Test to Stop after a single execution of the test case.
    3) what is an efficient way to initialize the mode indicators?  They 'remember' their last state through a power cycle.
    Thanks for any and all insight!
    Jeff
    Jeff
    Climbing the Labview learning curve!
    Sanarus Medical
    Pleasanton, CA

    An alternative method for the UI is to use the radio buttons control. You can customize the standard one to use the square buttons, and I believe this would give you the equivalent effect that you're doing with the lights. See attached VI along with customized control. For the customized control I took a standard radio button control, opened it for editing, and replaced the circular booleans with square buttons. The radio button control is an enumeration, with the enumeration items being the labels of the individual controls (not the text inside the buttons). The control is set so that the labels on the individual square buttons is not visible.
    Attachments:
    Event Structure Example2.vi ‏45 KB
    Control 1.ctl ‏6 KB

  • How to work around absolute pathnames in .jaxrpc?

    We have a .jaxrpc file describing a web service.
    In the project navigator, right-click on the service and select "Regenerate web service from WSDL", works fine.
    Now if I check out the source from SVN into a different directory, it won't work -- the error is "The given WSDL location <blah> is not in the current source path.". The problem item is
    <value n="WS_WSDL_LOCATION" v="/opt/foo/projectname/public_html/WEB-INF/wsdl/"/>
    We do want to check out to a different directory because we have some dev machines shared by more than one user, each of whom has their own home directory and checked out files.
    Is there some way to use a relative pathname here, or else to do a search&replace on checkout from SVN?
    Using JDEVADF_11.1.1.3.PS2_GENERIC_100408.2356.5660 on Linux.
    Thanks.

    I don't know is it's possible to just search and replace as part of the checkout. We do it the other way around. Each user uses his own directory but for jdev all development is done in /mnt_dev/...
    So you map the users development directory to /mnt_dev. this way the path information stays constant and you don't need change the environment.
    Timo

  • How to work around 200 device limit in AXL ?

    When you send a SOAP request (SelectCmDevice) to retrieve a list of all phones, it only returns 200 devices max. My question is how do you retrieve more than 200 phones. Is there a way to loop through them. If you send multiple requests, does it know that these requests are for subsequent set of 200 phones -- as opposed to sending the same 200 devices?

    No audio problems with Logic Pro 8 my side. In fact, it is sounding somehow better than Logic Pro 7 and latency is better. 44/48/96 all sounds great! Bus, FX, output, EXS24, etc. etc. -- wonderful stuff.
    Interface wise everything is at my finger tips and I didn't have to do anything to get my control surfaces to work (Mackie). Everything makes sense -- huge improvement over LP7. Really helps me explore being creative.
    So far Logic Pro 8 is an amazing step forward -- good work Apple.
    Thank you Apple.

  • How to work around System Generated ID's - GUID?

    Hello Experts:
    We are facing a challenge in our CPROJECTS and CRM modules.
    All the objects are getting assigned a unique 32 character system generated ID which is linked to the actual object. This makes navigation and troubleshooting even more complex.
    My questions are these:
    1. What is the significance of this methodology of assigning System generated ID's (GUID's)? Why do we need these system generated ID's?
    2. How can we convert the objects from internal ID format to external ID format? Is there a function module that would allow us to do that?
    3. All the business content extractors are designed to extract in the internal ID format. What do we do to configure the extractors to use external ID format.
    Any helpful answer will be rewarded.
    Thanks
    MP.

    Hi,
    did you find a workaround concerning this topic? Having the same issue in SRM - BW implementation
    kind regards,
    Steven

  • [ADF-swing] ViewObject blocks EDT, how to work around?

    I'm working with JDeveloper 11.1.1.5.
    I have a query-based VO that takes a long time to execute.
    While the Statement runs I want to show a Waiting Dialog showing an animated GIF so that the user knows the application is working and not hung.
    When I do the query directly then my WaitingDialog shows the Animation as expected. The following runs in a thread of ist own:
    ViewObject viewObject = myApplicationModule.findViewObject("MyViewObjectsName");
    PreparedStatement s = ((DBTransaction)_am.getTransaction()).createPreparedStatement(viewObject.getQuery(),0);
    try{
      s.executeQuery();
    }(catch SQLException ex){
    ex.printStacktrace();
    when I Change this to execute the vo instead the Dialog hangs:
    ViewObject viewObject = myApplicationModule.findViewObject("MyViewObjectsName");
    viewObject.executeQuery();
    how do I configure ADF so that it does not block EDT?
    bye
    TPD

    An alternative method for the UI is to use the radio buttons control. You can customize the standard one to use the square buttons, and I believe this would give you the equivalent effect that you're doing with the lights. See attached VI along with customized control. For the customized control I took a standard radio button control, opened it for editing, and replaced the circular booleans with square buttons. The radio button control is an enumeration, with the enumeration items being the labels of the individual controls (not the text inside the buttons). The control is set so that the labels on the individual square buttons is not visible.
    Attachments:
    Event Structure Example2.vi ‏45 KB
    Control 1.ctl ‏6 KB

  • How to Work-around Fixed Border Image used in the template?

    Thanks everyone for the responses to the CSS question posted.  Here's the real problem I was trying to solve, I'd appreciate your learned thoughts and suggestions.
    My son was a good visual eye and he's built a website for a part-time business he's created at college using a downloaded template.  But, he used and modifed the  PHOTOSHOP version and then saved the web sliced output.
    http://www.techcheckuva.com
    Decent looking but all jpg slices so unreadable by Google, etc.  I found the original HTML version of the site and was testing it.
    http://www.techcheckuva.com/ComputerTips/FW264/html/index.html
    But the site "breaks" when the text content is longer than the preset areas, as in:
    http://www.techcheckuva.com/ComputerTips/FW264/html/index1.html
    See -- the border images on the LEFT and RIGHT side move but do not stretch -- leaving white gaps.  Also, the center grey b
    Question: how do I FIX this design so the WHITE Center text area can STRETCH LONGER than the deafult length?
    Is this complex?
    Thanks all, so much.

    Drop shadows can be built into the #Container  background-image like so.
    Remove restrictive height values from your CSS.  Use default CSS positioning (which is no positioning at all) for the primary layout.  All those APDivs are going to drive you nuts.  Alignment can best be achieved with CSS  margins, padding and floats.  Below is a quick and dirty example.
    http://alt-web.com/TEMPLATES/3-col-white-gray.html
    Best of luck,
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • How to work around issues with tablet PC input service

    On some systems the Tablet PC Input Service is running and it interferes with JavaScript based UI frameworks (jQuery, Kendo). Is there any solution to fixing this issue through code? The alternative would be to tell every user to check for this service to be running and turn it off....which also turns off support for Wacom tablets, smartboards and a bunch of other stuff.
    Works fine in IE, but also fails in Chrome, so it is not only Firefox. And it is not only one app, there are reports of different browser based apps failing.
    Any advice is greatly appreciated.

    Yes, this also happens on the old version. It is tied most likely to the Tablet PC Input Service. I tried it also with a touch interface and there some stuff works now, but others does not. When using FF with a touch interface I wonder how well that works out.
    I saw the other post before, but there was no solution given either. The only workaround so far that I found is to stop that Windows service, but then some hardware such as the graphics tablets won't work any longer.
    One more reason why touch UIs are currently total flops....but that is a different discussion.

  • How To Work Around Set Up Issue With Time Machine?

    When I attempt to set up an external drive for Time Machine I get this: You do not have appropriate access privileges to save file “.001b63b53d7a” in folder “Time Machine Backups”. I have searched for this file and cannot find it. I have deleted any and all Time Machine Backup files.

    I worked through the first four on the work around and this is what the terminal screen looks like:
    Last login: Sun Jan 11 20:59:31 on ttys000
    Macintosh:~ Brokenarrow$ cd /Volumes
    Macintosh:Volumes Brokenarrow$ ls -al
    total 12
    drwxrwxrwt@ 5 root admin 170 Jan 11 20:01 .
    drwxrwxr-t 40 root admin 1428 Dec 28 15:42 ..
    lrwxr-xr-x 1 root admin 1 Jan 10 06:29 Macintosh HD -> /
    drwxrwxr-x 15 Brokenarrow Brokenarrow 1020 Jan 11 19:56 Time Machine Backups
    drwx------ 1 Brokenarrow Brokenarrow 2048 Jan 11 20:10 mikesmail
    Macintosh:Volumes Brokenarrow$
    I tried to determine which was the back up volume name (tried Time Machine, Time Machine Backups) but no luck. Any suggestions? Thanks for your patience.

  • I can't export .oam files any more. What gives? A big bad bug? Anyone got a work around?

    I was doing great with Edge until last night...when the .oam publishing feature vanished. I'm pasting small animations into my Muse pages, so this was a great thing, in theory, anyway. Tried restarting the app, tried restarting the computer, always opened the .an doc to work on the project. Thing is, it works once in a while...like once in 20 tries. Why? What's the deal? This app just not ready for the real world yet?

    Hi, sdotkling-
    A couple of questions:
    Are you saving first?  We don't allow publish for new, unsaved files.  (It seems like you're working on an an file first)
    Do you have any errors in the warnings panel?  Look in the lower right hand corner in the Stage panel.
    If neither of these are the case, please post your entire project file on a file sharing site so that we can take a look at what you're trying to do and advise you.
    Thanks,
    -Elaine

Maybe you are looking for

  • Oracle 10g Installation Problem on SUSE Linux 10

    Hello Friends, I want to install SAP Solution Manager 7.0 with Oracle 10g on SUSE Linux 10.0. But, while starting the Installation i am getting following Errors. Starting Oracle Universal Installer... Checking installer requirements... Checking opera

  • Issue with one Select Query in  PBS Archive Translation Tool

    Hi All, Iam having X mark symbol against the select query from EKET table This is the select query in my actual program and when i convert this using PBS Archive Translation Tool i have a X mark against this select query SELECT SINGLE BANFN FROM EKET

  • Cannot open tabs with keyboard command or cicking on the + tab

    Using Cmd+T of clicking on the + tab in tabs doesn't open a tab. I can open a tab by Cmd+clicking on a link on a webpage but not independently.

  • Linking Session Model with query model

    Hi All, How do we implement a basic Session Model? Can we use a Session Model similar to Query Model and bind all the columns/attributes with that of ViewBean's ? Does Studio support that. We have a requirement wherein we need to manipulate the field

  • How much disk space is needed for scratch files?

    I hope I am allowed one dumb question.  If so, I would like to know how much disk space should I allow when setting scratch files, if my MTS file is 16GB?  I am using Premiere Pro CS5 on a PC with Windows 7 Pro-64 bit.