Re:  Reference field to change red alert message. How?

Hi FICO Consultant,
We are using T-Code:  FBL1N, using our com code and execute the report.  In this report, we have used the reference field for company purpose key in the same reference no.: (EX:  789100).  The same number appeared again on the screen (Reference No.).  That time red alert message appeared on the screen or an existing same reference in this field.  Any body gives the idea to me in FICO.
We expect the reply from you. 
Thank you,
Regards,
Krishnan.

The icons are a function of the Alert style: that can only be changed in the property palette. I'don't believe there is any way of substituting your own icons for the Oracle ones short of overwriting the Oracle supplied files with graphics of your own. However, we can set the Alert Title and Message Text programmatically with the SET_ALERT_PROPERTY built-in.
Cheers, APC

Similar Messages

  • Reference field name changes

    I'm working on two sheets, one with all the nitty-gritty details of my bills, the other a summary.
    When I wanted to put an if() formula that reads a cell in the summary sheet to read from one field in the details screen the Field Name changes. It was working on most of the fields until I got to one set of them then this happened:
    when I put in
    =IF('Bill/Exp Comparator' :: '12/29/09' J C Penney="","",'Bill/Exp Comparator' :: '12/29/09' J C Penney)
    and hit enter I'd get
    =IF('Bill/Exp Comparator' :: '12/29/09' '3/9/10' C Penney="","",'Bill/Exp Comparator' :: '12/29/09' '3/9/10' C Penney)
    I would delete the '3/9/10' and hit enter again, it would change back to it. I don't know why is it doing it with one field or how to stop it.
    This is another reason why I should stick to a Windows' product.

    MWSibert wrote:
    2. I don't know what you mean by:
    <startupVolume>:Users:<yourAccount>:Library:Preferences:com.apple.iWork.Numbers. plist
    <startupVolume>:Users:<yourAccount>:Library:Preferences:com.apple.iWork.Numbers. LSSharedFileList.plist
    These are the paths to two preferences files that could be causing the abnormal behaviour.
    Go to the Finder, open a new Finder Window.
    In the sidebar, the house icon with your (user)name under it is <yourAccount>. Start there with a double click or single click, depending which view (icons, list or columns) you are using in the Finder Window, to open that item. In the new list that opens, repeat with the next item (Library) in the path.
    The last item in the path is a preferences file, identified by the .plist suffix on the filename.
    Preferences files are constantly being read, changed and written to by the application, and occasionally become corrupted. Deleting them is a common 'first aid' step. The application (Numbers in this case) will create a new, clean copy of the file when the need arises.
    if this is using a script, I'm not practiced at that, and the "LSSharedFileList" part bugs me. "share" with what, where, whom? Is this opening my computer to others without my knowledge?
    If your profile is correct (it says you are using Mac OS X v10.4.11), you are unlikely to find the second file (com.apple.iWork.Numbers.LSSharedFileList.plist). This is a file associated with Launch Services, and was introduced in OS X v 10.5. It's on Yvan's machine as he has Numbers set up to Launch as one of his log in items.
    I don't mind emailing a template because it's nothing impressive to anybody. Would you mind if I send a template?
    Go ahead. Please put "Numbers Ref Field Changes" in the subject line. My address is available in my profile—click my neme to the left of this message to get there.
    Regards,
    Barry

  • Problems with changing screen & alert message. Bug?

    Hallo everybody,
    I have very strange problem.
    I'm using gauge in independent screen while mobile phone is connecting to server. If it cannot connect becouse of any reason (bad password, etc), it should jump to main menu and display Alert with error message:
    public void catchError(String error_message){
            display.setCurrent(mainMenu);
            currentMenu = MAIN_MENU;
            Alert alert = new Alert("ERROR!", error_message, null,  AlertType.WARNING);
            alert.setTimeout(Alert.FOREVER);
            display.setCurrent(alert);
    }So with this code, it show mainMenu for a very short while (about 1/10 s), than displays alert. But when I dismiss the alert message, it jumps back to "Gauge_screen"!
    I think it put screen to some buffer, but when I change display so fast, it cannot complete it sucesfully. Only solution of this problem that I found is very stupid and I cannot use it with clear mind:
    public void catchError(String error_message){
            display.setCurrent(mainMenu);
            currentMenu = MAIN_MENU;
            int i = 0;
            while (i<10000){
                i++;
            Alert alert = new Alert("ERROR!", error_message, null,  AlertType.WARNING);
            alert.setTimeout(Alert.FOREVER);
            display.setCurrent(alert);
    }Does someone saw and solve this problem before? What do you think about it?
    Thanks
    petosh

    It's probably because setCurrent() is not something that happens instantaneously. So after setCurrent() when you put the alert on the display still hasn't changed so it remembers that it has to return to the gauge screen. You can use setCurrent(Alert a, Displayable next) to set the alert with the menu as the next screen.
    shmoove

  • DISPLAY ANY VALUE OF FIELD OR VALUE WITH ALERT MESSAGE

    COULD I KNOW THAT HOW CAN WE DISPLAY A VALUE OF A FIELD OR A BIND VARIABLE WITH MESSAGE OF AN ALERT IN FORMS.
    AN ALERT WICH HAS ALL THREE BUTTON

    First creat an alert in the object navigator called MY_ALERT then use the following code
    alert_id := Find_Alert(MY_ALERT');
    set_alert_property(alert_id, ALERT_MESSAGE_TEXT, 'YOUR MESSAGE '||<BIND VARIALBEL OR :ANY FIELD VALUE); alert_button := show_alert(MY_ALERT);
    IF alert_button = alert_button1 THEN
    <do something>;
    ELSE
    <do something>;
    END IF;
    (Refer to forms help as it explains more in detail)

  • Captivate 8 - Changing the alert message in Firefox

    Hello there,
    Is there a solution to change the incompatibility warning message that appears when an CP8 publication is visualized with Firefox?
    thanks

    well the problem turns out due to smart shapes as buttons.
    didn't quite find a js script edit that can help.. but the only alternative we had was to go back to the project and replace smartshape buttons with image buttons.
    hopefully adobe patches this issue..

  • How to stop printing the crystal report with an alert message

    I am having a field called "APPROVAL" in my stored procedure with which I prepared the CR. I want that if the value in the filed is 'A' then only the crystal report should print else it should prompt with an alert message.

    Hi Sreejith,
    Check this helps you:
    Create an alert from "Report  -> Alerts -> Create or Modify Alerts" with below steps:
    1. Provide name of the alert (say Alert1)
    2. Click on X+2 in front of "Message" field and write the Alert message you want to display.
    3. Click on Condition button and write the condition If not({APPROVAL}='A') then true;
    The above Alert will prompt with configured alert message when {APPROVAL} field is not having value of 'A'
    Now, in a formula, write below content and display it where you want to display the APPROVAL field value:
    If {APPROVAL} = 'A' then
              {APPROVAL}
    This formula content will be blank if the value of {APPROVAL} is not 'A'
    Thanks,
    Raghavendra

  • BEx Reference field problem

    Hi BW Experts,
    I have created a calculated key field (Z_TOTCNTFLG_1) in a Query using Bex Analyser. The calculated key field simply does a count of a flag field I am extracting into a BW field called 'Z_COUNTFLAG'- this field has a value of 1 in each entry into BW. Hence Z_TOTCNTFLG_1 in BEx does a total count of this field.
    The problem is when I go to run the query I get the following error message:
    Diagnosis
    The reference field for Z_TOTCNTFLG_1 is not maintained, and the two aggregations do not agree.
    System response
    The default value 0CALDAY is set for the reference field.
    Procedure
    Check reference field 0CALDAY. If this message appears when you are checking or executing a query, check calculated key figure Z_TOTCNTFLG_1.
    Does anyone know how to resolve this. I have already created a query which successfully works for a seperate cube using the same info Object?
    Many Thanks
    Depesh

    Hi AHP,
    The documents helped.  Many Thanks!  However, Let me explain a bit more about what I have built in BW from R/3.  AN ABAP developer has written a custom extract from R/3 tables and created a custom datasource.  In this extract he has given every custom table a ZCOUNT field with an assigned value of 1.  This is then extracted into a Key Fig in BW called Z_COUNT set as a Maximum aggregation, when creating it. 
    This is then used to calculate total number of records etc.  So when I go to enhance the ckf properties I set the exception aggregation as 'summation' but dont find the ref char drop down menu of use as it holds only chars?
    FYI I am only extracting the time char as Fiscal Year/Period.
    Any ideas?
    Many Thanks
    Depesh

  • Clear/Delete alert message in CCMS

    Hi, I have a red alert message in RZ20 (CCMS monitor) in the node called QRFC Queues - Exactly-Once Processing Queues - Int. Server Outbound Messages (XBTO*) - Blocked queues: Client 100
    It's a message that failed a week ago, and the message is now correctly processed, but the alert remains.
    How can I delete or remove the alert from the monitor?
    Thanks!

    Solved it. I just clicked the button Display alerts, then in the new view clicked Complete Alerts.

  • Where is the field for changing the  password?

    Hello. I went to my control panel today and I can't find any field for changing my password. How do I change? Where? Thanks.

    Hi, I am logged in and I can't see any "Account" link
    in the upper right side of the page. All I can see
    are the Sign out, Your Control Panel, Search and FAQ
    links. I clicked on "Your Control Panel" link and I
    see I can edit my Handle, Name, Email, etc. but I
    don't see anything related to password. Plus, there
    is no "Change Password" link in the upper right side
    of the page under the "Log out", or the "Sign Out"
    link.I agree that Oracle could have made it a bit more explicit. Instead of
    To change your password, make sure you are logged on and click the "Account" link in the upper right side of the page.
    they should have said
    To change your password, make sure you are logged on and click the "Account" link in the upper right side of this page. (This page = the one you are reading when you see the FAQ about changing the password.)
    I have to admit that it is strange the Account link appears on every OTN page, every Education.oracle.com, every www.oracle.com page ... but not on a forums.oracle.com page
    Message was edited by: Hans Forbrich
    (The term 'every' meaning 'every one I remember seeing the account link on' <g>)

  • Field References, Field Selection Group & Screen Sequence

    Dear Experts,
      Please whare are the importance of field References,  Field Selection group  & Screen Sequence? How do i use them?

    Hi,
    These are Object based (Like Material master, BOM, Routing etc..), so depending on how you want the screen layout and how you want the mandatory/optional field defination you can define it here.
    Regards,
    Prasobh

  • Automatic invoice reduction - MIRO XBLNR1 - Reference field

    Hello all,
    I've set up the automatic invoice reduction in MIRO due to errors in vendor invoice (with subsequent credit received in paper).
    In this process there are two FI documents (A1 for invoice and background A2 for reduction) regarding the original MM document.
    The user uses "refence" field in invoice header to relate to the vendors physical document but the field only goes into A1 (BKPF) document and not A2, event with this A2 being background document and in it's master this reference field being mandatory...
    How can I put the reference field in A2 as well?
    Regards.

    Hello,
    Procedure for posting the Invoice Reduction :
    (1) Enter the T.Code MIRO - Select the Transaction as Invoice only.
    (2) Give the reference number ( Example PO Number) for which you want to create an Invoice.
    (3) In the Display Variant, Select Invocie Reduction.
    (4) Maintain the required details and post the Invocie.
    Example: Invoice Reduction due to Quantity Variance:
    PO: 100 nos @ 10 EUR/No
    GR: 40 nos
    Invoice: 40 nos @ 12 EUR/No = 480 EUR
    When you enter Invoice,
    Order Qty Order Amount Invoiced Qty Invocied Amt
    40 400
    Select Reduce Invocie in the Display Variant.
    Enter the Quantity and Amount stated in the Invocie in the fields Invoice quantity acc. vendor and Invoice amount acc. vendor.
    Order Qty Order Amount Invoiced Qty Invocied Amt
    40 400 40 480
    When you post the Invocie, Purchase order history will be updated as follows:
    Quantity Value
    Total Delivered 40 400
    Total Invoiced 40 400
    Accounting Documents:
    GR:
    Stock Account = 400
    GR/IR Clearing Account = 400(-)
    Invoice:
    Vendor Account = 480(-)
    GR/IR Clearing Account = 400(-)
    Invoice Reduction Clearing Account = 80(+)
    Automatic Credit Memo:
    Vendor Account = 80(+)
    Invoice Reduction Clearing Account = 80(-)
    Regards
    Mahesh Naik.

  • How can I find the reference field of components ?

    Hi everyone ;
    I am a Junior Abap Developer. I am  creating a structure that I will use in the report program. When I create a structure , some of the components needs to get reference field.Ex: NETWR,BTGEW,KWMENG.  How can i find the reference field of component?

    Hi,
    You have to put entries for currencies and quantity fields for these fields,
    Like for NETWR reference table is VBAK and field is WAERK,
    for other Quantity field you can use MEINS as reference field.
    You can check the reference table and reference fields in the respective tables( i.e. VBAP here).
    Thanks,
    Anmol.

  • Query to populate an alert message to avoid the duplication of Reference no

    Hi Experts,
    SUB:Query to populate an alert message to avoid the duplication of BP reference no.
    In A/R invoice, BP reference (numAtcard) is used to enter sales Order no as the reference number. As human error, double A/R invoice is created to that particular Sales Order no.
    So,I want a formatted search query in that BP reference field, so that when i type the sales order number and give tab, it should populate the alert message if it already exists.
    Moreover i do not want to block it through store procedure method, only warning is required to my scenario.
    Kindly, help me on this ground.
    Regards,
    Dwarak

    Hi there, i think this could work, maybe you'll only need to configure the Formated search to work with the document total, each time it changes
    declare @numatcard varchar(15)
    declare @count int
    set @numatcard=(select $[oinv.numatcard])
    set @count= (select count(numatcard) from oinv where numatcard=@numatcard)
    if @count>1
    select 'There is a duplicated reference'
    select @numatcard
    hope it works

  • Error message while trying to run red alert 1 in xp

    I have just bought command and conquer: the first decade for windows xp. All of the games other than the first two (c&c 1 and red alert 1) run fine. (I am running XP through boot camp).
    When starting up these two games, I get this error message:
    "Error: Unable to set video mode"
    These games were designed for windows 95 but I am running it windows 95 compatability mode in xp. They just do not load.
    I downloaded the latest patch which was meant to fix this common problem, however it dd not work. I have even gone into the settings folders and upped the screen resolution to 640 x 480 but to no joy.
    I have an ATI Radeon HD2400
    Does anyone have any ideas?
    Andy
    p.s. a lot of pc users have this problem to, not just because of my mac i do not think

    kory wrote:
    I'm trying to use Disk Utility to clone it. I have verified and repaired both the MacBook Pro HD and the external HD with Disk Utility.
    *Hi Kory, Welcome (Back)* to Apple's Users Help Users Forums.
    In addition to Utilities Restore, these are popular Cloners.
    http://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html
    Purchase at $27.95 will allow smart backups that look at the bu files and only move over new ones. It's quick at ~7 mins to change ~1 gig out of 20.
    Be sure to test that the clone boots and apps behave properly.
    Here are other popular cloners.
    http://www.bombich.com/software/ccc.html
    http://www.prosoftengineering.com/products/drivegeniusinfo.php?PHPSESSID=909c070fb2e13b35097fa9cc1340bfc0
    Good Luck, JP
    Message was edited by: Jpfresno "In addition to ..."

  • Field Abstract Date is required then Browser alert message coming

    Hi All,
    When ever we have a Abstract Date field as a mandatory and when you click Save or Check in from the ribbon its throwing the alert message "Are you sure you want to leave this page". See the detailed message on the screen shot attached.
    If we remove the required field for the Abstract Date we are not getting any message like below. This is happening on the OOB page as well. To replicate this issue just make that field as a Required and try to save or check in the particular page.
    Any help would be appreciated.
    Rajasekar A.C

    Hi,
    According to your post, my understanding is that you wanted to remove the alert message.
    Most probably you see javascript confirmation dialog when trying to leave page edit mode without saving.
    This is standard IE Javascript confirmation dialog which prevents user to leave the page.
    This functionality is not SharePoint-specific, it is standard IE behavior.
    For more information, you can refer to:
    Publishing pages auto save mechanism in Sharepoint when user leaves edit mode
     Warn users before leaving a page with unsaved changes
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

Maybe you are looking for

  • Applet and appletviewer with j2se1.4.1,  IE6 and  XP

    I just install j2sdk1.4.1 on my computer but when I run old applet that I did with appletviewer the program don't run properly (He don't handle mouse event, repain()) .When I run the same program on IE6 it run properly. Also when I run some old apple

  • I can't figure out which add-on is crashing

    something is crashing in firefox, i don't think it's firefox itself. websites with text only continue working, icanhascheezeburger sites keep working, just the display portion - the picture itself, not the surrounding text adds, whatever, goes blank

  • How to set the settings

    for such a file: to get it out in the same size? ~Karl

  • Selecting line in Illustrator

    Is there a way to open a file and select every line in it at the same time no matter what the line weight or color is?

  • Movie Too Long Message

    I wanted to create a single dvd of a home movie I created in iMovie that is about 1 hour long. When I brought it into iDVD5 I got the error that "the duration of your project is too long" or something similar. Is there a time length I should be shoot