An another Question NOOOB... Re-use of data entered on form

I have hunted and just can not find this solution.  Sorry to ask what is probably a simple question for many on this forum.  I have a 8-page document that the end-user must enter their name and some demographic info on the cover page.  I then use this data in the following pages in the header or footer.  Any ideas where can I go to get this answer?  I have about run the length of my short attention span and of patience.  Thank you.

Give the fields of the same name and on the binding of the object Palette tab change the default link on 'Global' on one of them.

Tags: Adobe LiveCycle

Similar Questions

  • Question about the use of constant variables in forms

    As I am still very new to forms, please forgive my ignorance, if the answer to my question is very simple. I'm trying to understand how to use constant variables in my application Forms. For example, if I want the return code of constants for the configuration application (not, mind these are examples):

    RC_SUCCESS CONSTANT PLS_INTEGER: = 1;
    RC_FAILURE CONSTANT PLS_INTEGER: = 0;
    RC_YEAR_DATA_NOT_FOUND: = 50;

    Then in a module I created, if I wanted to check the return code against one of the constants I would do:

    DECLARE
    RC PLS_INTEGER;
    BEGIN
    GET_YEAR_DATA ('2000 ', rc);
    IF rc = RC_YEAR_DATA_NOT_FOUND THEN
    -Make an error handling
    END IF;
    END;

    I know that you can declare constants within the individual procedures or packages, but I can't find information on how to do it in the world for the application. I read on the use of global variables in forms, but only the CHAR data type and the fact that the value can be modified doesn't really fit for this purpose have I missed something? Is there a config file or something for the Web server that can be used to configure these?

    Any help would be appreciated.

    Thank you

    To declare constants create a Package specification in a pll and deifne all your vitals, something like:

    PACKAGE PK_CONSTANTS IS
      RC_SUCCESS CONSTANT PLS_INTEGER := 1;
      RC_FAILURE CONSTANT PLS_INTEGER := 0;
      RC_YEAR_DATA_NOT_FOUND := 50;
    END;
    

    Then attach this pll for all your forms-modules and use it as

    IF rc = PK_CONSTANTS.RC_YEAR_DATA_NOT_FOUND THEN
      ..
    END IF;
    

    A word on exceptions or errors: to me more clear (and in the case of exceptions even better) to throw an exception only to hide behind return-codes.

  • Send a reminder using the Dates of the form

    Hi all.

    I don't know what is the best way to send reminders (email), verification of the dates of the form.

    For example:

    There is a task assignment when the user enters 5 dates (day 1, day 2, day 2... etc)

    Then I need to send emails to 'Xpath user' when the date system is: "day 1" - 24 hours (for example). "."  The same date 2, day 3... etc.

    How can I do?

    I write the dates in the database need?

    Some ideas?

    Thank you very much.

    Maria

    You can use a gateway with a branch for each email that will be sent. Put a holding Point before sending email. Set days to wait as an XPath expression using get-days-from-dateTime-difference(current-date (), Date of the form). Subtract 1 for your less 24 hours.

  • A few questions about the use of data and Cliq

    I have the cliq, however I chose to not get 3G (so I bought full fare). So I have a few questions about the phone and the use of 3G / 2 G/Edge:

    1 - is possible to disable completely the 2G / 3 G/Edge? I know you can switch between them, but are anyway just tell the phone to stop using them altogether since I'm not subbed to the service?

    2. when the update takes place, I guess we'll have to reconnect motoblur and etc, but if I don't have 3 G will I have motoblur connection problems after the update? Or he keeps the latest wifi settings so that it would connect to wifi to connect. When I first got my phone it was not a problem b/c I had 3G for the first month.

    I hope that makes sense, thanks!

    To stop all the data, I would like to download an application called APNDroid. He cut them all down. When you log on to blur you have 3G or WIFI doe this without getting a timeout error. During the process of setting up your Blur account, you can press the menu button and set up your wifi to work, this will connect you to Blur and your phone will be connected to the blur. If I were you I would be rethinking to do a data plan since you are really losing out on most of your main features of phones. It's your choice, however.

  • Another Question error too high rate data

    Hi all

    I saw a few posts about pgc errors, but most of them deals with slide shows and video not; and I can't find anything with the REF = KApgc error.

    I'm just all my movies on a DVD created, not rocket science.  I use the 'submenu Film' preset with only top 5 movies, things like Easter, birthday, etc.  My transition for each button is a slate (for lack of a better word) which says exactly what it is and when it happened, before each movie plays.

    After I had set everything up, I realized that I didn't have an opportunity to "play all" which would include these slates.  A simple solution, make a 'play together' button that links to a timeline that has everything in it - slate, then the movie, then slate, the next movie and so on.  (When I say movie - they are all .mov files rendered from After Effects, even the slates)

    My transcoding settings are NTSC DV high quality 7 MB VBR 2 pass and the "highest quality" is checked.

    When I run the "check disk" all right.  Listen to samples of the disc, all right.

    Build disk: transcoding hours then the error: data too high to * timecode * REF = KApgc.

    When this film is in itself with a click of a button, it is fine.  It is only in the scenario 'play together' that it produces the error.

    If the flow rate is not too high in one place, why is it too high in another?  It's the same thing, just a longer timetable.

    Help, please!

    Thank you.

    Only a calendar.  But it's just a few clicks away...

    -Jeff

  • Question about the use of dates

    Hello

    I have a few SQL used for a calendar in the APEX and have a duration field to set the end date.

    What I need is an additional field that would be a date, but I need a registration for all dates in the date from beginning to end date, including all the dates between the two.
    select ID
             ,VISIT_DATE
             ,duration
             ,VISIT_DATE + round(DURATION)-1 END_DATE
    from FIELD_VISITS_CALENDAR
    
    Results
    
    ID     |VISIT_DATE|DURATION     |END_DATE
    -------------------|------------|---------
    241     |22-JAN-09 |     .5     |22-JAN-09
    239     |16-JAN-09 |     .5     |16-JAN-09
    242     |23-JAN-09 |     2     |24-JAN-09
    237     |08-JAN-09 |     1.5     |09-JAN-09
    221     |12-DEC-08 |     2     |13-DEC-08
    233     |23-DEC-08 |     1     |23-DEC-08
    238     |15-JAN-09 |     1     |15-JAN-09
    240     |09-JAN-09 |     1     |09-JAN-09
    
    Wanted results
    
    ID |VISIT_DATE|DURATION       |END_DATE  |CAL_DATE
    ---|----------|---------------|----------|---------
    241|22-JAN-09 |     .5     |22-JAN-09|22-JAN-09
    239|16-JAN-09 |     .5     |16-JAN-09|16-JAN-09
    242|23-JAN-09 |     2     |24-JAN-09|23-JAN-09
    242|23-JAN-09 |     2     |24-JAN-09|24-JAN-09
    237|08-JAN-09 |     1.5     |09-JAN-09|08-JAN-09
    237|08-JAN-09 |     1.5     |09-JAN-09|09-JAN-09
    221|12-DEC-08 |     2     |13-DEC-08|12-DEC-08
    221|12-DEC-08 |     2     |13-DEC-08|13-DEC-08
    233|23-DEC-08 |     1     |23-DEC-08|23-DEC-08
    238|15-JAN-09 |     1     |15-JAN-09|15-JAN-09
    240|09-JAN-09 |     1     |09-JAN-09|09-JAN-09
    
    
    {code}
    
    Thanks
    Adam                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

    Like this?

    SQL> ed
    Wrote file afiedt.buf
    
      1  with t as (select 241 as id, to_date('22-jan-2009','dd-mon-yyyy') as visit_date, 0.5 as duration from dual union all
      2             select 239, to_date('16-jan-2009','dd-mon-yyyy'), 0.5 from dual union all
      3             select 242, to_date('23-jan-2009','dd-mon-yyyy'), 2 from dual union all
      4             select 237, to_date('08-jan-2009','dd-mon-yyyy'), 1.5 from dual union all
      5             select 221, to_date('12-jan-2009','dd-mon-yyyy'), 2 from dual union all
      6             select 233, to_date('23-jan-2009','dd-mon-yyyy'), 1 from dual union all
      7             select 238, to_date('15-jan-2009','dd-mon-yyyy'), 1 from dual union all
      8             select 240, to_date('09-jan-2009','dd-mon-yyyy'), 1 from dual)
      9  --
     10  select distinct
     11         id
     12        ,visit_date
     13        ,duration
     14        ,visit_date+(case when rn < round(duration) then rn else 0 end) as end_date
     15  from t, (select rownum-1 rn from dual connect by rownum <= (select max(duration) from t)) x
     16* order by t.id
    SQL> /
    
            ID VISIT_DATE   DURATION END_DATE
    ---------- ---------- ---------- ----------
           221 12/01/2009          2 12/01/2009
           221 12/01/2009          2 13/01/2009
           233 23/01/2009          1 23/01/2009
           237 08/01/2009        1.5 08/01/2009
           237 08/01/2009        1.5 09/01/2009
           238 15/01/2009          1 15/01/2009
           239 16/01/2009         .5 16/01/2009
           240 09/01/2009          1 09/01/2009
           241 22/01/2009         .5 22/01/2009
           242 23/01/2009          2 23/01/2009
           242 23/01/2009          2 24/01/2009
    
    11 rows selected.
    
    SQL>
    
  • Another question about Dates

    Hi, I have another question regarding the use of the field date in Adobe Designer 8.  I have the updated domain in place so that the person can enter the date, lets say, 12/12/11 and it will convert to December 12, 2011, or, the user can click on the calendar that is attached to the date field and make a date selection.  My question is this.  Is there a way that can not only the calendar go to any date by selecting < or >, but can also go to an exercise < < or > >?  We have contracts that extend from 2 to 3 years and want this option to be available.

    Thanks for any help you can provide.

    Here is how I currently have my date fields in place.

    In the field section:

    View model: MMMM D, YYYY

    Edit pattern: M-D-AA

    Section of the value:

    MMMM D, YYYY

    Date must be entered as per example, 12 January 2012

    Liaison section:

    MMMM D, YYYY

    The calendar widget allows you to select other years.

    When you open the calendar, click on the name of the month, the calendar will show you every month of the current year.

    When you then click on the year, it shows you all the years of the current decade.

  • Use of data mobile blackBerry Leap

    Maybe a silly question, but do use Mobile data reported by my jump include data via wi - fi, or is - this purely cell use?

    Not stupid at all the @raymartin01!

    I can confirm that the Mobile data graphic is your use of cellular data only

  • Error problem of DAT file "another program or person uses.

    Original title: DAT file problem?

    I have a file Dat and ntuser file that I can't remove C Docs and settings it keeps telling that another program or person uses it. That is not possible since I deleted the user name that the file belongs to. So I wonder what can I do to get rid of this thing? I have rid his vital to the BONE, but it is a limted not the admin account account and I deleted it so nothing should be left.

    Thank you

    I have a file Dat and ntuser file that I can't remove C Docs and settings it keeps telling that another program or person uses it. That is not possible since I deleted the user name that the file belongs to. So I wonder what can I do to get rid of this thing? I have rid his vital to the BONE, but it is a limted not the admin account account and I deleted it so nothing should be left.

    Thank you

    ==================================
    Possibilities...

    Right click / Rename the file, and then delete.

    Move the file to another folder and then delete...

    You may delete the file after a reboot
    and if you've already tried that... it can be a useful
    try to remove mode without failure.

    (315222) a Description of the Safe Mode
    Boot into Windows XP options
    http://support.Microsoft.com/?kbid=315222

    Also... the following freeware may be useful:

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    Unlocker
    http://www.filehippo.com/download_unlocker/
    (works on - Windows 2000, XP, Vista, 7, 8)
    (the download is: Unlocker1.9.2.exe)

  • Use the data from a DataSet as a source for another (the join between the sets of data)

    Hello. I come with a problem, very simple, but which I think is not implemented in the beer Pub.

    In the DataModel, I create a DataSet, providing some data (for example, a string from a web service), and after this, I create another set of data that uses this string as a parameter for a database query. Is this possible? The only link I found between the sets of data is only this concatenation of the main data set.

    Is there a way that I can do? Thank you!

    * [url http://www.java-forums.org/blogs/advanced-java/collection/] Java collection *.

    In Publisher 10 g and sooner you can use a data model to the join and the structure of data from different sources SQL.

    In Publisher, 11g, you can join data sets for which Publisher can 'know' on the data fields. For example. In addition to SQL data sets, you can reach Excel, LDAP, MDX and answers. Web Services, like XML file are data sets that editor does not know the data fields, so unfortunately, no way to join them... I know.

    Also, true that LOVs can either be SQL or data fixed (i.e. the entered values).

    Allowing the Web Service as a source of LOV or a way to define data fields, it's something for us to consider for a future version.

    Mike

  • Yes, another question regarding the freezing of Safari - EtreCheck report included

    Yes, another question regarding the freezing of Safari.

    From a little over a month (I think), Safari started freezing regularly whenever I want to open new tabs or switch between tabs. I found myself to leave the program several times per day / hour. I can't identify any specific common cause (other than my MacBook being old) or any new software or updates that might have initiated the question. At first I thought he might have many tabs, I tried to open, but recently it happens even with only a few tabs open.

    I worked through the steps I found in this forum and others: empty the cache, start in safe mode, etc nothing works.

    Based on the previous suggestions, I have downloaded and run EntreReport which I included below. The note and maybe just a distraction, but EntreReport has crashed three times tonight, before he was able to produce the sub report. I ran the report after restarting my system with no other programs running.

    Suggestions are welcome at this stage because I want to start using Chrome or Firefox because I like the transfer procedure between my devices.

    Thank you in advance.

    Ben

    -----------

    EtreCheck version: 2.9.11 (264)

    Report generated 2016-04-28 22:48:58

    Download EtreCheck from https://etrecheck.com

    Time 05:45

    Performance: Below average

    Click the [Support] links to help with non-Apple products.

    Click [details] for more information on this line.

    Click on the link [check files] help with unknown files.

    Problem: Apps are broken

    Description:

    Safari freeze when opening new tabs / switching between the tabs.

    Hardware Information:

    MacBook Pro (15-inch, mid 2009)

    [Data sheet] - [User Guide] - [warranty & Service]

    MacBook Pro - model: MacBookPro5, 3

    1 2.66 GHz Intel Core 2 Duo CPU: 2 strands

    4 GB of RAM expandable - [Instructions]

    BANK 0/DIMM0

    OK 2 GB DDR3 1067 MHz

    BANK 1/DIMM0

    OK 2 GB DDR3 1067 MHz

    Bluetooth: Old - transfer/Airdrop2 not supported

    Wireless: en1: 802.11 a/b/g/n

    Battery: Health = battery check - Cycle count = 389

    Video information:

    NVIDIA GeForce 9400M - VRAM: 256 MB

    Color LCD 1440 x 900

    NVIDIA GeForce 9600M GT - VRAM: 256 MB

    Software:

    OS X El Capitan 10.11.4 (15E65) - since startup time: less than an hour

    Disc information:

    FUJITSU MJA2320BH FFS G1 disk0: (320,07 GB) (rotation)

    EFI (disk0s1) < not mounted >: 210 MB

    Macintosh HD (disk0s2) /: 319,21 go-go (54,93 free)

    Recovery HD (disk0s3) < not mounted > [recovery]: 650 MB

    HL-DT-ST DVD - RW GS23N)

    USB information:

    Built-in ISight from Apple Inc..

    Card reader Apple

    Apple Inc. BRCM2046 hub.

    Apple Inc. Bluetooth USB host controller.

    Apple Inc. Apple keyboard / Trackpad

    Computer, Inc. Apple IR receiver.

    Guardian:

    Mac App Store and identified developers

    Unknown files:

    ~/Library/LaunchAgents/com. GoodShop.updater.plist

    ~/Library/application support/GoodShop/updater

    A unknown file found. [Check files]

    Kernel extensions:

    / Library/Application Support/Symantec/virus

    [no charge] com.symantec.kext.SymAPComm (11.1.2f17 - 2015-05-23) [Support]

    / Library/Extensions

    [no charge] expressvpn.tap (20150118 - 2016-04-12) [Support]

    [loading] expressvpn.tun (20150118 - 2016-04-12) [Support]

    / System/Library/Extensions

    [no charge] com.DYMO.usbprinterclassdriver.kext (1.1 - SDK 10.9-2016-04-12) [Support]

    com.Silex.driver.sxuptp [no charge] (1.5.1 - 2016-04-12) [Support]

    com.symantec.kext.internetSecurity [no charge] (1.3.2 - 2016-04-12) [Support]

    com.Symantec.kext.IPS [no charge] (3.2 - 2016-04-12) [Support]

    Startup items:

    CMA: path: / Library/StartupItems/cma

    RosettaStoneLtdDaemon: Path: / Library/StartupItems/RosettaStoneLtdDaemon

    Startup items are obsolete in OS X Yosemite

    Launch system officers:

    [loaded] 8 tasks Apple

    [loading] 165 tasks Apple

    [operation] 65 tasks Apple

    Launch system demons:

    [loaded] 45 tasks Apple

    [loading] 161 tasks Apple

    [operation] 83 tasks Apple

    Launch officers:

    [no charge] com.adobe.AAM.Updater - 1.0.plist (2016-04-28) [Support]

    [failure] com.adobe.ARMDCHelper.cc24aef4a1b90ed56a... plist (2015-10-31) [Support]

    [operation] com.epson.Epson_Low_Ink_Reminder.launcher.plist (2015-01-19) [Support]

    [loading] com.epson.esua.launcher.plist (2015-06-29) [Support]

    [operation] com.epson.eventmanager.agent.plist (2014-09-21) [Support]

    [loading] com.google.keystone.agent.plist (2016-03-01) [Support]

    [operation] com.mcafee.menulet.plist (2016-03-23) [Support]

    [operation] com.mcafee.reporter.plist (2016-03-23) [Support]

    [loading] com.oracle.java.Java - Updater.plist (2013-11-14) [Support]

    [operation] com.symantec.uiagent.application.plist (2010-11-16) [Support]

    [operation] com.trusteer.rapport.rapportd.plist (2016-03-19) [Support]

    Launch demons:

    [loading] com.adobe.ARMDC.Communicator.plist (2015-10-31) [Support]

    [loading] com.adobe.ARMDC.SMJobBlessHelper.plist (2015-10-31) [Support]

    [loading] com.adobe.fpsaud.plist (2016-04-15) [Support]

    com.DYMO.pnpd.plist [no charge] (2014-10-16) [Support]

    [loading] com.expressvpn.tap.plist (2016-01-27) [Support]

    [loading] com.expressvpn.tun.plist (2016-01-27) [Support]

    [loading] com.google.keystone.daemon.plist (2016-03-01) [Support]

    [loading] com.macpaw.CleanMyMac3.Agent.plist (2016-04-18) [Support]

    [operation] com.mcafee.cspd.plist (2015-05-08) [Support]

    com.mcafee.ssm.ScanFactory.plist [no charge] (2016-03-16) [Support]

    com.mcafee.ssm.ScanManager.plist [no charge] (2016-03-16) [Support]

    [operation] com.mcafee.virusscan.fmpd.plist (2016-03-22) [Support]

    [loading] com.microsoft.office.licensing.helper.plist (2010-08-25) [Support]

    [loading] com.oracle.java.Helper - Tool.plist (2013-11-14) [Support]

    [loading] com.symantec.MissedTasks.plist (2009-11-10) [Support]

    [loading] com.symantec.Sched501 - 1.plist (2014-08-27) [Support]

    [loading] com.symantec.Sched501 - 4.plist (2015-01-08) [Support]

    [loading] com.symantec.Sched501 - 5.plist (2015-01-08) [Support]

    [loading] com.symantec.avscandaemon.plist (2009-10-10) [Support]

    [operation] com.symantec.diskMountNotify.plist (2009-09-14) [Support]

    [loading] com.symantec.navapd.plist (2009-09-14) [Support]

    [loading] com.symantec.navapdaemonsl.plist (2009-11-14) [Support]

    [operation] com.symantec.sharedsettings.plist (2009-07-22) [Support]

    [operation] com.symantec.symSchedDaemon.plist (2009-11-10) [Support]

    [operation] com.symantec.symdaemon.plist (2009-03-27) [Support]

    [operation] com.trusteer.rooks.rooksd.plist (2016-03-19) [Support]

    User launch officers:

    com [running]. GoodShop.updater.plist (2013-09-24) [Support]

    [loading] com.adobe.AAM.Updater - 1.0.plist (2015-10-25) [Support]

    [failure] com.facebook.videochat. [entrenched passage] .plist (2014-08-09) [Support]

    [loading] com.macpaw.CleanMyMac3.Scheduler.plist (2016-04-25) [Support]

    Items in user login:

    iTunesHelper Application (/ Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)

    Application of Google Reader (Google Drive.app/Applications /)

    Dropbox application (/ Applications/Dropbox.app)

    ExpressVPN application (/ Applications/ExpressVPN.app)

    CleanMyMac 3 Menu Application (/ Applications/CleanMyMac 4.app/Contents/MacOS/CleanMyMac 3 Menu.app)

    Other applications:

    [ongoing] com.DYMO.pnpd

    [ongoing] com.getdropbox.dropbox.83552

    [ongoing] com.google.GoogleDrive.81632

    [ongoing] com.macpaw.CleanMyMac3.Menu.80672

    [ongoing] com.mcafee.ssm.ScanManager

    [ongoing] com.mcafee.virusscan.ssm.ScanFactory

    [loading] 420 tasks Apple

    [operation] 193 tasks Apple

    Plug-ins Internet:

    o1dbrowserplugin: 5.41.3.0 - 10.8 SDK (2015-12-16) [Support]

    Default browser: 601 - SDK 10.11 (2016-04-18)

    Flip4Mac WMV Plugin: 2.4.4.2 (2012-12-25) [Support]

    DYMO Safari Addin: Unknown - SDK 10.9 (2014-10-26) [Support]

    AdobePDFViewerNPAPI: 15.010.20060 - SDK 10.8 (2016-03-11) [Support]

    FlashPlayer - 10.6: 21.0.0.226 - SDK 10.6 (2016-04-25) [Support]

    Silverlight: 5.1.30514.0 - SDK 10.6 (2015-09-16) [Support]

    QuickTime Plugin: 7.7.3 (2016-04-12)

    Flash Player: 21.0.0.226 - SDK 10.6 (2016-04-25) [Support]

    googletalkbrowserplugin: 5.41.3.0 - 10.8 SDK (2015-12-11) [Support]

    iPhotoPhotocast: 7.0 (2010-11-15)

    AdobePDFViewer: 15.010.20060 - SDK 10.8 (2016-03-11) [Support]

    SharePointBrowserPlugin: 14.3.0 - SDK 10.6 (2013-02-09) [Support]

    SiteAdvisor: 2.0 - 10.1 SDK (2015-03-30) [Support]

    JavaAppletPlugin: Java 8 updated 77 03 (2016-04-18) check the version of build

    Safari extensions:

    AdBlock - BetaFish, Inc. - https://getadblock.com (2016-03-30)

    Add to wishlist Amazon - Amazon.com - http://www.amazon.com/wishlist?ref=cm_wl_saf_ext (2011-07-09)

    GoodShop - GOODSEARCH LLC - http://www.GoodSearch.com (2013-09-24)

    SiteAdvisor - McAfee - http://www.siteadvisor.com (2015-09-28)

    PIN button - Pinterest, Inc. - http://www.pinterest.com/ (2015-07-03)

    3rd party preference panes:

    Flash Player (2016-04-15) [Support]

    Flip4Mac WMV (2012-05-15) [Support]

    Growl (2015-09-16) [Support]

    Java (2016-04-18) [Support]

    Norton\nQuickMenu (2010-11-16) [Support]

    Trusteer Endpoint Protection (2016-04-18) [Support]

    Time Machine:

    Time Machine not configured!

    Top of page process CPU:

    5% WindowServer

    1% kernel_task

    0% fontd

    0% SymDaemon

    Top of page process of memory:

    445 MB kernel_task

    Mdworker (18) 430 MB

    164 MB Google Reader

    Dropbox 123 MB

    VShieldScanner (4) 66 MB

    Virtual memory information:

    106 MB free RAM

    4.15 GB used RAM (770 MB cache)

    6 MB used Swap

    Diagnostic information:

    April 28, 2016, 22:42:12 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-28-224212_[redacted].crash

    com.etresoft.EtreCheck - /Applications/EtreCheck.app/Contents/MacOS/EtreCheck

    28 April 2016, 22:21:42 self-test - spent

    April 28, 2016, 19:49:12 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-28-194912_[redacted].crash

    April 28, 2016, 19:47:10 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-28-194710_[redacted].crash

    April 28, 2016, 19:38:58 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-28-193858_[redacted].crash

    April 28, 2016, 19:04:58 ~/Library/Logs/DiagnosticReports/rapportd_2016-04-28-190458_[redacted].crash

    /Library/rapport/*/rapportd.app/Contents/MacOS/rapportd

    April 28, 2016, 06:06:59 /Library/Logs/DiagnosticReports/Safari_2016-04-28-060659_[redacted].hang

    /Applications/Safari.app/Contents/MacOS/Safari

    April 28, 2016, 12:48:04 AM /Library/Logs/DiagnosticReports/SubmitDiagInfo_2016-04-28-004804_[redacted].cpu _resource.diag [details]

    / System/Library/CoreServices/SubmitDiagInfo

    April 27, 2016, 22:01:10 /Library/Logs/DiagnosticReports/Safari_2016-04-27-220110_[redacted].hang

    April 27, 2016, 21:57:37 /Library/Logs/DiagnosticReports/Safari_2016-04-27-215737_[redacted].hang

    April 27, 2016, 19:05:50 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-27-190550_[redacted].crash

    April 27, 2016, 06:57:28 ~/Library/Logs/DiagnosticReports/Airmail 2_2016-04-27-065728_ .crash [deleted]

    / Applications/Airmail 2.app/Contents/MacOS/Airmail 2

    26 April 2016, 19:48:11 /Library/Logs/DiagnosticReports/Safari_2016-04-26-194811_[redacted].hang

    Remove all apps viruses you have

    Symantec, McAfee, Norton...

    CleanMyMac3

  • Question about the use of secondary indexes in application

    Hi, I'm a newbie to Berkeley DB. We use Berkeley DB for our application that has tables in the following structure.

    Key to value1 value2
    ------- --------- ----------
    1) E_ID-> E_Attr, A_ID - where A_ID is String for example. A_ID = A1; A2; A3
    -where E_ID is unique but for example A1 or A2 may be part of multiple F_VITA say E1, E3, E5 etc.


    So my question is that it is possible to create secondary indexes on individual items of Value2 (e.g., A1, A2 or A3)?


    Another question, lets say we have two tables

    Key to value1 value2
    ------- --------- ----------
    2) X_ID-> X_Attr, E_ID

    E_ID-> E_Attr, A_ID - where A_ID is String for example. A_ID = A1; A2; A3

    In this case, can create us E_ID as a secondary Index but with primary Table-> E_Attr, A_ID E_ID?

    While X_ID given, we can get the chronogram, E_ID-> E_Attr, table allocation A_ID?

    Don't know if its possible.

    Thanks for reading.

    (1) when talking about data & Index, I was referring to READ ONLY BDB with no. UPDATES where you download entire files allows for example on a weekly basis. In this case, I believe that the data will be stored directly in the tree. It will not be stored in the transaction as such logs. This hypothesis is correct?

    # Storage I is nothing other than a transaction log. Read the white paper, that I mentioned.

    (2) and about the Garbage Collection operation, I meant BDB 'Cache éviction' algorithms. Sorry I have not communicated before.

    I use an LRU algorithm. What do you need exactly to know, that you can not get the doc?

    -mark

  • A question about interference to sensitive data

    We scramble SSN and other sensitive data in HRMS in the development/TEST forums (well not PROD). The idea is the change of the SSN and other data in the database (per_all_people_f and others) every time that clone us of PROD DEV/TEST. I want to get some pet food if this method is to backup? And another question is, in Oracle, VMS can only be found in per_all_people_f table, I mean, the it not is only one table in HRMS which have SSN, I'm good?

    Thank you!
    -Bill

    For TDE, my understanding is that it's for backup and operating system files. Our goal is to prevent users from applications of TST/DEV to access sensitive data, so I think the transparent data encryption may not work in this circumstance. Please correct me if I'm wrong, that will be very useful.

    You are right. Transparent data encryption is an option in the database that allows you to encrypt the columns selected in the files of the E-Business Suite database, data will also be encrypted in the backup that you are taking.

    The conclusion is an API is necessary here instead of manual update.

  • IPhone-to-iPad call phone cellular continuity uses the data

    Many times I drive to work using my iPad Mini 4 WiFi + cell phones driving to work to play music of different applications via bluetooth to my car audio system.

    Whenever my phone rings, my iPad has the T-Mobile (my support for iPhone & iPad) also allows cellular continuity. My question is, if I were to answer the call on my iPad I will be charged data or the call still counts against cellular minutes? So, basically the iPad use VoIP (data) or VoLTE (phone calls / minutes) to manage the call? Thanks for any help!

    Updated - talked with my contact at T-Mobile, who is Advisor senior technical/engineering. He said phone calls on iPad via transfer cell/continuity is currently working on Facetime Audio that is essentially a VoIP service and use the cell data.

    However, T-Mobile is looking for ways to eliminate the use of data for its customers on Facetime Audio (and perhaps even Facetime video as well) through their programs free music and frenzy on. If that happens, it would be incredible!

  • Use of data from the system services

    My iPhone starts 5s have a huge use of Data Services system. For a minute, it takes 100 MB (in detail its all used in general). Anyone knows what is coming? Because until now was without any problem. Thank you.

    Hello LucieMai,

    Thank you for reaching out to the Community Support from Apple. I know how it is important to keep the data, and I will do everything I can to help. Every time we see an increase of the data after a recent update as 9.3.3 is a good idea to restart if you have not already. If the behavior persists after restarting, you may want to try to reset the network settings. This will ensure that your phone is using the last settings contact your carrier and your Wi - Fi access. Don't worry, this will only affect the settings like Wi - Fi and VPN passwords. Your content is not deleted. You have to reenter your Wi - Fi password once your device restarts.

    Make then select settings > general > reset > reset the network settings on your device.

    If you have any questions or concerns, the entire community is here to help.

    -Best regards

Maybe you are looking for

  • My iPhone keeps having more than 6 lines by the top of my screen

    my iPhone 6 s more ceases to be lines at the top of my screen how to fix

  • Bad ethernet port?

    My iMac does more on Ethernet. All other devices connected to the same switch works great. Is it possible that this port has gone wrong? It can be repaired? Can I use a Wi - Fi connection, but I prefer the direct ethernet connection. Is it useful to

  • Multifunction HP B110a stops working after update from Hp

    I have the all-in-one HP Photosmart B110a, who stops working after applying "HP updates notification". Impossible to print or access HP Solution Center (nothing works). Only solution is to use the installation CD to completely uninstall the HP softwa

  • Windows Vista SP1 installs, not anything else

    None of the suggestions work threads. I reinstalled same full operating system from the original cd. I had already replaced the hard drive as the old man a bad wwnt. Just curious, if maybe the old hd had a license or something attaching it to the pro

  • Loss of the U-tube sound

    I suddenly lost the sound from the U-Tube videos last night, but all other computer sounds (and Pandora radio etc) works very well. That's happened?