Show message popup when finish assigning task

Hi all,
I want to whenever user finish assigning task to other user, bpm will show popup window to confirm some information (i have just tried FaceMessage). Now, I am writing code in event TaskValidationCallback but it's not working.
Somebody help?
Thanks.

Hello Nguyen -
CIL (Common Intermediate Language) is the code we are writing inside the activity as method.
It can be any one of BPL(Business Processing Language - is the common snippet using for OBPM) or .NET or Java code.
In the above case we are using BPL.This is the beauty of Oracle BPM.Its supports all the three :)
Each process activity references a method. Methods can have CIL code implemented or can be empty,
but associated methods must always exist for process activities.
Please check : http://en.wikipedia.org/wiki/Common_Intermediate_Language
BR,
Justin.

Similar Messages

  • Excel 2007 Not allowing message popup when double clicking

    Hello,
    We have recently upgraded to Office 2007 and are using IP workbooks.  When a user gets the "messages available; double click to display" the message box is not popping up.  Does anyone know how to fix this issue?  Not sure if it is an excel issue or a BEx issue.
    Thanks,
    Cherie

    SAP Note 1299828 mentions that it has been fixed with BI Addon Support Package 9.
    SAP Note 1294382 - SAPBINews NW7.0 BI Add-On Frontend SP900 - GUI 7.10 says:
    Fixed in Bex Analyzer: "Message popup is not shown on double click in Excel 2007. Please read note 1299828."
    I have it installed now but it does NOT work either (for me)!
    At least in the global settings the option automatically popup messages works. Each action brings up the messages then.
    Cheers,
    Lars

  • TS1702 I recently had trouble with apps in app store but somehow it fix it self not sure how but now win I try to download an app a error 1004 shows up or when finished downloading I would press the app I just downloaded the screen goes back to the home p

    Um key I recently send a text to app store saying I was unable to see any pictures from app store or iTunes.  But somehow I am able to see them now. my problem is now when I try to download an app an error 1004 shows up. I was able to download a few apps but when done downloading I would press the app but goes back to home screen also just now I upgraded an app I already had & that app is doing it is well how would fix this problem or do I  have to get it fixed

    Here is a link which describes the process for changing an Adobe ID:
    Adobe ID, sign-in, and account help

  • Displaying loading busy popup when performing long task.

    Dear All,
    I am refering sample #27 on http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html as i came across the thread Re: Cursor busy state
    But the solution is not working in my scenario following is my code.
    JAVASCRIPT
    function enforcePreventUserInput(evt) {
    var popTask = AdfPage.PAGE.findComponentByAbsoluteId('popTask');
    if (popup != null) {
    AdfPage.PAGE.addBusyStateListener(popTask, handleBusyState);
    evt.preventUserInput();
    //JavaScript call back handler
    function handleBusyState(evt) {
    var popTask = AdfPage.PAGE.findComponentByAbsoluteId('popTask');
    if (popTask != null) {
    if (evt.isBusy()) {
    popTask.show();
    else {
    popTask.hide();
    AdfPage.PAGE.removeBusyStateListener(popTask, handleBusyState);
    <af:selectOneChoice required="#{bindings.EMAIL_TEMPLATE_LOV_VO11.hints.mandatory}"
    shortDesc="#{bindings.EMAIL_TEMPLATE_LOV_VO11.hints.tooltip}"
    id="emailTemplate" simple="true"
    valueChangeListener="#{backingBeanScope.generate_backing.templateSelected}"
    autoSubmit="true"
    valuePassThru="true">
    <af:clientListener method="enforcePreventUserInput" type="valueChange"/>
    <f:selectItem id="select" itemLabel="<-Select->"
    itemValue="-1"/>
    <af:forEach var="row"
    items="#{bindings.EMAIL_TEMPLATE_LOV_VO1Iterator.allRowsInRange}">
    <f:selectItem itemValue="#{row.attributeValues[0]}"
    itemLabel="#{row.attributeValues[1]}"/>
    </af:forEach>
    </af:selectOneChoice>
    <af:popup id="popTask" contentDelivery="immediate">
    <af:dialog id="d2" type="none" title="Please wait ..."
    closeIconVisible="false">
    <af:panelGroupLayout id="pgl1" layout="vertical">
    <af:image source="/Images/oralogo_small.gif" id="i1"/>
    <af:image source="/Images/pleasewait.gif" id="i2"
    inlineStyle="width:214px;"/>
    <af:outputText value="... please wait" id="ot11"/>
    </af:panelGroupLayout>
    </af:dialog>
    </af:popup>
    Can any one please point me out where i am going wrong ?..
    -Thanks

    Do did not mention what went wrong or is not working.
    Have you tried the sample from the code corner page?
    Does this sample work? JDev version?
    Timo

  • Showing error as popup when message type is 'E'.

    I have some problem about showing message.
    When I try to show error message by using message type 'E',
    message shows as popup like message type 'I'.
    I don't want to show message as popup.
    Sap version is ECC 4.6.
    please give me an answer experts.
    Have a nice day.
        SELECT SINGLE loevm
          FROM knb1
          INTO l_loevm
         WHERE kunnr = bseg-kunnr
           AND bukrs = bkpf-bukrs.
        IF l_loevm = 'X'.
          MESSAGE E037(zfimsg) WITH bseg-kunnr.  
        ENDIF.
    Edited by: SANG SIN BAE on Jan 16, 2009 3:11 AM

    Hi,
    As Martin said, it is depends on which event you put your message.
    Following link will help you:
    Link:[http://help.sap.com/abapdocu/en/ABENABAP_MESSAGE_DIALOG.htm]
    Best Regards,
    Victor.

  • Show popup when selection is made on SelectOneChoice

    Hello Geniuses!
    I am back again with another question. =D
    Using Jdeveloper 11g Release 1.
    I am trying to show a popup when a value is selected on a selectOneChoice component. I tried to use showPopupBehavior but looks like you cannot use that on a selectOneChoice...it obviously works if I have a button but I wish to get rid of the button and just display popup when a selection is made on the selectOneChoice.
    Any suggestions, ideas?

    Hi,
    1) set autoSubmit=true for SelectOneChoice component and create a valueChangeListener method for the selectOneChoice.
    2) In the valueChangeListener method, the popup can be shown using the samples specified in
    http://www.adftips.com/2010/10/adf-ui-popuputil-class-to-show-or-hide.html
    Thanks,
    Navaneeth

  • Assign Task - Prepare Data Service not being called?

    Hi,
    I've got an Assign Task activity, with an Action Profile that defines a Prepare Data Service.  For the Prepare data service, I've just created a simple process, and I'm recording it.
    When the assign task gets invoked, the Prepare Data Service process is not being executed.  Nothing gets recorded.
    Do I need to do something else?
    I am running LC ES2 SP2
    Note - If I use a Prepare Data Process on a Task Manager start point, it works fine.  It's just not working for an Assign Task activity.
    Thanks

    Hi
    By default, the checkbox to run the Prepare Data on the User service step is turned off.
    Navigate to the Presentation & Data tab on the User service.
    If you have selected an Action Profile that specifies a Prepare Data process, you'll see 3 checkboxes under the section: Specify when the Prepare Data process runs
    Check "The user opens the task" and it will now run the Prepare Data on the User service.
    Note: This is unchecked by default so that any data entered on the startpoint step is not overwritten at the user step.
    It is up to the process designer to save off any data that you do not want overridden when the Prepare Data loads.
    Diana

  • Error message when assign task profile

    Hi Expert,
    SAP system 4.0B, i create a new activity group in PFCG and assign responsibility in it.
    I already generate the responsibility and when i assign to user id in SU01 error message come out.
    Profile for activity group not yet generated                                                                               
    Message no. 01 070                                                                               
    Diagnosis                                                                               
    You are assigning a user with an activity group. Although this activity 
         group already has a designated profile name, the profile has not yet been
         generated.                                                                               
    System response                                                                               
    The user does not yet have the designated profile.                                                                               
    Procedure                                                                               
    Use the Profile Generator if you want to generate a profile. Remember   
         that you that you must execute a user comparison once you have generated
         the profile.                                                            
    As i already generate the activity, why the system still say that the activity group not yet generated?
    Please advice.
    Thanks
    regards,
    ng chong chuan

    Hi  Alex Ayers,
    The error when double click, there was nothing pop up.
    After generation in SUPC for responsibility RY type and the status show "Generation here not allowed/possible".
    SAP version 4.0B.
    Please advice.
    Thanks.
    regards,
    ng chong chuan

  • When I attach USB flashdrive to my new Mac Air no icon appears.  I just finished downloading pictures off of old mac and that one worked as expected.The new computer doesn't show anything but when I pull USB out pompts message improper eject. Any ideas?

    When I attached my USB flashdrive to my new Mac Air no icon appears and the same when I attached my new superdrive.  I just finished downloading pictures off of my old Mac and that one worked as expected. The new computer doesn't show anything but when I pull the USB flashdrive out, a message prompts me with an improper eject notice. Any ideas on why no icon (a disc) appears and how can I get it to?

    Open Finder preferences, click on the General icon in the toolbar. Check the boxes for what you want displayed on the Desktop. Click on the Sidebar icon in the toolbar and do the same for what you want displayed in the sidebar.

  • How to show messages in a little popup ?

    Hello,
    Im faced with an issue when I want to show messages in my little popup.
    The calling component is BT111H_OPPT.
    Whenever I want to show the message in my popup that the mandatory fields are not filled with information the systems only shows them on the view of BT111H_OPPT when I closed my popup.
    Ive implemented an own check method for that issue. See the following Code:
    IF me->check_mandatory_fields( 'CREATE' ) = abap_true.
        lr_window ?= me->view_manager->get_window_controller( ).
        lr_window->call_outbound_plug( 'CREATE' ).              "#EC NOTEXT
      ELSE.
        DATA: lr_service TYPE REF TO cl_bsp_wd_message_service.
        lr_service = me->view_manager->get_message_service( ).
    +   TESTED THAT CODE FIRST TIME, BUT NOTHING APPEARS ANYWHERE!!!!+*
    *    CALL METHOD me->messages->add_message
    *      EXPORTING
    *        condition = co_mandatory_field_empty
    *        message   = 'Test'
    **        otr_alias =
    *        severity  = cl_bsp_messages=>co_severity_error
    **        dummy     = me->component_id
    **        p1        =
    **        p2        =
    **        p3        =
    **        p4        =
    + SO I TRIED THAT ONE. NOW, THE MESSAGE APPEARS IN THE CALLING COMPONENT!+* 
    TRY.
            lr_service->add_message(
            iv_msg_type = 'W'
            iv_msg_id = 'ZICRM'
            iv_msg_number = '050'
            iv_msg_v1 = 'lv_text'
          CATCH cx_bsp_wd_dupl_mess_subscr.
        ENDTRY.
      ENDIF.
    THANK you for an answer...
    Regards,
    marcus

    Hi Marcus,
    try to use the following method as you create the popup in the calling view controller:
    <your popup ref>->set_display_mode( iv_mode = if_bsp_wd_popup=>c_display_mode_surrounded ).
    Best Regards,
    Michael
    Edited by: Michael Neumann on Feb 23, 2011 5:50 PM

  • Error message: File can't be opened right now because it's being used by another task, such as moving or copying an item or emptying the Trash. Try again when the current task is complete.

    I recently transferred some data from my external hard drive to my desktop, but there was an error transferring some of the files and it couldn't respond, and eventually i simply removed the external hard drive. However, the folder/files are still on my desktop, and when i try to move them or delete them, this error message appears:
    “-folder/file name-” can’t be opened right now because it’s being used by another task, such as moving or copying an item or emptying the Trash. Try again when the current task is complete.
    Since I removed the external hard drive before the files were finished transferring, there is no way for the current task to be completed. How can I resolve this and delete the folders/files from my desktop?

    I just managed to resolve this by going to the apple sign in the top left, choosing force quit (or you could do option+command+esc), then i chose finder, and i clicked relaunch. After relaunching finder, the error message doesn't appear anymore, and I could move these files/folders, and delete them just fine.
    Hope this will help other people who encounter similar problems in the future!

  • Need to show popup when the Submit button is clicked for the second time ..

    Hi guys,
    I have a requirement where i need to show a popup or alert when the submit button is clicked twice . When it is clicked for the first time one method is been called and its process starts. When the user clicks the submit button for the second time they should be shown a popup stating "Submit button already been clicked, please clicked OK to continue".
    Can anyone help with this please , its really urgent requirement ?
    Thanks in advance

    Hi,
    I dont have any sample code to give you now. For quick reference, I can advice some psuedo steps to achieve your requirement. I dont have access to JDEV to test this. If any syntax errors then pls correct yourself.
    1. Extend Controller since it is standard page ( Refer Anil Passi site for steps to extend seeded ontroller)
    2. Write below logic in your Process Request method
    super.processRequest(oaPageContext, oaWebBean);
    pageContext.putSessionValue("status", "notInitiated");
    3. Include below logic in your PFR method
    if(pageContext.getSessionValue("status")!=null){
    if("notInitiated".equals(pageContext.getSessionValue("status")))
    super.processFormRequest(oapagecontext, oawebbean);
    pageContext.putSessionValue("status", "initiated");
    else
    String message = "Display error message as required";
    throw new OAException(message, OAException.ERROR);
    You may need to import required packages ( Related to OAException).
    Remeber, to sumbit the request, user need to refresh the page again so that "status" variable will be refreshed.
    Hope it helps.
    Thanks
    venkat

  • Not showing  pop up message window when message type I and W

    Hi,
    My requirement is to show the popup message window with material number, material description and ABC indicator of material at Every line item of PO in Transaction ME21N , if material is significant.
    I find Badi to transaction me21n ME_PROCESS_PO_CUST~PROCESS_ITEM
    actually i want show only information about material.
    This Badi ( ME_PROCESS_PO_CUST~PROCESS_ITEM ) is properly working But does not showing Popup Message window
    when i am using Message Type  'I' or "W" .
    <Coding>
    method IF_EX_ME_PROCESS_PO_CUST~PROCESS_ITEM.
    BREAK-POINT.
    BREAK-POINT.
        IF  SY-TCODE EQ 'ME21N' OR SY-TCODE EQ'ME21' . " ) AND MEPO1211-werks IS NOT INITIAL. " AND IM_LGOBE IS INITIAL.
       BREAK-POINT .
      DATA : VAR_MAKTX TYPE MAKT-MAKTX.
      DATA : VAR_MAABC TYPE MARC-MAABC.
      DATA : P TYPE STRING.
      DATA : P1 TYPE STRING.
    DATA: ls_mepoitem1 TYPE mepoitem,
          ls_header_obj TYPE REF TO if_purchase_order_mm,
          ls_header   TYPE mepoheader,
          lc_werks(1) TYPE c,
          lv_fabkl    TYPE t001w-fabkl,
          lv_plifz    TYPE ekpo-plifz.
       *Get header data
      ls_header_obj = im_item->get_header( ).
      ls_header     = ls_header_obj->get_data( ).
    *Get Item Data
    ls_mepoitem1 = im_item->get_data( ).
        SELECT SINGLE MAABC FROM MARC INTO VAR_MAABC WHERE matnr EQ ls_mepoitem1-matnr AND werks EQ    ls_mepoitem1-WERKS.
        SELECT SINGLE MAKTX FROM MAKT INTO VAR_MAKTX WHERE matnr EQ ls_mepoitem1-matnr.
          IF   VAR_MAABC EQ 'A'.   "LS_MEPOITEM1-SPINF EQ 'A'.
            P = 'is significant material'.
            CONCATENATE  LS_MEPOITEM1-MATNR '' '(' VAR_MAKTX ')'  '' P INTO P1.
           MESSAGE p1 type 'I' .   
            EXIT.
            ENDIF.
            ENDIF.
    endmethod.
    guide me.....

    Hi
    Please, see SAP Note 310154 - ME21N/ME51N: Customer-specific check, generating error log
    I hope this helps you
    Regards
    Eduardo

  • There is no task in UWL when i assign expression as responsible for a task

    Hi @,
    I create a simple process BPM on Process Composer, there is a task and a service to start this process.
    When i assign specify user for this task (e.x : ABC), i start process using the service, it's ok, there is a task is assigned to ABC.
    But when i use expression to assign for the task, the value of this expression will be mapped with data i input when start process using the started service. There is no task on portal.
    Please give me some advices,
    Thanks

    Sorry, here is trace message:
    An error occurred while executing transition START_TASKFLOW_Review_Timesheet(Token_0_P03_Timesheet_Process_0660a0655e09d2a43f917ec81589b112(Instance_0_P03_Timesheet_Process_0660a0655e09d2a43f917ec81589b112(null,null,null,false),1), Instance_0_P03_Timesheet_Process_0660a0655e09d2a43f917ec81589b112(null,null,null,false), Context_1_DO_PersonInfoType_0660a0655e09d2a43f917ec81589b112(Instance_0_P03_Timesheet_Process_0660a0655e09d2a43f917ec81589b112(null,null,null,false),Scope_16_New_Pool_0_0660a0655e09d2a43f917ec81589b112(Instance_0_P03_Timesheet_Process_0660a0655e09d2a43f917ec81589b112(null,null,null,false)),1,true), View_4_Default_ExcludedOwners_0660a0655e09d2a43f917ec81589b112(Instance_0_P03_Timesheet_Process_0660a0655e09d2a43f917ec81589b112(null,null,null,false),Scope_6_New_Pool_0_0660a0655e09d2a43f917ec81589b112(Instance_0_P03_Timesheet_Process_0660a0655e09d2a43f917ec81589b112(null,null,null,false)),0,false), View_5_Default_PotentialOwners_0660a0655e09d2a43f917ec81589b112(Instance_0_P03_Timesheet_Process_0660a0655e09d2a43f917ec81589b112(null,null,null,false),Scope_8_New_Pool_0_0660a0655e09d2a43f917ec81589b112(Instance_0_P03_Timesheet_Process_0660a0655e09d2a43f917ec81589b112(null,null,null,false)),0,false)): com.sap.glx.core.kernel.api.TransitionRollbackException: Exception during prepare, rolling back
    at com.sap.glx.core.kernel.mmtx.AbstractTransactionBase.rollback(AbstractTransactionBase.java:538)
    at com.sap.glx.core.kernel.mmtx.AbstractTransaction.do_prepare(AbstractTransaction.java:174)
    at com.sap.glx.core.kernel.mmtx.AbstractTransaction.commit(AbstractTransaction.java:77)
    at com.sap.glx.core.kernel.execution.LeaderWorkerPool$Follower.run(LeaderWorkerPool.java:120)
    at com.sap.glx.core.resource.impl.common.WorkWrapper.run(WorkWrapper.java:58)
    at com.sap.glx.core.resource.impl.j2ee.ServiceUserManager$ServiceUserImpersonator$1.run(ServiceUserManager.java:116)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAs(Subject.java:337)
    at com.sap.glx.core.resource.impl.j2ee.ServiceUserManager$ServiceUserImpersonator.run(ServiceUserManager.java:114)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:169)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:266)
    Caused by: com.sap.glx.core.kernel.api.TransitionRollbackException: Exception during prepare, rolling back
    at com.sap.glx.core.kernel.mmtx.AbstractTransactionBase.rollback(AbstractTransactionBase.java:538)
    at com.sap.glx.core.kernel.mmtx.AbstractTransaction.do_prepare(AbstractTransaction.java:174)
    at com.sap.glx.core.kernel.mmtx.AbstractTransaction.commit(AbstractTransaction.java:77)
    at com.sap.glx.core.kernel.mmtx.PrimaryTransaction.inPrepare(PrimaryTransaction.java:88)
    at com.sap.glx.core.kernel.mmtx.AbstractTransaction.do_prepare(AbstractTransaction.java:172)
    ... 11 more
    Caused by: com.sap.glx.core.kernel.api.TransitionRollbackException: Exception during prepare, rolling back
    at com.sap.glx.core.kernel.mmtx.AbstractTransactionBase.rollback(AbstractTransactionBase.java:538)
    at com.sap.glx.core.kernel.mmtx.AbstractTransaction.do_prepare(AbstractTransaction.java:174)
    at com.sap.glx.core.kernel.mmtx.AbstractTransaction.commit(AbstractTransaction.java:77)
    at com.sap.glx.core.kernel.mmtx.DirectNestedTransaction.inPrepare(DirectNestedTransaction.java:58)
    at com.sap.glx.core.kernel.mmtx.AbstractTransaction.do_prepare(AbstractTransaction.java:172)
    ... 14 more
    Caused by: com.sap.glx.core.kernel.api.CancelTransitionException: java.lang.IllegalArgumentException: Identifier '$principalId' invalid
    at com.sap.glx.core.internaladapter.ExceptionAdapter.raiseException(ExceptionAdapter.java:540)
    at com.sap.glx.core.internaladapter.ExceptionAdapter.raiseException(ExceptionAdapter.java:511)
    at com.sap.glx.core.internaladapter.Transformer$ClassRegistry$MapperClassManager$MapperClassHandler$MapperInvocationHandler.createTransitionException(Transformer.java:2033)
    at com.sap.glx.core.internaladapter.Transformer$ClassRegistry$MapperClassManager$MapperClassHandler$MapperInvocationHandler.invoke(Transformer.java:2053)
    at com.sap.glx.core.internaladapter.Transformer$TransformerInvocationHandler.invoke(Transformer.java:576)
    at com.sap.glx.core.dock.impl.DockObjectImpl.invokeMethod(DockObjectImpl.java:463)
    at com.sap.glx.core.kernel.trigger.config.Script$MethodInvocation.execute(Script.java:247)
    at com.sap.glx.core.kernel.trigger.config.Script.execute(Script.java:670)
    at com.sap.glx.core.kernel.execution.transition.ScriptTransition.execute(ScriptTransition.java:64)
    at com.sap.glx.core.kernel.execution.transition.Transition.commence(Transition.java:241)
    at com.sap.glx.core.kernel.mmtx.DirectNestedTransaction.inPrepare(DirectNestedTransaction.java:57)
    at com.sap.glx.core.kernel.mmtx.AbstractTransaction.do_prepare(AbstractTransaction.java:172)
    ... 17 more
    Caused by: java.lang.IllegalArgumentException: Identifier '$principalId' invalid
    at com.sap.glx.mapping.execution.implementation.node.PrimitiveNode.readContainer(PrimitiveNode.java:32)
    at com.sap.glx.mapping.execution.implementation.node.PrimitiveNode.readContainer(PrimitiveNode.java:7)
    at com.sap.glx.mapping.execution.implementation.Interpreter$SourceResolver.resolveSourceReference(Interpreter.java:81)
    at com.sap.glx.mapping.execution.implementation.Interpreter$SourceResolver.resolveSourceStep(Interpreter.java:89)
    at com.sap.glx.mapping.execution.implementation.Interpreter$SourceResolver.resolveSource(Interpreter.java:67)
    at com.sap.glx.mapping.execution.implementation.Interpreter$SourceResolver.<init>(Interpreter.java:56)
    at com.sap.glx.mapping.execution.implementation.Interpreter.mapPart(Interpreter.java:145)
    at com.sap.glx.mapping.execution.implementation.Interpreter.mapPart(Interpreter.java:151)
    at com.sap.glx.mapping.execution.implementation.Interpreter.mapPart(Interpreter.java:151)
    at com.sap.glx.mapping.execution.implementation.Interpreter.mapMapping(Interpreter.java:140)
    at com.sap.glx.mapping.execution.implementation.Interpreter.map(Interpreter.java:135)
    at com.sap.glx.core.internaladapter.Transformer$ClassRegistry$MapperClassManager$MapperClassHandler$MapperInvocationHandler.map(Transformer.java:2071)
    at com.sap.glx.core.internaladapter.Transformer$ClassRegistry$MapperClassManager$MapperClassHandler$MapperInvocationHandler.invoke(Transformer.java:2048)
    ... 25 more

  • Show Popup when new e-mail arrives by exchenage push.

    Hello,
    I created a mail account for my cooperate exchange server. The push works great, I receive all messages sent to me, and it even does a audio notification when I receive a message. Now the question I have is this: How can I make it show a Popup, like when I receive a SMS? Most of the time I'm in meetings and the sound is off, and even it has vibration, I'm not always aware of the vibration, an I have to go to the home screen to see if I received an e-mail. If it had a popup like with the SMS, it would be best in my view.
    Doses the iPhone has that option?
    I have a iPhone 4, latest iOS 4.1. My exchange server is the 2003 version, but I don't believe the problem is in the server.
    Cheers.

    Doses the iPhone has that option?
    Unfortunately, no.

Maybe you are looking for

  • PO error message.

    Hi people, I'm tryin to change a Error message to Warning on PO, when the Vendor of the header is not equal the Vendor of the Item . I changed the message when I insert the 1st contract item, but when I insert the 2st item the error appears again and

  • New to logic and i cant figure out how to dupe a mono single to stereo?help

    So I'm loving logic but im used to working on adobe audition and i cant figure out for the life of me how to take the mono loop im working with and turn it in to stereo. Please help and thanks ahead of time.

  • Webconsole - menu only for root

    Hi, I can only log into my webconsole with root. If I use another user the webconsole permits to log in but no applications (ZFS, Sun Cluster, ...) are available. Solaris 10 u6 (Generic_138888-03) Sun CLuster 3.2 u2 Regards, MIke

  • Having trouble with updating from 4.0 to iOS 4.0.2.

    I have been trying to update my iPod since yesterday. I attempted 6 to 7 time but i got the same message again again saying "There was a problem downloading the software for the iPod. The network Connection timed out, make sure your network setting a

  • Find/Change - GREP vs. TEXT

    Today, thanks to this amazing forum, I discovered that I had been using "Find/Change" under TEXT, instead of GREP. Using "Find/Change" as GREP for finding & replacing seems to be MUCH MORE POWERFUL than "TEXT." What are the disadvantages of using "Fi