New notification profiles? User defined notificaiton profiles?

Is there a way to create a new notification profile? In older BB, I could setup a "Loud" profile that was extra loud, but in the OS10, i can't create a new profile at all. Note I am on OS 10.1.

Not currently.
If you've been helped click on , if you've been saved buy the app.
Developer of stokLocker, Sympatico and Super Sentences.

Similar Messages

  • LR4, PS5, PS6 user defined camera profiles

    I'm on Mac OS 10.8. Where are user defined camera profiles stored? I can see older profiles in LR develop module, but cannot locate the path.

    Macintosh HD / Users / [your username] / Library / Application Support / Adobe / CameraRaw / CameraProfiles /
    It's a hidden folder on 10.8 - go to Finder > Go menu and when you hold down the Opt key, Library will appear in that list.

  • Notification with user defined type results in PLS-00306: wrong number..

    I created a user defined type TLogMessage:
    CREATE OR REPLACE TYPE TLogMessage AS OBJECT
    module VARCHAR2(4000),
    severity NUMBER,
    message VARCHAR2(4000)
    I also created a multi-consumer queue using this type as payload.
    My callback procedure in the package PK_SYST_LOGMESSAGE is defined as follows:
         PROCEDURE DefaultLoggerCallback(
              context          RAW,
              reginfo          SYS.AQ$_REG_INFO,
              descr          SYS.AQ$_DESCRIPTOR,
              payload          RAW,
              payload1     NUMBER
    Finally, I registered the callback procedure as follows:
              DBMS_AQADM.ADD_SUBSCRIBER(
                   queue_name      => QUEUE_NAME,
                   subscriber      => SYS.AQ$_AGENT(
                                            name => 'default_logger',
                                            address => NULL,
                                            protocol => NULL
              DBMS_AQ.REGISTER(
                   SYS.AQ$_REG_INFO_LIST(
                        SYS.AQ$_REG_INFO(
                             name          => QUEUE_NAME || ':default_logger',
                             namespace     => DBMS_AQ.NAMESPACE_AQ,
                             callback     => 'plsql://MTDX.PK_SYST_LOGMESSAGE.DefaultLoggerCallback',
                             context          => HEXTORAW('FF')
                   1
    However, when I put a message in the queue using this procedure:
         PROCEDURE LogMessage(
              pModule          VARCHAR2,
              pSeverity     NUMBER,
              pMessage     VARCHAR2
         IS
              vMessage               TLogMessage;
              vEnqueueOptions          DBMS_AQ.ENQUEUE_OPTIONS_T;
              vMsgProperties          DBMS_AQ.MESSAGE_PROPERTIES_T;
              vMessageHandle          RAW(16);
         BEGIN
              vMessage := TLogMessage(module => pModule, severity => pSeverity, message => pMessage);
              vEnqueueOptions.visibility := DBMS_AQ.IMMEDIATE;
              vMsgProperties.correlation := pModule;
              vMsgProperties.priority := -pSeverity;
              -- Enqueue the message to all subscribers
              DBMS_AQ.ENQUEUE(
                   queue_name               => QUEUE_NAME,
                   enqueue_options          => vEnqueueOptions,
                   message_properties     => vMsgProperties,
                   payload                    => vMessage,
                   msgid                    => vMessageHandle
         EXCEPTION
              WHEN no_subscribers THEN
                   -- No subscribers on the queue; ignore
                   NULL;
         END;
    I can see the message in the queue, by querying the queue view. I can also see that Oracle tried to call my callback procedure, because in the trace file I see the following:
    *** 2009-02-13 08:52:25.000
    *** ACTION NAME:() 2009-02-13 08:52:24.984
    *** MODULE NAME:() 2009-02-13 08:52:24.984
    *** SERVICE NAME:(SYS$USERS) 2009-02-13 08:52:24.984
    *** SESSION ID:(609.3387) 2009-02-13 08:52:24.984
    Error in PLSQL notification of msgid:4F7962FEDD3B41FA8D9538F0B38FCDD1
    Queue :"MTDX"."LOGMESSAGE_QUEUE"
    Consumer Name :DEFAULT_LOGGER
    PLSQL function :MTDX.PK_SYST_LOGMESSAGE.DefaultLoggerCallback
    : Exception Occured, Error msg:
    ORA-00604: Fout opgetreden bij recursief SQL-niveau 2.
    ORA-06550: Regel 1, kolom 7:
    PLS-00306: Onjuist aantal of type argumenten in aanroep naar 'DEFAULTLOGGERCALLBACK'..
    ORA-06550: Regel 1, kolom 7:
    PL/SQL: Statement ignored.
    So.. how many parameters does Oracle expect, and of what type? Is there any way to find out? What is wrong with my code?

    Ok, found it... I had defined the last parameter of the callback procedure as 'payload1' (that is: 'payload-ONE') instead of 'payloadl' ('payload-ELL'). It all works like a charm now.
    What a way to waste two whole days!

  • Transaction Notification For User Defined Object

    Dear Expert,
    I want to create a transaction notification for my user defined form. I have a matrix on my form which has a field as 'Code'. I want that this field (On Row Level) should have unique values all the time while adding or updating the form.
    Object Type: MaterialMaster
    Table Name: MaterialDetails
    FieldName: U_Code
    Plz help me to get this notification.
    Regards

    Hi Amit,
    Please check below query.
    IF @object_type = 'MaterialMaster' AND @transaction_type IN('A','U') and @error = 0
    BEGIN
    IF ( SELECT COUNT(*)
    FROM MaterialDetails A
    WHERE A.U_Code IN (SELECT U_Code FROM MaterialDetails WHERE  U_Code = @list_of_cols_val_tab_del)
    GROUP BY A.U_Code
    HAVING COUNT(*) > 1
    ) >1
    BEGIN
      set @error = -10
      set @error_message = 'You can not Add Dublicate Code'
    END
    End
    Hope this help
    Regards::::
    Atul Chakraborty

  • Timeout notification with user defined SLA

    Hi,
    I have one metadata field named as "SLA" of date type on my profile.
    Now in the workflow step if no action has been taken and if there is a difference of 1 day between the last entry time and the SLA then we need to send email notifications.
    Like if i am checking in the doc on sep 25. if the SLA set by user is Sep 28 and the lastEntrytime is 27Sep. Then i need to send notifications.
    I have put smthing like this in my update event of workflow:
    <$ if parseDate("xsla")-parseDate(wfCurrentGet("lastEntryTs")) <= 1$>
    do something...
    But this is not working,
    Plz guide

    I have error in logs:
    An error has occurred. The stack trace below shows more information.
    !csWfScriptEvalError,update,Author_Review,SRRA_Rate_Change!csDynHTMLServerScriptEvalError!syExceptionType,java.lang.Throwable
    java.lang.Throwable
         at intradoc.common.IdcLogWriter.doMessageAppend(IdcLogWriter.java:85)
         at intradoc.common.Log.addMessage(Log.java:271)
         at intradoc.common.DefaultReportHandler.message(DefaultReportHandler.java:519)
         at intradoc.common.DefaultReportDelegator.message(DefaultReportDelegator.java:134)
         at intradoc.common.Report.messageInternal(Report.java:172)
         at intradoc.common.Report.message(Report.java:145)
         at intradoc.common.Report.error(Report.java:408)
         at intradoc.server.workflow.WorkflowStates.reportLastError(WorkflowStates.java:3031)
         at intradoc.server.workflow.WorkflowStates.executeScript(WorkflowStates.java:2691)
         at intradoc.server.workflow.WorkflowStates.evaluateScript(WorkflowStates.java:2598)
         at intradoc.server.workflow.WorkflowStates.evaluateTypedScript(WorkflowStates.java:1498)
         at intradoc.server.workflow.WorkflowStates.moveToNextStep(WorkflowStates.java:1416)
         at intradoc.server.workflow.WorkflowStates.advanceWorkflowState(WorkflowStates.java:956)
         at intradoc.server.workflow.WorkflowStates.advanceDocumentStateImplement(WorkflowStates.java:685)
         at intradoc.server.workflow.WorkflowStates.advanceDocumentState(WorkflowStates.java:551)
         at intradoc.server.DocStateTransition.advanceDocumentState(DocStateTransition.java:75)
         at intradoc.server.workflow.WfCompanionManager.updateWorkflowItem(WfCompanionManager.java:456)
         at intradoc.server.workflow.WfCompanionManager.updateWorkflowItemsEx(WfCompanionManager.java:400)
         at intradoc.server.workflow.WfCompanionManager.updateWorkflowItems(WfCompanionManager.java:361)
         at intradoc.server.ScheduledSystemEvents.checkHandleEvent(ScheduledSystemEvents.java:641)
         at intradoc.server.ScheduledSystemEvents.processWork(ScheduledSystemEvents.java:590)
         at intradoc.server.ScheduledSystemEvents.run(ScheduledSystemEvents.java:489)
         at java.lang.Thread.run(Thread.java:662)

  • Error: property is not set correctly for User Defined Fields.

    Hi Gurus,
    I am trying to define a new field Department of type Lookup. For this i have created a new field in user defined fields. But when i click on create user in web console it give me "property is not set correctly for User Defined Fields."
    I created a lookup field for department , but looks like i have to some kind of mapping. How can it be done?
    Thanks,
    sat

    Hi Kevin,
    I couldnt get it done. This is what I had done so far.
    Created Lookup.Users.Dept ( with code code=23 & decode=treasury)
    Added two field in xlwebadmin.properties & xlwebadmin_en.properties
    lookupfield.header.users.deptcode=Department code
    lookupfield.header.users.deptname=Department name
    In my lookfield properties in
    column caption=Department code,Department name
    Column query= Not sure what to give? here
    Thanks,
    sat

  • User defined table types sometimes show up a unknown data type in Profiler

    A couple of our users have a problem when using user defined table types. Calls are made using UDTT as variables and these are then passed to a stored procedure as parameters. Sometimes the application returns a timeout. In such situations a Profiler-Trace
    shows the following:
    declare @p4 unknown
    whereas the correct trace (that is sometimes displayed) should be:
    declare @p4 dbo.ReportFilterTableType
    ReportFilterTableType is a UDTT. The users do have correct permissions for the UDTT (otherwise they would never be usable for the user). What could be the reason that the data types for the variable
    @p4 in the example are sometimes returned as unknown and at other times are returned correctly as
    ReportFilterTableType? Could this possibly be a network related issue?
    Thank you.
    Graham Goodwin Email: [email protected]

    I know this is a old post, but i am also facing the same issue that too in my production server. Did you find any workarround for this issue. Please do reply. Critical problem we are facing.
    Alka, Is your problem timeouts when passing TVP parameters, or is it that a Profiler Trace shows type "unknown" for the TVP data type name?
    If your problem is timeouts, be aware that TVPs do not have statistics so the optimizer might not be able to generate an optimal plan for non-trivial queries. Declaring a primary key or unique constraint on the table type may help since that will provide
    useful cardinality information.  You may need to resort to hints in some cases.
    I suggest you start a new thread with details of your specific situation if the information in this thread doesn't help.
    Dan Guzman, SQL Server MVP, http://www.dbdelta.com

  • Source user defined in DIP Profile

    Hi all,
    When I'm creating profile for my DIP profile, I'm not able to find suitable source for my business. So I've to add my source there. Is there a way to define new source in DIP Profile without using SM30?
    Thanks in adv,
    Latu

    Hi virendra,
    I've used SM30 indeed to add user-defined source, but it just add the source. How can I add 'logic' for that one?
    Pete,
    -edit-
    That page is protected with password. May be I have to ask my boss for the password Can you please give me the url of that DIP ebook?
    I've read the note, but I can't find user exit for RRB. anyway thanks for the page Pete.
    Edited by: arif_latu on Aug 11, 2010 7:40 AM

  • I just created a new profile/user on my MacBook Pro. My pointer/mouse. It works fine in my older user profile, but when I go to the new profile my mac will not respond to clicks. Mouse moves but will not click. Already tried restarting and the pram zap.

    I just created a new profile/user on my MacBook Pro. My pointer/mouse on my trackpad. It works fine in my older user profile, but when I go to the new profile my mac will not respond to clicks. The Mouse moves but will not click. Already tried restarting and the pram zap. The problem starts when I log out of my main profile. I get to the login screen and my laptop stops responding to clicks. When I manage to make my way back to my main profile the mouse works perfectly.  Should I just delete the new profile and try again?

    If the modem is also a router, either use the modem in bridge and run pppoe client on the TC.. that is assuming ADSL or similar eg vdsl. If it is cable service.. and the modem is a router, then bridge the TC.. go to internet page and select connect by ethernet and below that set connection sharing to bridge.
    Please tell us more about the modem if the above gives you issues.

  • What is the significance of define status profile for user status

    hi friends
    what is the significance of define status profile for user status. what does it contain
    Regards
    Vinny
    Edited by: vinny novice on Dec 29, 2008 1:53 PM

    Hi
    please see Kathir's article on ststus profile
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/bpx-community/supplier-relationship-management/how%20to%20configure%20user%20status%20in%20mysap%20srm.pdf
    regards
    Muthu

  • Screen "Define Status Profile for User Status" should not open in changemod

    Dear all ,
    After following the path CRM>SPRO>SAP IMG -->Customer Relationship Management -->Transactions -->Basic Settings --> Status Management -->Define Status Profile for User Status.
    the screen opens in change mode & allows user to carry out the changes, this is very crucial screen & hnece should not be in open mode ,kindly advice on closing the same.so that it opens only in display mode for production system.
    Regards

    Hi Milind,
                 To Block changes to any Object their is a Provision for the same in Client Deatils Screen
    Go to TCode:SCC4
    Check the Tab Cross-Client Object Changes
    Try setting the Option (3.No Changes To Cross-Client Customization Objs)
    Following Options Symbolises:
    Changes to the Repository and cross-client Customizing permitted
    There are no restrictions on the maintenance of cross-client objects for the client when this setting is used. Both cross-client Customizing objects and objects of the SAP Repository can be maintained.
    No change to cross-client Customizing objects
    Cross-client Customizing objects cannot be maintained in the client with this setting.
    No change to Repository objects
    With this setting, objects of the SAP Repository cannot be maintained in the client.
    No change to Repository and cross-client Customizing objects
    Combination of both restrictions: Neither cross-client Customizing objects nor objects of the SAP Repository can be maintained in the client.
    (Choose This One it Should Resolve your Problem)
    Hope it answered Your Queries..
    Thanks and Regards,
    RK.

  • How can we add user defined fields in My Account Profile?

    Hi,
    When adding new field for user,user groups,my resource,organizations and request all exist in the drop down menu list but the MyAccount(In the page where we add user defined fields).
    Please help me to add user defined field in MyAccount also.
    Thanks in advance.

    Hi,
    As I said before it is not that straight forward.If you will decompile tcViewProfileAction .class using any java decompiler you will find out that data in setAccountProfile method is not getting set through formmetadata.xml . If you are well verse with struts then only you can achieve what you are trying to do.You need to extend tcViewProfileAction class and also tcViewProfileForm class and then you need to modify tjspViewProfileTiles.jsp .It will not be easy job.Usually in implementation we do not change action class until its absolutely required as oracle also do not recommend that so now its between you and your client to make a call if they want to go for such customization.I won't recommend you do that.
    Regards
    Nitesh

  • Error in RFx with user-specified status profile

    Hi experts,
    I am having an issue in SRM 7.0 creating status profile for RFx.
    When I try to create a new RFx, I get an error screen with message "Status profile ZCCP is not allowed for "Bidding Header""
    In order to configure this, I went through the steps described in SAP Library:
    1- Define user-specified status profiles in Customizing for Supplier Relationship Management under SRM Server->Cross-Industry Functions->Application Settings->User-Specified Status->Create Status Profile for User-Specified Status:
    I created status profile ZCCP with the following data:
    10     SUSP     Suspended     10     90     1     1
    90     HABI     Abilities 10     90     1     1
    and I assigned the status profile to object type "Bid Invitation Header (PS_BBP)"
    2- Assign user-specified status profiles to procurement documents in Customizing for Supplier Relationship Management under  SRM Server->Cross-Industry Functions->Application Settings->User-Specified Status->Assign User-Specified Status Profiles to Purchasing Documents
    I created a new entry with:
    BUS2200     H Header     0     ZCCP
    3- Assign user-specified status profiles for each transaction type in Customizing for Supplier Relationship Management under  SRM Server->Cross-Application Basic Settings->Define Transaction Types
    I assigned the status profile ZCCP to all relevant operation types of obj. type BUS2200.
    Does anyone know where this went wrong??
    Thanks in advance!
    Regards,
    Joã

    Hi joa
    http://help.sap.com/saphelp_srm70/helpdata/EN/e8/70ff4187526430e10000000a1550b0/frameset.htm
    You can use Status Management for records and documents. In Customizing, define the status values and the permitted sequence of these values. Users can then set these status values as attributes for records or documents.
    The following Customizing steps need to be performed for Status Management:
    ·        Status value definition
    To perform this step, choose IMG activity Customizing for Status Management -> Define Status For more information, see the online documentation for the IMG activity.
    Status profile definition
    To perform this step, choose IMG activity Customizing for Status Management -> Define Status Profile. For more information, see the online documentation for the IMG activity.
    Status network definition
    To perform this step, choose IMG activity Customizing for Status Management -> Define Status Network. For more information, see the online documentation for the IMG activity.
    ·         Assignment of a status profile to an element type
    For element types whose elements you want to use Status Management for, assign an existing status profile to connection parameter STATE_PROFILE_ID. (The connection parameter is only offered for records and documents.)
    Subsequently, users will be offered the attribute Status in the attribute maintenance dialog box whenever they edit the elements in question. Input help contains the status values that you have created.
    If you want to use Status Management for the API, you require the following authorization objects: S_SRM_STAT, S_SRM_ST_P and S_SRM_ST_N.
    br
    muthu

  • ISE 1.2 Profiling - User Agent attribute incorrect

    Hi all,
    Just troubleshooting some profiling issues and have found that multiple devices are profiling incorrectly eg MAC OSX profiling as Apple-Device. Basically the issue is the user-agent string profiled by ISE is incorrect meaning that only the OUI is matched. During the BYOD onboarding process, non Internet Browser, applications and services (games and OCSP Daemons etc) are presenting their specific user-agent strings eg "OCSPD\1.0.2" to ISE resulting in incorrect profiling.
    Does anybody have any suggestions on how to resolve this issue as it is resulting in about 50% of devices been profiled at the "top level" ie Apple-Device or Windows Workstation (anything based on User-Agent). Can any one explain whether profiler works on the basis of first agent received, last agent received and why it doesn't hold onto a list of presented agents to make a decision? In my mind this is a pretty big issue in that some of the more popular device profiling policies are based on a user-agent string thus potentially preventing you from defining tight Authz policies eg IPAD only etc

    "Unless you have suppression configured, ISE will continue to collect profiling data and will re-profile a device as long as a rule with higher certainty factor is hit. However, if the certainty factor is the same the device will remain at its originally profiled group."
    The suppression feature will not affect the re-profiling of a device.  The suppression only affects the logging on the MnT node.  Since the Profiling is a PSN function the suppression has no affect on the outcome of a profiling event. 
    You are correct in that a rule with a higher certainty factor "wins" and this is the profile that is chosen.  Again, an understanding of how profiles work is not the issue here.  
    For example say only the RADIUS and HTTP probes are being utilized for an endpoint.  There are two endpoints one is a iPad and the other an iPhone.  The endpoint attributes that are known about the device are the MAC OUI and the useragent. 
    Based on the default profiling rules there are two three things that need to be identified either an iPhone or an iPad.  The first common item is that the MAC OUI is identified as apple.  This increases the certainty factor by 10.  The second is either the HTTP User agent containing either iPad/iPhone or the DHCP hostname containing either iPad/iPhone.  Both of those conditions would increase the certainty factor by 20 for a total of 30.  Since DHCP is not being used in this example we can remove that for a possibility and say that for an iPhone to be profiled as an iPhone it must both have a MAC OUI of apple and the useragent must contain iPhone.  Same goes for iPad, but iPad in the useragent. 
    Like smcbridebpc stated every application that uses HTTP will have a useragent string.  The profiler rules assume that the useragent that is being used contains either the word iPhone or iPad to distinguish these types of devices.  If an application on the device sends a useragent string such as  "OCSPD\1.0.2" which is obviously the OCSP Daemon.  This useragent string is "stuck" on the endpoint and no other usable useragents can be used to profile the device.  Therefore a race condition exists and depending on the application that wins determines if the profiler will be accurate or not.   
    The only two solutions that I can think of would be to have a useragent filter that would allow you to manually filter out useragents like "OCSPD\1.0.2" (or the ISE developers could filter known unusable user agents out on the backend)  OR everytime a new useragent is presented to the profiler for a device the useragent is joined to a list of useragents. 
    If the useragent was overwritten everytime a new useragent was presented then it would cause the device to be reclassified everytime the different applications presented useragents which would not be good.  
    It does look like a bug may have been filed and marked as fixed in release pending, but the bug notes do not list enough information to identify if this is the same issue that we are seeing.
    https://tools.cisco.com/bugsearch/bug/CSCuj45373

  • Basic Order View - Define View Profiles

    In ECC 6.0, we have an option to customize the work order screen as per the busiess needs in the configuration path:
    Plant Maintenance and CS -> Maintenance and Service Processing -> Functions and Settings for Order Types -> Basic Order View -> Define View Profiles
    Question -> Is there a view profile defined by SAP for standard SAP work order screen?
    We have a requirement to modify the standard SAP work order screen where we have to add additional tabs. Since there is no profile defined for standard SAP work order screen, we have to build from the scratch which takes a lot of time.
    Any suggestions?
    Thanks

    Thanks SN. Yes, I am aware of the user exit and also that we can configure the screens of work order in ECC 6.0 using SPRO but the only problem is that we have to build it from scratch. My question was to know if SAP had standard screen templates or profiles like they have for Notiification. Anyways thanks for your response, I got the below response from SAP for my question.
    I've checked if its possible to customize the screen selections
    like it can be done for notifications and unfortunately it isnt
    possible in the standard system
    The only customizing that can be done for order can be found using the
    following path:
    SPRO>>>IMG>>>PLANT MAINTENANCE & CUSTOMER SERVICE>>>MAINTENANCE &
    SERVICE PROCESSING>>>MAINTENANCE & SERVICE ORDERS
    You will find the following options:
    DEFINE FIELD SELECTION FOR ORDER HEADER(PM)
    DEFINE FIELD SELECTION FOR ORDER HEADER(CS)
    DEFINE FIELD SELECTION FOR ORDER OPERATION(PM & CS)
    DEFINE FIELD SELECTION FOR ORDER COMPONENT(PM & CS)

Maybe you are looking for

  • Cannot delete file SAP0000.TSK.bck

    hi    I am installing ECC5.0 ides on windows 2000.     I have finished intalling central instance but when doing database instance i am getting following error This is a trace of SAP0000.log file DbSl Trace: ORA-1403 when accessing table SAPUSER (DB)

  • 10g export to 9i database

    Hi all Can i import 10g (10.2.0.3) export to 9i database. i execute import command in 9i database. Please help as soon as posible. regrds upul

  • A third party plug-in disappears after a localization patch installation

    I have a third party plug-in installed for PhotoShop CS3. The third party plug-in disappears after installation of a localization patch. I tried reinstalling the plug-in, but that does not work. It appears that after the patch is installed, tw10428.d

  • " No entry in the conversion table for the syntax group" error

    Hi, Iu2019m getting an error in the port setup when I try to run an Access Test on the logical directory. Definition of path TFTS02\INTF\RD1\OUTB\MM\RFC WINDOWS NT missing Message no. SG024 Diagnosis There is no entry in the conversion table for the

  • Connecting my e2000 to my pc, xbox and ps3

    I've recently started studying for the CCNA exam and one of the first things you learn is the type of cabling required between devices. Basically, I got curious and checked to find that my pc and e2000 router are connected via a straight-through cabl