How to find sum of Discussions Initiated by a user in Discussion Board List

Hi
I am working on SharePoint Online.
We have used Discussion Board List for discussions on our site. In that list permitted users can initiate as many discussions as they want.
My question is: In SP ONLINE, Can we come to know sum of how many discussions have been initiated by different users OOB or by using calculated column or by any other means without custom code.
For eg: User X has initiated :
DIscussion A
Discussion B
And User Y
Discussion C
So what I want is
UserName        Discussions Initiated
X                                       2
Y                                       1
Is this possible OOB. If not, Can you please help in implementing it by custom code on SP Online.
Regards
Vikrant Kaushal

Hi vikrant,
According to your description, my understanding is that you want to display the sum of the discussions that a user created in SharePoint Online.
There is an OOB view ‘Management’, it displays all discussions that all users created. You can group by the view using ‘Created By’, then it will display the sum of discussions that a user created.
You can do as:  click List->Current View, switch current view to Management view, then click ‘Modify View’. Scroll to ‘Group By’ section and expand it, under ‘First group by the column’, select ‘Created By’, click OK.
The result is like:
I hope this helps.
Thanks,
Wendy
Wendy Li
TechNet Community Support

Similar Messages

  • How to find out Last T-Codes by a Users in Last 24 Hurs?

    Dear experts
    how to find out Last T-Codes by a Users in Last 24 Hurs?
    Please Help
    Regrads
    Is STAD is only solution (or) any other easy way?
    Regards
    PR

    Hi,
    Maybe it's easier with this path :
    ST03N --> Expert Mode --> Day  --> choose your day
    Under analysis view double click on "Memory Use Statistics"
    You will get the list of transactions run that day.
    If you double click on a transaction you will get the list of users who used this transaction.
    If you select the User view, when you double click on a user, you will get the list of transctions this user launched this day.
    Many ways to use this ST03N transaction...
    Regards,
    Olivier

  • How to find from the data dict if a user has read access on a directory

    How to find "dynamically" if a user has READ access to a directory object.
    I want to know if there is a data dictionary table that holds if a user/schema has read access to a directory object.
    I know there is an dba_directories table and an all_directories table but they dont give information as to which user has read access granted to the directory.

    Not so difficult.
    select  'YES'
       from all_tab_privs A, all_directories B
       where a.grantee = 'USERNAME'
           and a.table_name = b.directory_name
           and b.directory_path = 'PATH YOU ARE LOOKING FOR'
    How to find "dynamically" if a user has READ access to a directory object.
    I want to know if there is a data dictionary table that holds if a user/schema has read access to a directory object.
    I know there is an dba_directories table and an all_directories table but they dont give information as to which user has read access granted to the directory.

  • How to find out what t-code(s) a user executes most?

    Can anybody tell me how I can find out what transaction(s) a given user executes most from the all the transactions that given user has access to? For example if a user has access to 100 t-codes, but only uses 10 of them then, how can I find out that the user never executes rest of the 90 t-codes? Is there a report I can run to find out. Please help.

    Hi Amit,
    STAD is giving me nothing, even though I chose the date 05/03/2007. I also selected both radio  buttons at the bottom. Here's message I am getting "No statistical record for any server found with given criteria"
    Regards,
    Chandu

  • How to find the last update date time and user of record field peoplecode

    how to find the last update date time record field peoplecode?
    Thank you.

    One can check the last update date time using the following query
    SELECT LASTUPDDTTM FROM PSPCMPROG WHERE OBJECTVALUE1 LIKE 'RECNAME' AND OBJECTVALUE2 LIKE 'FIELDNAME'

  • How to find the last executed date ,time and user of the quaery

    Hi,
    How to find the following information of the Query
    1. Where all the place these queries/web template used.
    2. When was it last executed.
    3. Who executed last.
    Regards,
    Hari

    hi Hari,
    you can try table /BI0/APERS_BOD00
    for query, first go to table RSRREPDIR, give field COMPID
    with query technical name and get GENUNIID, then go to table /BI0/APERS_BOD00, field TCTOBJNM = RSRREPDIR-GENUNIID, TCTUSERNM and TCTTIMSTMP -> user name and last executed.
    for web template, give field TCTOBJNM in table /BI0/APERS_BOD00 with web template name.
    hope this helps.

  • How to find which form function is accessed by user recently.

    Hi Experts,
    I have to find out which form function is accessed by user recently, we can find out what was the last form user accessed using FND_LOGIN_RESP_FORMS table.
    thanks,
    Chukky

    Hi,
    I have no idea about any differences in this table between 11i (11.5.10.2) and R12.
    If you can give me some information that how ICX_SESSIONS and ICX_TRANSACTIONS table gets populated.I do not think you will find details about these two tables as Oracle does not support access to Oracle applications data using this object, except from standard Oracle Applications programs (check eTRM).
    Log a SR, and see if Oracle Support would provide you with more details.
    Regards,
    Hussein

  • How to find sum of ROWS in advanced table...............

    hi all,
    i have a requirement where we have to calculate sum of the row values in advanced table
    when i click on ADDROW button a new row is displayed after entering the values
    i need to get the sum of values that i enter into the new row
    i know about RECALCULATE button which gives sum of columns but i need to get the sum of the rows
    plz help me.........
    thanx in advance
    DEV

    Hi Dev ,
    You need to make use of iteration , loop through every record in the VO get the column value and keep adding it
    to obtain the sum .
    Here is the code to loop through and get the column value
    OAApplicationModule am = oapagecontext.getApplicationModule(oawebbean);
    int sum = 0;
    OAViewObject oaviewobject =(OAViewObject)am.findViewObject("ApplicationsListVO"); // your vo name attached to table region
    if(oaviewobject!=null)
    oapagecontext.writeDiagnostics(this,"View Object is exists",OAFwkConstants.STATEMENT);
    int rowcountValue = oaviewobject.getRowCount(); // retruns no of rows
    Row rowAdv= oaviewobject.first();
    RowSetIterator iterator = oaviewobject.createRowSetIterator("iterator");
    iterator.setRangeStart(0);
    iterator.setRangeSize(oaviewobject.getRowCount());
    for(int i=0; i<iterator.getRowCount(); i++)
    oapagecontext.writeDiagnostics(this,"Inside For loop ",OAFwkConstants.STATEMENT);
    rowAdv =iterator.getRowAtRangeIndex(i); // start from 0 to fetch count ( no of rows )
    if(rowAdv != null)
    if(rowAdv.getAttribute("VacancyName")!=null) // get your column name
    vacancyValue = rowAdv.getAttribute("VacancyName").toString();
    Sum = sum +vacancyValue ; // Obtain the sum here
    Let me know if you need further inputs .
    Keerthi

  • How to find and kill session similar to forms user session

    We have a forms and reports based system that uses the oracle sessions. Sometimes if a form takes a long time we have the need to navigate to iAS>Forms>User Sessions, find the IP of the machine where the form is not responding and kill it based on the IP of the troublesome machine.
    I want to add this into our forms environemnt so people can kill their own sessions if need be but not sure how this is handled
    is it a simple alter system kill session in the db or something different.
    also how is the ip found to match the session?
    Thanks

    hi,
    Instead Set session timeout parameters..So that user gets logged off automatically from the application after a particular interval of time
    For this you have to make changes in httpd.conf file,web.xml file and env file
    Regards
    Fabian

  • How to find out by MDX that the current users is member of a role - Default member issue

    Hi,
    just imagine you have a dimension with a few members (A, B, C...). I defined a role which gives some users only rights to "B". On the other hand the default member for the dimension is set to "A". Now users part of the role get an error
    that the member "A" is not found. So while
    https://msdn.microsoft.com/en-us/library/ms175626.aspx says the default member setting in the role "overrides" the overall default member this is not completely true because first the general default member is selected and after that the role
    specific one.
    So the solution might be that I explicitly define the default member in all roles. This might be possible but there is one issue: you can't define a role specific default member for users part of the adminstrator role. So all admins don't have a default
    member which is quite some restriction for some users...
    So the question is how to solve that problem. An idea would be that I use some MDX to determine the default member in the dimension based on the actual user's role membership. But how to do that? Or any better idea?
    Thanks,
    Thomas Pagel

    Hi Thomas,
    According to your description, you want to have a role-specific default member for different roles. Right?
    In Analysis Services, when granting access to dimension, a connection will fail if a role restricts access to a default measure. As you mentioned, the best solution is specify a default member for each role. But for administrator role(full control),
    it can't set the default member. All tabs except General and Membership are disabled. And the system can determines the default member of current user automatically. It's not supported to get the default member in MDX either.
    However, SSAS has additive design for role security. So in this scenario, we just need to create another role for those members of administrator role and specify a default member for this role. SSAS will take that role-specific default member
    for these users. And it will not effect the administration permission for them.
    Reference:
    Default members, MDX Scripts, Security, KPIs and Perspectives
    The Additive Design of SSAS Role Security
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou
    TechNet Community Support

  • How to find names of tables created by specific user

    I have tried;
    select * from dba_tables
    and
    select * from users_tables
    and it shows 1600 + and 900+ tables resp. I just need to find out the tables created by me.
    any help or guidance is greatly appreciated.

    Hi,
    Welcome to the forum. This may help you.
    select * from dba_objects where object_type='TABLE' and owner = <user>
    select * from user_objects where object_type='TABLE'cheers
    VT

  • How to find the objectslist with username, who create all the Objects in List?

    I have the username and how can I get the objects, which are created by the User.
    Thanks

    Hi,
    Below is one approach.
    E070 table --> AS4USER = Usename --> Get the TR/Task Numbers -->
    E071 table --> TRKORR = TR/Task Number from E070 --> All objects under TR will be fetched.
    Regards
    Gangadhar

  • How to find all the SM37/36 jobs, created user and step user details

    Hi Gurus,
    Is there any table or transaction is available to check all the SM37/36 jobs that are running in the system, details of created user and step user in single screen?.
    Regards,
    Srinivas

    Check the below tables
    TBTCP                          Background Job Step Overview
    TBTCO                         Job Status Overview Table
    TBTCJSTEP                 Background Job Step Overview
    TBTC_SPOOLID                   Background Processing Spool IDs Table
    TBTCS                          Background Processing: Time Schedule Table

  • How to find the predefined Roles for business planning

    Hi Every body.
    I need your help in order  to know how to find or active the  templates for BI user roles start with S_RS_R like:
    S_RS_PL_PLANNER
    S_RS_PL_PLANMOD_D
    S_RS_RREPU
    Where and how  Can I active this temples ?.
    For your help.
    Thanks,
    Frank

    Hello Frank,
    Go to transactio pfcg and create a new role.
    Give a description.
    Save the role.
    Go to tab Authorizations and click "Modify"
    You'll be prompted to choose a template.
    You'll see there your 3 templates to choose.
    Please assign points,
    Diogo.

  • How to find  the existing workflows

    Hi Gurus,
    How to find  the existing workflows, and assign a  user  to a role.
    Suitably rewarded for helpful answers.
    B S B

    Hi,
    You can find existing workflow in Transaction PFTC.
    Select Task Type as Workflow Template(WS) and either do F4 on Task
    or put some description and press enter.
    For assigning a user to a role, check transaction PPOCW. (If in an Org. Unit) or through SU01.
    Regards,
    Ashish

Maybe you are looking for