Problem in Create Appointment and instant messaging.

Hi All,
When i send a mail through creat appointment using RTC. DAte and time which the user gets in his mail are different then what i have mentioned in create appointment mail.
Is there any way to change the instant messening layout. I want to increase the size of message box.
Thanks in advance
Sarang

Hi Prabhakar,
When i check the availability of any person actually it is showing the status as busy defaultly, although we have not mention it anywhere. i want to change the status  from busy to available. What i need to know is where can i change the status .
Thanx ....
Sarang

Similar Messages

  • Is it possible to play different sounds for emails and instant messages ?

    Hello,
    I was wondering if it was possible to play different sounds for emails and instant messages. I am using Thunderbird quite often with both emails and instant messages imported from Gtalk.
    I think it would be very convenient to be able to distinguish both sounds as they do not imply the same things.
    Thank you very much.
    Olivier Hubert.

    There are only six chat add-ons, three of them are about notifications. Pick one you think will do the job for you. https://addons.mozilla.org/en-US/thunderbird/extensions/chat/?sort=popular

  • I bought a new iPhone 6 and switched carriers and am trying to get my voicemail and instant messages ported over to the new phone

    I bought a new iPhone 6 and switched carriers and am trying to get my voicemail and instant messages ported over to the new phone

    Restore from your backup.  For voicemail contact your cell phone provider.

  • Newbie Questions/Comments - SMS and Instant Messaging

    I am a new iPhone 3G owner. Before the iPhone I used a SideKick and a BlackBerry. Between those 2 the BlackBerry was my favorite. The email, IM and TXT messaging was great. Now I have the iPhone and I like it but have 2 MAJOR gripes:
    *1. SMS* - When txting with someone from my old provider (T-Mobile) the txts are REAL slow. Several minutes pass before receipt. I did a test and sent and received txts from someone on the Verizon network and had no problems. Does anyone know what would be causing this?
    *2. Instant Messaging* - Now this is my biggest gripe. Instant Messaging is non-existent. Why is this? It used to be my primary means of communication.
    There was another one but I can't remember it right now. Any insight to either of these would be appreciated. I've never spent so much time trying to figure out a phone.

    For number 2, this is well known design limitation of the iPhone. The iPhone does not allow background applications to run, so if your phone goes to sleep or you leave the IM screen, then IM is shutdown.
    Apple is supposed to release a background notification service, but it is past the launch date, and no one knows when it will show up.
    If realtime always on IM is a must have, then the iPhone is not a good choice.

  • Problem during creating delivary and PGI

    Hello Friends,
    I am facing a problem in creating the Delivary document.
    The error is "date in item 000010 of document does not exist"
    Please help me out.
    With Regards
    Sharan

    Are you sure you posted in the correct forum? if it's related enterprise services and you're having problem with one of them, please clarify. thanks.

  • I do have problem in C3-00 in "Instant messaging t...

    hello,
    i started using C3-00 from past 1 week.
    I started using "Instant messaging through Windows Live Messenger™, Yahoo!® Messenger, Google Talk™ and Ovi Chat" option for chating but now My gchat status shows up as signed in and active on my friends computers even though I have signed out.  I changed my password and 
    signed out on all computers using the "Activity Information" page, but 
    still show up as signed in.  Please help! 

    Have you jailbroken your device? If so we cannot help you here

  • Collaboration and Instant Messaging

    Has anyone setup Instant Messaging with Collaboration?
    How does it work? Issues? Benefits? Firewall issues?
    Any info would be great!
    Thanks!
    V
    Computers are like Old Testament gods; lots of rules and no mercy. ~Joseph Campbell

    Hi Arun,
    after installing EP6.0 with KMC you need to do some basic configuration in order to prepare the system for using collaboration. Please take a look at this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/01/f7e626b95d8d46b8f4f7d764a726fc/frameset.htm
    Check that all that basic configuration is done. For accessing the Collaboration Launchpad you will need to do the steps described under "Configuring the masthead for Collaboration" (http://help.sap.com/saphelp_nw04/helpdata/en/96/785b5fdf4b6b4088034976d9186789/frameset.htm)
    Hope this helps,
    Robert

  • Contact list and instant messages

    Can people on your contact list read your instant messages to someone different on your contact list or can they only see what you IM to them personally?

    I'm not sure if I understand your question correctly, but in one-on-one chat, the only persons who can see the messages that you sent is you and the contact that you are chatting with.
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • Facing Many Problems About Creating Directory and an External Table

    Question:
    The weird thing is if you look at question 10-b in page 3-41, it says:
    (page 3-41 "Oracle Database 10g SQL Fund. II Vol.1")
    Merge the data in the EMP_DATA table created in the last lab into the data in the emp_hist table. Assume
    that the data in external EMP_DATA table matches the EMP_HIST table, update the email column
    of the EMP_HIST table to match the EMP_DATA table row. If a row in the EMP_DATA table does not
    match, insert into the EMP_HIST tables. Rows are considered matching when the employee's first and
    last name are identical.
    To me, this question is constructed wrongly. First of all in the last lab we have not been asked to create EMP_DATA. Secondly, EMP_DATA is empty.
    Thirdly, this question asks us to merge into EMP_HIST table while EMP_DATA is empty.
    EMP_HIST table currently has copied data from employees table. EMP_HIST structure:
    FIRST_NAME VARCHAR2(20)
    LAST_NAME NOT NULL VARCHAR2(25)
    EMAIL NOT NULL VARCHAR2(45)
    Anway, i did the merge as following:
    merge into emp_hist e
    using emp_data d
    on (e.first_name = d.first_name)
    when matched then
    update set
    e.last_name = d.last_name,
    e.email = d.email
    when not matched then
    insert values (d.first_name, d.last_name, d.email);
    I get this error:
    Error report:
    SQL Error: ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file emp.dat in EMP_DIR not found
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
    29913. 00000 - "error in executing %s callout"
    *Cause:    The execution of the specified callout caused an error.
    *Action:   Examine the error messages take appropriate action.
    On the other hand, i said let me try this:
    merge into emp_data d
    using emp_hist e
    on (d.first_name = e.first_name)
    when matched then
    update set
    d.last_name = e.last_name,
    d.email = e.email
    when not matched then
    insert values (e.first_name, e.last_name, e.email);
    I get this error because external table is final once its created as far as i know:
    Error report:
    SQL Error: ORA-30657: operation not supported on external organized table
    30657.0000 - "operation not supported on external organized table"
    *Cause:    User attempted on operation on an external table which is
    not supported.
    *Action:   Don't do that!
    I do not know what to do. I did my best, please help.
    Edited by: user11164565 on Jul 27, 2009 2:43 AM

    user11164565 wrote:
    NOTE: I did my best, i did all what i can do, but the problem persists. Please help
    I will mention all the steps i did clearly....
    I gave scott the following grants:
    grant create any directory to scott;
    grant read on directory emp_dir to scott;
    1. Created a directory and its been created successfully:
    create or replace directory emp_dir
    as 'F:\emp_dir';
    Then i did the following just to make sure my directory is recognized:
    SELECT *
    FROM dba_directories;
    I found the drive amongst the results...
    OWNER DIRECTORY_NAME
    DIRECTORY_PATH
    SYS EMP_DIR
    F:\emp_dir
    SYS SUBDIR
    D:\oracle\product\10.2.0\db_1\demo\schema\order_entry\/2002/Sep
    SYS XMLDIR
    D:\oracle\product\10.2.0\db_1\demo\schema\order_entry\
    2. I created an external table emp_data (the script is given by the text book): done successfully
    drop table emp_data;
    CREATE TABLE emp_data
    (first_name VARCHAR2(20)
    ,last_name VARCHAR2(20)
    , email VARCHAR2(30)
    ORGANIZATION EXTERNAL
    TYPE oracle_loader
    DEFAULT DIRECTORY emp_dir
    ACCESS PARAMETERS
    RECORDS DELIMITED BY NEWLINE CHARACTERSET US7ASCII
    NOBADFILE
    NOLOGFILE
    FIELDS
    ( first_name POSITION ( 1:20) CHAR
    , last_name POSITION (22:41) CHAR
    , email POSITION (43:72) CHAR )
    LOCATION ('emp.dat') ) ;
    3. I went to F:\ drive to see if emp_dir folder exist or not! I did not see it. I checked hidden files, nothing there. Anyway, i ignored it and did step 4.
    <snip>
    "Anyway, I ignored it . . . "
    and hence the rest of your problems. I did not see in the steps you recounted that you acually created a directory ("folder") named "\emp_dir" on your f: drive. Nothing you create within the database will actually create that directory on the OS. Createing a directory in Oracle, createing an external table in Oracle, will only create pointers to objects that Oracle will simply assume actually exists.

  • Problem in creating EJB and WebService using complex class structure

    Hi All,
    My requirement is like :
    I have a class with very complex structure.
    I have also used external .jars.
    Now when I have created an EJB with a method's return parameter as above class.
    But when I am creating a Webservice, it doesnot allow me to select this method.
    Not able to configure why ?
    Please Help.
    Thanks.

    Hi,
    I have gone through your code and the problem is that when you create jar it takes a complete path address (which is called using getAbsolutePath ) (when you extract you see the path; C:\..\...\..\ )
    You need to truncate this complete path and take only the path address where your files are stored and the problem must be solved.

  • Problem in Creating Delivery  and PGI

    Hi Guru's
           My sales process is  Sales Order-- Delivery( PGI is not done here)- Billing-- (PGI is done after doing Invoicing)
          (1)  My user created one delivery for a quantity of ( say 100 quantity) and forgot to pick and assign batch in the delivery and created an invoice for the delivery. (Usually the system will ensure the delivery quantity and picked quantity is same when doing PGI and since we are not doing PGI before Billing the system allowed to create an invoice)
          While doing PGI the system is not considering this quantity because quantity is assigned and an excess quantity is showing in Stock Overview.how to correct this. and my situation is i cant cancel the invoice and assing the batch and do PGI.
        how to correct this quantity difference ?
      (2) Recently when doing Physical inventory they adjusted the quantity in the system by decreasing the quantity by said 100 quantity but there is a problem in doing new delivery( short of 100 quantity) because the already invoiced delivery is showing a requirement of 100 quantity. In order to do delivery they added that  100 quantity with same batch number.
             I want a solution for this please help me
    regards,
    Ravi Kiran
          I

    Hi Ravi kiran
    As your process is different so you need to go with the new sub-routine and you need to assign that   sub-routine in VTFL .then only the problem can be solved. . But if you are doing order related billing then in VTFA you need to maintain the item category . and also check the feild Overdelivery in 0VLP Then you can change the quantity in the delivery level
    Regards
    Srinath

  • Problem with file opening and error message

    Hi there,
    In CP 7, I am having a problem opening a file adn was wondering if anyone else has had this and whether the file was recoverd effectively or at all...
    See message below
    Cheers
    Rossdo

    Are you trying to open a CP8 file in CP7? If you are facing the problem with CP7 file itself, first thing you need to do is check whether you got any .lck file (lock file) in the source file folder, which indicates that the file was opened and not closed properly.
    If not, try the method here:
    Recovering the project « Rapid eLearning | Adobe Captivate Blog
    Sreekanth

  • Problem in creating function and it is too much urgent!!

    I am a new to Oracle function,
    And i am facing the following problem,plz make reply.......
    CREATE OR REPLACE FUNCTION
    get_working_period(JOINING_DATE IN DATE,EMPLOYEE_ID IN VARCHAR2)
    RETURN date is
    STATUS date;
    ID varchar2(10);
    PSTATUS DATE;
    BEGIN
    Select JOINING_DATE
    into STATUS
    from EMPLOYEE
    where ID=EMPLOYEE_ID;
    IF STATUS<SYSDATE
    THEN
    PSTATUS:=(SYSDATE-STATUS);[Problem is here,is it correct or any other way,plz reply]     
    END IF;     
    RETURN PSTATUS;
    END get_working_period;
    Regards --
    Mamun

    [Problem is here,is it correct or any other way,plz reply] One thing I hate is looking at other people's code and trying to understand what they mean. Particularly when its author is "a new to Oracle function" and so I can't rely on them understanding the conventions. It would be nice if people just told us what their code was supposed to do.
    From the name of the function - get_working_period - I presume your trying to derive the number of days the given employee has been working for the company. The clue there is number of days. That's a numeric data type not a date. So PSTATUS ought to be a NUMBER and your function ought to return a NUMBER.
    Cheers, APC
    Blog : http://radiofreetooting.blogspot.com/

  • Numerous problems with X1 platform and error message RDK-03032

    Daily I have problem with the X1 system where the TV signal goes out and I get a message that says " Call 1-800-XFINITY and reference RDK-03032." This problem is randum and can occur at any time of day, resulting in outages for many hours, or usually the remainder of the day. If I call Comcast customer service, usually the wait is usually about 20 minutes before someone comes on and goes through another process of sending signals to my box, at which time they say they need to send a technician out. I then get a call from the technician who says he doesn't need to come out because the problem is with XFINITY's network, and that they are working on it. If I call back into customer service, I need to first make sure I have about an hour for the process because the customer support person has to go through the same diagnostic test of sending signals to confirm the system is down, before they will refer the problem back to a technician in the field. Usually during this diagnostic process, the technician puts me on hold for another 30 minutes, at which time the phone is hung up, at which time I have to start the process all over again. RDK-03032 problem continues to occur with no resolution and no one seems to be able to tell me what the problem is, or how to fix it, and no one in customer support knows how to fix this problem. I have no idea how to get this problem resolved. Does anyone have any idea?  

    awsomely sad / they put this item on the market and i would recomemmend you contact the fcc for a form to fill out a complaint asap as i will be doing as soon as i receive the letter in the mail , they say it is a latency problem . late is late but no show at all for hours on end is the new future.  what is that suppossed to keep us victoms happy  untill they can figure out what to do to cover theyre mistakes , now they are trying to replace the incoming signal which has left me with no services 10 times in 14 days , i watched a tech install a new cable from pole to house with 2 supervisors standing rigth there , when the 12th visit by a tech i explained my story and the tech said let me look out side 1 hour later after my services were cut off again the tech came to my door and told me the cable from my house to the pole was terrible and rotten and needed to be replaced again , i knew he was lying but it was after 7 pm and i had enough , i saw them a week or so before , as did the 2 supervisors , cut a brand new peice of the roll in his truck replace it with new ends , a totally new peice , so i guess the cable they are using only has a 2 week life expectancy or the tech was lying , which i beleive the tech wanted to get paid for the call , so he probably did but once again my xi service is not right still , when they get to far in they start lying because they are probably getting screwed for have to service this x1 numerous times , when i sit here and listen to the supervisors and techs  tell me that the system is the problem and they are trying every 3 months to figure what the last  program upgrade has screwed up for  them and laugh jokingly it doesent give you to much faith in theyre ability to resolve any issues with this system face it we have no recoarse . over 200 hrs on the phone . i must have talked to every employee in the company even tom karinshank yhe ceo was contacted and after his rep sat there and picked appart evry thing i said got rude and now wont return my calls or emails they pass it to the next person , ????????????????????????????????????

  • Problems in creating OU and O

    I've 2 scenarios which I don't how to handle:
    Suppose I have a department in an organisation that have many smaller sub-department & these sub-departments may have groups within them (so sort like nesting), how do I create such entries?
    For the top level department, I could do this:
    dn: ou=ACC, o=abc.com.tw
    objectClass: top
    objectClass: organizationalUnit
    ou: ACC
    description: Accounts Department
    Lets say I want to create a sub-department call payroll within this Accounts department, how should my LDIF be?
    For my 2nd situation:
    Usually, there'll be only 1 top level organisation like this:
    dn: o=abc.com.tw
    objectClass: top
    objectClass: organization
    o: abc.com.tw
    Suppose this particular organisation is actually co-owned by two companies, like the Sun-Netscape Alliance. What can I do since now instead of one top level organisation, I've 2 or even more.
    Any help or suggestion is greatly appreciated.

    1) ou=Payroll,ou=ACC,o=abc.com.tw
    I think you may be under the impression that ou, o, etc. are somehow significant, that they can only be used in certain levels of the tree. This is not so in LDAP, and especially iDS. Perhaps you are confused about DIT Structure Rules in X.500.
    2) You can create up to 99 suffixes - each suffix would correspond to a top level organization.
    You sure ask a lot of questions. Perhaps you should invest in an LDAP book. The one by Howes, Smith, and Good is quite good. After you read that, take a look at the iDS Admin Guide and the iDS Deployment Guide.

