CEILING Function in Analytics

I am trying to do this in Reporting/Analytics as well, and I can ROUND properly but I cannot CEILING. Here is my expression in my report:
CEILING(Custom Object 2 Custom Metrics".S_NUM_0), 1)
Why wouldn't this work? I want to CEILING up to the next $0.10. Or the next $0.05.

The Ceiling function rounds any non-integer numerical value to the next highest integer value. If the value is an integer to begin with, then Ceiling will return the same value.
Example: Ceiling(65,667,499.24) = 65667500.00
Your expression doesn't work because Ceiling does not accept any additional parameters (,1) and won't round decimal values, it only returns integers.
ROUND function does accept a parameter telling it the decimal precision, so this may be a better option.

Similar Messages

  • Ceiling Function in Expression Builder in an Update Field Value Workflow

    I'm trying to use the "ceiling" function in an update value workflow. I want to multiple the number value in field A by the currency value in field B and have that new value display in field C. But I also want to round up or ceiling the resulting value to the nearest $0.10. Here is what I want to do, but this is not working. PLEASE HELP.
    EXPRESSION BUILDER FUNCTION
    FIELD C = CEILING((FIELDA*FIELDB)+FIELDB,0.1)
    Edited by: gprobertson on Feb 15, 2010 10:20 AM

    Hi, I dont think this function is supported in workflow expressions. It is only available in reporting / analytics. Even there it only Rounds a noninteger numerical expression to the next highest integer. Even the function round doesnt seem to be available in workflow functions list
    -- Venky CRMIT

  • Combine floor() and ceiling() functions

    I need to combine the functionality provided by both floor() and ceiling() functions using
    normal pl/sql function or proc. and without using any built-in functions in it.

    And wtf is the purpose of not using 'any built-in functions in it'?

  • Ceil function

    i have amt field of type p decimals.
    i want next higher value of this field
    like if in amt field i have value 5.3, i shuld get 6.
    for that i want to use ceil function. i m writing program line code in smartform
    it is not acception ceil function. tell me how to do it.

    Hi nidhi,
    change your type from P to F,
    then your problem sloves.
    regards,
    seshu.

  • How to send datas properly to Google Analytics (ANE-Google-Analytics)

    Hello,
    I meet a problem when I'm using the native extension created by Alessandro Bianco : ANE-Google-Analytics. I tested this code many times, in the context of AIR mobile application, but I tested it without any success to add new datas to Google Analytic history. I'm really connected to internet properly.
    Moreover I think that I've made my functions as required by the author : Can you look at my code below to detect some errors to communicate with Google Analytics ?
    <s:TabbedViewNavigatorApplication
        xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        creationComplete="creationCompleteHandler(event)"
    >
        import eu.alebianco.air.extensions.analytics.Analytics;
        import eu.alebianco.air.extensions.analytics.api.ITracker;
        import flash.utils.clearInterval;
        import flash.utils.setInterval;
        import flash.utils.setTimeout;
        public var ganalytics:Analytics;
        public var gtracker:ITracker;
        protected var i:int = 1; // Debug
        protected static const ANALYTICS_ID = "My UA code is here";
        protected function creationCompleteHandler(event:Event):void
            // I launch the tracker :
            ganalytics  = Analytics.getInstance();
            ganalytics.dispatchInterval = 5; // Interval for connecting : 5 seconds
            // I begin to use the tracker :
            GtrackerSessionUsing("RecordingView","HomeView",true);
         * GtrackerConnecting
         * @description : Open connection to Google Analytics, and create instance for a tracker
         * @argument : actionName = "RecordView" or "RecordEvent"
         * @argument : valueName = Name of the view or name of the event to record
        public function GtrackerSessionUsing(actionName:String, valueName:String, createConnection:Boolean=false):void
            gtracker = ganalytics.getTracker(ANALYTICS_ID);
            gtracker.startNewSession();
            if(etablirConnexion==true)
                // Tracking des views :
                var compteur:int = 0;
                var intervalGtrackerCnxOuvrir:uint = setInterval(function():void{
                    counter++;
                    trace("gtracker ="+gtracker);
                    if(counter==50){ // Try to connect - only - 50 times
                        trace("GoogleTracker fails to connect !");
                        clearInterval(intervalGtrackerCnxOuvrir);
                    else if(gtracker!=null){
                        trace("GoogleTracker success to connect !");
                        GTrackerRecordAction("EnregistrerView","HomeView");
                        clearInterval(intervalGtrackerCnxOuvrir);
                    else{
                        trace("Trying to connect to GoogleTracker... (itérate #"+counter+")");
                        gtracker = ganalytics.getTracker(ANALYTICS_ID);
                        gtracker.startNewSession();
                },5000); // All 10 seconds : iterate a new connection test
        protected function GTrackerRecordAction(actionName:String, valueName:String)
         * @description : Use the tracker of the Google Analytics connected account, all of Views can call this function with this model of code: parentApplication.GTrackerRecordAction(...)
         * @argument : actionName = "RecordView" or "RecordEvent"
         * @argument : valueName = Name of the view or name of the event to record
            if(gtracker!=null)
                switch(actionName){
                    case "RecordView":
                    trace("GoogleTracker : gtracker.buildView("+valueName+").track()");
                    gtracker.buildView(valueName).track();
                    break;
                    case "RecordEvent":
                    switch(valueName){
                        case "event1":
                            gtracker.buildEvent("click", "button").withLabel("play").withValue(10).track();
                        break;
                        case "event2":
                            gtracker.buildEvent("click", "button").withLabel("stop").track();
                        break;
                        case "event3":
                            gtracker.buildEvent("app", "quit").track();
                        break;
                    break;
    Best regards.

    Youtch,
         I'm not sure exactly what your issue is, but I was unable to connect and looked at your code, modifying it for my purposes and it fixed my code. Hopefully it can help fix yours.
         I did notice one thing as I went through, however:
    You use
       var compteur:int = 0;
                var intervalGtrackerCnxOuvrir:uint = setInterval(function():void{
                    counter++;
    The compteur does not match the counter variable. It appears a problem with Franglais is the issue here.
    In the event it may help, here is the code I used:
    In my creationComplete function:
    GoogleAnalytics.initialize("UA-47303719-1");
    Here is the code in my app.xml
    <extensions>
            <extensionID>eu.alebianco.air.extensions.analytics.NativeGATracker</extensionID>
        </extensions>
    And here is the class I created to use the ANE:
    package ANE.NativeGATracker{
         import flash.utils.clearInterval;
         import flash.utils.setInterval;
         import eu.alebianco.air.extensions.analytics.Analytics;
         import eu.alebianco.air.extensions.analytics.api.ITracker;
         public class GoogleAnalytics{
              static private var _analytics:Analytics;
              static private var _tracker:ITracker;
              static private var _supported:Boolean;
               * There is no need to instantiate this class
              public function GoogleAnalytics(){
              * Initialize the GoogleAnalytics object.. or return false, if Analytics isn't supported
              static public function initialize(ANALYTICS_ID:String):Boolean{
                   if(Analytics.isSupported()){
                        _analytics  = Analytics.getInstance();
                        _analytics.dispatchInterval  = 5;
                        establishTracker(ANALYTICS_ID);
                        _supported   = true;
                   }else{
                         _supported  = false;
                   return _supported;
              * Establish the tracker connection
              * @description: establishes the tracker connection... reattempt every 10 seconds, up to 50 times
              static private function establishTracker(ANALYTICS_ID:String):void{
                   _tracker  = _analytics.getTracker(ANALYTICS_ID);
                   _tracker.startNewSession();
                   var counter:int    = 0;
                   var establishInterval:uint  = setInterval(function():void{
                        counter++;
                        trace("Google Analytics tracker = " + _tracker);
                        if(_tracker != null){
                             trace("GoogleAnalytics tracker connected!");
                             _tracker.buildView("Launch").track();
                             _tracker.buildView("Home").track();
                             clearInterval(establishInterval);
                       }else if(counter == 50){
                             trace("GoogleAnalytics failed to connect.");
                             clearInterval(establishInterval);
                       }else{
                             trace("Trying to connect to Google Analytics... attempt #" + counter);
                             _tracker  = _analytics.getTracker(ANALYTICS_ID);
                             _tracker.startNewSession();
                   }, 5000);
             * Analytics object
              static public function get analytics():Analytics{
                   return GoogleAnalytics._analytics;
              * Tracker object
              static public function get tracker():ITracker{
                   return GoogleAnalytics._tracker;
              * Returns true if analytics are supported, but false if they are not. Check this before any use of the tracker or analytics objects
              static public function get supported():Boolean{
                   return GoogleAnalytics._supported;

  • Error While using ToDate Function

    Hi All,
    I am getting below error while creating one report in OBIEE. Please help me in this regard as this is bugging me from long time.
    View Display Error
    Odbc driver returned an error (SQLExecDirectW).
    <<Picture (Metafile)>> Error Details <javascript:void(null)>
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 435222656. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058]
    A general error has occurred. [nQSError: 22047] The Dimension used in TODATE
    function must be referenced in the query. (HY000)
    Kindly help me resolve this issue.
    Thank you,
    Yugendra.

    HI User,
    Refer this link
    http://siebel.ittoolbox.com/groups/technical-functional/siebel-analytics-l/nqserror-22047-the-dimension-used-in-ago-function-must-be-referenced-in-the-query-2692576

  • Function or trigger to calculate cost

    Hi,
    I have a question regarding a function or trigger. Not sure what to use.
    I have the following table:
    CREATE TABLE STAY_LOG
         LOGID NUMBER(4) NOT NULL,
         FLIGHTID NUMBER(5),
         ARRIVALDATE DATE,
         DEPARTUREDATE DATE,
         COST NUMBER(6),
         CONSTRAINT stlg_pk PRIMARY KEY(LOGID),
         CONSTRAINT fk_stlg_flightid
           FOREIGN KEY (.....)
           REFERENCES ...(...)
    );The cost attribute should be calculated automatically by the following formula: departuredate-arrivaldaten in hrs * hour_cost (hour_cost is retrieved from another table).
    I wrote the following function:
    CREATE OR REPLACE FUNCTION calc_cost2 (fid IN INTEGER)
    RETURN INTEGER
    IS
         hcharge INTEGER;
         duration INTEGER;
    BEGIN
         select ceil((departuredate-arrivaldate)*24) into duration from stay_log where flightid = fid;
         select hr_charge into hcharge from ......................;
         return(duration*hcharge);
    END;That does not seem to work when I insert a value into the stay_log table and call the function calc_cost2 in the column cost.
    Also rather than passing the fid (flightid) as an argument can you retrieve it from the column flightid from the row it is being processed for?
    Any help appreciated.

    Hi,
    I want to add a bit to what Francois has written...
    Probably the best mentioned option is to go for the third one, because of transparency. You will see how the column is populated right in your code and not hidden in a trigger.
    A trigger might be your choice if the inserts are coming from different sources (programs).
    But why not simply include your calculation directly in your insert statement?
    Something likeINSERT into stay_log (...,flightid, arrivaldate, departuredate, cost, ...) VALUES(..., 1, SYSDATE-1, SYSDATE, CEIL(SYSDATE-(SYSDATE-1))*24, ...); shall do it for you.
    Edited by: Guido on Oct 24, 2008 10:49 AM
    Corrected the syntax for the CEIL function.

  • Announcement: Oracle BI, Warehousing and Analytics Summit, Dec. 2-3 2008

    Oracle BIWA Summit 2008, December 2-3, 2008 (www.oraclebiwa.org)
    Oracle World Headquarters, Redwood Shores, CA
    IOUG Business Intelligence, Warehousing and Analytics SIG
    ”Transforming Data To Information For Competitive Advantage”
    Oracle BIWA Summit 2008 is a forum for business intelligence (BI), warehousing and analytics professionals to exchange information, experiences and best practices. With over 75 presentations and workshops and the entire event focused on BI, Warehousing and Analytics (BIWA), you will get the knowledge and information critical to be successful in your work. You will hear experts present novel and interesting use cases of Oracle Database-centric BIWA topics through keynotes, technical talks, hands on workshops, discussion panels and more.
    Call for Presentations & Technical Workshops
    You are invited to submit an abstract for a Presentation (50 minutes) or hands-on Technical Workshop (110 minutes) to the Oracle Business Intelligence, Warehousing, and Analytics (BIWA) Summit 2008 at the Oracle Conference Center in Redwood Shore, CA! See submission instructions and important dates below.
    Oracle Business Intelligence, Warehousing, and Analytics (BIWA) SIG
    The Oracle BIWA Special Interest Group (BIWA SIG) functions as a special interest group of the Independent Oracle Users Group (IOUG). BIWA SIG represents a worldwide association of persons who share a vested interest in successfully deploying Oracle Database-centric BIWA products, features and Options—that is, the Oracle Database “BIWA” platform. Oracle Database BIWA platform includes, but is not limited to:
    * Oracle Database, Oracle OLAP Option, Oracle Data Mining Option, Oracle Partitioning Option, Oracle Spatial Option, Oracle Warehouse Builder, SQL Statistical functions, SQL Analytics, Oracle Text, Oracle Multimedia, regular expression searches, text mining, BI Publisher
    * Query and reporting tools, BI tools and BI dashboards including Oracle Business Intelligence SE, Oracle Business Intelligence EE, and similar tools from Oracle partners and ISVs
    The Oracle BIWA Summit 2008 is designed to accelerate users' success with Oracle products by providing a forum for sharing information and best practices, discovering novel and innovative practices, and exposing issues and limitations concerning Oracle products.
    Keynotes
    Come hear from the industry leaders, visionaries and experts including:
    * Jeanne Harris, co-author, with Tom Davenport, of the best-selling book “Competing on Analytics: The New Science of Winning” (Harvard Business School Press, 2007) and Executive Research Fellow and Director of Research at the Accenture Institute for High Performance Business
    * Ray Roccaforte, Vice President of Data Warehousing and Business Intelligence Platform, Oracle Corporation
    * Juan Loaiza, Senior Vice President Systems Technology, Oracle Corporation
    * Dr. Usama Fayyad, Chief Data Officer and Executive Vice President, Research & Strategic Data Solutions, Yahoo!
    Hands-on Technical Workshops
    Oracle BIWA Summit includes hands-on workshops using provided laptops running the latest release of the Oracle Database and BIWA-related software.
    -Learn from the experts
    -Hands-on opportunities to work with the software
    - 2-hour in-depth hands-on workshops
    Partners and Sponsors
    BIWA partners and sponsors will be exhibiting their products and services at the BIWA Summit 2008. And don’t miss the fast-paced fun Lightning Rounds!
    -Partner and Sponsor Exhibits
    -Evening Reception for all BIWA attendees on Tuesday Night, December 2 sponsored by Partner and Sponsors
    -ISV Partners and Sponsors Lightning Rounds (just before lunch each day)
    BIWA themes include: "Transforming data to information for competitive advantage", and “Better Information Better Results”

    Hi,
    Yes changed,i am just working on the BI Composer part. applied JDEV 13952743 patch then extended domain...by script..
    got some error then rollback jdev patch file then reapplied.
    FYI:
    Applying JDev 13952743 Patch file.
    E:\>cd E:\opatch_top\13952743
    E:\opatch_top\13952743>set PATH=%PATH%;D:\Oracle\Middleware\Oracle_BI1\OPatch
    set ORACLE_HOME=D:\Oracle\Middleware\oracle_common
    set PATH=%ORACLE_HOME%\bin;%PATH%
    set JAVA_HOME=%ORACLE_HOME%\jdk
    set PATH=%JAVA_HOME%\bin;%PATH%
    set PATH=%ORACLE_HOME%\OPatch;%PATH%
    E:\opatch_top\13952743>opatch version
    E:\opatch_top\13952743>opatch apply
    used below command for rollback
    opatch rollback -id 13952743
    Thanks
    Deva

  • Functions oracle help required

    hai
    select  99.9899 from dualafter decimal i want only 2 digits
    i want 99.99 SHOULD BE MY ANSWER
    pls
    i used ceil and floor
    it is not working
    so help
    S

    hi there trunc function is appropiate because in round and ceil function return
    rounded value that is 99.99
    ie
    SELECT ROUND(99.9899,2) FROM dual;
    99.99
    SELECT ceil(99.9899) FROM dual;
    100
    SELECT floor(99.9899) FROM dual;
    99but the trunc
    Returns n truncated to m decimal places, where m and n are numeric arguments. If m is omitted, truncates to 0 places. If m is negative, truncates (makes zero) m digits to the left of the decimal point.
    select trunc(99.9899,2) from dual;
    99.98regards
    Hitesh
    Edited by: Hitesh Nirkhey on Feb 17, 2011 1:16 PM

  • NTILE Function

    After knowing usage of NTILE analytical function, i started using it to divide my rows into batches. However I'd like to pass the expression dynamically (depending on the row count), but unfortunately I see some limitations inhibit me from achieving it. The reason I want to do this dynamically is when there are rows <= expression value, NTILE function forms one batch per each record which I don't wish to happen.
    If you observe in the below example, it creates 10 batches/buckets when there are only 10 rows, where I wish to have only 1 batch.
    SQL> drop table r_dummy;
    Table dropped.
    SQL>
    SQL> create table r_dummy
      2  as
      3  select level id
      4  from dual
      5  connect by level<=10;
    Table created.
    SQL>
    SQL> select ntile(10) over(order by id) batch_no,id
      2  from r_dummy;
      BATCH_NO         ID
             1          1
             2          2
             3          3
             4          4
             5          5
             6          6
             7          7
             8          8
             9          9
            10         10
    10 rows selected.
    SQL>
    SQL> select ceil(count(*)/10) from r_dummy;
    CEIL(COUNT(*)/10)
                    1
    SQL>I wish to use above same ceil function in my actual query but
    with t as
    select id, ceil((count(*) over())/10) bucket_size
    from r_dummy
    select id,ntile(bucket_size) over(order by id) batch_no
    from t;
    ERROR at line 6:
    ORA-30488: argument should be a function of expressions in PARTITION BYI had seen the same question being asked by Sven Weller [url https://forums.oracle.com/forums/thread.jspa?threadID=587782]here, would like to know if there is any workaround available to this.
    Please help me.

    Hi,
    not sure it that fits your need, but I came to this:select batch_no
    , least(ntile(&&DOP.) over (order by batch_no), 1+floor(row_number() over (order by batch_no)/(&&MBPG.+1))) grpid
    from t;You'd use 2 parameters :
    - DOP (Degree of parallelism) = the max number of group to assign batch_unit
    - MBPG (Min BatchUnit Per Group) = the min number of batch_unit in a group.
    Ok, if only 10 batch unit in total :Scott@my11g SQL>define DOP=4
    Scott@my11g SQL>define MBPG=10
    Scott@my11g SQL>/
      BATCH_NO      GRPID
             1          1
             2          1
             3          1
             4          1
             5          1
             6          1
             7          1
             8          1
             9          1
            10          1
    10 rows selected.Now if 43 batch units :Scott@my11g SQL>/
      BATCH_NO      GRPID
             1          1
             2          1
             3          1
             4          1
             5          1
             6          1
             7          1
             8          1
             9          1
            10          1
            11          1
            12          2
            13          2
            14          2
            15          2
            16          2
            17          2
            18          2
            19          2
            20          2
            21          2
            22          2
            23          3
            24          3
            25          3
            26          3
            27          3
            28          3
            29          3
            30          3
            31          3
            32          3
            33          3
            34          4
            35          4
            36          4
            37          4
            38          4
            39          4
            40          4
            41          4
            42          4
            43          4
    43 rows selected.Just adjust DOP and MBPG as you like.

  • TODATE alternative in OBIEE 11g (11.1.1.5)

    H all,
    Is there any alternative to TODATE function? I have got a dashboard with an Year prompt, which allows Multiple Values Selection. I tried using RSUM function in analytics but since user can select multiple years, it does not work.
    The solution can be either in RPD or in analytics? Thanks in advance.
    Cheers,
    Yogi

    I have the following fields in my analysis and there is multiple select prompt for YEAR.
    Year--Month--Customers--CustomersYTD
    Customers is a repository measure --> count(distinct(CUSTORMER_ID).
    Cutomer YTD is calculated using TODATE function. I am looking for the alternative to TODATE function.
    Thanks in advance.
    --Yogi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Is it possible to embedded this code into DPS?

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <title></title>
            <script language="javascript" type="text/javascript">
                $(document).ready(function () {
                                  adobeDPS.initializationComplete.addOnce(
                                                                          function () {var analytics = adobeDPS.analyticsService;
                                                                          analytics.variables[analytics.predefined.variables.customVariable1] = “publishing”;
                                                                          analytics.variables[analytics.predefined.variables.customVariable2] = “app”;
                                                                          analytics.variables[analytics.predefined.variables.customVariable3] = “oando”;
                                                                          analytics.variables[analytics.predefined.variables.customVariable4] = “ipad magazine”;
                                                                          analytics.variables[analytics.predefined.variables.customVariable5] = “tablet”;
       </script>
        </head>
        <body>
            <!-- blank -->
        </body>
    </html>
    Been asked to try and embed this into the pages of a DPS document for extra tracking - or so I am told, however it seems to
    hang the upload process to DPS, well completely bombs Indesign, when this is placed as a Webcontent overlay.
    Is this the correct way to do this?

    Your advice at least stopped the crashing, but unfortunately it doesn't seem to be sending any values. Basically what we are looking for is a static value to be fired into the Custom Variables ideally via the Content Views Event if not then via a Custom Event. Any clues how can we make this happen? I have set all the interactions up on the overlay that seem relevant, is there something else we need to be doing to see the variables in the script?

  • Variable in Title of Answers-Report

    Hi all,
    in BIEE Answers reports I need to display a variable taken from a table, e.g. DWH_LOAD_DATE. I want to display this variable in the title or Static Text box but I don't suceeed with the @{variables.rep_var} notation in combination with a repository variable.
    Does someone have a solution or workaround for this requirement? Any hints appreciated.
    Marcus

    Not sure why the docs aren't right. I ran into the same issue and after a bunch of searching I found it here: http://siebel.ittoolbox.com/groups/technical-functional/siebel-analytics-l/want-to-include-a-dynamic-variable-in-title-in-obiee-1569322
    Glad it worked for you!

  • Rounding up in oracle 9i

    Dear all;
    I am looking for the best way to round up in all cases. In otherwords, if the result is 2.3333333 then it would round up to 3, or if the result is just 0.5, it should just round up to 1 or if the result is 1.1, it should round up to 2, the decimal place shouldnt matter. all help will greatly be appreciated.

    Have a look at the CEIL function:
    SQL> select ceil(2.333333) from dual;
          CEIL(2.333333)
                       3
    SQL> select ceil(0.5) from dual;
               CEIL(0.5)
                       1
    SQL> select ceil(1.1) from dual;
               CEIL(1.1)
                       2
    SQL> select ceil(3) from dual;
                 CEIL(3)
                       3
    SQL> select ceil(-3.1) from dual;
              CEIL(-3.1)
                      -3
    SQL> select ceil(-2.9) from dual;
              CEIL(-2.9)
                      -2

  • Weighted Average in Pivot View

    Hi,
    Can you please throw some light on the below scenario based on weighted average:
    For Ex:
    Cloumn1---Column2-----Column3
    R1-----------Line Item1--10
    R1-----------Line Item2--20
    R2-----------Line Item3--30
    R2-----------Line Item4--40
    Now i am trying to achieve weighted average based on the group by of Column1.
    10+20=30==>30/2=15
    30+40=70==>70/2=35
    Before raising this thread, i had a look at the below URL:
    http://siebel.ittoolbox.com/groups/technical-functional/siebel-analytics-l/weighted-average-for-fact-column-values-1242947
    Can you please let me know how we can achieve this in the pivot view(OBIEE 10.1.3.4.1).
    Your help is highly appreciated.
    Thanks in Advance
    Siva

    Hi,
    Try-
    AVG(measure_col by column1)
    And try making in the column formula -Aggregation Rule (Totals Row)-->Average
    And also try making the aggregation rule in the pivot table of the column as-->Average
    Hope this helped/ answered.
    Regards
    MuRam
    Edited by: MuRam on Jun 11, 2012 4:46 AM

Maybe you are looking for

  • Apple Mail in iOS 8 is broken on my iPad 3

    Hi all. I don't know what is happening with my iOS Mail App after upgrading to iOS8. I even did a full restore of my device (iPad3) configuring it as a new iPad and the problem persists. There is a strong delay in pulling data from the email accounts

  • Error: java.lang.NoClassDefFoundError in execution

    Hi, I compile my code right but when I'm executing the code I get the following error: java.lang.NoClassDefFoundError: jahuwaldt/tools/NeuralNets/NeuronFactory This is my code: import jahuwaldt.tools.NeuralNets.*; public class Gene public FeedForward

  • Bought Iphone need to create custom ringtones

    Well, i've read some of the posts before but its not seeming to help... I have garageband 3 and do not have the selection of "sending ringtone to itunes" since i do not have garageband08. So, the problem is that i create my song on garageband and the

  • Page cannot be displayed with launch button in the ContentDB Home page

    Launch button in the ContentDB Home page lead on error (The page cannot be displayed). It would be of great help if you could provide help or track to solve that issue. It's a 2 hosts installation of Content DB 10g Release 1 (10.2.0.0.0) for Linux x8

  • Convert square wave to saw tooth wave

    Hi all i need your help. I have a square wave data in for of an array. Can any one of you suggest me a method to convert this data into saw tooth data. What i mean is that i want to convert a square wave to a saw tooth wave with minimum value 0. Your