Javascript math.max bug in AE cs5

Sombody please explain to me why the following script:
var test = 0;
test = Math.max (8,26,22);
alert (test);
outputs "22" in after effects CS5.
am i just missing something really simple or is this a bug?
the same code in a browser works fine.

Yes, but it doesn't work in CS5.
I noticed that in CS5 the result of the Math.max function depends on the order of the arguments as well as their values, but I always only use it with 2 arguments so I never really cared.
It looks like each value is compared to the first one, and the value returned is the last argument found that is greater than the first one.
So Math.max(1.5, 4, 3, 2, 1) will return 2 because the arguments following are lower than 1.5
So Math.max(2.5, 4, 3, 2, 1) will return 3 because the arguments following are lower than 2.5
and Math.max(2.5, 3, 4, 2, 1) will return 4 because the arguments following are lower than 2.5
So it's safer to do what Dan suggested and break the max calculations with a loop. something like:
var values = [ ... an array of values ... ];
var maxValue = values[0];
for (var i=1; i<values.length; i++)
    maxValue = Math.max(maxValue, values[i]);

Similar Messages

  • DateTimeAxis min/max bug? Problems with consistent padding. Date Wrapping.

    I have been working on a problem with a BarChart object that I've created using dynamic data.
    My primary issue is that I can't seem to get the proper min/max values to set for the chart.
    To solve this I manually found the min and max of the data set of Dates and set the min and max of the chart. This allowed me to finally see all the floating custom bars (each bar is rendered with a user set fill), however now if I have a bar that extends over a year change the horizontal axis labels do not wrap the date properly, so instead of 2/10 (feb 2010) being the last date, 12/09 (dec 2009) is the last date.
    I've been trying to dynamically adjust the padding based upon a change event, but so far to no avail. Partially I think because I'm not sure which event for the function to fire on.
    private function dateAxisGen(r:Array):void {
                    var min:Number = r[0].startTime.time;
                    var max:Number = r[0].endTime.time;
                    const PAD:Number = 2;
                    const MILLISEC_IN_MONTH:Number = 2629743830;
                    const MILLISEC_IN_WEEK:Number = 604800000;
                    const MILLISEC_IN_DAY:Number = 864;
                    for (var i:int = 1; i < r.length; i++) {
                        var o:OperationXT = OperationXT(r[i]);
                        min = Math.min(o.startTime.time, min);
                        max = Math.max(o.endTime.time, max);
                    // Calculates the maximum range, then adds an appropriate
                    // padding to the chart via extra time. TODO
                    /* var range:Number = max - min;
                    if(range >= MILLISEC_IN_MONTH) {
                        dAxis.padding = (MILLISEC_IN_WEEK/1000000)/PAD;
                        dAxis.padding = (MILLISEC_IN_WEEK/1000000)/PAD;
                    } else if(range >= MILLISEC_IN_WEEK) {
                        dAxis.padding = (MILLISEC_IN_DAY)/PAD;
                        dAxis.padding = (MILLISEC_IN_DAY)/PAD;
                    } else {
                        dAxis.padding = PAD;
                    dAxis.minimum = new Date(min);
                    dAxis.maximum = new Date(max);
    this, however, does not adjust the padding properly when an operation is removed from the list. Not to mention I still have the date wrapping error. It gives me the following error:
    Cannot access a property or method of a null object reference.
        at mx.charts::AxisRenderer/measureHorizontalGutters()[C:\work\flex\dmv_automation\projects\d atavisualisation\src\mx\charts\AxisRenderer.as:2244]
        at mx.charts::AxisRenderer/calcRotationAndSpacing()[C:\work\flex\dmv_automation\projects\dat avisualisation\src\mx\charts\AxisRenderer.as:1858]
        at mx.charts::AxisRenderer/adjustGutters()[C:\work\flex\dmv_automation\projects\datavisualis ation\src\mx\charts\AxisRenderer.as:1534]
        at mx.charts.chartClasses::CartesianChart/updateAxisLayout()[C:\work\flex\dmv_automation\pro jects\datavisualisation\src\mx\charts\chartClasses\CartesianChart.as:2239]
        at mx.charts.chartClasses::CartesianChart/updateDisplayList()[C:\work\flex\dmv_automation\pr ojects\datavisualisation\src\mx\charts\chartClasses\CartesianChart.as:1366]
        at mx.core::UIComponent/validateDisplayList()[E:\dev\gumbo_beta2\frameworks\projects\framewo rk\src\mx\core\UIComponent.as:8065]
        at mx.managers::LayoutManager/validateDisplayList()[E:\dev\gumbo_beta2\frameworks\projects\f ramework\src\mx\managers\LayoutManager.as:663]
        at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\gumbo_beta2\frameworks\projects \framework\src\mx\managers\LayoutManager.as:736]
        at mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\gumbo_beta2\frameworks\ projects\framework\src\mx\managers\LayoutManager.as:1069]
    Any help with my problem would be greatly appreciated.
    ADDITIONAL INFO:
    Alright, so I've discovered that the ONLY time the date wrapping error occurs is when the axis labels contain only the month and year, any other time it places it properly.
    Does anyone know where I can report this bug?

    Perre wrote:I'm used to being able to pick one or a couple of songs and then adding it a specified playlist. Is this impossible in sonata?
    It's clearly not impossible, just different than you expect. Create your playlist as you want it to appear in the Current tab (meaning don't dump every single song from your library in there, just the ones you want) and then save the playlist.
    Perre wrote:And if I try to play the m3u file created (the one with every song listed) through freevo I get a message that the directory is empty. What am I doing wrong??
    Look at save_absolute_paths_in_playlists in your mpd.conf.

  • Having the same text resize bugs in Fireworks CS5

    Yes, that's right, the same terrible resizing bugs, that I have complained about directly to Adobe MULTIPLE times have not been fixed.
    Now we are told there is no patch coming to windows for CS4. Problem still happening. And its not just me.
    So now I downloaded CS5 and HAD THE SAME ISSUES!
    Seriously Adobe, sort yourselves out.
    At my blog here, you can see it well documented. Literally the same issue I have occasionally with CS4. UNBELIEVABLY.
    http://allaboutchris.co.uk/blog/2010/bugs-in-fireworks-cs5/
    Adobe, when is it getting fixed?

    I don't have any problem resizing the text with the Scale tool as long as I hold down the Control or shift key while pulling at a corner with the double arrow cursor. If you pull vertically or horizontally you get just the kind of distortion I'd expect. That's not a bug.

  • Trying to learn the Math.max function

    Hello,
    I am trying to figure out how to use the Math.max funtion. Here is my simple code, but it has an error.
    Anyone know what I did wrong here.
    thanks
    function myBiggie(); {
    Math.max(4:Number,19:Number);
    myBiggie();
    babs

    You're welcome.  Here's another version that makes a little more "useful" sense (not making a point, just demo-ing some things)...
    function myBiggie(num1:Number, num2:Number):Number {
         return Math.max(num1, num2);
    var biggest:Number = myBiggie(4,19);
    trace(biggest);

  • Bug Report: DW CS5.5 Crashes Every Time On An Image Map

    I am posting this in lieu of contacting Adobe support. I went to my account to send Adobe a bug report and was told I needed to contact support via phone. That's pretty crappy. As a licensed user who's owned it less than three months, there's no direct path to tell you guys that your software is broken?
    Here's the deal: I am working on an HTML landing page with one image map attached to one image. Literally, every time I make a modification to the code near the image (tied to the image map) then click into the live preview window, Dreamweaver CS5.5 crashes like a 70-year old on a bar of soap on the floor of the shower. It crashes hard. My only relief is to save the file before clicking into the live preview window. That's my only workaround to the problem.
    But I'm left amazed that I can crash it every single time over an image map, flicking from the code to the preview pane. You would think that at version 11.5, a minor thing like that wouldn't hemorrage the supposed creme de la creme of web design software.
    Here's the code I'm editing that causes it to crash:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
              <?php
              require_once("/var/www/html/c/index.php");
              $recip_name = $subscriber['first_name'].' '.$subscriber['last_name'];
              ?>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link href="/c/print.css" type="text/css" rel="stylesheet" media="print">
    <title>Membership Special - No Commitment</title>
    </head>
              <?php // Google Link Tracking Code ?>
              <script type='text/javascript' src='/c/google-analytics-code.js'></script>
              <?php // End Google Link Tracking Code ?>
        <!-- Source File -->
              <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.9.0/build/reset/reset-min.css">
        <style type="text/css">
                        body {font:normal 14px/1.25em Georgia, "Times New Roman", Times, serif;}
                        h1,h2,h3,h4,h5,h6 {font-weight:bold;color:#333333;}
                        h1 {font:normal 28px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h2 {font:normal 24px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h3 {font:normal 20px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h4 {font:normal 16px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h5 {font:normal 12px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h6 {font:normal  8px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        a, a:link, a:visited, a:active {color:#0055FF;}
                        a:hover {color: #002AFF;}
                        #wrapper {margin:0 auto;width:432px;}
                        #header, #footer {margin:20px auto;text-align:center;position:relative;}
                        #footer {margin:40px auto;}
                        #coupon {position:relative;}
                        #coupon, #coupon img {margin:0 auto;text-align:center;}
                        .personalization {position:absolute;width:100%;text-align:center;text-transform:uppercase;}
                        .printcoupon {text-transform:uppercase;}
              </style>
    <body>
    <div id="wrapper">
    <div id="header">
              <h3 class="printcoupon"><a href="javascript:window.print();">Click here to print your coupon</a></h3>
    </div>
    <div id="coupon">
              <img src="images/19415coupon-01.jpg" width="432" height="432" />          <!-- <div class="personalization" style="left:0;top:818px;"><h1><?php echo $recip_name; ?></h1></div> -->
      <img src="images/19357coupon-02.jpg" width="550" height="602" usemap="#imagemap" class="dontprint"/>
    </div>
    <div id="footer">
              <h3 class="printcoupon"><a href="javascript:window.print();">Click here to print your coupon</a></h3>
    </div>
    </div>
    <map name="imagemap">
              <area coords="29,69,521,197" shape="rect" href="javascript:window.print();">
              <area coords="29,212,521,339" shape="rect" href="http://www.google.com" target="_blank" onClick="recordOutboundLink(this, 'Landing Page', 'http://www.google.com');return false;">
                        </map>
    </body>
    </html>

    Bug Report and Feature Request https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • New version 9.0.1 on Windows 7 has a problem running JavaScript math iterations.

    Dialog Error Box reads:
    A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script: http://www.classictesla.com/java/javatc/script/JTC_geotc.js:1299
    The above dialog has never come up before. This program ran fine forever and has not changed. With Firefox 8, the program ran in 0.3 seconds. IMMEDIATELY as I allowed the browser to upgrade to 9.0.1, the program is now not working.
    About 1000 people use this program. Knowing how slow fixes can be, I have to inform them not to allow FF to upgrade to version 9. Really sucks as I've been a FF fan forever.
    If you go to that website, click the "Load Sample Coil" button, then scroll down and click the RUN JAVATC button, you'll see the problem
    If there is a problem with the script, why only now after so many years of running? I can run it just fine on version 8. If there's something I can do on my end, I would love to (just tell me what the problem is).
    My guess = "version 9 is limiting the number of iterations a script can run". This code use to run in 0.3 seconds and now is just hung. A very sad day for me. I guess I have to figure out how to go back to old version 8.

    Only Firefox 9 seems to have that problem. Firefox 8 and Firefox 10 (beta) and later work. It helps a bit if I disable javascript.options.methodjit.content, but then it still takes 4 seconds compared to 0.2 or 0.3 seconds with the other Firefox versions. So that looks like a bug with the JIT compiler.

  • Found a bug in Photoshop CS5 Extended

    I didn't know where to report a bug so that's why i decided to do that here.
    When you enabled the rulers in PSE CS5 and you use the keys 'ctrl' + '+' to zoom in the rulers won't redraw and rescale.
    This is really annoying because i use the rules really much.

    Thank you for the information.
    I will give it a try.
    Works for me!
    Try resetting your preferences as described in the FAQ.
    http://forums.adobe.com/thread/375776?tstart=0
    You either have to physically delete (or rename) the preference files or, if using the Alt, Ctrl, and Shift method, be sure that you get a confirmation dialog.
    This resets all settings in Photoshop to factory defaults.
    A complete uninstall/re-install will not affect the preferences and a corrupt file there may be causing the problem.
    >

  • Bugs in photoshop CS5

    Hi,
    Using Photoshop CS5 > Smudge Tool
    When smudging any object inwards, it introduces weird colors, darken the pixels as well. I have tried using different brushes, and changing all the options but no avail. I need to know whether if I'm doing wrong.
    Secondly, while transforming any object (Ctrl+T) if I right click, I find some useful options disabled (Distort, perspective, Warp and Content-Aware scale)
    Thanks in advance for any help
    Regards

    Can you give a screen shot of the first "bug"?
    The second one may be due to limitations of some image modes. What  mode are you dealing with?

  • Color manager bug in illustrator cs5

    i try to change objects colors via the color manager with a cmyk code for the new color. the color of layers i changed already changes while i'm changing the other layers. It takes 5-6 time before the right color stay. why? is it a bug? i would like to set the same color for all layers ...thanks

    Confirmed this is being generated entirely in CS5. I opened the font Sabon. I created a text box. I pasted in some generic type I had just made in text edit. I changed the font to Sabon and the paragraph to justify. I saved and closed the document and closed Illustrator. I closed Sabon and opened Sabon from another foundry. I opened Illustrator and opened the document. All looked good. I duplicated the text box over and outlined the type. I went into the font manager and closed Sabon. I opened the original Sabon. DING! Type reflow. I saved as a second document. I copied the outlined type and closed the document. I opened the original document (note the original font is open). No problems. I paste the outlined type (type outlined with the wrong version of the font active) and it lands exactly in place. I open the second document. The type that reflowed now gives me the stupid message about another version of Illustrator screwing it up. I hit OK and the type reflows back to the way it is supposed to be.
    This proves that the kerning changes weren't due to differences between the fonts. This proves that Illustrator CS5 has a MAJOR type engine bug that could easily spell disaster in production.

  • Bug Fixes in CS5

    Does anyone know where a list of CS5 bug fixes are?  The new features sound nice, but I'm very interested in finding out if the things I experienced in CS4 that did not work are resolved.  I had DV-AVI files from a client that were layered along with a few graphic layers that were all PDF files that keyed over the video layers.  When I tried to preview the final project prior to writing to tape, the result was messed up.  The watermark client logo in the corner would flash from it's semi-transparancy to full opaque and off during cross dissolves between video layers below (in a few places).  Funny thing is it would play decent directly on the timeline, but that problem, and a few other issues, appear in the rendered version.  I have the Matox Mini02 and this was a Matrox NTSC 480 sequence.  At any rate, I cannot find a list of bug fixes anywhere.  Know whre one is?  Thanks.

    shooternz wrote:
    Ah Dennis...
    I was trying to sell him up to CS5 (sans Matrox) ...and you dropped the ball on me
    Hey thanks.
    I think the community of creatives have really embraced CS5 as a whole and its doing really well. We could always use one more though...
    Matrox is still a valued partner and I was noodling today with their CS5 compatible MXO2 solution where they accelerate some more effects.  If you're just looking for performance though, the idea that you NEED hardware is probably a thing of the past.  Many users are pretty blown away with what they're getting out of a well-equipped CS5 system.
    All around, its good news for users and the creative community.
    Dennis

  • Another bug - CS4 to CS5 Layer Drag

    I've repeated this on two different MacPro/Intel computers running Leopard 10.5.8.
    We prefer to use ContactSheet II in order to make contact sheets for import into InDesign and then printing through ColorBurst RIP. As mentioned in another thread, the best workaround offered was to run CS5 in 64-bit and run CS4 when needing 32-bit-compatible functionality such as this.
    We also use ContactSheet II to make contact sheets for printing CD case inserts, and this is how I discovered this particular anomaly.
    I have my layered master TIF file open in CS5 which is where I want to place my contact sheet and then print. The file is 5.4 x 4.65" @ 300ppi, 8bits/channel.
    I've just made a contact sheet in CS4 at 5 x 3.5" and the result is @ 300ppi, 8bits/channel.
    There are two ways to quickly move this into my CS5 file:
    Command-click on the image and drag into my CS5 image window - or - select all in CS4 and paste in CS5.
    After doing this, the new layer (regardless of the method of moving it into CS5) is minute in size, actually 1.2 x 0.84" @300ppi.
    The workaround was to save the contact sheet from CS4 and then open that file in CS5 and the size is not affected.
    Again, this was repeated on another computer, but I have no clue as to why this is happening but it appears to be a bug. I'm aware I can just do the whole operation in CS4 from start to finish.
    Any thoughts on this?

    Thanks Jeff - ya,sorry, I should've specified. I'm running Win 7 64-bit and I have Production Premium CS4 on the system now. Ideally I would deactivate and uninstall it before I load CS5.5 Production Premium.
    My only reasoning is to save on SSD space. Is there any reason to keep CS4 on the machine, other than possible problems with CS5.5?
    Thanks again for your reply Jeff.

  • Persistent bug in Photoshop CS5

    Is anyone having problems with loading a large number of files into  Photoshop cs5?
    I have a Mac Pro 2.8 8-core 2008 model, osx 10.6.4, and a gtx 285  graphics card and 16gb ram.
    Every time I try to open a large series of photos (not huge files but,  say, 100 files or so) in Photoshop cs5, the computer screen goes into a  flickering glitch and everything freezes. The only way out is to turn  the computer off.
    This happens every time.
    It doesn't happen with cs3, which is also on the same machine.
    Can anyone please advise on whether this is a cs5 bug or perhaps a  mismatch with my gtx 285, or even having both versions of Photoshop on  the same machine?
    Thanks.

    Apple put out an update to fix this exact problem, which they introduced in MacOS 10.6.4.    How is that "one company blames another"?
    Either their update didn't really fix the problem, or there was a problem with the install of their update on your system.
    Applications cannot cause the sort of error you are describing -- only the driver or hardware could cause that.
    Your next step is to report this to Apple, and see if they can help you figure out if the graphics update was installed correctly.
    If it is installed correctly, then one of the major bugs was not fixed with the update, and Apple will have to address that.
    In the short term, you can minimize the likelihood of this occurring by disabling OpenGL drawing in Photoshop (and thus minimizing use of the broken OpenGL code in the OS graphics drivers).  But that will not completely eliminate the problems, because the OS also uses the GPU for some drawing, and other applications can see the same problems (games were affected worse than Photoshop).

  • I fixed bug at Flash CS5

    i used Flash CS5 for OpenGL game animation
    https://github.com/devmario/VBEngine
    i make uv and vertex data with flash(but not fla parse, only use jsfl)
    flow my order
    transform panel -> scale -> input scale number 10000 -> click document empty area -> scale number changed 10008.8242
    this bug in Mac 64bit
    so i fixed bug
    flow my order
    1.open "Flash CS5.app/Resources/xml/transformpanel.xml"
    2.and edit
    <prop.pair>
    <key>decimalPlaces</key>
    <int type='signed' size='32'>1</int>
    </prop.pair>
    <double>....
    3.change this
    <int type='signed' size='64'>1</int>
    hey adobe plese give me program licence~
    [email protected]

    i used Flash CS5 for OpenGL game animation
    https://github.com/devmario/VBEngine
    i make uv and vertex data with flash(but not fla parse, only use jsfl)
    flow my order
    transform panel -> scale -> input scale number 10000 -> click document empty area -> scale number changed 10008.8242
    this bug in Mac 64bit
    so i fixed bug
    flow my order
    1.open "Flash CS5.app/Resources/xml/transformpanel.xml"
    2.and edit
    <prop.pair>
    <key>decimalPlaces</key>
    <int type='signed' size='32'>1</int>
    </prop.pair>
    <double>....
    3.change this
    <int type='signed' size='64'>1</int>
    hey adobe plese give me program licence~
    [email protected]

  • Apex 4 JavaScript API documentation bug

    Hi,
    JavaScript API documentation have exactly same description for functions
    $f_Hide_On_Value_Item
    $f_Show_On_Value_Item
    >
    Checks an page item's (pThis) value against a value (pValue). If it matches, a DOM node (pThat) is set to hidden. If it does not match, then the DOM node (pThat) is set to visible.
    >
    And also functions have same description
    $f_Hide_On_Value_Item_Row
    $f_Show_On_Value_Item_Row
    >
    Checks the value (pValue) of an item (pThis). If it matches, this function hides the table row that holds (pThat). If it does not match, then the table row is shown.
    >
    I think that is not correct
    http://download.oracle.com/docs/cd/E17556_01/doc/apirefs.40/e15519/javascript_api.htm#CHDHIAJB
    Somehow I recall there has been post about this, but I can not find it.
    Regards,
    Jari

    The description of these functions have been corrected. The latest updated version of this document is now available on the Oracle Technical Network (OTN).
    Thanks for reporting the bug,
    Drue Swadener
    Principal Technical Writer

  • Major font substitution bug in Illustrator CS5

    Hi all,
    This took me a good long time to track down, and since I didn't find any information here and Adobe technical support was no help, I figured I'd post the result. Happy new year.
    Here was the problem. Working in CS5, intermittently we would get font reflow issues. In addition, when going to edit the type boxes with font reflow, we would get the message, "This text was created in a different version of Illustrator. Editing the text may cause some changes to your text layout. Basic formatting will not be affected. Do you want to continue?" Please note it says "different version" rather than "previous version". These files originated and stayed in Ilustrator CS5! If we hit OK, the type would snap back to the original state!!! Worse, if the type was copied and pasted, or anything in character or paragraph styles was edited, it would snap back without ANY warning. Now you see it... now you don't. Major problem in any print environment.
    So here is what I found, and this is a CS5 exclusive. If you are working on a file and have a font set open which includes a font from one foundry, and then opened another document and activated a font set with an identical font from a different foundry (the original font closing), the kerning for the original document (in the background now) would be set to zero (rather than auto) and the font would reflow. If you didn't notice the reflow, and saved the file, well it would create the condition as described above. Of course it isn't ideal to have the font foundry change like that, but bottom line usually you could get away with it... maybe with one or two characters moving slightly. In the new CS5 world, Illustrator decides you really don't need ANY kerning pair information and then helpfully tells you it was a "different" version of Illustrator that caused this. Heh.
    What a mess. Bottom line, make sure your font management application is set to throw warnings when conflicting fonts are opened, and most importantly, leave the original font open! Do not allow the new font to be opened until the conflict is resolved.
    If your font management application does not have this option (Universal Type Server 1 did not), you better upgrade or forget about using Illustrator CS5 in a heavy production environment.
    Adobe, this was a major change and a major headache. You have some explaining to do...

    Confirmed this is being generated entirely in CS5. I opened the font Sabon. I created a text box. I pasted in some generic type I had just made in text edit. I changed the font to Sabon and the paragraph to justify. I saved and closed the document and closed Illustrator. I closed Sabon and opened Sabon from another foundry. I opened Illustrator and opened the document. All looked good. I duplicated the text box over and outlined the type. I went into the font manager and closed Sabon. I opened the original Sabon. DING! Type reflow. I saved as a second document. I copied the outlined type and closed the document. I opened the original document (note the original font is open). No problems. I paste the outlined type (type outlined with the wrong version of the font active) and it lands exactly in place. I open the second document. The type that reflowed now gives me the stupid message about another version of Illustrator screwing it up. I hit OK and the type reflows back to the way it is supposed to be.
    This proves that the kerning changes weren't due to differences between the fonts. This proves that Illustrator CS5 has a MAJOR type engine bug that could easily spell disaster in production.

Maybe you are looking for

  • How can I display a value in a form field

    I have tried using the set_value_as_string and set_value functions functions in query buttons PL/SQL event handler .But then the value is not getting displayed in the field. Could I get any help on this ........

  • Database connection from ALSB

    Hi all, i'm trying to connect to DB from ALSB using execute-sql(). i have created the datasource in the process construction stage, but ALSB fails to locate the datasource during testing. is it mandatory to create the required datasources on domain c

  • Using Left with Charindex in a Select Query

    Hi I hope someone can help me.  I have a field that has text in it for example N00342-01/28 and I am trying to get it to only show N00342-01.  This could in the future be N132245-01/25 for example or N00342-132/28.  What I am trying to show is anythi

  • Problem with PNP customized selection screen

    Hi guys, I have done a report in R/3 system using logical database PNP with customized selection screen. i have 3 parameters as below: 1. radiobutton1 group a for current period, 2. radiobutton2 group a for other period. 3. personnel number. my progr

  • Slide size change when clicking on pdf links (Acrobat 9 pro)

    Hello, I have a problem with an interface mock up I have to deliver to a client. The size of image is changing from a slide to another. For example, when I click on a home button (this button is a link made in acrobat pro, that send to another page o