Maximum data volume in offline mode supported by Syclo Agentry applications

Hello Experts,
We are running the SAP Work Manager application 5.3 with Agentry 6.0.
We are using the iOS based client available on the App Store to run the same.
I wanted to ask about how much data volume can be supported by the application when it is running in offline mode.
As the data is stored on the mobile device, is there any upper limit on the data being stored on the device?
Appreciate your help on the same.
Thank you,
Arihant Kothari
Tags edited by: Michael Appleby

There is no upper limit beside how much the device memory.  But the more data you put onto the device the reduce performance you will get.  It is recommend only to download what the user needs.

Similar Messages

  • Filtering data in data/complex table before showing it under dropdown in Syclo Agentry applications

    Hello experts,
    I wish to import the data present in a table in ECC and store it in a data/complex table.
    The data in this table would look like as follows:
    Field1                                   Field2
    Characteristic1                    value1
    Characteristic1                    Value2
    Characteristic1                    Value3
    Characteristic2                    Value4
    Characteristic2                    Value5
    Now, I have to pick up the data from this table and o display the data in a dropdown.
    Before I display the data in dropdown, I wish to filter this table so that at any given time, It only displays the data for a particular characteristic.
    So, if a text box in my screen has "Characteristic1" set in it, the dropdown below should display following entries:
    Value1
    Value2
    Value3
    My question is, is it possible to filter the data table dynamically so that the dropdown values can be adjusted?
    as I understand, dropdown fields can ONLY be populated using a data table or a complex table. Is this correct?
    Can I use Java side code to manipulate the entries in data/complex table?
    What would be the best approach to fulfill this requirement?
    Really appreciate your help on this.
    Best,
    Arihant Kothari

    Arihant,
    This is the classic example of a parent / child filtering relationship in the complex table.  You have your Complex table structured perfectly already to fit this use case.  This is best done on in the Agentry application and will work exactly as you describe assuming you have the necessary indexes setup.
    In your complex table you will want to create two indexes.
    An index on Field1 (your parent).  I'll call it Field1Idx (you can call it anything you want)
    An index on Field2 with a Parent index selection of Field1Idx.  I'll call it Field2byField1Idx (the convention is to name it so it indicates what the parent is)
    Now on your screen you have your text box field and your drop down field.  In the properties of your Complex Table Drop Down you will specify:
    Table Index: Field2byField1Idx
    Cascade Parent: text box (select your text box field from the screen.  Can also be set by a rule)
    Display Field: probably Field2 or the description for field two if a code value
    Return Field: Field2
    Now the complex table drop down will use the value in the text box as a filter to show only those records from the Field2byField1Idx index where the parent value matches the value from your text box field.
    Good Luck!
    --Bill

  • Maximum data volume that can flow through PI 7.1

    Hi All,
    I have a requirement to push around 10 -12 crores of records from MS Sql server to SAP ISU using PI 7.1in  8 days !!!!!!!!!!!!!I have been told that the hardware sizing done by the BASIS team is the best that Pi 7.1 supports
    Please advice me on the following options:
    1) Will PI 7.1 be able to handle this?
    2) How much hours of scheduling would be required to push to data from SQL - Proxy
    3) Any other suggestions???
    regards,
    Piyush
    Edited by: Piyush Mathur SAP on Dec 19, 2009 12:34 PM
    Edited by: Piyush Mathur SAP on Dec 19, 2009 12:38 PM

    Hi
    I will be certainly happy to help you but....the Volume Processing is purely depend on few aspects of PI 7.1
    - Scenarios Configured to use high Volume Processing features of PI 7.1 like
      a. Message Packaging,
      b. Queue Prioritization
      c. AAE enabled
      d. Are there any BPE Configured
    - How about sizing of your PI environment?
      a. No CPUs, b. Memory, c. No of Java Server nodes, d. No of Application Servers (aka Dialog Instances)
    so like wise there many factors to cosider to conclude on your environment capacity in terms of no of messages processed perhour/day etc.
    We have capacity to process 1.5 billion messages per hour But we concluded this fighure based on our load and system processing speed.
    So I suggest you to go thorugh the below link to understand the realtime user cases scenarios and asses your system capacity
    Becuase NO body can assess better than you about your system.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00982670-748c-2a10-3985-cdd42fb43e50?quicklink=index&overridelayout=true
    Regards
    Sekhar

  • Maximum Disk-Volume Capacity Solaris 8 supports (SPARC) ?

    Any one knows what is the maximum capacity that Solaris 8 on SPARC supports for storage-set ( Raid set, Stripe Set ...)
    Can Solaris 8 supports file system up to 2 Terabyes ?
    Thanks

    Yup.
    EOL in November 2002
    Which means EOSL November 2007
    http://sunsolve.sun.com/handbook_pub/validateUser.do?target=Systems/U10/U10
    Unless you've somehow maintained a service contract on that system,
    by specific system serial number,
    your best bet is to haunt an online auction site (such as Ebay),
    and get a replacement cpu or cpus for shelf stock.
    Your current OBP patch level is only down two patch levels,
    but your kernel patch level is essentially "never patched".
    If it were patched better it may have noticed the issue a lot sooner.
    Expect to replace that cpu.

  • Domain creation using WLST offline mode

    Hi,
    We are migrating from WL8.1SP5 to WL10MP2. After reading through the various options (WLST online, WLST offline, WLST.configToScript(), and Configuration Wizard) , I have concluded that we will use WLST in offline mode to create domains in our prod, qa, and dev environments. In 8.1 I had a silent script that would create domains for me repeatedly in any environment very easily. I want to map this script into the corresponding SOME_NAME.py script to be used for WL10MP2 domain.
    I have the BEA provided basicWLSDomain.py (please see below) script. I have difficulty in understanding more than half of that script! I know the basic concept is to traverse the MBean tree and creat and/or set parameters. But I do not know which MBean I will need to modify/create.
    Example 1:
    readTemplate("C:/bea/wlserver_10.0/common/templates/domains/wls.jar")
    cd('Servers/AdminServer')
    Q1] I went through http://e-docs.bea.com/wls/docs90/wlsmbeanref/core/index.html but could not find either ServersMBean or AdminServerMBean.
    Example 2:
    cd('/')
    create('myJMSServer', 'JMSServer')
    cd('/')
    create('myJmsSystemResource', 'JMSSystemResource')
    cd('JMSSystemResource/myJmsSystemResource/JmsResource/NO_NAME_0')
    Q2] What is a JMSSystemResource? (If I remember correctly, there is no such thing in WL8.1)
    Q3] What is JmsResource?
    Example 3:
    cd('/')
    create('myDataSource', 'JDBCSystemResource')
    cd('JDBCSystemResource/myDataSource/JdbcResource/myDataSource')
    create('myJdbcDriverParams','JDBCDriverParams')
    cd('JDBCDriverParams/NO_NAME_0')
    set('DriverName','com.pointbase.jdbc.jdbcUniversalDriver')
    set('URL','jdbc:pointbase:server://localhost/demo')
    set('PasswordEncrypted', 'PBPUBLIC')
    set('UseXADataSourceInterface', 'false')
    create('myProps','Properties')
    cd('Properties/NO_NAME_0')
    create('user', 'Property')
    cd('Property/user')
    cmo.setValue('PBPUBLIC')
    cd('/JDBCSystemResource/myDataSource/JdbcResource/myDataSource')
    create('myJdbcDataSourceParams','JDBCDataSourceParams')
    cd('JDBCDataSourceParams/NO_NAME_0')
    set('JNDIName', java.lang.String("myDataSource_jndi"))
    cd('/JDBCSystemResource/myDataSource/JdbcResource/myDataSource')
    create('myJdbcConnectionPoolParams','JDBCConnectionPoolParams')
    cd('JDBCConnectionPoolParams/NO_NAME_0')
    set('TestTableName','SYSTABLES')
    Q4] Can you please explain the above snippet line by line?
    Q5] Why are certain attributes set like this --- set('TestTableName','SYSTABLES') while certain attributes like below are set like this -- myq.setJNDIName('jms/myqueue')?
    Example 4:
    myq=create('myQueue','Queue')
    myq.setJNDIName('jms/myqueue')
    myq.setSubDeploymentName('myQueueSubDeployment')
    cd('/')
    cd('JMSSystemResource/myJmsSystemResource')
    create('myQueueSubDeployment', 'SubDeployment')
    Q6] What us a SubDeployment?
    I apologize for the long question. I would greatly appreciate any help!
    Thanks!
    Edited by: user10045656 on Oct 29, 2008 11:03 AM
    Edited by: user10045656 on Oct 29, 2008 11:06 AM

    1 - What is the best way to create a schema, for reporting application, during automated domain build process as we need to create new domains from the script and also be able to start and deploy applications on it. which will also require to have db schema for reporting application.
    My suggestion would be to execute the scripts under /neelapu/bea/post31/RC4-samples/osb_10.3/dbscripts/oracle/*.sql with your automated process. OSB requires two simple tables WLI_QS_REPORT_DATA and WLI_QS_REPORT_ATTRIBUTE.
    If reporting is not required then we can modify (I guess) in wlst offline mode to delete the below applications from domain.
    <app-deployment>
    <name>JMS Reporting Provider</name>
    <target>osb_server1</target>
    <module-type>ear</module-type>
    <source-path>/neelapu/bea/xyz/load4/Oracle_OSB1/lib/common/jmsreportprovider.ear</source-path>
    <deployment-order>125</deployment-order>
    <security-dd-model>DDOnly</security-dd-model>
    </app-deployment>
    <app-deployment>
    <name>Message Reporting Purger</name>
    <target>osb_server1</target>
    <module-type>ear</module-type>
    <source-path>/neelapu/bea/xyx/load4/Oracle_OSB1/lib/common/msgpurger.ear</source-path>
    <deployment-order>126</deployment-order>
    <security-dd-model>DDOnly</security-dd-model>
    </app-deployment>
    Thanks
    Manoj

  • Cannot mount volume - device offline

    Hi everyone,
    I am trying to setup OSB on a Linux box (CentOS).
    I could configure the tape library and tape drives as explained in the installation/admin guide but could not get the tape volume mounted. It keeps giving the errors:
    can't mount volume in tape1 - device offline
    It seems that the volume is offline. How can we get it online?
    The error log for the tape drive shows:
    Oracle Secure Backup hardware error log for "tape1", version 1
    QUANTUM DLT-S4, prom/firmware id 1414, serial number 236ER89482
    Tue May 13, 2008 at 22:05:23.748 (IST) devtype: 15
    obrobotd: core-ora:/dev/sg2, args to wst__exec: handle=0x1
    accessed via host core-ora: Linux 2.6.9-42.ELsmp #1 SMP Tue Aug 15 10:35:26 BST 2006
    op=18 (log_sense), buf=0x54b0b00, count=44 (0x2c), parm=0x3e0
    cdb: 4D 00 3E 00 00 00 00 00 2C 00 log_sense, cnt=44, pc=0, page_code=0x3e
    sense data:
    70 00 05 00 00 00 00 18 00 00 00 00 24 00 00 00
    00 00 00 00 00 00 00 00 00 00 00 48 00 00 00 00
    ec=0, sk=ill req, asc=24, ascq=0
    error is: illegal request
    flags: (none)
    returned status: code=illegal request,
    resid=0 (0x0), checks=0x0 []
    obtool user admin password oracle
    ob> lsdev -lvg
    lib1:
    Device type: library
    Model: [none]
    Serial number: [none]
    In service: yes
    Debug mode: no
    Barcode reader: yes
    Barcodes required: yes
    Auto clean: no
    Clean interval: (not set)
    Clean using emptiest: yes
    Unload required: yes
    Ejection type: auto
    Min writable volumes: 0
    UUID: 9ac064fe-01fb-102b-8a2e-0015175b4124
    Attachment 1:
    Host: core-ora
    Raw device: /dev/sg1
    Connection type: SCSI
    Inquiry data:
    Vendor: ADIC
    Product: Scalar 24
    Firmware: 0402
    Serial number: ADICJaya
    Element counts / addresses:
    1 mte: 1
    2 se : 4096 - 4097
    0 iee
    1 dte: 256
    Moves:
    From mte, to: mte 0 se 1 iee 0 dte 0
    From se, to: mte 0 se 1 iee 0 dte 1
    From iee, to: mte 0 se 0 iee 0 dte 0
    From dte, to: mte 0 se 1 iee 0 dte 1
    Ok_ops: move=1, reserve=1 sense_dev=1, sense_ele=1, unload_any=1, sense_dev_range=1
    Device characteristics: two_d=0, is_120=0, fake_mte=0, fake_iee=0, one_target=0
    State of barcode reader: present
    Display: none
    Dte 1: target * lun * name tape1 (raw device name /dev/sg2)
    Warning: bus info unknown or drive not installed
    tape1:
    Device type: tape
    Model: [none]
    Serial number: [none]
    In service: yes
    Library: lib1
    DTE: 1
    Automount: yes
    Error rate: 8
    Query frequency: 1024KB (1048576 bytes) (from driver)
    Debug mode: no
    Blocking factor: (default)
    Max blocking factor: (default)
    Current tape: 1
    Use list: all
    Drive usage: none
    Cleaning required: no
    UUID: 371b7330-ffe9-102a-8a2e-0015175b4124
    Attachment 1:
    Host: core-ora
    Raw device: /dev/sg2
    Connection type: SCSI
    Inquiry data:
    Vendor: QUANTUM
    Product: DLT-S4
    Firmware: 1414
    Serial number: 236ER89482
    Tape state: online
    Hardware compression: on
    Last read was: uncompressed
    Maximum block size: 1048576
    Remaining tape: 73728 (uncompressed) blocks (75.50MB
    Looking for comments/suggestions.
    Thanks!

    I created a file system backup job. The backup job is pending with the status "pending resource availability".
    ob> lsjob all long
    7:
    Type: dataset Dataset1
    Level: full
    Family: MediaFamily1
    Encryption: off
    Scheduled time: 05/15.14:00
    State: processed; host backup(s) scheduled
    Priority: 0
    Privileged op: no
    Run on host: (administrative server)
    Attempts: 1
    7.1:
    Type: backup core-ora
    Level: full
    Family: MediaFamily1
    Encryption: off
    Scheduled time: 05/15.14:00
    State: pending resource availability
    Priority: 0
    Privileged op: no
    Run on host: core-ora
    Attempts: 0
    ob> catxcr --level 0 7
    Error: unable to open transcript for 7 - No such file or directory
    Error: unable to open transcript for 7.1 - No such file or directory
    I also tried to do some operations on the tape device (load, identify, import… ) but the commands take forever to finish and return with errors.
    ob> lsvol library lib1 long
    Inventory of library lib1:
    in mte: vacant
    in 1: barcode JK1112, oid 100
    in 2: barcode JK1111, oid 101
    in 3: barcode JK1113, oid 102
    in 4: vacant
    in 5: vacant
    in dte: vacant
    ob> loadvol drive tape1 mount write force 1          > (took around 10 mins to return)
    Error: can't execute command - drive didn't come online; check configuration/hardware
    I could see that the drive loaded into the tape immediately after issuing the command (from the Dxi GUI) but the loadvol command returned after a long time.
    The log file for the obrobotd when the above command was issued shows:
    [root@core-ora lib1]# pwd
    /usr/local/oracle/backup/admin/log/device/lib1
    [root@core-ora lib1]# tail -f obrobotd
    2008/05/15.14:53:05 ***0 wst__dev_state...
    2008/05/15.14:53:05 ***0 wst__exec: op=0 (nop), buf=0x0, count=1 (0x1), parm=0x0
    2008/05/15.14:53:05 ioctl_op=0x3, to=300, datalen=0x0, buf=0x0, cdb: 00 00 00 00 00 00 tur
    2008/05/15.14:53:05 ***0 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2008/05/15.14:53:05 ***0 wst__dev_state: no sense, status 0x0
    2008/05/15.14:53:05 ***0 wst__exec: op=2 (sense), buf=0x54a970, count=32 (0x20), parm=0x0
    2008/05/15.14:53:05 ioctl_op=0x5, to=30, datalen=0x20, buf=0x54a970, cdb: 03 00 00 00 20 00 sense, cnt=32
    2008/05/15.14:53:05 ***0 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2008/05/15.14:53:05 ***0 wst__get_sense(int) cmd = 0, sense data:
    2008/05/15.14:53:05 70 00 00 00 00 00 00 18 00 00 00 00 00 00 00 00
    00 00 00 00 00 00 00 00 00 0C 00 80 00 00 00 00
    ec=0, sk=no sense, asc=0, ascq=0, rem=0x30020000 (805437440)
    flags: (none)
    2008/05/15.14:53:05 ***0 wst__exec: op=7 (readpos), buf=0x7fbfffe1d0, count=20 (0x14), parm=0x0
    2008/05/15.14:53:05 ioctl_op=0x5, to=180, datalen=0x14, buf=0x54aa78, cdb: 34 00 00 00 00 00 00 00 00 00 read_pos
    2008/05/15.14:53:05 ***0 wst__exec, raw position: B0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    00 00 00 00
    2008/05/15.14:53:05 ***0 wst__exec: rval=0, status.code/resid/checks=0x0/0x10/0x0
    2008/05/15.14:53:05 ***0 wst__exec: op=18 (log_sense), buf=0x54a9f0, count=44 (0x2c), parm=0x3e
    2008/05/15.14:53:05 ioctl_op=0x5, to=180, datalen=0x2c, buf=0x54a9f0, cdb: 4D 00 3E 00 00 00 00 00 2C 00 log_sense, cnt=44, pc=0, page_code=0x3e
    2008/05/15.14:53:05 ***0 wst__exec: op=2 (sense), buf=0x54a970, count=32 (0x20), parm=0x0
    2008/05/15.14:53:05 ioctl_op=0x5, to=30, datalen=0x20, buf=0x54a970, cdb: 03 00 00 00 20 00 sense, cnt=32
    2008/05/15.14:53:05 ***0 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2008/05/15.14:53:05 ***0 wst__get_sense(int) cmd = 4D, sense data:
    2008/05/15.14:53:05 70 00 05 00 00 00 00 18 00 00 00 00 24 00 00 00
    00 00 00 00 00 00 00 00 00 0C 00 80 00 00 00 00
    ec=0, sk=ill req, asc=24, ascq=0, rem=0x30020000 (805437440)
    error is: illegal request (OB scsi device driver)
    flags: (none)
    2008/05/15.14:53:05 ***0 wst__exec: rval=-1, status.code/resid/checks=0x20008113/0x0/0x0
    2008/05/15.14:53:05 ***0 wst__dev_state: state=0x1 (online, not at bot)
    2008/05/15.14:53:05 ***0 wst__wait: from dev_state: state=0x1, code=0x0
    Thanks!

  • No Album Covers in Offline-Mode

    Hello, since weeks i have a problem on my iPhone 6 with iOS 8.4 and the latest Spotify App.Every Time i go to work i use Spotify and i only hear my offline Songs. i start wondering why it loads every cover again when i start the app First i thought it loads them from my Phone, after a few days i saw that spotify used about 100 MB per Day of my Cellular-Data even when i only listen to my offline Songs, the Problem was Spotify loads every Album-Cover from the Internet again and again and again. I removed the app, restarted my phone  and load the app again. i sync all my offline songs and i hear a song with the cover just loaded over the Internet. i Close the App compleatly and go to Airplane mode and play the same song again but now without cover. Its the same song i played just a few seconds ago! It dosen't matter if i use airplane mode or go offline-Mode in Spotify or forbid the App to Use Celluar, when Spotify is offline i don't have a single Album-Cover. Its really anoying and i am pretty sure that in the older Version of the App the Covers where on the Phone and wasen't loaded from the Internet every time i use the App. i like Spotify but that would be a reason for me to switch to Apple Music, i can't pay for Spotify and a 3GB Data-Volume so Spotify can Load the Covers every day. I hope you can help me.

    Still not fixed in 1.5.0 :(
    Come on, the very early spotify apps already had this issue, then it was fixed, and reintrocuded with the new 1.0 versions with the new UI - and now it's still there since MONTHS.
    It's not only that Album covers are not shown in offline mode - it seems caching of album covers is pretty much broken, so they are redownloaded all the time when in online mode.
    This means unneccesarry data consumption and battery drain. In online mode Spotify simply drains the battery much faster than in offline mode (and also much faster than f.e. listing using Apple iPod app) - which is the main reason I always switch to offline, just to get a decent battery life out of spotify. 
    In my opinion, the very first priority for mobile app development should be to only download data if it is really, really, really necessary. Simply because data is the battery drainer number one. Especially if you listen in a train a.s.o. where data connection is bad. So if I download tracks offline and play offline tracks (with the audio taking up many many megabytes of space) it should be obvious covers also should be in the cache and traffic should be reduced (even if not in offline mode) to almost zero. You can exchange a few bytes to follow which tracks where played, but that s all.
     

  • After updating to 4.0 stable today, FF reports it is in offline mode and can't open pages! I've checked the work offline boolean in about:config, it is set to false as it should be. !?!?

    After updating to 4.0 stable today, FF reports it is in offline mode and can't open pages! I've checked the work offline boolean in about:config, it is set to false as it should be. !?!?

    What in particular didn't you like about Firefox 6?
    You can undo a lot of changes, either via changing settings or prefs on the <b>about:config</b> page or via extensions.
    *https://support.mozilla.com/kb/common-questions-after-updating-firefox
    Do a clean reinstall of the version that you want to use.
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 3.6.x: http://www.mozilla.com/en-US/firefox/all-older.html
    *Firefox 6.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Uninstall your current Firefox version.
    * Do not remove personal data when you uninstall the current version or you lose your bookmarks and other data in the profile folder.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/Profile_backup

  • MaxDB  (7.8.02.27) installation error: Invalid parameter Data Volumes

    Hi all,
    i get errors during installation procedure of MaxDB 7.8.02.27 at the point where i define the Database Volume paths (step 4b).
    If i use the default values the database gets created without errors.
    But if i do changes e.g. to the size of the data volume, the error appears when i click next:
    "Invalid value for data volume size: data size of 0KB does not make sense Specify useful sizes for your log volumes".
    If i create 2 data files with different names (DISKD0001, DISKD0002), i get an error mesage that i have used one filename twice.
    Now its getting strange: If i use the previous button to move one step back and then use the next button again, it sometimes
    accepts the settings and i´m able to start the installation and the database gets created.
    I´m remote on a VMWare server 2008 R2 (EN) and i´m using the x64 package of MaxDB.
    Any ideas?
    Thanks
    Martin Schneider

    Hi Martin,
    A general system error occurrs if file *.vmdk is larger than the maximum size supported ... It has to be replaced with the nearest acceptable value associated with the various block sizes so that  you can use to create a datastore.
    You may need to resize your block size while choosing VMFS datastore.
    Hope this is useful.
    Regards,
    Deepak Kori

  • Microstrategy Mobile App crashing on iOS 8.1.2 and above in offline mode

    Hi,
    Running iOS 8.2 on iPad Air, 2nd Gen
    One of the functionalities of our Microstrategy mobile reports is to enable offline access for its users. As such, the whole data is pre-cached into the device when connected, and this cache is used to power the dashboards when there is no network access.
    Until iOS 8, this functionality was working fine. Since the iOS 81.2 update, as soon as the user goes in offline mode and tries to navigate through the dashboards, the Microstrategy app crashes. We are using different models of iPad notably the iPad air.
    I tried using a 3rd party tool to monitor the free RAM and observed that RAM falls below 20MB during such navigation on the dashboard in offline mode.
    It would be really helpful if someone can suggest a solution.
    Thanks.

    Hi Rachit,
    Please contact Microstrategy Support team. They could be solve the issue.

  • How to select maximum date in report

    i have tried to select maximum date in my report by this way:
    select max(date) from a
    but the result came out same as "select date from a"
    there is no different whether i put a max or not. is anyone there can help me on this please....
    Thank you....

    Hi Sharon,
    Since you cannot execute this query from SQL, I assume that the DB does not support the function MAX(expr). Am not sure which DB versions support this function, probably the Database forum will be a better place to ask that.
    As a workaround, what you could try is to use this statement
    select hire_date from employees order by hire_date desc
    and in the report data model, you make a summary column and choose Function > First, Source > Hire_Date, and Reset At > Report.
    Hope that helps.
    Navneet.

  • In the past two weeks every time I select the Firefox icon I get a message: "Foreforx is in Offline mode". I click on "try again" and it always comes up. How do I avoid this message and go directly to online status?

    Prior to a couple weeks ago when I clicked on the Fire Fox icon on my MacBook air it went directly to the Fire fox home page. Now when my computer has been off and I choose the Fire Fox icon, I get a message that Fire Fox is in "offline" mode. I then click the box "try again" it always comes up as usual. What can I do to get away from that "offline" message? I do not have the same problem with my desktop iMac.

    Try the solutions at http://support.mozilla.com/en-US/kb/Firefox+hangs#Hang_at_exit

  • (DESKTOP APP) Can't acsess script in offline mode anymore.

    I can’t access my documents using Desktop App in offline mode.
    When I go offline all my documents turn marked “RED” even they were marked “GREEN” in online mode.
    When I try to open a script in Offline Mode I get the following error: “You are trying to open document in offline mode that has not been downloaded fully from Adobe Story account. …” Even though all documents have been downloaded …
    I thought the whole Idea of the DESKTOP APP is to able to work offline.
    Any idea?
    Thanks for your support, Carsten
    System:
    Windows 7 Professional SP1
    Adobe Story CC 2014 3.0.0
    Adobe Air 15.0.0.356

    I have tried that, I opened document, went offline, closed document and tried to open it again - but it won't work and I got the same error.
    This is problem affects all my documents. I can't open any of my documents in offline mode. Only one project somehow is not affected.
    Cheers,
    Carsten

  • Converting data volume type from LINK to FILE on a Linux OS

    Dear experts,
    I am currently running MaxDB 7.7.04.29 on Red Hat Linux 5.1.  The file types for the data volumes were
    initially configured as type LINK and correspondingly made links at the OS level via "ln -s" command. 
    Now (at the OS level) we have replaced the link with the actual file and brought up MaxDB.  The system
    comes up fine without problems but I have a two part question:
    1) What are the ramifications if MaxDB thinks the data volumes are links when in reality they are files.
        (might we encounter a performance problem).
    2) In MaxDB, what is the best way to convert a data volume from type LINK to type FILE?
    Your feedback is greatly appreciated.
    --Erick

    > 1) What are the ramifications if MaxDB thinks the data volumes are links when in reality they are files.
    >     (might we encounter a performance problem).
    Never saw any problems, but since I don't have a linux system at hand I cannot tell you for sure.
    Maybe it's about how to open a file with special options like DirectIO if it's a link...
    > 2) In MaxDB, what is the best way to convert a data volume from type LINK to type FILE?
    There's no 'converting'.
    Shutdown the database to offline.
    Now logon to dbmcli and list all parameters there are.
    You'll get three to four parameters per data volume, one of them called
    DATA_VOLUME_TYPE_0001
    where 0001 is the number of the volume.
    open a parameter session and change the value for the parameters from 'L' to 'F':
    param_startsession
    param_put DATA_VOLUME_TYPE_0001 F
    param_put DATA_VOLUME_TYPE_0002 F
    param_put DATA_VOLUME_TYPE_0003 F
    param_checkall
    param_commitsession
    After that the volumes are recognizes as files.
    regards,
    Lars
    Edited by: Lars Breddemann on Apr 28, 2009 2:53 AM

  • Firefox become in Offline mode and unable to open any page and when shut down it remains in processes and freez up, blocking another to be run

    When I on my Laptop, Acer Aspire 5735 with Windows 7 Ultimate run Firefox all runs perfectly smooth, all is working as expected, but when I go to Sleep mode or Hibernate (Firefox remains open) after turning on Firefox is not active any more, all open tabs are there but surfing is unavailable. Firefox reports message that it is in Offline mode (but menu File > Work Offline is not checked and if I check it and uncheck it again it doesn't have any impact). Which means If I open new tab and write web address it wont open, if I click any link in opened tabs from before, it wont open anything and it will show message that Firefox is in offline mode. After that I shut down Firefox by using Close(x) button and it disappears from desktop but it remains in memory and active processes not allowing any other instance of Firefox to be run. Finally I shut it down on force (End process) and start another instance and all works perfect. I am not sure is this only my problem with hardware/software configuration so I wanted to share this.

    This is a pain but I have resolved it. This is instructions for Windows 7 but it may be the same on other Operating systems.
    Note: "''YOUR USERNAME''" relates to the account you log on to Windows with.
    # First go to control '''panel / folder options''' and ''uncheck'' ''''Hide extensions for known file types'''', ''check'' ''''Show hidden files and folders'''' and ''check'' ''''Show hidden operating system files'''' then click ''apply'' and ''OK''.
    # Go here :''' C:\Users\"YOUR USERNAME"\AppData\Roaming\Mozilla\Firefox\''' and copy the '''Profiles''' folder to your desktop.
    # Go here : '''C:\Users\"YOUR USERNAME"\AppData\Local\Mozilla\Firefox\''' and copy the '''Profiles''' folder to your desktop. You will need to rename this as you already have a Profiles folder so name it '''Profiles2'''.
    # Uninstall Firefox (''selecting to remove all user settings'') then go here: '''C:\Program Files\''' and delete the ''Mozilla Firefox'' folder.
    # Go here : '''C:\Users\"YOUR USERNAME"\AppData\Roaming''' and delete the ''Mozilla'' folder
    # Go here: '''C:\Users\"YOUR USERNAME"\AppData\Local\ '''delete the ''Mozilla'' folder.
    # Open another browser (i.e.'' Internet Explorer'') and download and install ''C-Cleaner'' here: [http://www.piriform.com/ccleaner/download/standard]
    # Once installed run the ''''Registry cleaner'''' over and over until no problems are detected and exit the application. You may now uninstall it but it is probably one of the best free apps available as it has a better uninstaller than Windows does and controls which programs run when Windows starts without using the 'msconfig' command.
    # Now download the latest version of Firefox with your other browser and install it then run the application once and close it down.
    # Open the ''Profiles'' folder on your desktop and inside you will find one or more folders with a name ending in '''.default''' (i.e. ''uomifhku.default''). Right click each folder and select '''Properties''' to see which contains the highest amount of data or the bigger file size. Once you have done that open the largest folder and make sure there is nothing in there with '''... @security.compass''' written on it. If there is then delete it. Hold your ''left'' mouse button and move your mouse pointer over all of the files to highlight in blue. Put your mouse cursor on any one of the files, ''right click'' and select 'Copy' to copy them all to system memory and then close the folder.
    # Go here: '''C:\Users\"YOUR USERNAME"\AppData\Local\Mozilla\Firefox\Profiles''' and find the folder ending in '''.default''' then open it. Now ''right click'' anywhere on the background in the main Payne containing the files and select 'paste'. When prompted to '''Overwrite Files''' and '''Merge Folders''' always accept and proceed. Once done, close the window.
    # Open the '''Profiles2''' folder on your desktop and inside you will find one or more folders with a name ending in '''.default''' (i.e. ''uomifhku.default''). Right click each folder and select '''Properties''' to see which contains the highest amount of data or the bigger file size. Once you have done that open the largest folder and make sure there is nothing in there with '''... @security.compass''' written on it. If there is then delete it. Hold your'' left'' mouse button and move your mouse pointer over all of the files to highlight in blue. Put your mouse cursor on any one of the files, ''right click'' and select '''Copy''' to copy them all to system memory and then close the folder.
    # Go here : '''C:\Users\"YOUR USERNAME"\AppData\Roaming\Mozilla\Firefox\Profiles''' and find the folder ending in '''.default''' then open it. Now right click anywhere on the background in the main Payne containing the files and select '''paste'''. When prompted to '''Overwrite Files''' and '''Merge Folders''' always accept and proceed. Once done, close the window.
    Start Firefox and if all is well you should be working again and it back in the state you left it last without the bug.
    Many thanks, sparkyuiop

Maybe you are looking for

  • Songs on iPod but not viewable

    I have six Ac/Dc songs on my iPod, one of them has an album name and the other album names are blank. I can find all six songs using the "Search" tool, but when I browse artists AC/DC, it only finds the one song with the album name and the other five

  • Image previews different in Aperture from other applications

    I've just come across a problem with Aperture after importing a TIF image (usually I stick with RAW). The preview in AP3 looks different from that in all other photo applications I have. I looked at the same image in Preview, Lightroom 2 and iPhoto.

  • Facetime not working on iPad Retina Display

    As many of the others here have posted, Facetime isn't working on my brand-new iPad. It works on my phone and on my Mac through my email address and mobile phone number, but not on the iPad. TEXAS MAC MAN I have already looking through the links that

  • How can I get PP CS4 to automatically locate missing assets?

    Hello.  I'm using CS4 on a Hewlett-Packard PC computer running a 64-bit Windows 7 operating system. My computer recently crashed necessitating a visit to my friendly, local repair shop.  When I got it back, I had to reload PP which I did but when I t

  • How can I easily delete unwanted system language files?

    There are a bunch of files - some unneeded language files - that take up space on the drive.  Is there some easy way to delete those that I will never use?