Auto Notification for reading out of range in IK11.

Hi,
Our client requirement is, system should trigger auto notification if measurement reading entered is out of upper and lower limit.
I have the user exit and code ready with me, But is there any way that we can do this by standard config in SPRO.
Thanks & Regards,
Nilesh

Hi there,
There is no customizing available to set a auto trigger for a notification. You have to do it with the user exit.
Regards,
Johan

Similar Messages

  • Read out key range in Mainstage via scripter?

    Hey people,
    I just realized, that scripter seems to be a powerful plugin.
    Anyways I didn't find a "detailed" tutorial to the scripter. I found the documentation of apple called "mainstage effects" and it says a bit about the scripter. But I'm wondering (for example), which parameters is the scripter able to get with the function GetParameters? There is no list in the internet, which shows the possible or processable parameters.
    The main thing I'm interested in:
    Mainstage has a pretty good workflow. But it's anoying that it's not possible to assign the learn-buttons for key ranges to buttons. This would be nice, if I can create two buttons that handle this.
    And another thing:
    Is the scripter able to read out the key range which is set in the channelstrip and send it out the lowest and highest key as single CC command? (I'm right now into creating a key-light-system, based on to what Native Instruments implemented in their new keyboards).
    Thank you very much,
    Chris

    Here's script for Scripter with a Learn button.
    It has an extra parameter for learning.
    Hope this helps!
    DaCaptain
    >>>>>>>
    // limit pitch range of notes
    var activeNotes = [];
    function ParameterChanged(param, value)
        switch(param)
        {                          // if it's the slider you just created
           case 0:  HandleMIDI.maxPitch = value; break;
           case 1:  HandleMIDI.minPitch = value; break;
           case 2:  HandleMIDI.learnState = value;  break;   
    function HandleMIDI(event)
      if (event instanceof NoteOn)
        if(HandleMIDI.learnState != 1)
          var pitch = event.pitch;
      if(HandleMIDI.learnState == 0) // first note
         HandleMIDI.minPitch = pitch;
         HandleMIDI.learnState = -1;
         SetParameter('Minimum Pitch', pitch);
      else if(HandleMIDI.learnState == -1)
           HandleMIDI.maxPitch = pitch;    
           SetParameter('Learn', 1); 
           SetParameter('Maximum Pitch', pitch);
      if (event.pitch > HandleMIDI.maxPitch)
      return undefined;  // don't send if too high
      if (event.pitch < HandleMIDI.minPitch)
      return undefined;  // don't send if too low
      else {
      activeNotes.push(event);
      event.send()
      else if (event instanceof NoteOff) {
      for (i=0; i < activeNotes.length; i++) {
      if (event.pitch == activeNotes[i].pitch) {
      event.send();
      activeNotes.splice(i,1);
      break;
      else { // pass non-note events through
      event.send();
    var PluginParameters = [
      { name:'Maximum Pitch', type:'lin',
      minValue:0, maxValue:127, numberOfSteps:127, defaultValue:115},
      { name:'Minimum Pitch', type:'lin',
      minValue:0, maxValue:127, numberOfSteps:127, defaultValue:30},
      {name:"Learn", type:"menu", valueStrings:["On", "Off"],
      defaultValue:1}

  • Notification for reading a KM document

    Hi experts.
    My customer asked, if there is a possibilty to check which users have read a document in a KM folder. He has some kind of "outlook - read - notification" in mind.
    Does anybody know, if the access to the KM documents is traced this way? Can I collected the data somewhere. In this case we can implement a WebDynpro App for showing the content of the logfiles ....
    I read the articles about the ADS but it seems that this tool isn't made for that purpose.
    Propositions are very welcome.
    Thanks in advance
    Jürgen

    Hi Juergen,
    Here are some options that came to my mind:
    1. If you have some sort of logging or tracing enabled you could monitor the logs to find direct URL requests for the file in question. But this would be overkill to implement if you are not already monitorinig to that level of detail.
    2. You might be able to implement a KM repository filter that would allow you to record that a particular user has downloaded/requested the document from the server. See the section on content filters in the following [documentation|http://help.sap.com/javadocs/nw04/current/km/com/sapportals/wcm/repository/filter/package-summary.html].
    I hope this gives you some ideas and gets you a solution that works.
    BRgds,
    Simon

  • GetFloatProperty gives wrong result for values out of range

    Hi
    When the method setFloatProperty is called by setting the float values out of the range,then calling getFloatProperty does not give NumberFormatException.
    Float value set more the MAX_VALUE of float returns infinity when getFloatProperty is called.Similar problem occurs with setDoubleProperty.This behavior is confusing.can anyone help me out.
    Regards
    saroj13

    Throwing a NumberFormatException would never make sense in this situation. The exception indicates that you are trying to convert a String to a number, but the String does not contain a valid number. eg. "as3"; when a conversion was attemted would throw a NumberFormatException.
    Floats and Doubles in Java comply with the IEEE 754 standard which mandates the behaviour of the types.
    Could you explain why you find this confusing?
    Hope this helps.

  • Any FM avaliable for reading domain value range

    Hi experts,
    Is there any FM avaliable to read values from value range of a domain.
    I need to fetch short  descriptions for corresponding fixed values in value range.
    Please help.
    Thanks in advance,
    Neelima

    Hi,
    Is there any FM avaliable to read values from value range of a domain?
    Yes. Of course, you can try using the following.
    Let me assume that there is a domain called ZGENDER and it has the following fixed values:
    Value  Description
    M        Male
    F         Female
    U         Unknown.
    Then do the following code:
    DATA: l_t_gender TYPE TABLE OF dd07v.
    To get the possible list of Genders
      CALL FUNCTION 'GET_DOMAIN_VALUES'
        EXPORTING
          domname         = 'ZGENDER'
        TABLES
          values_tab      = l_t_gender
        EXCEPTIONS
          no_values_found = 1
          OTHERS          = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    I need to fetch short descriptions for corresponding fixed values in value range.
    Yes. After calling the function module, l_t_gender-ddtext will have the short descriptions.
    Please revert back for any clarifications.
    Best Regards,
    Suresh

  • Disable Auto-Reply for Read Receipt

    Is it possible to make me be prompted as to whether or not I send a read receipt?
    A few people I know like to use the 'Read Receipt' option when they send me mail - if I'm on my windows PC I get prompted whether or not I want to send the receipt upon opening the message, when I use Mail on my mac it automatically sends it as I see a copy of the 'Delivery' message in my sent mail.
    Would using Entourage prompt me since it might be a MS thing?

    Hi Mike,
    From your description, I would like to clarify the following thing:
    AutoReplying For All Messages will bring mail loops, it is not recommended to send auto reply to all the incoming messages. Your understanding will be appreciated.
    Hope my clarification can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • How do I disable preparation for read out laid when I open files on the Mac Acrobat Pro DC

    I seem to remember this was a real problem in Windows? for earlier versions as I would sit and wait for Acrobat to do this meaningless chore as I never have files read to me.  But there was a software switch somewhere in the prefs.  I really can no longer find that switch.  Anyone know where it is or maybe this should be a requested feature?  Thanks

    Try: Edit > Preferences > Reading > Screen Reader Options > Only read the currently visible pages

  • In MAX my Fieldpoint FP-TC-120 module's CJC is reading "out of range."

    Is this a sign that the module is broken or is there some other explanation? More importantly, is there anything I can do about it?
    Thanks,
    Matt
    Attachments:
    Screen_Shot.bmp ‏2707 KB

    Matt,
    Do you have a TB-3 terminal base for the FP-TC-120? The CJC thermistor is embedded in the TB-3. If you do not have the TB-3 terminal base then that is the issue, if you do then you should try swapping the TB-3 with another one if you have it. Otherwise it sounds like the TB-3 CJC is broken. You can do an RMA by calling 1-877-493-2406.
    Ames
    Applications Engineering
    National Instruments

  • Read out loud mode for iPad?

    Hey there I was wondering if you all will add to the development a read out load function for a iPad. I very much enjoy your adobe xi and it working program.
    It would be very awesome for us students with dyslexia! That function for the PC has saved me and is very useful for me.
    Also if there is application for that by your company I would very much love to know.
    ***I searched and realised that its not advailable yet. I guess i'll wait to get a ipad til that function exsists.***

    Hi Tcimmiyotti,
    Thanks for contacting us.
    With the current version of Adobe Reader you can use basic accessibility . More can be found at http://blogs.adobe.com/readermobile/2013/02/21/feature-preview-accessibility-support/
    For Read out loud we are working on this feature and you might see this as a part of our future updates, but we can't commit when it will reach to you.
    Thanks
    -Satyadev

  • I need help with a PDF file that is an image, the "Read Out Loud' option does not work, please help!

    I need help with a PDF file that is an image, the "Read Out Loud' option does not work, please help!

    You mean an image such as a scanned document?
    If that is the case, the file doesn't contain any text for Reader Out Loud to read. In order to fix that, you would need an application such as Adobe Acrobat that does Optical Character Recognition to convert the images to actual text.
    You can also try to export the file as a Word document or something else using ExportPDF which I believe offers OCR and is cheaper than Acrobat.

  • There are no decent "Auto Reply SMS" apps out there. Besides for looking everyday in the store, is there a way to be notified when a new one crops up?

    I am new to the iPhone world and I have the 4S. I just switched over from the Android World. I know there are no "auto reply SMS" applications out there as I've checked everywhere (store and 'net) looking for one. In this world of trying to be safe while driving I cannot believe Apple as the leader in the industry hasn't developed something yet to deal with this. I entered a shortcut in my keyboard of "qq" to be a "I'm driving right now...." auto text but I cannot believe there is nothing out there right now. My question, besides if anyone knows of anything for a non-jailbroke phone, is how can I find something once it comes out without checking the store so often? I set up a Google alert but is that about all I can hope for??

    Hey Eric,
    Thanks for taking the time. Unfortunately no that does not solve it. Same as swipe it will get me there and it will show separate programs spaced out. The issue I am having is that all my open word files are bunched up in a pile on top of each other. I can see the edges of each one but I want them to be separated from each other enough that I can visually identify what file is what.
    Again, thanks for trying, it is appreciated.

  • Query regarding auto e-mail notification for ccms

    Hi,
    I want to configure auto e-mail notifications for ccms alerts.
    I have configured ccms monitoring for our landscape on the solution manager.I went through the SAP documentation and it mentions that we have to do the SCOT settings and CCMS_OnAlert_Email_V2 method settings in client 000.But we already have  the SCOT config done in 100.
    My question is can i complete the rest of the config in 100 or i have to do everything in client 000 only.
    Thanks,
    Shashank

    No Shashank. I dont think this is required. You need not have to redo everything in 000 client.
    You only have to create the user in 000 client.
    Might be you have to create an RFC connection between your 000 client and the 100 client. I will confirm this to you tomorrow or so. Make sure the user has required authorizations in 000 client.
    best regds,
    Alagammai.

  • Data truncation: Out of range value adjusted for column

    I encountered the following error while working thru "Creating Your First LiveCyle ES Application" and have not been able to find a solution. Any assistance would be greatly appreciated.
    javax.ejb.TransactionRolledbackLocalException: Data truncation: Out of range value adjusted for column 'loanamount' at row 1; CausedByException is:
    Data truncation: Out of range value adjusted for column 'loanamount' at row 1
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:247)
    at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:335)
    at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:166)
    at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:153)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:122)
    at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)
    at org.jboss.ejb.Container.invoke(Container.java:873)
    at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:415)
    at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:88)
    at $Proxy284.writeObject(Unknown Source)

    hmm, i have sloved the error already. I have make my longtitude double(40,20).

  • Failure migrating wiki to Mountain Lion Server with wikiadmin, value is out of range for type integer

    We are trying to migrate our 10.6.8 wikis from the OS X Server to our new Mountain Lion OS X Server.  I am using "wikiadmin migration -r <collaboration directory> -g <wiki name>" to migrate each wiki individually. We have about 30 wikis in the old server, three of which fail to migrate, all with the same problem (below). The process runs successfully for a while, but ultimately fails and rolls back the transaction. It appears there is some problem trying to generate a unique filename, perhaps for some of the uploaded files?
    Has anyone else seen this error? large amount of pages, content, and attachments in these wikis and just recreating them in the new server would be a monumental task. Some of these attachments include videos and other large files, not sure if that might contribute to the problem.
    === wikiadmin migrate output log ===
    Aug 29 13:25:11 gslcwiki.local wikiadmin[54032] <Debug>: [PGCConnection:233 7e7e1180 +0ms] Executing query [INSERT INTO entity (uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, is_hidden) (SELECT uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, is_hidden FROM master_entity_scratch_20120829T132314 WHERE entity_type_fk='com.apple.entity.File')]
    Aug 29 13:25:11 gslcwiki.local wikiadmin[54032] <Debug>: [PGCConnection:181 7e7e1180 +151ms] Query result is [PGRES_FATAL_ERROR] rows returned=0/updated=
    Aug 29 13:25:11 gslcwiki.local wikiadmin[54032] <Error>: [PGCConnection:148 7e7e1180 +0ms] Error in TXN: Error executing query [INSERT INTO entity (uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, is_hidden) (SELECT uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, is_hidden FROM master_entity_scratch_20120829T132314 WHERE entity_type_fk='com.apple.entity.File')]: ERROR:  value "109120715161" is out of range for type integer
              CONTEXT:  PL/pgSQL function "uniquify_filename" line 7 at RETURN
              PL/pgSQL function "trg_update_entity_filename" line 23 at assignment
                        0   CoreFoundation                      0x00007fff93b67716 __exceptionPreprocess + 198
                        1   libobjc.A.dylib                     0x00007fff95aaf470 objc_exception_throw + 43
                        2   PostgreSQLClient                    0x00000001026ff9ae -[PGCConnection checkResultOK:forSQL:] + 360
                        3   PostgreSQLClient                    0x00000001026ffec3 -[PGCConnection executeQuery:] + 223
                        4   wikiadmin                           0x000000010269d586 wikiadmin + 66950
                        5   PostgreSQLClient                    0x00000001026ff5f7 -[PGCConnection transactionInBlock:onError:] + 147
                        6   wikiadmin                           0x000000010269cd86 wikiadmin + 64902
                        7   wikiadmin                           0x00000001026a025d wikiadmin + 78429
                        8   wikiadmin                           0x00000001026924c8 wikiadmin + 21704
                        9   libdyld.dylib                       0x00007fff912857e1 start + 0
                        10  ???                                 0x0000000000000006 0x0 + 6
    Aug 29 13:25:11 gslcwiki.local wikiadmin[54032] <Debug>: [PGCConnection:320 7e7e1180 +0ms] Executing update [ROLLBACK]

    Okay, so a little more detail for you…
    If I can manage to restart the server without the wiki service on, everything else seems to work fine (including the web service running the default home page) and "serveradmin fullstatus wiki" will report that the service is stopped.
    But as soon as I try to start the wiki service, it never finishes, and it prevents the web service from working properly anymore. i.e. I get a 502 Proxy Error instead of the OS X Server default home page. It's after the attempted wiki start that "serveradmin fullstatus wiki" starts to give the
    serveradmin[2373:707] outstanding requests are: (
            Command = getState;
            Module = "servermgr_wiki";
            Timestamp = "2012-10-25 16:22:15 +0000";
    error. And then I can't stop the wiki service - even "serveradmin stop wiki" gives the same "outstanding requests" message.
    This time I tried to stop the wiki from Server app and I got this error:
    An error occurred on the server while processing a command.
    The error occurred while processing a command of type 'getState' in plug-in 'servermgr_wiki'.
    If it's helpful at all, I've notice the following in my log files that seem related, but I have no idea how to fix - it almost seems lie the migration of the wiki failed from 10.7 to 10.8:
    collabd[767]: [CSConnectionPool:141 6a92000 +14027ms] Schema is STILL out of date (14 < 69) after launching wikiadmin, update failed! collabd will refuse to run until this is fixed.
    I'm really pulling my hair out over here, and have no idea what to try next?
    Anyone have any suggestions?
    Thank you!

  • What is the use of enabling "speak notifications" on under the voice over in ios5 ? can it read out my notifications?? plz help...

    i have recently updated my iphone 4 to ios 5. in the accessibility options i found the voice over and inside that i found the "speak notifications" . i enabled it on.. but doesnt know whats that for? can ny one help me? will it read out my notifications aloud? but its not working plz help..

    create your own entreprise!indeed
    I had a "dream" job for a while. a guy - who writes books on software process, and is a member of the agile alliance - had an idea for a product, sat on it for 15 years then left his job and started a company. he assembled his team personally, and 8 of us sat in a room and worked to make his idea a reality. he was the management, and he was also the most talented programmer of us all. the team ran beautifully, we rarely had a deadline to work to, save the odd launch here and there, and there was absolutely zero office politics. all we did was write code, toss ideas about, play with the development process and sometimes go karting, or to the pub, or for a curry or something. I actually looked forward to going to work every day, because of this free reign we had, and we all turned out orders of magnitude more code than anywhere else I've ever worked. but the investors got nervous and pulled funding, leaving the project somewhat crippled. nice while it lasted, though, and I learnt more in my short time there than I did at university, and across 5 years experience in other companies
    so the answer is: come up with an idea, be expert enough to assemble and manage the perfect team and convince some rich people to lend you lots of money. simple. but be prepared. this guy was routinely doing 18 hour days, 6 days a week (he was a Christian, otherwise he'd undoubtedly be doing 8 days a week). he'd be out and about most of the day doing sales and marketing, flying around the world for meetings and stuff, then come into the office and code for 8-9 hours a night

Maybe you are looking for

  • Sold to party, Ship to party in VA05 report

    Dear Experts, I have one requirement in which I am supposed to display Ship to party and Ship to address fields along with sold to party field in VA05. 1. Document Date 2.Delivery Date 3.GI Date 4.PO Number 5.Name 6.Sales Doc Type 7.Sales Document 8.

  • Wireless print server setup

    Have an HP 2355 which was hooked up local to Mac G5 10.4.10. Wanted to allow windows laptops to print to HP so set up 2355 with Linksys wireless print server. Windows PC's find server and print but G5 doesn't. Where can i get some general direction (

  • Help me i am in desperate need of Help!!!

    I am trying to start Puzzlepirates and i believe its somethings to do with java, when i go to download it i just see a red X in the corner and this is the java console message, Java Plug-in 1.5.0_06 Using JRE version 1.5.0_06 Java HotSpot(TM) Client

  • Problem deleting Original Pictures in ApertureDatabase

    Since installation of OS-X Leopard I can no longer delete any picture inside may projects in my Aperure database. Neither in my old library nor in a completely new one. Has anybody made the same experience? Can anybody give me a useful hint what I ca

  • My best photo-video app for iPhone6, anything better ?

    Hi guys, these are the best apps I found (both ipad and iphone), do you know anything better and with some more "professional like" features (e.g.: custom k° white balance) ? Photo: PureShot (by Michael Hardaker) Why: Max quality jpeg (lowest compres