Help me about (status Message)

Hi,
I don't know why I can't change my (status Message), its about 2 weeks.
Waiting your answer.
Regards,

Hello !
Well there we get the issue.
Kindly contact your service provider for activating BlackBerry Internet Service (BIS) Plan.
Once it gets activated, you get to see EDGE symbol on your homescreen, then you'll wont face such problem.
Hope this resolves your Problem!
If your problem has been resolved then would request you to Click on "Like" and accept as "Solution" so that other Advisors doesnt invest there time on this Message anymore.
Thanks.

Similar Messages

  • Sending Status Messages by Email

    I am using Status Filter Rules to send warning and error messages via email from several CM07 sites. The process hasn't been consistent.
    Messages created by the SMS_Distribution_Manager do not send the entire description field where other components do. I have not been able to figure it out.
    I have tried using vbscript and powershell, both give the same results.
    Here is what I am doing for distribution manager emails via vbscript.
    cscript.exe "C:\Scripts\sendMail.vbs" "myemailaaddress" "%msgdesc"
    SendMail.vbs contents:
    Const SMTPServer = "IP Address of SMTP Server" ' SMTP server IP address
    Const From = "From Address"
    Const Subject = "SCCM Package Alert"
    Set objArgs = WScript.Arguments
    If objArgs.count < 2 Then
     ' All arguments are required
     WScript.Quit(1)
    Else
     SendGenericMail objArgs(0), objArgs(1)
    End If
    Sub SendGenericMail (sTo, sMessage)
     On Error Resume Next
     ' Generate TO and CC recipients based on number of e-mail addresses provided.
     If instr(sTo,";") > 1 Then
      sTo_array = Split(sTo,";")
      kokku = UBound(sTo_array)
      For i = 1 to kokku
       If i <> kokku Then
        CCstring = CCstring & sTo_array(i) & ", "
       Else
        CCstring = CCstring & sTo_array(i)
       End If
      Next
      TOstring = sTo_array(0)
     Else
      TOstring = trim(sTo)
     End If
     Set CDO = WScript.CreateObject("CDO.Message")
     CDO.From = From
     CDO.To = TOstring
     CDO.Cc = CCstring
     CDO.Subject = Subject
     CDO.TextBody = sMessage
     CDO.Configuration.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = SMTPServer
     CDO.Configuration.Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
     CDO.Configuration.Fields.Update
     CDO.Send
    End Sub
    Here is an example of the email body then the full message detail.
    Email Body:
    SMS Distribution Manager failed to process package Law
    Here is the full message detail:
    SMS Distribution Manager failed to process package "Law Civil Image" (package ID = DIT007A9).
    Possible cause: Distribution manager does not have access to either the package source directory or the distribution point.
    Solution: Verify that distribution manager can access the package source directory/distribution point.
    Possible cause: The package source directory contains files with long file names and the total length of the path exceeds the maximum length supported by the operating system.
    Solution: Reduce the number of folders defined for the package, shorten the filename, or consider bundling the files using a compression utility.
    Possible cause: There is not enough disk space available on the site server computer or the distribution point.
    Solution: Verify that there is enough free disk space available on the site server computer and on the distribution point.
    Possible cause: The package source directory contains files that might be in use by an active process.
    Solution: Close any processes that maybe using files in the source directory.  If this failure persists, create an alternate copy of the source directory and update the package source to point to it.
    Email messages from other component sources have the complete description field.
    Can someone tell me what I am doing wrong or what I might be missing?
    Thanks,
    Steve

    Hi,
    You may refer to the following links to check if they help:
    Sending SCCM Status Messages from MDT Scripts.
    Send SCCM task sequence email report
    Regards,
    Sabrina

  • Help finding the SQL agent job status messages

    I am building a report in SSRS which will show the status of all the SQL agent jobs ran on a particular day. IMHO, the status messages created in the job history are not that useful. So, I would like to show the status message which can found by following
    the path given below:
    Integration Services Catalog -> SSISDB -> Solution Name -> Projects -> Project Name -> Packages -> Right click Package Name-> Reports -> Standard Reports -> All Executions -> Click on All Messages
    If you follow the exact path, we find out the exact error related to last unsuccessful execution of the job.
    Can someone please tell me how to find it?
    The message from [msdb].[dbo].[sysjobhistory] is not helpful for me.

    Thank you all for your help. After taking cues from what you guys said..I have come up with this:
    USE [msdb]
    GO
    /****** Object:  StoredProcedure [dbo].[SQL_Agent_Jobs_Details]    Script Date: 3/24/2015 4:02:09 PM ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    ALTER PROCEDURE [dbo].[SQL_Agent_Jobs_Details](@JobName varchar(5000)
    ,@LastRunDate nvarchar(20)
    ,@LastRunStatus varchar(50)
    AS
    BEGIN
    -- SET NOCOUNT ON added to prevent extra result sets from
    -- interfering with SELECT statements.
    SET NOCOUNT ON;
    DECLARE @SQL VARCHAR(8000)
    DECLARE @NewLastRunStatus INT
        -- Insert statements for procedure here
    SET @NewLastRunStatus = (SELECT CASE @LastRunStatus 
    WHEN 'Created' THEN 1
    WHEN 'Running' THEN 2
    WHEN 'Canceled' THEN 3
    WHEN 'Failed' THEN 4
    WHEN 'Pending' THEN 5
    WHEN 'Ended unexpectedly' THEN 6
    WHEN 'Succeeded' THEN 7
    WHEN 'Stopping' THEN 8
    ELSE 9
    END )
    SET @SQL = '
    SELECT DISTINCT 
    E.folder_name
    ,E.project_name
    ,S.JobName
    ,E.package_name
    ,E.environment_name
    --,E.execution_id
    ,E.executed_as_name
    --,E.operation_type
    --,E.process_id
    , CASE e.[status]
    WHEN 1 THEN ''Created''
    WHEN 2 THEN ''Running''
    WHEN 3 THEN ''Canceled''
    WHEN 4 THEN ''Failed''
    WHEN 5 THEN ''Pending''
    WHEN 6 THEN ''Ended unexpectedly''
    WHEN 7 THEN ''Succeeded''
    WHEN 8 THEN ''Stopping''
    ELSE ''Completed''
    END [Status]
    ,E.start_time
    ,E.end_time
    ,E.server_name
    ,E.machine_name
    ,EM.event_name
    ,EM.message_source_name
    ,EM.message_time
    ,case EM.[message_type] WHEN 120 THEN ''Error'' else ''TaskFailed'' END [message_type]
    ,EM.[message]
    ,EM.execution_path
    FROM     [SSISDB].[catalog].[executions] E
    LEFT OUTER JOIN
    [SSISDB].[catalog].[event_messages] EM ON E.[execution_id] = EM.[operation_id]
    LEFT JOIN
    [MSDB].DBO.SQL_Agent_Jobs_Packages S
    ON S.PackageName = E.package_name
    WHERE EM.message_type in(120,130) AND 1=1 
    --AND E.package_name = ''Anna_Maria_Daily_Contacts_Parent.dtsx'' 
    IF @JobName IS NOT NULL 
    BEGIN
    SET @SQL  = @SQL + '  AND S.JobName IN (' +''''+REPLACE(@JobName,',',''',''')+''')' 
    END
    IF (cast(@LastRunDate as date) IS NOT NULL AND cast(@LastRunDate as date)!='1900-01-01')
    BEGIN
    SET @SQL  = @SQL + ' AND CAST(isnull(EM.message_time, ''1900-01-01'') AS DATE) IN ('+''''+REPLACE(cast(@LastRunDate as date),',',''',''')+''')' 
    END
    IF @LastRunStatus IS NOT NULL 
    BEGIN
    SET @SQL  = @SQL + '  AND e.[status] IN (' +''''+REPLACE(@NewLastRunStatus,',',''',''')+''')' 
    END
    SET @SQL  = @SQL + ' ORDER BY E.start_time DESC,E.end_time DESC'
    --SELECT @SQL
    EXEC (@SQL)
    END
    You can use the above script to create a dynamic sproc which takes the above mentioned params.

  • HT201209 I just received a gift card from someone during these holidays, each time am trying ot redeem the code, I always found a message let me know that this card was not properly activated. How please you can help me about that ?

    I just received a gift card from someone during these holidays, each time am trying ot redeem the code, I always found a message let me know that this card was not properly activated. How please you can help me about that ?

    You don't go to the drop down "Actions" menu to reply to a post. You find the post to which you would like to reply and you hit the "Reply" button. You then type your message and then hit the "Add Reply" button to post your reply.

  • IChat will not display status messages.

    I'm having a problem - iChat will not display any "available" status messages. All away messages display properly, but any unique status messages will not display, nor does the word "available". I have restarted both iChat and my MacBook several times, deleted the com.ichat.AIM preferences file, but it seems nothing I do will make my buddy's unique status messages display.
    I did not previously use Chax but downloaded it to see if it would help; it didn't. I'm willing to delete it if it will solve my problem.
    Any help?
    Thanks!
    Message was edited by: Paperclippe

    Ok,
    As you either suspected or found out the Saved Status Messages are in com.apple.ihat.plist
    The fact they didn't display would suggest that they may have become corrupted and the deletion of the .plist would have helped.
    BUT you went on to mention that the Available Choice also does not display.
    This would suggest one of two things.
    1) Either you are not fully Logged in to the AIM servers properly
    Do your Buddies see you are On-line and Available ?
    Do they perceive your Status change ?
    Can you Text chat to people ?
    Can you send files or Pic in Text chats ?
    Try Deleting com.apple.ichat.AIM.plist and restarting iChat to see if that helps
    2) Something about iChat or it's support folders (the bits that make the Available show up), that are at fault.
    In this case try deleting com.apple.ichatAgent.plist
    This controls which accounts login and help the app to run some of the features such as the Video/Audio part and Text Messaging.
    I would do these one at a time just so you know which it was that fixed it.
    8:27 PM Friday; June 20, 2008

  • HT5622 How come I can't put a status message or picture on my gamecenter

    Other people can use profile pictures and status messages for their gamecenter why can't i?

    I fixed this issue (with help from tech support) and it involved several things.
    After adding a song to iTunes, right-click on the song in iTunes and select "Update iTunes Match."
    OR go to the iTunes menu-->Store-->Update iTunes Match.
    Maybe that's the reason, it just hadn't updated to the cloud.
    OR maybe it's not a high-enough bitrate file.   This happens to me because most of my tunes are home-recorded.
    Sometimes converting to .mp3 or Create AAC version might work. (You do this with a right-click in iTunes, and then you will want to remove the original file from iTunes.)
    There is an iTunes Preferences setting, under General Preferences called Import Settings.  Try setting it to AAC Encoder and iTunes Plus.   That (I think) causes imports to be slightly better quality.
    Good luck!  The tech support person at Apple is requesting that a knowlege-base article be written about this.

  • Last Status Message ID -10040 - Program will not rerun

    Ive deployed a package which reprts 99% success. if i look at the report of the succesful clients about half are reporting the state message above & the other half  10008 - Program completed with success.
    Have the machines with state mesage ID 10040 actually run the package succesfully or is SCCM miss reporting them?.

    I have simillar situation here.
    I have deployed script to upgrade JRE version with Mandatory assigment. I have realized after few days that is needed to update script and re-deploy to ensure needed success of deployment.
    I have deleted old Mandatory assigment and add new one to ensure that program will rerun on all target resources. But in about 30% im getting STATUS MESSAGE ID 10040 and if i look into local logs i have created from this upgrade script machines which show
    STATUS MESSAGE ID 10040 did not run program based on new Mandatory Assigment.
    WHY? and how i can ensure that all targets will re-Run it? 
    thanks for help 

  • No status messaging!!?!

    On one of my sites, status messaging has just stopped! Around 24 hours ago.
    I noticed an error about deadlocks in statmgr.log.
    SQL box and site server has been rebooted.
    I'm now seeing messages like these in statmgr.log:
    Read file "D:\Program Files\Microsoft Configuration Manager\inboxes\statmgr.box\retry\exlmsx89.sql" which represents a 137559-byte failed SQL transaction to insert 221 status messages and their 331 insertion strings and 258 attribute ID/value pairs
    into the database. SMS_STATUS_MANAGER
    15/07/2014 13:54:10 4388 (0x1124)
    Retrying a 137559-byte SQL transaction to insert 221 status messages and their 331 insertion strings and 258 attribute ID/value pairs into the database.
    SMS_STATUS_MANAGER 15/07/2014 13:54:10
    4388 (0x1124)
    But still nothing in status messages!?
    Help!?

    There might be a corrupt message, which is probably the oldest message sitting in the box. Try to take that message out and restart the SMS_EXECUTIVE.
    Back in the SMS day's there was an KB article about something very similar, see:
    http://support.microsoft.com/kb/884123/en-us
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Groupwise Delivery Status Message

    Hi
    I hope someone can help me ... The Boss has asked me to setup and delivery notification message on all incoming emails
    I have enabled DSN in the Gwia Properties
    But the message only shows
    The message that you sent was delivered to the following:
    Information about your message:
    With no information please can someone help me
    So the correct info is displayed
    Regards
    Cliff

    This has NOTHING to do with DSN. The Outbound delivery status is
    completely and totally a different feature. DSN is only relevant
    GW originator ===> somewhereelse supporting DSN
    not
    someone else ===> gw
    Since you first reported this issue a year ago, I assume you opened an SR?
    On 8/23/2011 10:56 AM, Clericos wrote:
    >
    > Michael Bell;2130893 Wrote:
    >> On 8/23/2011 12:06 AM, Clericos wrote:
    >>>
    >>> I have absolutely same problem ('Outbound Status Level: Delivered -
    >>> works incorrect' ('Outbound Status Level: Delivered - works
    >> incorrect' (http://forums.novell.com/showthread.php?p=1948852)))
    >>> and did not found any solution yet
    >>>
    >>> What is your OS? Netware?
    >>>
    >>>
    >> DSN is completely dependent on the receiving mail server supporting it
    >> and generating messages/reports. Are you sure that part is working? (eg
    >> the part completely out of your control?)
    >
    > Yes I am sure. Because "the receiving mail server" - is my server :)
    > And it is my server generate "wrong" reports and send them to outgoing.
    >
    >
    > I will try to describe the problem again:
    > 1. I have sent messages from many different mail servers to my mail
    > server and always my server sent "empty" DSN bounce message to sender's
    > server.
    > It ALWAYS looks *'like this'
    > (http://img27.imageshack.us/i/59676923.gif/)*
    >
    > 2. I catch one outgoing bounce message in "Delayed Message Queue"
    > (folder: gwia\DEFER\ ):
    >
    > Code:
    > --------------------
    > Message-Id:<sb7c37e1>
    > X-Mailer: Novell GroupWise Internet Agent 8.0.1
    > Date: Wed, 17 Feb 2010 18:39:29 +0300
    > From: [email protected]
    > To: [email protected]
    > Subject: Message Status - Delivered
    > Mime-Version: 1.0
    > Content-Type: multipart/mixed; boundary="=__PartF3D9C9A1.0__="
    >
    > This is a MIME message. If you are reading this text, you may want to
    > consider changing to a mail reader or gateway that understands how to
    > properly handle MIME multipart messages.
    >
    > --=__PartF3D9C9A1.0__=
    > Content-Type: text/plain; charset=UTF-8
    > Content-Transfer-Encoding: quoted-printable
    > Content-Disposition: inline
    >
    >
    > The message that you sent was delivered to the following:
    >
    >
    >
    >
    >
    > Information about your message:
    >
    > --=__PartF3D9C9A1.0__=--
    > .
    > QUIT
    > --------------------
    >
    >
    > and the message did not contain any "dynamic" data.
    >
    > I know some people who have same problem, but it is not important for
    > them because they do not want to enable DSN. It looks like many server
    > have this problem, but only few people know about this problem because
    > "Outbound Status Level" is "Undelivered" by default (if I am not
    > mistaken).
    >
    > PS perhaps this problem is only on Netware servers.
    >
    >

  • Can't see my buddies' status messages when they are available.

    So, I don't know if anyone knows how to fix this, but I've already checked the prefs, and there's nothing in there about this.
    If you have any idea how I can fix this, please please let me know.
    I can only see people's messages when they are away. I can also see the little arrow when they have the message set to Itunes, but the song doesn't show up, only the little arrow which connects you to the Itunes music store.
    That's pretty much all I can tell you. So please help me if you can.

    This is ridiculous.
    No it isn't. It's just mildly inconvenient because a fun feature of iChat is temporarily offline.
    I wish Apple would buy AOL.
    Why? Because AIM status messages are that vital to you, or because you'd like to see Apple waste cash on a redundant, failing dinosaur like AOL?
    Dual 2-gig G5   Mac OS X (10.3.9)  

  • Error Status Message

    Hi Vadim,
    Thanks for your help in my previous issue.
    My client wants to setup the error message when the user enter >1 value in input schedule against to each month(Jan,Feb and March etc) it is basically HC planning where as they have average headcount value is 1 (So that the user has to enter the value between 0 to 1). The requirement is when the user enters more than 1 then the system needs to thrown an error message and it has to restricted the user.
    I have found the normal excel function to setup this error status message through data validation in excel. Can you please tell me is there any EPM function available for this kind of setups in SAP BPC 10.0 EPM. So that we can use that option instead of normal excel function.
    Please see my current setup message in the above screen shot.
    Regards,
    Satish

    Hi Satish,
    No EPM functions available, you have to use Excel data validation.
    BPC can validate data only afte data was sent to database.
    Vadim

  • Display error message as as status message on the screen

    Hi all,
    How to display error message as as status message on the screen
    The requirement is if I call the screen, it should get with the error message in the status bar. If I write with error message 'E' error mesage information displays and when I click on exit, it leave the current transaction.
    if i display success message and use display like 'E' it display the error message but if i save it save the transaction.
    i cannot use leave to screen also because of subscreen. if i use leave to screen system display set screen not allowed in subscreen.
    so i want to stop the processing or do not allow the transaction to complete on the message.

    Hi
    displaying error message like status message will help u?
    try the below code
    MESSAGE 'Error' TYPE 'E' DISPLAY LIKE 'S'.
    cheers
    shibu

  • How to stop HP Annoying Status Message Windows?

    Before posting this message now (July/2014) I've searched for related posts here. I found one from 2009, whose author got a solution through an answer only in 2012 (pasted bellow).  I have the same problem: I'd like to stop the invasive alert messages from HP Solution Center without uninstalling the software, which is very good, but for these annoying stupid messages.  I say stupid messages, because everytime I seat in front of my desktop it insists telling me, for example, that I have a problem: the language in my HP printer doesn't match the language in my computer.  But this is not a problem, it is my personal option! Anyway, HP Solution Center keeps poping up everytime I awake my screen and this is really annoying, even it its messages were accurate.  HOW TO STOP THEM? As I said, the solution found here in the forum after 3 years (2009-2012) doesn't work for me, because there is no "status messages" in my "device settings" (Windows 7), so I could turn them off.  I'd appreciate any help!
    SOLUTION: To stop HP Annoying Status Message Windows.[ Edited ]
    ‎05-26-2012 01:05 AM - last edited on ‎05-26-2012 10:13 AM
    Hi, Friend I have solution how to stop HP Annoying Status Alert .
    WIndows 7
    First Click START>CONTROL PANEL>PRINTERFAX>
    Select Your Printer And Go to Properties
    Click Device Setting > Select Status Message OFF Option
    Press APPLY And Ok
    Reset Your Computer

    Hello Fernando_int, and welcome to the HP Forums.
    I see you are recieving false errors.  I would like to assist.
    I would suggest Uninstalling the Printer Software.
    Once it is uninstalled, I would suggest putting your system into clean boot mode within the Microsoft configuration.  You can do so by following this document: How to perform a clean boot in Windows.
    Once the computer is in clean boot mode, I would suggest reinstalling the HP Printer Install Wizard for Windows.
    Good luck and please let me know the results of your troubleshooting steps. Thank you for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • How to send status message in SOAP to IDOC scenerio without BPM

    Hi,
    I have a SOAP to IDOC scenerio in which we require to send the status message back to user from XI that " IDOC has been sent successfully to SAP system"
    We do not want to use BPM bacause of performance issues.
    Can you please help me how to achieve this synchronous response without BPM.
    Note: We require the status message from XI that the IDOC has been successfully posted to WESAP system

    Idoc only support async behaviour. U can't get the Idoc response as per ur requirement without BPM.
    Better to go for abap proxy or RFC.
    Or u may get the ack till XI.
    Regards,
    Prateek

  • How to give out a status message indicating the number of fields selected

    Hi experts,
    I hope some one might have done what I'm trying to do. Could some one please show me how to give out a status message saying for example how many fields have been give out(or selected) in the t_ouput in an alv grid? Is there a FM that could do this? I mean like giving the FM the t_output and it will show a status message with the number of fields selected?
    Thank you for your input.
    Nadin
    Message was edited by:
            nadin ram

    Hi Ram,
    Write this code,
    Message 'Select Only Ten Fields' type 'I'.
    It displays The Message in Message Box.
    Or if you want the Error Message means,
    Message 'Select Only Ten Fields' type 'E'.
    Thanks,
    reward If Helpful.

Maybe you are looking for