Urgent :Fetching CRM Activity categories to the master list category table

Hi all,
   I am working with groupware Integration. I am following "Best Practice" that provided in help.sap.com
I m  using <b>mySAP CRM 4.0</b> it is in SP-09.
the problem is in "Fetching CRM Activity categories to the master list category table" for this I am refered
http://help.sap.com/saphelp_crm40/helpdata/en/56/0efff114e54f3394bde360f3bebb4b/frameset.htm
in this page says that <b>"GWA_FILL_ACTCAT_TO_MASTERCAT"</b> function module is used for transforing data.
but if i am checking in my system this function module is not exist.
Please give the way for solution.
Thaks in advance.
Sridhar.
Message was edited by: Shridhar Deshpande
Message was edited by: Shridhar Deshpande

Hi Shridhar,
I am also working on the same object .
"GWA_FILL_ACTCAT_TO_MASTERCAT" is not a function module it is a Program so pl. go to SE38 and execute the program.
Cheers,
Nilesh
pl. reward points if this helps out.

Similar Messages

  • I have all my devices connected to iCloud.  I would like a reduced contact list on my iPhone without removing any from my master list on my computer.  How do I delete contact numbers from my phone without disrupting the master list on my computer?

    I have all my devices connected to iCloud.  I would like a reduced contact list on my iPhone without removing any from my master list on my computer.  How do I delete contact numbers from my iphone without disrupting the master list on my computer?

    Are you trying to reduce the visual clutter on the phone, save space on the phone, or limit the security exposure if your phone is stolen?
    If you are only wanting to reduce the visual clutter and make scrolling through the list faster, you could set up a group on the computer containing only the contacts you want to see on my phone (called, for example, "Show on my Phone") and enable only that group inside Contacts on the phone. You might even have one or more existing groups that you could enable that way (maybe "Family" and "Personal").

  • Urgent:SUS PO not appearing in the PO list for vendor's user

    Hi experts,
                       I am working on SUS. SRM5.0 single box scenario. PO is created by the purchaser and is successfully transfered through XI. But this PO is not appearing in the PO list of vendor's user. Please let me know what can be the possible reason.
    following roles are given to the user:-
    SAP_EC_SUS_ADMIN_PURCHASER
    SAP_EC_SUS_ADMIN_VENDOR
    SAP_EC_SUS_BIDDER
    SAP_EC_SUS_DISPATCHER
    SAP_EC_SUS_INVOICER
    SAP_EC_SUS_ORDER_PROCESSOR
    SAP_EC_SUS_SERVICE_AGENT
    SAP_BBP_STAL_BIDDER
    SAP_EC_BBP_BIDDER
    Also checked vendor data. Communication method is selected as XML.
    After creating PO and transfering it - message comes-
    Information  Processing BBP_PO_SEND_XML Is Started  
    Information  Action successfully completed 
    Please help. It is very urgent.
    Thanks and Regards
    Kapil

    Hi Kapil,
    do you have the same result when deleting all roles and only using role SAP_EC_SUS_ORDER_PROCESSOR?
    Are vendors successfully replicated into SRM and a user created via Web
    Txn "Manage Business Partners"?
    Did you maintain table BBP_MARKETP_INFO?
    Did you replicate the company code using Txn BBP_SUS_BP_ADM?
    In any case there is also an inital replication of vendors
    from MM to SUS via BD14 necessary.
    Thanks,
    Claudia

  • Restrict entering UOM other than selecting from the master list of UOM

    Dear all,
    Can someone enlighten me on the following query:
    To restrict the user entering UOM other than the UOM maintain in CUNI in PR and PO creation.
    Can this done by change in IMG or need to code a exist to check UOM entered is not maintained in CUNI?
    Regards,
    Peck Har

    Hi,
    Yes it happend only for UOM code 000 and 001, which these two UOM is not maintained in CUNI. But our user entered 000 in PR transaction.
    Regards,
    Peck Har

  • CRM Activity existance check

    Hello Friends,
    I have a requirement to find wheather the CRM activity exists.
    The input parameters are activity description and business partner number.
    Could anybody help me?
    Thanks,
    Bunny

    Bunny,
    Try querying the view: CRMV_ACTFORGP in CRM.
    I think that should solve your problem.
    Good luck,
    Stephen

  • PRISM Master-Details with navigation between the Master and details view

    Hi, I have a Master list with accounts and a Details list containing transactions.
    The Master list : has a UserControl (AccountListView) and Viewmodel(AccountListViewModel)
    The list is bound to an observable collection of type AccountViewModel and has a SelectedAccount property to get the current selected account. Each AccountViewModel has a collection of type TransactionViewModel.
     public AccountListView(IAccountListViewModel viewModel)
                //this.DataContext = vm;
                InitializeComponent();
                ViewModel = viewModel;
            public Infrastructure.IViewModel ViewModel
                get
                    return (IAccountListViewModel)DataContext;
                set
                    DataContext = value;
    //the viewmodel
            public AccountListViewModel(IRegionManager regionManager)
                this.regionManager = regionManager;
                this.AccountList = GetAccounts(); // gets the list of accounts from another layer
            public AccountViewModel SelectedAccount
                get { return selectedAccount; }
                set
                    selectedAccount = value;
                    OnPropertyChanged("SelectedAccount");
    And the Details view has a user control(TransactionListView) and a viewmodel(AccountView);
    public TransactionListView(IAccountViewModel viewModel)
                InitializeComponent();
                ViewModel = viewModel;
                //this.DataContext = vm.SelectedAccount;
            public Infrastructure.IViewModel ViewModel
                get
                   return (IAccountViewModel)DataContext;
                set
                    DataContext = value;
    //the viewmodel 
    public AccountViewModel(Business.Account a)
                    AccountId = a.AccountId;
                    accountName = a.AccountName;
    I created a hyperlink command so that whenever I click on the name of an account from the master list it will navigate to the detail list and set the as the DataContext the account I clicked on. Before I had both Master and Detail lists displayed at the
    same time and set the DataContext of the Detail List as the SelectedAccount property(which is bound to the SelectedItem of the Master List) of the Master List. I am not sure how to pass the SelectedAccount when I navigate to the Detail List and set it as the
    DataContext of the Detail List.
           

    >>I'm using the reguestnavigate method, but from what I read you can't pass objects as parameters ?
    As I mentioned there is a NavigationParameters class that you can create an instance of and pass as a parameter to the RequestNavigate method in Prism 5:
    private void NavigateTransaction(AccountViewModel obj)
    var parameters = new NavigationParameters();
    parameters.Add("accountViewModel", obj);
    regionManager.RequestNavigate(RegionNames.ContentRegion, new Uri(transactionview, UriKind.Relative), parameters);
    The TransactionView should then implement the Microsoft.Practices.Prism.Regions.INavigationAware interface and retrieve the parameter in the OnNavigatedTo method:
    public partial class TransactionView : UserControl, INavigationAware
    public TransactionView()
    InitializeComponent();
    void INavigationAware.OnNavigatedTo(NavigationContext navigationContext)
    AccountViewModel myParameter = navigationContext.Parameters["accountViewModel"] as AccountViewModel;
    this.DataContext = myParameter;
    public bool IsNavigationTarget(NavigationContext navigationContext)
    return true;
    public void OnNavigatedFrom(NavigationContext navigationContext)
    In Prism 4 there is no NavigationParameters class so you either need to upgrade to Prism 5 if you haven't already done so or you could store the parameters to be passed yourself somewhere else. Please refer to the following links for more information and
    examples of how you could do this:
    http://stackoverflow.com/questions/9320638/how-to-pass-an-object-when-navigating-to-a-new-view-in-prism
    http://visualstudiomagazine.com/articles/2012/08/20/view-communication-in-wpf-and-prism.aspx
    Please also remember to mark helpful posts as answer to close the thread and then start a new thread if you have a new question. Please don't ask several questions in the same thread.

  • How do I lock the location of a table and still have the ability to edit it?

    I actually have two questions.
    1. I have a table that I made a master object for the purpose of having it on two pages. Becuase it is a master object, I am unable to input data into it. I'm fine with this because it's important this table remain exactly as it is. So I made another table with the same dimensions and put it on top, and turned off all the lines so you can only see the underlying table, and any data inputted looks as if it belongs to the master object. However, I spent an embarassingly long time trying to get the second, top table in position and I don't want it to move. Is there a way to lock it's location and still have the ability to input data?
    2. I would like to copy and paste the above-mentioned second table. However, when I do so, the dimensions change. Some of the rows line up with the master-object underlying table, but some are way off. I have no idea why this would be. I went into the settings of both and made sure their measurements were the same. Rows, columns, x, y; everything. As a temporary solution, I made the top-table a master-object, which put it on both pages and then I 'unmade' it a master-object.
    Any ideas? Thanks for your time!

    This may not be the most efficient method, but drag it to your desk top.  Delete the image in iPhoto, re-import the image and merge it into the event where you want it.
    You may also consider posting this query on the iPhoto forum.  You will have a wider audience and one that is oriented towards this application.
    Ciao.

  • Master List Horizontal Layout Woes

    I'm combining a jQuery horizontal scroller with Spry
    datasets. How's that for an invitation for trouble? My Master List
    items are literally stacked ontop of one another, and I cannot for
    the life of me figure out how to distribute them horizontally using
    normal CSS techniques of floating left.
    In this example, you'll see how I want the bottom navigation
    to behave:
    http://libertyclothing.com/2008/
    In this example, I've added in the Spry elements. The
    thumbnails at the bottom is the Master data from my external HTML
    data source. The Detail displays above.
    http://libertyclothing.com/2008/index_spry.htm
    I think my brain is going to explode. Anyone have an idea of
    how to get these divs distributed horizontally and still have the
    jQuery carousel work?
    Alternatively, can someone suggest how to do this using Spry
    only?

    I appreciate your help here. Seems like I'm inches away, but
    those last inches have been destroying my brain.
    So here's what I've done:
    var ds1 = new Spry.Data.HTMLDataSet("data/unisex.html",
    "unisexProducts", {distinctOnLoad: true, sortOnLoad:
    "Product_Number", sortOrderOnLoad: "ascending"});
    var observer = { onPostUpdate: function(notifier, data) {
    // This is the invocation code for stepcarousel.js
    stepcarousel.setup({
    galleryid: 'mygallery', //id of carousel DIV
    beltclass: 'belt', //class of inner "belt" DIV containing
    all the panel DIVs
    panelclass: 'panel', //class of panel DIVs each holding
    content
    autostep: {enable:false, moveby:1, pause:3000},
    panelbehavior: {speed:500, wraparound:false, persist:true},
    defaultbuttons: {enable: true, moveby: 5, leftnav:
    ['images/left.png', -5, 60], rightnav: ['images/right.png', -10,
    60]},
    statusvars: ['statusA', 'statusB', 'statusC'], //register 3
    variables that contain current panel (start), current panel (last),
    and total panels
    contenttype: ['inline'] //content setting ['inline'] or
    ['external', 'path_to_external_file']
    // Ends stepcarousel.js invocation code
    Spry.Data.Region.addObserver("
    carousel", observer);
    // to reference the div containing the Spry Region
    In the body (nothing really different here):
    <!-- SPRY AREA -->
    <div id="mygallery" class="stepcarousel" style="top:20px;
    left:130px;">
    <div
    id="carousel" spry:region="ds1" class="belt">
    // Added this id to target this div in the observer
    <div spry:repeat="ds1" spry:setrow="ds1" class="panel"
    style="float:left; padding:1;">
    {Image}<br />{Product_Number} {Product_Name}
    </div>
    </div>
    </div>
    <!-- END SPRY AREA -->
    The resultant page briefly loads, then goes blank - seemingly
    caught in a loop or something.
    What I want to happen here is for Spry to first populate the
    master list, and only THEN for the stepcarousel.js script to apply
    styling and functionality to the resultant repeated regions that
    should be populating it's panels.
    I suspect the answer is to be found in the stepcarousel.js
    script itself somewhere in this function:
    setup:function(config){
    //Disable Step Gallery scrollbars ASAP dynamically (enabled
    for sake of users with JS disabled)
    document.write('<style
    type="text/css">\n#'+config.galleryid+'{overflow:
    hidden;}\n</style>')
    jQuery(document).ready(function($){
    config.$gallery=$('#'+config.galleryid)
    config.gallerywidth=config.$gallery.width()
    config.offsets={left:stepcarousel.getoffset(config.$gallery.get(0),
    "offsetLeft"), top:stepcarousel.getoffset(config.$gallery.get(0),
    "offsetTop")}
    config.$belt=config.$gallery.find('.'+config.beltclass)
    //Find Belt DIV that contains all the panels
    config.$panels=config.$gallery.find('.'+config.panelclass)
    //Find Panel DIVs that each contain a slide
    config.panelbehavior.wraparound=(config.autostep &&
    config.autostep.enable)? true : config.panelbehavior.wraparound
    //if auto step enabled, set "wraparound" to true
    config.onpanelclick=(typeof
    config.onpanelclick=="undefined")? function(target){} :
    config.onpanelclick //attach custom "onpanelclick" event handler
    config.onslideaction=(typeof config.onslide=="undefined")?
    function(){} : function(beltobj){$(beltobj).stop();
    config.onslide()} //attach custom "onslide" event handler
    config.oninit=(typeof config.oninit=="undefined")?
    function(){} : config.oninit //attach custom "oninit" event handler
    config.beltoffset=stepcarousel.getCSSValue(config.$belt.css('marginLeft'))
    //Find length of Belt DIV's left margin
    config.statusvars=config.statusvars || [] //get variable
    names that will hold "start", "end", and "total" slides info
    config.$statusobjs=[$('#'+config.statusvars[0]),
    $('#'+config.statusvars[1]), $('#'+config.statusvars[2])]
    config.currentpanel=0
    stepcarousel.configholder[config.galleryid]=config //store
    config parameter as a variable
    stepcarousel.alignpanels($, config) //align panels and
    initialize gallery
    }) //end document.ready
    I've bolded lines that might be of interest. I know that this
    part is not Spry-specific. But you can see why I thought about
    hard-coding the links into an external file that I could load in
    here.
    Any insight is appreciated.

  • Divide a string in order to get the distinct list level.

    Hi,
    I want to divide a string in order to get the distinct list level to relate this with a category table.
    The size of my list is dynamic and because of this I’m unable to find a way to do this!
    Here goes an example of what I need to do:
    Consider the following list:
    Category                Category_ID
    Age                     1
    Less than 3 months      1.1
    Less than 9 months      1.2
    Less than 1 year        1.3
    Risk                    2
    Danger                  2.1
    High                    2.1.1
    medium                  2.1.2
    low                     2.1.3
    If I have a row that has category_id "2.1.3" I want to present values as:
    "Risk.Danger.Low"
    If I have a row that has category_id "1.1" I want to present values as:
    "Age.Less than 3 months"Any hint on what I should search in order to accomplish this?
    This will be used to produce a report. This report will contain a few thousand rows and the categories will be around 100.
    Thanks,
    Ricardo

    Hello
    I think this is a job for sys_connect_by_path....
    with p as
    (   select 'Age'             descr  ,'1' cat from dual union all
       select 'Less than 3 months'      ,'1.1' cat from dual UNION ALL
       select 'Less than 9 months'      ,'1.2' cat from dual union all
       select 'Less than 1 year'        ,'1.3' cat from dual union all
       select 'Risk'                    ,'2' cat from dual union all
       select 'Danger'                  ,'2.1' cat from dual union all
       select 'High'                    ,'2.1.1' cat from dual union all
       select 'medium'                  ,'2.1.2' cat from dual union all
       select 'low'                     ,'2.1.3' cat from dual
    SELECT
        cat,
        LTRIM(SYS_CONNECT_BY_PATH(descr,'.'),'.') route
    FROM
            SELECT
                descr,
                cat,
                SUBSTR(cat,1,INSTR(cat,'.',-1)-1) parent
            FROM
                p
    START WITH
        parent IS NULL
    CONNECT BY
        PRIOR cat = parent
    SQL> with p as
      2  (   select 'Age'             descr  ,'1' cat from dual union all
      3     select 'Less than 3 months'      ,'1.1' cat from dual UNION ALL
      4     select 'Less than 9 months'      ,'1.2' cat from dual union all
      5     select 'Less than 1 year'        ,'1.3' cat from dual union all
      6     select 'Risk'                    ,'2' cat from dual union all
      7     select 'Danger'                  ,'2.1' cat from dual union all
      8     select 'High'                    ,'2.1.1' cat from dual union all
      9     select 'medium'                  ,'2.1.2' cat from dual union all
    10     select 'low'                     ,'2.1.3' cat from dual
    11  )
    12  SELECT
    13      cat,
    14      LTRIM(SYS_CONNECT_BY_PATH(descr,'.'),'.') route
    15  FROM
    16      (
    17          SELECT
    18              descr,
    19              cat,
    20              SUBSTR(cat,1,INSTR(cat,'.',-1)-1) parent
    21          FROM
    22              p
    23      )
    24  START WITH
    25      parent IS NULL
    26  CONNECT BY
    27      PRIOR cat = parent
    28  /
    CAT   ROUTE
    1     Age
    1.1   Age.Less than 3 months
    1.2   Age.Less than 9 months
    1.3   Age.Less than 1 year
    2     Risk
    2.1   Risk.Danger
    2.1.1 Risk.Danger.High
    2.1.2 Risk.Danger.medium
    2.1.3 Risk.Danger.lowHTH
    David
    Edited by: Bravid on Sep 2, 2011 2:50 PM

  • How to show master and detail tables in different pages?

    Hi,
    Can somebody expalin me how to include or bind the master and detail tables to different pages which are included at runtime.
    thnaks,
    Naresh.

    Hello!
    you have ti create a Master/Detail data structure.
    In the first page drag the master table, on the second drag a detail table.
    It should work out of the box. Selecting a record on the master table selects
    the details on the detail table automatically!
    regards,
    Mario Udina

  • Process chains Master list

    Hello Experts,
    We have this challenge where we need to list down the Master list of all the process chains in our production system.
    I need to track their frequency and the details of the schedule time.
    Which would be the process where I can get these details. I would need the meta chains only.
    We have many chains in the system.Pl advise
    Thanks,
    Santhosh

    Hi Santhosh,
    You can find meta chain list from RSPCCHAIN table, sort Process Chain (ID) field and you will get all dependent PCs in Process Variant Field.
    For the start time thing, you can refer RSPCPROCESSLOG table. First copy data from Process Chain(ID) list from RSPCCHAIN table and paste it to Process Variant (Name) field of RSPCPROCESSLOG table. Also you can filter data here date wise.
    Hope this helps!!!!
    Thanks,
    Bhavin Vyas

  • Master list from solman

    Dear all
    please tell me how to create Buisness Process master List from solman?

    Hi gautam,
                   If you are enquiring about the Buisness Process master list (BPML) creation in Solman..then plz follow the below steps:-
    1>Go to the transaction:- SOLAR_EVAL - Project Analysis in ur solman server.
    2>Select the Cross Tab Analysis tab under Assignments Section.
    3>It will ask for the Project name..Choose ur project.
    4>In Display Project Structure..Choose Display Completely radio Button.
    5>Then in tab Selection section..Choose the reqd field u want to view in the Master list...like Transaction,..Config..test cases etc..
    6>Based on the requirement,we can take full project View or part of also..For the same,In the Project Structure tab,Select Substructure field & in the same..we can select the appropriate Buisness Processes.
    7>Choose Execute...
    8>Then export it to Excel file..
    Now u can view the total BPML file from solman,as reqd by u.
    Thanks
    JP
    +91-9860831112

  • How to display four rows in one table and the rest in another table?

    Hello everybody,
    I am trying to solve a problem that I cannot find any direct answers to.  In essence the problem goes like this:
    1) I want to populate two tables from xml data.
    2) The first table should only diplay the first four rows of data.
    3) The second table should display the rest of the rows (starting from row 5).
    I can create the first table so that it only shows up to the first four rows.
    I cannot find a way to set up the second table so that it shows the rest of the rows starting at row 5.
    To illustrate the problem I have attached my livecycle template file with the two table definitions and the corresponding xml data.  If you put these two files in the same directory and open the pdf file using LiveCycle designer you should see what I mean. (The table with column heading 'Item List 2' shows all of the records in the xml file when I only want it to show records 5 and 6)
    Some other niggling issue I have come up against is the data displays differently when I open the pdf file with Adobe Acrobat pro and then use the Forms/manage form data/import data menu to bind that xml file.  ( For some the 'Item List 2' table does not display any data)  Does anybody know why that is occurring?
    Any help on this would be very much appreciated because it will help me get past a significant issue I am running into with a complex form I am trying to build for a client of mine.
    Note:  I am using Adobe Acrobat Pro version 9 and the Adobe Livecycle is version 8.2.1
    Thanks in advance.
    Geoff.

    Hi,
    First solution is you can play with predicates:
    val value = 4
    var items= Ref(xfa.resolveNodes(concat("$record.itemsCollection.item.[itemNumber>""",value,"""]")))
    after that you will have to use addInstance and assign all fields by scripting. It is hard way.
    Second solution you can simply hide unneccessary rows by putting initialise script on item row:
    if (this.index <4){this.presence = "hidden" }
    Hope this helps.
    Paul Butenko

  • Finding the master user records , how to find the active users

    Hi friends,
      i want  master user information, which table consists master user information and also which table consists active users ,
    like address ADRC is the master table like that for users which is the master table .
    can any one help me urgently.

    Hi,
    check the below tables
    USR01                          User master record (runtime data)
    USR02                          Logon Data (Kernel-Side Use)
    USR03                          User address data
    USR04                          User master authorizations
    USR05                          User Master Parameter ID
    USR06                          Additional Data per User
    Edited by: Velangini Showry Maria Kumar Bandanadham on Apr 24, 2008 3:31 PM

  • Error when activating the master data

    Hi
    I am getting the following error when activating the master data. when using IDOC as transfer method in transfer rules
    <b>Error while creating table 'EDISEGMENT' entry '/BIC/CIRB0CLASS_NUM_TEXT'</b>
    If anyone came across this kind of problem plz share the solution.
    Regards
    Annie

    Hi
    I solved the problem. AFter changing from PSA to IDOC, i just saved first and activated. it got activated. But thanks for the response.
    There are no short dumps in ST22
    Regards
    Annie

Maybe you are looking for

  • MS Wired Keyboard 600 and iMac

    On an iMac 3.06GHz Core 2 Duo 4GB RAM, I'm using the MicroSoft Wired Keyboard 600. Often on booting/rebooting--or even sometimes after waking from sleep--keyboard won't work. Unplugging USB connector doesn't always work, so I have to shut down and st

  • I have a 13.5 month old Ipad2, wifi only that has had problems with wifi com from the beginning. I am learning that this is not unusual for apple. Any suggestions?

    I have a 13.5 month old Ipad2, wifi only that has had problems with wifi com from the beginning. I am learning that this is not unusual for apple. Any suggestions? ronald1094

  • Weird Automatic Scrolling of Timeline

    I am running Premiere Elements 11 on Windows 7, 64 bit, with all the latest updates. I'm getting some weird automatic scrolling of the timeline happening. When I hover the mouse pointer anywhere on the left side of the screen, (including over the "Fi

  • Reading data files saved using FTP Append

    Hi All, The code posted will write me a data file using FTP Append, which represents the data coming from a cRIO chassis. However I do not seem to be able to write the code to pull the data back out of the saved files. I have success in retrieving an

  • AP1252 can´t join on WLC

    WLC software 7.2.103.0 1. first problem: AP1252 can´t join on WLC. MAC was add on mac filter properly. 170 Mon Apr 9 15:37:32 2012 Mesh Node '2c:3f:38:be:53:ef' failed to join controller, MAC address not in MAC filter list. 171 Mon Apr 9 15:37:32 201