Activation to capture actions in activity universe

Hi,
We have moved from BOPXI R2 to BOXI R3, till we were in BOXI R2 actions were capturing in Audit table of activity universe.
But from BOXI R3 it is not capturing the actions.
Do I have to do some settings to capture any actions which take place in BOXI server.
Can some one please help me activating this setting.
Thanks in advance.
Muiz

1) Make sure your Audit database is setup. If not stop the SIA and goto-> properties --> configuration tab and specify your audit DB. Start the servers
2) goto -> WebIntelligentProcessingServer in servers list --> right click -->select AUDIT EVENTS.
3) Enable the AUDITING and webintelligent processing service.
Thanks,
Anil

Similar Messages

  • Import is not available all other actions are active but not import help?

    Import is not available all other actions are active but not import help? I wish to import bookmarks from internet explorer, I am using windows 7

    Make sure that you do not run Firefox in permanent Private Browsing mode.
    *https://support.mozilla.com/kb/Private+Browsing
    *You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    *To see all History and Cookie settings, choose: Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    * Deselect: [ ] "Permanent Private Browsing mode"

  • Error While Activation of Addtional Actions

    Hi Folks
    I am just trying to perform two actions in a day.
    So i am trying to activate the node PM - PA - Set up Personnel Actions - Activation Additional Actions.
    I am giving the Personnel Number for whom i am wanting to run the second Personnel action.
    When i run it in the live mode i am getting the following error.
    How to solve this?
    PerNo 00000501 Error while creating IT 0302
    I did the required 2 steps also
    Table T77S0 group ADMIN - value EVSUP is set to 1
    Table T529A set indicator U302 against all actions which are to update infotype 0302
    but Error is still comming ,
    Please Advice.

    Hi,
    Check the FC of Transfer action in Personnel Action types through Config, it has to be 0 (other actions) and also its U0302 indicator should be set along with U0000.
    I hope you have activated the additional action indicator.
    PM/PA/Customizing Procedures/Actions/Set Up Personal Actions -- Choose Personnel Action Types There in Transfer Action Check its FC which has to be 0 (other actions) and U000 and U0302 must be check.
    Thanks and Regards,
    Revathi.

  • Activation of Additional actions for existing Pers. Nos

    Hi Frdz,
    We have a scenario on additional actions that is; activation of additional actions for existing personnel numbers.
    1. Actually we uploaded personnel actions data without activating the additional actions in T529A. Then we came to know that can activate existing personnel numbers by maintain activation of additional actions T code OG00.
    I tried to activate per above procedure but SYS thrown error Pers.no XXXX X Error while creating additional actions.
    2. As well as I’m facing one more issue in Ad hoc query. When ever I transport query form DEV server to other servers I can’t execute query using assigned T code directly but once we execute query through SQ01, can execute with T code but this procedure can’t follow because in PRD I don’t have any access.
    Hence, kindly let me know the solutions to overcome these issues.

    Hi,
    1. While activating Additional Personnel Actions u vl find the node where in for already created personnel numbers u can activate. So maintain that node.
    2. Usally Adhoc Query authorization vl not be given to one particular user as its related with All The Users authorization as its related with client Administration.
    So Check vth ur basis guy
    Regards
    Pavani

  • How to capture mold change activity

    Dear experts
    Our client has plastics injection moulding process. In routing we are already assigned the mould as PRT.
    There are mold change will happen for all type of molds to different workcenter combination every day.Mold and workcenter of each combination has different cycle time for mold change activity.
    How to maintain activity timing (should not reflect into costing) for each combination.And also want to capture actual mold change time for calculating efficiency.
    If any body map and using the above scenorio, kindly help me.
    SS

    Dear,
    it is not clear from your question about mould and WC.
    As I understood.. You habe mould A, B, C, D
    You have work centre W, X, Y, Z
    You can use Mould A, B, C, D in WC W, X, Y, Z.
    if this is the case, then
    in WC X, you are using A and now mould is changed to B let us say...it will take some time;...
    and that time can be considered as setup time in SAP.
    I am wrong please explain so that we can help you

  • Response of E-mail campaign to be captured as an Activity

    Hello,
    Using Campaign Automation, I create a E-mail campaign without a survey integrated. Customer sees the mail. If he is willing with the proposition he will respond favorably. <b>This positive response needs to be captured as an activity in CRM 4.0.</b>
    Pls suggest the config process reqd for this
    1. Without Win client Scenario
    2. With Winclient scenario
    Thanks & Regards,
    Raju

    Hi Gregor,
    Thanks for yor response.
    No we do not have add on for service industries. Businesss does not require survey integration. They send a proposition in mail to customer, whic he can accept or reject.
    accepted propositions need to be captured as activities in CRM.
    When the customer accepts, he sends an inbound mail or calls the call center (here it is in R/3)
    Those inbound responses can be captured thru "extended E-mail inbox setings" but that node does not appear in my IMG. Can u suggest how to activate it and the technology supporting this Inbound Email
    another question:
    If I use a SMS campaign, do you know how, from Technology perspective, message is transmitted from campaign automation tool to recipients mobile:
    Thanks & Regards,
    Raju

  • To read activity id / activity journal within Action

    Hello Experts,
    I have a Activity created for Blocking/unblocking(Status) the product-Flat.
    On choosing the status 'Blocking' from activity page and saving the Action is triggered - In Action the processing type is Method call, i have implemented the BADI 'EXEC_METHODCALL_PPF' . With in this method a simple update statement to set the status of a product in the ztable to 'blocked' is put.
    But for this the Method will have to read the  product entered in the activity journal.
    My Question is how to read or get the activity id or guid within the action method. So that the product is read and only then can i proceed.
    Please give me some direction on how to proceed on this.
    Thanks,
    Jaya.

    Thanks Shaik............
    CRM_ORDER_READ & CRM_ORDER_READ_OW will definitly help me but what I wanted was the GUID of current activity within the action method , which i will then pass to the above function....... So here is the code, Nothing great!!! looked into the standard Actions defined.
    get document info
      lcl_action_execute = cl_action_execute=>get_instance( ).
    consistency checks
    no preview supported
      IF ip_preview = true.
        MESSAGE s007(crm_action).
        EXIT.
      ENDIF.
    me->init( ).
    get parameter from reference object
      CALL METHOD lcl_action_execute->get_ref_object
        EXPORTING
          io_appl_object = io_appl_object
          ip_action      = ip_action
          ii_container   = ii_container
        IMPORTING
          ev_guid_ref    = mv_ref_guid
          ev_kind_ref    = lv_ref_kind.
    append mv_ref_guid to lv_guid.   
    ................Now i can pass this lv_guid to the function CRM_ORDER_READ ( Which is called only when the activity is already created in the database...ie when the status is set for the 2nd time ),
    CRM_ORDER_READ_OW ( to read from buffer bcoz 1st time when i set the status my activity is not yet created in the database).
    ................  full points to me 

  • Launch BSP in PC UI when an action is activated in Sales Assistant Tab

    Hi
    I have come across detailed information on how to launch a BSP in a tab . However I am wondering if there is any way to launch a BSP when an action is activated in the sales assistant tab. In SAP gui it is easy to do by defining a custom method and using either a html control or function module . Any ideas how to achieve this in PC UI?
    Thanks
    Shariqa

    Hello Shariqa,
    can you describe detailed in what Application you whant to launch the BSP and do you want it to be shown in the Tab or started by clicking on a Button?
    Regards
    Gregor

  • To Capture the change Activity in Me23n

    Hi all,
    How do i capture the change activity (Display/Change) in ME23N ? I need to put validation in an Exit on SAVE clicked in Me23n with changes done to a PO in ME23n only by clicking change button.
    appreciate your ideas.
    Thanks,
    stock.

    Check for the fields TRTYP in table T160  passing the tcode.
       Masked                          
    A    Display                         
    B    Edit                            
    C    Display from archive            
    E    Single-item planning            
    H    Add                             
    V    Change                          
    X    Initial transaction             
    S    Standard parameter: normal mode 
    U    Convert indiv. planned order    
    L    Delete                          
    P    Planning file entry             
    K    Copy reference                  
    D    Print                           
    Regards,
    Ravi

  • Create applicant activity without saving action

    Hi,
    Is there any option to create and save aplicant activity without saving action?
    Thanks,
    Paulina

    Hi Datta,
    Thanks for ur reply,
    As u said, I have seen PBAL it may solve my issue but I'm not aware of the process to maintain activity through PBAL.
    Kindly let me know the process to maintain the activities for single applicant and BULK as well.
    Thanks in advance.
    $Lakshmi

  • HT1937 I have successfully restored my iPhone 3 gs( Ios )  by itunes. After activation it is asking for activation. When I am going for activation its saying that no SIM card is inserted, but I have already Ufone SIM card is inserted. I checked it with ot

    I have successfully restored my iPhone 3 gs( Ios )  by itunes. After activation it is asking for activation. When I am going for activation its saying that no SIM card is inserted, but I have already Ufone SIM card is inserted. I checked it with other SIM card like Zong etc but the response was same i.e; no SIM card is inserted. It not catching the signals. I am trying to use  my wifi to activate my iphone but it iss not processing then i used itunes to activate by it's again saying that no sim card is detected.
    My all contacts and all data is in this mobile. Now Iam unable to contact anyone. Please help me. How can I sort it out?
    Thank you
    Regards
    Wazir Ali

    Well, if you did it yourself, then there is a chance that you damaged some other component inside the device that is causing your issue. The iPhone's are not user serviceable, and once you have opened the device you have voided any warranty and post-warranty support from Apple. I would try Google to see if you can find any other way to repair your device, as Apple will no longer look at it.

  • My iphone 4 with 4.3.3 upgrade to 5.1.1,it said to me I should active it,I buy a active-card but it say 'Your request couldn't be processed.We're sorry, but there was an error processing your request. Please try again later.'  What's wrong with my iphone

    my iphone 4 with 4.3.3 upgrade to 5.1.1,it said to me I should active it,I buy a active-card but it say 'Your request couldn’t be processed.We’re sorry, but there was an error processing your request. Please try again later.'  What's wrong with my iphone

    It sounds a lot like your phone was jailbroken or hacked to unlock it before you updated.
    Was it?

  • Capturing Action

    Capturing Action Photos
    Anyone that knows me can tell you that, outside of photography and family, the thing I love most in life is baseball. Living in Minneapolis, I go watch our baseball team on a regular basis, and of course bring my DSLR with me to try and capture the action. I’ve had varying degrees of success, and have a new found respect for sports photographers.
    When things are moving fast it can be challenging to avoid missing the perfect photo. The first suggestion I would give you is to take as many images as possible, and if your camera has a Burst mode use it. Burst mode should allow you to capture multiple images per second; more images equals more chances you got that perfect photograph. Make sure to get a number of high capacity memory cards to store all these images on.
    With a DSLRs and Compact System Cameras (CSC) make sure the camera is set to Shutter priority. Set the shutter to as fast a shutter speed as the camera will allow, while still maintaining proper exposure.
    Many DSLRs have what’s called focus tracking; if your camera has this feature make sure to use it. Focus tracking continually changes focus to track your subject as it moves through the frame.
    Use a telephoto lens. Unless you’re on the field with the athletes you won’t get close enough to fill the frame with your subject using a normal focal length lens. I suggest a 300mm focal length, and the wider the aperture it has the better.
    Telephoto lenses can be large, heavy, and exaggerate camera shake. I would suggest mounting the camera to a monopod to steady the camera when using a telephoto lens.
    If you want to capture the action on video I would strongly suggest using a DSLR or an Action Camcorder. With a DSLR use a tripod with a panning head to record your video.
    Action photography is one of the most challenging there is. Don’t get discouraged if you don’t succeed at first. Like most things in life, practice makes perfect.
    Allan|Senior Social Media Specialist | Best Buy® Corporate
     Private Message

    Hi,
    Try using a change listener like the following, which updates pages when the user changes the tab.
    tabbedPanel.addChangeListener (new PageChanged());
    class PageChanged implements ChangeListener
    public void stateChanged (ChangeEvent event)
    java.lang.Object object = event.getSource();
    if (object == tabbedPanel)
    DialogPage page = (DialogPage)tabbedPanel.getSelectedComponent();
    page.refresh();
    good luck,
    Terry

  • HT201401 my iphone 4s could not be activated as could not find activation server/ sim not supported

    just got a used i phone 4s and its says could not be activated as could not find activation server also say sim not supported what am i doing wrong

    cindyfromsa wrote:
    ... what am i doing wrong
    Buying a used iPhone from unofficial place.
    1.) Your iPhone maybe locked to a certain carrier.
    2.) The sim may not be compatible.
    3.) Maybe it was jailbroken.
    Find out from the seller the 3 points I've mentioned.

  • I restore my US version  iphone 5s  by connecting itunes after restore it shows hello and select country, and activation, but it does not activating why? is it work in china ?

    i restore my US version  iphone 5s  by connecting itunes after restore it shows hello and select country, and activation, but it does not activating why? is it work in china ?

    If the iPhone is locked to a US carrier, you cannot use the SIM card of another carrier on it to either activate it or use the iPhone.
    If you want to use your iPhone with China unicom, you need to get it unlocked by your US carrier.  Contact them to see what their unlocking policy is and if you qualify.

Maybe you are looking for