Automatic creation of Activity/Ineraction log when BP data  is changed

Hi Gurus,
How automatic business activity can be created from CRM Web UI when particular transaction is excuted.
for ex. when I change a Business partner details from Web UI,a automatic business activity/Interaction log needs to be created saying that BP details been changed.
I also develop this functionality for few more transactions.
Please give me a clear approach how this can be achieved.
Regards,
Ravi

Hi Ravi,
There are few ways to get this requirement done,
One Method of doing the same and which I also have tried is by Implementing the BADI 'PARTNER_UPDATE'.
Regards,
Anand T

Similar Messages

  • Automatic Creation of Employee Vendor record when hired in HR

    Hi Gurus,
    Any assistance in Automatic creation of Employee vendor record when the employee is hired in HR master data.
    Thanks in Advance
    BLITZZ

    Hi,
    Use the t.code: PRAA. Give reference to an existing employee vendor.
    Or, you can also create a batch job that runs this daily. Before that you need to create a reference employee vendor and input the most common fields in it (like, Recon Account, Payment method, etc.).
    Regards,
    Kiron Kumar T.

  • Activating DemoContent: Error when reading data target

    I'm trying to activate the SAP Demo cube <i>Purchasing Data</i> (0D_PU_C01). The Grouping Mode is set to <i>In Dataflow Before and Afterwards</i>.
    When I simulate installation, I get the error message <b>Error when reading data target 0D_PU_C01</b> (Message no. RSAU126) in the logs (although in the Collection Area the Simulation Result column is marked with a green check).
    I could find only 2 notes related to this error in the SAP Service Marketplace. SAP note nr. 540873 is about the BW indexing job. Note nr. 587796 (Error in after import of update rules) seams more appropriate, however not thoroughly right. In fact it refers to <b>BW 3.1 Content</b> or <b>BW 3.0B</b>.
    My system version instead is:
    BI_CONT 353
    SAP_BW 350
    The very same problem occurs when I try to activate the SAP Demo <i>Sales and Distribution</i>.
    Any suggestion?
    Thanks, Davide

    Ok, it worked! Now however I have some more doubts.
    1. I can't find the InfoObjects (e.g. 0D_GR_QTY, 0D_PLANT, 0D_MATERIAL, etc.) anywhere in <i>Modeling -> InfoObjects</i>, even if:
      a) I can find them under the <i>InfoSource</i> tree of the <i>SAP Demo</i> Application Component
      b) they appear activated in <i>Business Content</i>
    What's going on?
    2. The newly activated <i>Purchasing Data</i> cube has been added to the <i>Unassigned Nodes</i> InfoArea, and not to a newly created SAP Demo Purchasing (0D_MMPUR) InfoArea, similarly to the structure I saw when collecting the InfoProvider in Business Content. Is this the normal behaviour?
    3. No DataSource has been assigned to any of the InfoSources. I read at:
    http://help.sap.com/saphelp_erp2004/helpdata/en/43/57df37463a126ae10000009b38f842/content.htm
    that the <i>SAP Demo</i> Source System will be used. What I can't understand is if I need to manually create and select this Source System. I thought it would be automatically created and assigned during the Business Content's cube activation. This is not the case. What steps would I have needed to perform?
    Davide

  • Set up Signal Express to log when there is a change in state of the inputs (NI USB-6501 logger)

    Hello NI Forum, I have recently purchased digital I/O logger NI USB-6501.  This arrived with Signal Express, which I intend to use as a Lite version.  I just wondered if it was possible to set up Signal Express to only add a log entry when there is a change in state of the inputs?  I have this working on a 0.1sec sample period and can interrogate the logs after recording.  Most of the time nothing will be happenning, I just wondered if there was a way to reduce the ammount of data captured?  Cheers.

    Ah that unfortunate, and yes start/stop conditions for loging are part of the Full version of SignalExpress
    Here's the comparision: http://www.ni.com/labview/signalexpress/purchasing-options.htm
    Sorry about that

  • Automatic Price Redetermination when header data is changed

    Hi All,
    Scenario: Client is using customer condition group fields to maintain shipping method(VBAK-KVGR2) and freight terms(VBAK-KVGR3) in Sales Order Header. They have maintained condition records to calculate frieght charge for items. Requirement is whenever any of the above mentioned field is changed, freight condition has to redetermine automatically for the item.
    Any help will be highly appreciated.
    Regards
    Srini

    Hi Everyone,
    As mentioned in your response, those steps are carried out already. When Sales Order is created for first time, the freight condition is calculated automatically using condition record and access sequence. Here the requirement, if Freight terms or Shipping method is changed later, the freight condition has to be redetermined automatically without manual price update. However I find an user-exit, which can redetermine the freight condition only when any of the line item details are changed.
    I am not sure if there is any other user-exit available if header values are changed, the freight condition has to be redetermined.
    Thanks for your response.
    Regards,
    Srini

  • Automatic creation of Company Code and Sales Area Data for Customer Master

    Hi,
    We have a organisation structure setup with multiple company codes and sales areas.
    A customer will be created using VD01 via the Sales Order VA01. Because the customers are created using VD01 we need to automatically extend the customer for the various company codes and sales areas. The data on these views will be populated using reference customers.
    Any recommendations on the best approach (technically) to auto extend the customer master would be appreciated.
    I'm reluctant to use BDC's because of performance. We are in a Retail environment.
    Thanks in advance
    Craig

    The sample code has been taken from the SAP notes - in which have the affected as outlined in the example.
    The codes does not do what my requirements are, which is to identify the next available number in isolation of the BP type.

  • Nested ItemsControls' binding breaks when underlying data source changes, and the ItemsControls are collapsed

    Windows Phone WinRT App, targeted to Windows Phone 8.1.
    I have a nested data structure: class (SampleDataSource), that has an ObservableCollection (Groups) that contains class (SampleDataGroup) items that has an ObservableCollection (Items)
    that contains class (SampleDataItem) items.
    SampleDataSource is the DataContext of root item, a pivot control's ItemsSource is set to
    Groups. In the pivot's DataTemplate there is an ItemsControl with ItemsSource set to
    Items.
    The above scenario is a slightly modified version of the pivot app template that is generated by Visual Studio.
    So far it works properly.
    Then I added a ToggleSwitch to the page that toggles the Visibility of the pivot.
    Still works.
    Then I added some more code to clear the Groups ObservableCollection when the pivot made collapsed, and reload the data before its visibility is set back to visible.
    The result is that the top-level ItemsControl (the pivot) gets displayed properly, but the ItemsControl is empty. If I scroll to an other pivot page, the ItemsControl is populated, and from this point everything works correctly, even the initially empty
    ItemsControl works just fine.
    The code that is relevant to the issue is:
    private async void ToggleVisibility_Toggled(object sender, RoutedEventArgs e)
    if (pivot != null)
    // Was collapsed, therefore we are going to show it, so load the data source
    if (pivot.Visibility == Windows.UI.Xaml.Visibility.Collapsed)
    await SampleDataSource.GetInstance().GetSampleDataAsync();
    pivot.Visibility = (sender as ToggleSwitch).IsOn ? Visibility.Visible : Visibility.Collapsed;
    // Just got collapsed, so remove the data from memory
    if (pivot.Visibility == Windows.UI.Xaml.Visibility.Collapsed)
    SampleDataSource.GetInstance().Groups.Clear();
    The project (as mentioned above, it's a slightly modified version of Pivot App template) that reproduces this issue is available
    HERE.
    Does anyone have any idea what I should do to make ItemsControl work properly after making pivot visible?

    I can't help you with this myself as I've not done it but there are quite a few tutorials kicking around the net.
    Simple ODBC Connections in Adobe LiveCycle:
    http://www.youtube.com/watch?v=C56_Cz-aE0c
    Connecting a form to a database:
    http://forms.stefcameron.com/2006/09/18/connecting-a-form-to-a-database/
    Database connected forms:
    http://acrobatusers.com/tutorials/database-connected-forms

  • Pricing is not changed when pricing date is changed at header level.

    Dear Gurus,
                           The query is about pricing. When I change the pricing date at header level it is supposed to chnage the pricing at item level also. But it is not happening. In our scenatio there is a ZPR0 price and there is a condition record for that.
    The order was created earlier and now when we change the pricing date price is not being changed. I checked the analysis button. There it shows the following messages for ZPR0(In this case condition already exists). ZPR0 has three condition tables
    1. Condition record exists, but has not been set (for the 1st table in acces sequence)
    2. Access has not been executed due to previous access(for the 2nd table in acces sequence)
    3. Access has not been executed due to previous access(for the 3rd table in acces sequence)
    As a result we are not able to change price in the header level by changing the pricing date.
    Please help
    Thanks in advance,
    Je

    Hi Felipe,
                    The pricing will change if we click on the update button and select 'C' or 'B' option in the item level. But when we try to chnage by clicking on the update button in the header level it is not getting changed.
    I would also like to add that customer wants the price to be changed without pressing the update button at tghe header level.
    Please clarify on the pricing validity configuration . What steps are required in the pricing validity configuration.?
    Thanking you,
    Je
    Edited by: jerryabap on Feb 4, 2011 12:17 PM

  • What needs to be done in OBIEE 11g when underlying data types change?

    I have an SQL table that I am referencing. It contains several date fields that were varchar(8). In order to do calculations, I just cast the fields as date, and performed my calculation.
    Recently, the DBA changed the fields to date type.
    I did a "View Data" and "Update row count", but it seems as if OBIEE is still treating the fields as varchar fields.
    What is the proper procedure in OBIEE 11g to recognize the changes that occurred in the underlying table?

    Hi
    In your scenario, I can suggest you can change manually to  each field lengths in physical layer.
    If you really looking one time fix then try to import the new table stricture into new rpd then save it then try to  merge original rpd . – But it is risky process ( We have two methods, patch merge and fully repository merge).
    Before doing above method take the backup original rpd and do it in your local.
    Thanks,
    Satya Ranki Reddy

  • How do I set up my apple laptop to automatically show the active screen when attaching a HDMI cable to my TV

    When using HDMI cable to TV how do I set up to automatically display the active laptop screen so that I don't have to drag to TV

    You have the display set in Extended Desktop mode with the MacBook as the main screen. The Menu Bar and Dock will be on the MacBook display and your background screen on the TV but you can move the cursor onto the TV screen.
    In System Preferences>Display on the MacBook screen there should be an Arrangement tab when you have the MacBook hooked up to the TV and both screens working. When you click the Arrangement tab do you see two monitors side by side? One of them will have a Menu Bar at the top. Just click on the Menu Bar and drag it to the second monitor. That will make the second monitor your main screen.
    The TV will now have the Dock and Menu Bar and windows will open on it. But you can move the cursor to the MacBook screen and move windows from the TV over to the MacBook screen.
    You can now use your MacBook in Clamshell Mode with a wired or Bluetooth keyboard and mouse.  http://support.apple.com/kb/HT3131 When you disconnect from the TV your Menu Bar will automatically change back to the MacBook.
    Or if you want to work on the MacBook screen while showing it on a TV you can check the Mirror Display box on the lower left hand side of the Arrangement tab under the two monitors box. That will give you the same screen at the same resolution on both the MacBook and the external monitor.

  • Automatic creation of Transfer Order when a delivery is created

    Hi all ,
    I wanted to have Automatic creation of Transfer Order when a delivery is created ,
    what are the configuration activities that needs to be carried out .
    Thanks ,
    KSR

    Dear Friends,
    I am also facing the same problem; I want the system to create a transfer order at the time of creation of an outbound delivery.
    I have done customization as under:
    Step 001
    Logistics Execution > Shipping > Basic Shipping Functions > Output Control > Output Determination > Maintain Output Determination for Outbound Deliveries > Maintain Output Determination Procedure
    Step 002
    On the screen, u201CProcedureu201D: Overview, choose the following:
    Procedure     Description
    V10000     Header Output
    Step 003
    On the screen, u201CControl datau201D: Overview, enter the following:
    Usage     Application     Procedure     Step number
    B     V2                     V10000     110
    Counter     Condition Type     Requirement     Description
    01     WMTA                     032                     Automatic TA
    The system does not create a transfer order automatically.
    May I request our learned friends to guide me?

  • IW41: automatic update of activity type when changing the work center?

    Hello colleagues,
    when doing a time confirmation with IW41, we have following problem:
    In the PM order the operations are assigned to a neutral executing work center, as it not known which individual technician is completing the operation later on.
    Now when the individual technician is entering the time confirmation with IW41, system is proposing the work center indicated in the operation from the PM order, then technician is overwriting the work center proposal with his own individual work center ID (and pressing Enter), but the activity type is not getting updated automatically. So the technician must jump to field "activity type" and choose the correct activity type.
    Is there any solution (hopefully with user exits!) to have the field "activity type" automatically updated with the one indicated in the work center, which was entered manually?
    Thanks for your ideas!
    Regards,
    Patrick

    Hi Maheswaran,
    yes, as usual all PM work centers have only 1 activity type assigned in the costing tab.
    We also checked the settings of the activity type (KL03), but we just found one difference: the price indicator was set on 3 "Determined manually" - we've changed to 1 "Plan price, automatically based on activity" (..same setting as for the act. type of the work center with working update of act.type).
    We tested already all possible constellations and scenarios, but we have not found any good reason for the behaviour.
    Thanks for your efforts so far!
    Patrick

  • On my computer I apply for unemployment benefits at the Unemployment Insurance Agency web-site. Just recently, when I log in for benefits, I get to the second page, and I get automatically kicked back to the log-in page.

    On my computer I apply for unemployment benefits at the Unemployment Insurance Agency web-site. Just recently, when I log in for benefits, I get to the second page, and I get automatically kicked back to the log-in page. I went to my local library, and I do not have this problem. I do not understand why I can log in, get to the second page, then I click proceed and I have to start all over without ever getting to the third page. Can someone figure this out?

    Yes AT&T is my ISP. I use DSL. Currently I am not at my home address. I am currently on a cable modem on COX.com.
    I am also receiving a warning message "WARNING: Parental control appears compromised!".

  • Problem in Creation of Activity Request Questionnaire

    Hi
    I'm facing issue while creation of activity Request Questionnaire. After setting the status to complete & Clicking 'Ok' the activity is not getting created. Its showing 'Internal Error'
    When I checked in Tcode SLG1 for error log, I'm getting following error.
    I was not facing this issue with other activities. But when i use Request Questionnaire activity I'm facing the problem. The worst part is when i use this activity, all other activity start showing same problem i.e. if i skip Request Questionnaire & use other activity every thing works fine.
    Please suggest
    Regards

    Hi,
    Please check program " RCF_CHECK_SEARCH_SETTINGS" here all categories status to be shown in Green color.
    BR,
    Rajeswara.

  • Automatic creation of requirement for extra consumption in COGI

    Dear.
    For a production order with a component totally consumed during the backflushing of CO11N I run a new confirmation. The component isnu2019t available , the confirmation is done and the system create for the component an error movement in COGI.
    If I see MD04 for this component I donu2019t see any production order requirement for the extra consumption quantity in COGI.
    But the planner need to know the quantity that remain to withdrawn.
    Which is the reason for the missing automatic creation of requirement for extra consumption in COGI ?
    Thanks.

    Dear Cris,
    Have you manually edited and input extra qty in CO11N
    When backflush is activated and Full qty is confirmed
    Then if you perform confirmation second time then form where system will again pick the component
    Once again check in production order BOM over view and also in BOM what is the qty given
    Can you eloborate more in detail what you have performed ( steps required )
    Dear Siva,
    Just correct me if i am wrong
    Regards
    Madhu
    Edited by: K.Madhu Kumar on Sep 30, 2010 1:10 PM

Maybe you are looking for

  • Can we avoid username/password screen using run_product

    can we avoid username/password screen using run_product while calling a report from the form. how we can use the same login as in form. regards

  • How to connect Ipad Mini to external home theater speakers

    Hi,      Recently i bought a new ipad mini, now i want to know how can i connect my Ipad Mini to external home theater speakers (Sony). Please let me know what type of hardware and steps i have to use. Thanks in advance.

  • Internet Keeps Getting Cut Off

    Hi This is driving me insane and my dad wont listen to me, but maybe he will if he heres someone say something who knows about it. Every so often, usually every day if not more than once a day I get cut off from the internet on my Mac Mini (G4) for 5

  • PALM TX WON'T START.

    Hello All. After my last HotSync my Palm TX appears to have lost all of its information and now continually tires to start up but with no success. It powers up and then shuts off only to start the process over again. I have tried resetting both soft

  • Suggested methods for full backup of XServe RAID data

    I know this is only peripherally related to the discussion topic, but since every other suggestion posted here is followed by the disclaimer that you should make a full backup of your data before proceeding with any major operations on your RAID arra