Maybe you are looking for

  • I am trying to restore a locked device where password is unknown.

    iTunes goes to restore, iPhone Software Update goes to 18,000  hours remaining, then stops with error 9006.  I have done the same thing on a different device, restore took about 8 minutes, so network connection is fine. I've retried this restore on t

  • Cannot open multiple images in Photoshop

    I recently purchased a new laptop (OS: Windows 7 Enterprise, 32 GB RAM) and installed CS5 on it.  All of the applications work well except for Photoshop. At first Photoshop would load correctly but crash when I tried to Save As.  I deleted the prefer

  • Pavilion dv6 microphone problem

    Hi, I plug my microphone in my Pavilion dv6 but I can't hear anything from my microphone. My microphone works perfectly in my other computers. My operating system is windows 7 home premium. Could you please help me? Thanks a lot

  • Market Reference Salary not shown under Compensation Information

    Hi,        The Market reference salary under Enterprise Data under Compensation Information in MSS has always been shown as 0, even though we have given values for the particular user with the details like MOLGA, SLTYP, SLREG, SLGRP and have updated

  • Sync outlook with iphone

    hi im using iphone 4 and outlook 2013 without exchange. I schedule and write my meetings in the iphone and want tham to replicate to the outlook so I entered to itunes and in the iphone icon and them pressed the info tab and choosed sync all calendar