Need User friendly message, when there is no data selected in report.

Hi,
Can we able to set user friendly message in place of system generated message in reports, while report generated with no data.
I am using OBIEE 11.1.1.3.0
Thanks,
Archie.

Hi,
Go to your Results tab, and then click on the icon "Edit Analysis Properties" and select "Display Custom Message" from the "No Results Setting" drop down. Here you can edit and have your own custom message.
Hope this Helps you.
Regards,
MuRam

Similar Messages

  • How to avoid printing a blank page when there is 'no data' in the report.

    how to avoid printing a blank page when there is 'no data' in the report.

    try like this
    if@section:IND=1
    this template
    end ifsectionbreak
    if@section:IND=2
    this template
    end if

  • Header Fields are not displayed when there is no data in the report

    Hi,
    I am having this strange situation in my webi report.
    When I refresh my report and when there is no data, column names are not being displayed in my report. All it is showing is two empty rows. When I have data, then report is displaying data along with column headings.
    Please suggest me where I am going wrong.
    Thanks,
    VenMen

    Thanks for the update.
    Can you try this.
    Run the report first time for some data.
    When the report is rendered select the table that is displayed.
    On the left pane side properties tab.
    Expand display and check all the options
    Show rows with empty measures
    show rows with empty dimensions
    Show when empty
    Hope this will help
    Regards
    Kultar

  • User-friendly message to Microsoft Access form's user from Oracle server

    I put statment like this
    RAISE_APPLICATION_ERROR (-20001, 'You forgot to enter date') in before insert trigger, so I see in my access form this message, but also a lot of statments like:
    Insert failed,
    ORA-06512: at ....., line 11
    ORA-04088: error during execution of trigger ...
    Is there a possibility to leave only this user friendly message 'You forgot to enter date!', isn't it?
    I would be very fankfull! Please help

    Hi,
    >>so I see in my access form this message
    This a exception, You need find a way to capture this message from Microsoft Access.
    Cheers

  • Problem updating to iphoto 9.6 after upgrading to Yoesmite  I am getting the following message when I try top date iPhoto This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or canc

    problem updating to iphoto 9.6 after upgrading to Yoesmite  I am getting the following message when I try top date iPhoto This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or canc

    "This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or cancelled." ?
    This error message will appear erraneously, if you skipped the update to Mavericks and iPhoto 9.5.1 and went straight from an earlier MacOS X version to Yosemite, without first updating to iPhoto 9.5.1 and associating iPhoto to your AppleID.
    Try first to buy iPhoto with your AppleID instead of updating. Delete iPhoto from Applications, but don't empty the Trash, then go to the main page of the App Store and search for iPhoto. If you are lucky, it will show as free and you can buy it directly.
    If iPhoto  is not showing as free, there is no help but contacting the App Store Support: Ask for a redemption code. You will need to provide a prove of purchase for your mac with iPhoto preinstalled.
    http://www.apple.com/support/mac/app-store/contact/

  • Translate oracle error message into User-Friendly messages

    I want to translate the following message and display the user-friendly message.
    Error in mru internal routine: ORA-20001: Error in MRU: row= 1, ORA-02290: check constraint ...
    I have a table with MRU,MRD,...
    How do I do that?

    Mine is a sql query(updatable report). I don't have any items, except the columns on the report. One of the column is a select list of user_names( on which I want not null validation). I have "ApplyMRU" and "ApplyMRD",.. to add/delete rows.
    How do I access the columns of report. My column name is "USER_NAME". But when I put this column name in "Validate Item:" field, I am getting:
    1 error has occurred
    Item specified does not exist.

  • Error In Displaying Message When There Is An Attachment

    I am trying to display an error message in SharePoint 2013. I added the following code
    inside my ItemAdding() event receiver to force it to have error:
    properties.Status = SPEventReceiverStatus.CancelWithError;
    properties.ErrorMessage = "test";
    It
    works okay, I can see the error message. 
    However, when I attach any files, and try again, after saving, the attachment will disappear.
    When I attach again, I will get a server error: 
    Please advise.

    Hi,
    According to your post, my understanding is that you wanted to display error message when there is an attachment.
    You need to add “properties.Cancel = true;” to your ItemAdding() event receiver.
    You can cancel the event using:
    properties.Status = SPEventReceiverStatus.CancelWithError;
    properties.Cancel = true;
    properties.ErrorMessage = "test";
    The properties.Cancel determines if the event should be cancelled.  The default is false but once you set it to true it will cancel the event when the current execution ends.
    Here is a similar thread for your reference:
    http://stackoverflow.com/questions/17828963/custom-error-message-for-event-receiver-in-sharepoint-2010
    More information:
    http://davehunter.co.uk/2009/03/12/sharepoint-event-receivers-by-example-email-validation/
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Prevent save Message when there is an error

    Hi all,
    Please help me out here.
    I want to prevent saving a new Support Desk Message when there is an error in the message.
    Kind regards,
    Remy Piets

    Hey Remy,
    This can be achieved if you are ready to do some coding...
    U need to use implement BADI ORDER_SAVE..
    Within this BADI u can have your business validations done...
    If the Validations fails then you have to raise an exception DO_NOT_SAVE...
    This is satisfy your requirment.....
    Reward for usefull post...
    Regards,
    Anand........

  • How to find Latch and what actions need to be taken when there is a latch

    Hi
    Can you please tell me how to find Latch and what actions need to be taken when there is a latch?
    Thanks
    Regards,
    RJ.

    1. What is a latch?
    Latches are low level serialization mechanisms used to protect shared
    data structures in the SGA. The implementation of latches is operating
    system dependent, particularly in regard to whether a process will wait
    for a latch and for how long.
    A latch is a type of a lock that can be very quickly acquired and freed.
    Latches are typically used to prevent more than one process from
    executing the same piece of code at a given time. Associated with each
    latch is a cleanup procedure that will be called if a process dies while
    holding the latch. Latches have an associated level that is used to
    prevent deadlocks. Once a process acquires a latch at a certain level it
    cannot subsequently acquire a latch at a level that is equal to or less
    than that level (unless it acquires it nowait).
    2. Latches vs Enqueues
    Enqueues are another type of locking mechanism used in Oracle.
    An enqueue is a more sophisticated mechanism which permits several concurrent
    processes to have varying degree of sharing of "known" resources. Any object
    which can be concurrently used, can be protected with enqueues. A good example
    is of locks on tables. We allow varying levels of sharing on tables e.g.
    two processes can lock a table in share mode or in share update mode etc.
    One difference is that the enqueue is obtained using an OS specific
    locking mechanism. An enqueue allows the user to store a value in the lock,
    i.e the mode in which we are requesting it. The OS lock manager keeps track
    of the resources locked. If a process cannot be granted the lock because it
    is incompatible with the mode requested and the lock is requested with wait,
    the OS puts the requesting process on a wait queue which is serviced in FIFO.
    Another difference between latches and enqueues is that
    in latches there is no ordered queue of waiters like in enqueues. Latch
    waiters may either use timers to wakeup and retry or spin (only in
    multiprocessors). Since all waiters are concurrently retrying (depending on
    the scheduler), anyone might get the latch and conceivably the first one to
    try might be the last one to get.
    3. When do we need to obtain a latch?
    A process acquires a latch when working with a structure in the SGA
    (System Global Area). It continues to hold the latch for the period
    of time it works with the structure. The latch is dropped when the
    process is finished with the structure. Each latch protects a different
    set of data, identified by the name of the latch.
    Oracle uses atomic instructions like "test and set" for operating on latches.
    Processes waiting to execute a part of code for which a latch has
    already been obtained by some other process will wait until the
    latch is released. Examples are redo allocation latches, copy
    latches, archive control latch etc. The basic idea is to block concurrent
    access to shared data structures. Since the instructions to
    set and free latches are atomic, the OS guarantees that only one process gets
    it. Since it is only one instruction, it is quite fast. Latches are held
    for short periods of time and provide a mechanism for cleanup in case
    a holder dies abnormally while holding it. This cleaning is done using
    the services of PMON.
    4. Latches request modes?
    Latches request can be made in two modes: "willing-to-wait" or "no wait". Normally,
    latches will be requested in "willing-to-wait" mode. A request in "willing-to-wait" mode
    will loop, wait, and request again until the latch is obtained. In "no wait" mode the process
    request the latch. If one is not available, instead of waiting, another one is requested. Only
    when all fail does the server process have to wait.
    Examples of "willing-to-wait" latches are: shared pool and library cache latches
    A example of "no wait" latches is the redo copy latch.
    5. What causes latch contention?
    If a required latch is busy, the process requesting it spins, tries again
    and if still not available, spins again. The loop is repeated up to a maximum
    number of times determined by the initialization parameter SPINCOUNT.
    If after this entire loop, the latch is still not available, the process must yield
    the CPU and go to sleep. Initially is sleeps for one centisecond. This time is
    doubled in every subsequent sleep.
    This causes a slowdown to occur and results in additional CPU usage,
    until a latch is available. The CPU usage is a consequence of the
    "spinning" of the process. "Spinning" means that the process continues to
    look for the availability of the latch after certain intervals of time,
    during which it sleeps.
    6. How to identify contention for internal latches?
    Relevant data dictionary views to query
    V$LATCH
    V$LATCHHOLDER
    V$LATCHNAME
    Each row in the V$LATCH table contains statistics for a different type
    of latch. The columns of the table reflect activity for different types
    of latch requests. The distinction between these types of requests is
    whether the requesting process continues to request a latch if it
    is unavailable:
    willing-to-wait If the latch requested with a willing-to-wait
    request is not available, the requesting process
    waits a short time and requests the latch again.
    The process continues waiting and requesting until
    the latch is available.
    no wait If the latch requested with an immediate request is
    not available, the requesting process does not
    wait, but continues processing.
    V$LATCHNAME key information:
    GETS Number of successful willing-to-wait requests for
    a latch.
    MISSES Number of times an initial willing-to-wait request
    was unsuccessful.
    SLEEPS Number of times a process waited a requested a latch
    after an initial wiling-to-wait request.
    IMMEDIATE_GETS Number of successful immediate requests for each latch.
    IMMEDIATE_MISSES Number of unsuccessful immediate requests for each latch.
    Calculating latch hit ratio
    To get the Hit ratio for latches apply the following formula:
    "willing-to-wait" Hit Ratio=(GETS-MISSES)/GETS
    "no wait" Hit Ratio=(IMMEDIATE_GETS-IMMEDIATE_MISSES)/IMMEDIATE_GETS
    This number should be close to 1. If not, tune according to the latch name
    7. Useful SQL scripts to get latch information
    ** Display System-wide latch statistics.
    column name format A32 truncate heading "LATCH NAME"
    column pid heading "HOLDER PID"
    select c.name,a.addr,a.gets,a.misses,a.sleeps,
    a.immediate_gets,a.immediate_misses,b.pid
    from v$latch a, v$latchholder b, v$latchname c
    where a.addr = b.laddr(+)
    and a.latch# = c.latch#
    order by a.latch#;
    ** Given a latch address, find out the latch name.
    column name format a64 heading 'Name'
    select a.name from v$latchname a, v$latch b
    where b.addr = '&addr'
    and b.latch#=a.latch#;
    ** Display latch statistics by latch name.
    column name format a32 heading 'LATCH NAME'
    column pid heading 'HOLDER PID'
    select c.name,a.addr,a.gets,a.misses,a.sleeps,
    a.immediate_gets,a.immediate_misses,b.pid
    from v$latch a, v$latchholder b, v$latchname c
    where a.addr = b.laddr(+) and a.latch# = c.latch#
    and c.name like '&latch_name%' order by a.latch#;
    8. List of all the latches
    Oracle versions might differ in the latch# assigned to the existing latches.
    The following query will help you to identify all latches and the number assigned.
    column name format a40 heading 'LATCH NAME'
    select latch#, name from v$latchname;

  • How do I restore error message when there's not enough room to sync?

    By default, iTunes displays an error message when there is not enough room on the iPod to store all the files that are scheduled for synchronization.
    This message also has a checkbox for "Do not remind me again" (or something to that effect). The other day, I stupidly checked this box, and now I don't know how to restore the default setting (i.e., to display the error message). Instead, iTunes just silently does nothing -- with no diagnostic -- if it finds that there's not enough room on my iPod to complete a sync.
    Any ideas?

    Right click on your iPod in iTunes and select the Reset Warning option.

  • Displaying zero values when there was no data

    There are two columns 'A' and 'B' in the report which has some values.IF there was no data in the report,it shows the following system message
    +"No Results+
    +     The specified criteria didn't result in any data. This is often caused by applying filters that are too restrictive or that contain incorrect values. Please check your Request Filters and try again. The filters currently being applied are shown below."+
    My requirement was to shows the zero values instead of this message in the table format and should show the chart at 0 axis.
    Please give me your inputs and help me finding the solution
    Thanks in Advance.
    Edited by: user10414249 on Dec 1, 2009 2:22 PM

    Because a report with no records will not produce a record "with zeroes," you have to think of another way to let the client know that the report was produced successfully, but simply with no data. We faced this issue with auditing. If no report shows, how does the auditor know that there were no data rather than the report itself not working that day? So what I did is build a "NIL Report." It is a simple report that consists of two columns. The first column is the system date column. The second column is column in which in the fx button (edit formula), I put in a text like "There are no records for this day." The first column serves two purposes: one, to timestamp the report so the user knows what day the 'NIL Report" was generated, and two, to serve as a column because OBI requires at least one column for the report to run.
    I also added a footer to the report which had the name of the original report in the left pane and the run date in the right pane. The Title View also contains the name of the original report. Now when viewed, this report has all the essentials to indicate to the user that 1) the report ran successfully; 2) the title of the original report so the client knows which report is associated with the "NIL Report"; and 3) the date the report was run to timestamp the report.
    So in one of the two sections, in the Section>Properties, you will use the guid. nav. feature of the section to look at the ORIGINAL report, but this section will have the "If request returns nothing" checkbox" checked off. Put the "NIL Report" in this section. When the original report produces no records, this section will display so the client knows that there were no records.
    This is what I mean by a "meaningful report" -- a report that conveys the necessary information to let the user know what is going on. There is no way (that I know) where you can have the original report display "zeroes" when in fact there are no records at all.
    HTH,
    David

  • Display 'No Data Found' when there is inv data but still there is xml data

    Hi,
    I am converting an rdf to BI publisher. The issue is when there is no detail (inv) but still there is still xml data , due to which the report is getting printed with the skeleton template and blank details(inv).
    I need to avoid printing the report out if there is not inv detail even though there is xml data. or atleast show 'NO DATA FOUND' msg. and print the report output only when there is inv data.
    Any help is greatly appreciated.
    sample XLM generated when there is inv data:
    - <ARXCBI>
    - <LIST_G_SETUP>
    - <G_SETUP>
    <COMPANY_NAME>GL SOB</COMPANY_NAME>
    <FUNCTIONAL_CURRENCY>USD</FUNCTIONAL_CURRENCY>
    <COA_ID>23456</COA_ID>
    <SET_OF_BOOKS_ID>1</SET_OF_BOOKS_ID>
    <LIST_G_SITES />
    <REPORT_NAME>Billing Invoice</REPORT_NAME>
    <SUB_TITLE />
    </G_SETUP>
    </LIST_G_SETUP>
    <RP_COMPANY_NAME>GL SOB</RP_COMPANY_NAME>
    <RP_REPORT_NAME>Billing Invoices</RP_REPORT_NAME>
    <RP_DATA_FOUND />
    <RP_SUB_TITLE />
    <R_DEFAULT_COUNTRY>US</R_DEFAULT_COUNTRY>
    <R_DEFAULT_COUNTRY_DESC>United States</R_DEFAULT_COUNTRY_DESC>
    <T_REPORT_TOTAL />
    <RP_COUNTER />
    <INV>Invoice</INV>
    <CM>Credit Memo</CM>
    <ADJ>Adjustment</ADJ>
    <XREV>Reverse Cross Site Credit Memo</XREV>
    <XAPP>Apply Cross Site Credit Memo</XAPP>
    </ARXCBI>
    Thanks!

    Hi Srini,
    Now I am running into another problem. When there is no detail data it displays 'No data found' as expected in the report output. But is there any way to restrict the print option (avoid wasting the paper) to just display 'No data found' in the output but not to print the output only in this case.
    I really appreciate any help!

  • [svn:osmf:] 10085: Fixing video width and height getting reset when there' s no true dimensional change reported by 'onMetaData'.

    Revision: 10085
    Author:   [email protected]
    Date:     2009-09-09 07:39:54 -0700 (Wed, 09 Sep 2009)
    Log Message:
    Fixing video width and height getting reset when there's no true dimensional change reported by 'onMetaData'.
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/openvideoplayer/video/VideoElement.as

    hi their i have tried your last code but their is a problem with it on my pc that when i click the send video button it gives the error related to vector,
    Vector deviceList = CaptureDeviceManager.getDeviceList()
    di = (CaptureDeviceInfo)deviceList.firstElement();
    returns zero.
    please help my email address is [email protected]
    kindly send me an email regarding the solution of my problem. i am using 'creative web cam' over XP windows.

  • I am continually getting this error message when trying to up-date software for: iTunes and iPhoto:The operation couldn't be completed. (NSURLErrorDomain error -1012.)

    I am continually an error message when trying to up-date iPhoto and iTunes. Does anyone have any suggestions, please?

    Hello Linc. These are the logs to the last attempts at up-dating iTunes.
    Sep  8 18:10:59 iMac.local Software Update[1722]: SoftwareUpdate: Scan for client pid 1722 (/Applications/App Store.app/Contents/MacOS/App Store)
    Sep  8 18:11:02 iMac.local Software Update[1722]: Failed Software Update - Refusing invalid certificate from host: swscan.apple.com
    Sep  8 18:11:04 --- last message repeated 1 time ---
    Sep  8 18:11:04 iMac.local Software Update[1722]: SoftwareUpdate: Error encountered in scan: Error Domain=NSURLErrorDomain Code=-1012 "The operation couldn’t be completed. (NSURLErrorDomain error -1012.)" UserInfo=0x7fd9a8cfae70 {NSErrorFailingURLKey=https://swscan.apple.com/content/catalogs/others/index-mountainlion-lion-snowleo pard-leopard.merged-1.sucatalog, NSErrorFailingURLStringKey=https://swscan.apple.com/content/catalogs/others/index-mountainlion-lion-snowleo pard-leopard.merged-1.sucatalog}
    Sep  8 18:11:04 iMac.local Software Update[1722]: SUAppStoreUpdateController: scan (f=0, c=1, p=1, r=1) got error The operation couldn’t be completed. (NSURLErrorDomain error -1012.)
    Sep  8 18:11:17 iMac.local Software Update[1722]: SUAppStoreUpdateController: proceed with scan based on intervening install (including Unity Web Player at 2013-07-23 17:32:38 +0000) (last scan: 2013-03-11 16:00:20 +0000)
    Sep  8 18:11:17 iMac.local Software Update[1722]: SoftwareUpdate: Scan for client pid 1722 (/Applications/App Store.app/Contents/MacOS/App Store)
    Sep  8 18:11:19 iMac.local Software Update[1722]: Failed Software Update - Refusing invalid certificate from host: swscan.apple.com
    Sep  8 18:11:22 --- last message repeated 1 time ---
    Sep  8 18:11:22 iMac.local Software Update[1722]: SoftwareUpdate: Error encountered in scan: Error Domain=NSURLErrorDomain Code=-1012 "The operation couldn’t be completed. (NSURLErrorDomain error -1012.)" UserInfo=0x7fd9a98c2090 {NSErrorFailingURLKey=https://swscan.apple.com/content/catalogs/others/index-mountainlion-lion-snowleo pard-leopard.merged-1.sucatalog, NSErrorFailingURLStringKey=https://swscan.apple.com/content/catalogs/others/index-mountainlion-lion-snowleo pard-leopard.merged-1.sucatalog}
    Sep  8 18:11:22 iMac.local Software Update[1722]: SUAppStoreUpdateController: scan (f=0, c=1, p=1, r=1) got error The operation couldn’t be completed. (NSURLErrorDomain error -1012.)
    Sep  8 18:11:39 iMac.local installd[1728]: installd: Exiting.
    Sep  8 18:14:15 iMac.local Software Update[1751]: SUAppStoreUpdateController: found in cache: <none>
    Sep  8 18:14:16 iMac.local installd[1757]: installd: Starting
    Sep  8 18:14:16 iMac.local installd[1757]: installd: uid=0, euid=0
    Sep  8 18:14:16 iMac.local Software Update[1751]: SUAppStoreUpdateController: proceed with scan based on intervening install (including Unity Web Player at 2013-07-23 17:32:38 +0000) (last scan: 2013-03-11 16:00:20 +0000)
    Sep  8 18:14:16 iMac.local Software Update[1751]: SoftwareUpdate: Scan for client pid 1751 (/Applications/App Store.app/Contents/MacOS/App Store)
    Sep  8 18:14:19 iMac.local Software Update[1751]: Failed Software Update - Refusing invalid certificate from host: swscan.apple.com
    Sep  8 18:14:21 --- last message repeated 1 time ---
    Sep  8 18:14:21 iMac.local Software Update[1751]: SoftwareUpdate: Error encountered in scan: Error Domain=NSURLErrorDomain Code=-1012 "The operation couldn’t be completed. (NSURLErrorDomain error -1012.)" UserInfo=0x7f9391840bf0 {NSErrorFailingURLKey=https://swscan.apple.com/content/catalogs/others/index-mountainlion-lion-snowleo pard-leopard.merged-1.sucatalog, NSErrorFailingURLStringKey=https://swscan.apple.com/content/catalogs/others/index-mountainlion-lion-snowleo pard-leopard.merged-1.sucatalog}
    Sep  8 18:14:22 iMac.local Software Update[1751]: SUAppStoreUpdateController: scan (f=0, c=1, p=1, r=1) got error The operation couldn’t be completed. (NSURLErrorDomain error -1012.)
    Sep  8 18:14:22 iMac.local Software Update[1751]: SUAppStoreUpdateController: proceed with scan based on intervening install (including Unity Web Player at 2013-07-23 17:32:38 +0000) (last scan: 2013-03-11 16:00:20 +0000)
    Sep  8 18:14:22 iMac.local Software Update[1751]: SoftwareUpdate: Scan for client pid 1751 (/Applications/App Store.app/Contents/MacOS/App Store)
    Sep  8 18:14:25 iMac.local Software Update[1751]: Failed Software Update - Refusing invalid certificate from host: swscan.apple.com
    Sep  8 18:14:27 --- last message repeated 1 time ---
    Sep  8 18:14:27 iMac.local Software Update[1751]: SoftwareUpdate: Error encountered in scan: Error Domain=NSURLErrorDomain Code=-1012 "The operation couldn’t be completed. (NSURLErrorDomain error -1012.)" UserInfo=0x7f93904b5c00 {NSErrorFailingURLKey=https://swscan.apple.com/content/catalogs/others/index-mountainlion-lion-snowleo pard-leopard.merged-1.sucatalog, NSErrorFailingURLStringKey=https://swscan.apple.com/content/catalogs/others/index-mountainlion-lion-snowleo pard-leopard.merged-1.sucatalog}
    Sep  8 18:14:27 iMac.local Software Update[1751]: SUAppStoreUpdateController: scan (f=0, c=1, p=1, r=1) got error The operation couldn’t be completed. (NSURLErrorDomain error -1012.)
    Sep  8 18:14:36 iMac.local Software Update[1751]: SUAppStoreUpdateController: proceed with scan based on intervening install (including Unity Web Player at 2013-07-23 17:32:38 +0000) (last scan: 2013-03-11 16:00:20 +0000)
    Sep  8 18:14:36 iMac.local Software Update[1751]: SoftwareUpdate: Scan for client pid 1751 (/Applications/App Store.app/Contents/MacOS/App Store)
    Sep  8 18:14:38 iMac.local Software Update[1751]: Failed Software Update - Refusing invalid certificate from host: swscan.apple.com
    Sep  8 18:14:41 --- last message repeated 1 time ---
    Sep  8 18:14:41 iMac.local Software Update[1751]: SoftwareUpdate: Error encountered in scan: Error Domain=NSURLErrorDomain Code=-1012 "The operation couldn’t be completed. (NSURLErrorDomain error -1012.)" UserInfo=0x7f93904b7340 {NSErrorFailingURLKey=https://swscan.apple.com/content/catalogs/others/index-mountainlion-lion-snowleo pard-leopard.merged-1.sucatalog, NSErrorFailingURLStringKey=https://swscan.apple.com/content/catalogs/others/index-mountainlion-lion-snowleo pard-leopard.merged-1.sucatalog}
    Sep  8 18:14:41 iMac.local Software Update[1751]: SUAppStoreUpdateController: scan (f=0, c=1, p=1, r=1) got error The operation couldn’t be completed. (NSURLErrorDomain error -1012.)
    Many thanks.
    Cropper100.

  • How to avoid InfoPackage hang when there is no data

    Hi,
    My infoPackage hang which block the process chain when there is no data.  I have set the Timeout time to a small value.  But, it did not work.
    Thanks,
    Frank

    Hi Frank,
    In the data load monitor > Menu Settings > Evaluation of requests (traffic lights) > what option is selected for "If no data is available in the system"...

Maybe you are looking for

  • NWDS Build Error JDK_HOME_PATH not set

    Hi, I am having two problems. 1. I am getting the classic      Error: Build stopped due to an error: No JDK_HOME_PATH defined for key 'JAVA_HOME' This is the whole log, Jul 24, 2014 3:12:01 PM /userOut/Development Component (com.sap.ide.eclipse.compo

  • Photos not appearing in photo roll etc

    When I take a photo on my Pre it does not show in the photo roll window in the bottom left of the screen and if I go into photos it does not show either the photos in photo roll or wallpaper, just a big grey cross. HOWEVER if I go to attach a photo t

  • Attaching photos in mail

    Is there a way to attach photos in email as an ATTACHMENT, not embedded in the email?

  • Authorisation in workflow - Urgent

    Hi Workflow Experts, I have one req with Error message dispaly. requirment with when ever User accessed work items in business workplace in R/3 System then Error Message should display. when ever work items for portal access then user can access. for

  • WebUtil Mac Address

    Hello WebUtil is working in my 9i Forms in a perfect way but i can't find in the webutil.pll the function that return the PhysicalComputerName or the MacAddress of the client PC Wainting for your answer ASAP THANKS IN ADVANCE FARAH