How to count total no of employees?

HI,
i got requirement how to get the total count of employees and how many days in the organization, but how to calculate days.
employee joining date, releasing date, leaves,(CL, optional leaves, restricted leaves) employee salary.
i created the new selections and formulas its not working for me.
Thanks,
Deen.

Hi,
create the new formula for the employee count then define the formula.
hit the aggregation tab -> exception aggregation tab -> select the counter for all details values that are null or zero and reference char -> employee.
it will give the count of employees.
leaves,(CL, optional leaves, restricted leaves) for these object you can create the new selections.
these object getting same info object id yes use the restricted char.
for joining date and releasing date you convert char to KF using the replacement path then calculate the days.
Thanks,
Phani.

Similar Messages

  • How to calclulate Total no.of employees in shift wise

    Dear Friends,
    How to calclulate Total no.of employees in shift wise,
    when im giving two input dates,the should be total no.of employees in shift wise.
    please give solution for me,
    Thanks,
    Mathan.

    Dear Mathankumar,
    If you are using LDB then based on date it will pick all employee.
    you mention the Infotype 0007(this will store shift Details) so that it will pick this infotype record.
    After that you can play with the records.
    Like using collect statement based on shift
    Regards,
    Chandrashekhar

  • How to Count total number of Words in PDF?

    I am used Adobe Acrobat javascript inbuilt function getPageNumWords(<pagenumber>) it return the number of words present in specified page, but while am copy and paste text content from PDF file to MS Word, Words count given by MS Word is little bit differ, so any one know in which aspect Acrobat count the words?
    Which words count result is correct?
    Shall is go with Acrobat Words count result or MS Words count result?
    But I want to count the total number of words in PDF file (my input is PDF file) else can I go with iText?
    Words count in PDf using iText is possible?

    Word counts are likely to vary a little according to how you count. For instance, are hyphenated words one or two words? What if the hyphen is at the end of a line? Do numbers count as words? Headers and footers? Captions?
    Generally, you just accept a slight variation. If you are counting words in a professional context, i.e. where payment is per word, you probably need a contractual definition of how words are to be counted; in the absence of one, I suggest you use Word.

  • How to count total no. of tables existed?

    Dear Friends,
    I am new to SQL.
    While doing practise, I've created a number of tables at the SQL prompt. And now I don't remember the name of all the tables.
    So, please suggest an sql statement like how to count the total number of tables existing there.
    Your feedback is appreciated.
    Kindest regards,
    Lalit Sharma

    But could you pls be so kind and let me know how to
    do this as I mentioned above that I'm new to SQL.Hi,
    You would query USER_TABLES in the same way as you would query any of the tables that you have created. :
    SELECT column_list
    FROM table_name
    ...

  • How To calculate Total Number of Employee in shift wise

    Dear Gurus,
    my requirement is calculate the  total no.of employees  present & absent in shift wise.
    My output like this.
    Department                        Shift       Present           Absent
    Information Technology        GSFT       56                   24
    Engine Shop                       ASFT     124                   26
                                             BSFT      155                   45
                                                                                    CSFT       80                     20
    Thanks,
    Rajkumar.A

    Hi,
    You can make a custom report for this.
    If you want to know generally there is a head count report available in OM

  • How to count total number of records in mYSQL through JSP ??

    hi
    i want method to count total number of records in table.
    it was there rs.count() method in VB .
    But what about JSP , i used MYSQL database.
    tell me solution please...
    thanks...
    remember JSP - total record count for mySQL

    hello mr.
    i don't want ur suggestion ok
    i know that site.
    no need to give suggestion if u don't give code.
    its better to give proper reply instead of making a
    comment in forum.
    next time take care
    He was perfectly justified in that remark. I have given you the information you need, nicely, twice. But I, and noone else here is going to do your work for you. We will point you in the direction you need to be looking, but we are not going to give code. If you attempt to code something yourself, and it doesn't work, then post the code you tried, and we may make some corrections to it. Then again, with the attitude you've shown so far we probably will not. But one thing no one here will do, is do your work. Especially not for free.
    Now, if you are not willing to sit down, and look at the suggestion that has already been made, and attempt to use it. Then continue wasting your time, but go away and stop wasting our time.

  • How to find total number of employees for an organisation

    Hi Experts,
    Need help in finding the total number of employees working in an organization. Please let me know if I need to run a report or if there is any T Code.
    Appreciate your help at the earliest.
    Regards,
    Subbu.

    Hi
    Try this out
    T code :Paah
    Select the key field Per nr for out put
    GO to organizational Assignment select the Employee group for selection
    and also Organizational Unit for selection.it will come to the right hand side
    Give the input ESG as 1 for active and also input the org unit (dept) u require to
    see the list of employees
    and press out put for list or else hit list for number of employees
    with regards
    partha
    keep sharing and learning

  • How to count Total Number of Pages in SAPSCRIPT

    Hi,
    Iam unable to print total number of pages in the First Page of SAPSCRIPT.Iam writing the Logic in the Varibale window.
    Please kindly help me.
    In First Page , The preview is
    Page 1 of 1-
    In Second Page , Teh Preview is
    Page 2 of 2
    The Logic is ....
    1. Variable window of Script
    PERFORM CHECK_PAGE IN PROGRAM ZZZF_SAPSCRIPT_EXITS
    USING &SAPSCRIPT-FORMPAGES&
    CHANGING &WS_PAGE&
    ENDPERFORM
    Page &PAGE(C)& of &WS_PAGE&
    2. Program
    FORM check_page TABLES p_pagein STRUCTURE itcsy
                            p_pageout STRUCTURE itcsy.
      DATA : p_i TYPE sypagno.
       READ TABLE p_pagein INDEX 1.
       IF sy-subrc = 0 .
         p_i = p_pagein-value.
         p_i = p_i - 1 .
    READ TABLE p_pageout INDEX 1.
    CLEAR p_pageout-value.
    *p_pageout-value = p_i+0(3).
    WRITE P_I TO p_pageout-value.
    condense p_pageout-value no-gaps.
         MODIFY p_pageout INDEX sy-tabix.
       ENDIF.
    ENDFORM. "check_page
    Please help me ASAP.
    Regards,
    Deepthi.

    Try this
    'On The Form'
    IF &NEXTPAGE& EQ 0
    DEFINE &DECRE& := '2'
    PERFORM SET_TEXT_SYMBOL IN PROGRAM YSS20200
    USING &SAPSCRIPT-FORMPAGES&
    USING &DECRE&
    ENDPERFORM
    ENDIF
    'In The Program'
    DATA : BEGIN OF script_table OCCURS 0.
    INCLUDE STRUCTURE itcsy.
    DATA END OF script_table.
    Used to modify total pages so they print correctly
    FORM set_text_symbol TABLES input_table LIKE script_table[]
    output_table LIKE script_table[].
    DATA: pageno TYPE i,
    intCnt type i,
    chrPg(2) type c.
    READ TABLE input_table INDEX 1.
    MOVE input_table-VALUE TO pageno.
    READ TABLE input_table INDEX 2.
    MOVE input_table-VALUE TO intCnt.
    subtract intcnt from pageno.
    write pageno to chrpg.
    CALL FUNCTION 'TEXT_SYMBOL_SETVALUE'
    EXPORTING
    NAME = 'FORMPAGES'
    VALUE = chrpg
    VALUE_LENGTH = 0
    REPLACE_SYMBOLS = ' '
    ENDFORM.

  • Count total page in ABAP list

    Dear Expert,
    Please help me, how to count total page in ABAP list ?
    Any suggestion or idea to solve this question ?
    Thank you.
    Really appreciate your respond and solution.

    In the first statement of ur report u'll have to reserve some lines for footer as follows:
    REPORT <prg name> LINE-COUNT 25(2).
    here ur list will display 23 lines of data and then 2 lines are reserved for footer.
    This means that in each page u can display 23 lines of text.  Now depending on number of entries in your internal table which contains data to be displayed, we can calculate the number of pages required to print the total output.
    E.g: I have 62 records in my internal table, so to get the total number of pages use the following logic:
          (U can find out the number of recs in internal table dynamically using DESCRIBE stmt)
           62/23 = 2.69
           Round the result to the next integer using CEIL , so the next interger is 3.
           So ur total number of pages is 3.  And u now the current page number by sy-pagno.
    Hope this solves ur problem.

  • How to count number of entry in report

    Dear Expert,
    There are many query on report side, i dnt knw which function has to uses can u please help me
    1) in my HR report i want to count total number of employee which function will work ( colsum or tonumber) ?
    2)in journal entry i wnat to not zero amount as only single zero not like (0.00) ?
    Thanks

    hi,
    SELECT Count(Cast(T0.empID as integer)) FROM OHEM T0
    Jeyakanthan

  • How to count JMS messages count using BPEL

    Hi All,
    Can you please let me know how to count , total numbers of messages while pooling or pushing the messages using BPEL.
    Thanks,
    Srinivas.

    What do you mean by total number of messages? That are dequeued by BPEL? Or that are in the queue?
    Is the BPEL process started if a message is dequeued? In that case you could just count the number of BPEL instances...
    Kind regards Lonneke

  • How to count number of Characteristics' with the same value?

    Hello, Everybody,
    In InfoCube I have data:
    person ID (characteristic), points (key figure), gendre (characteristic), org.unit (characteristic)
    1313; 10; F;5001
    1313; 10; M;5001
    1313; 12; F;5001
    1313; 6; M;5001
    1515;20;F;5001
    Report,  with data from this InfoCube, should look like this:
    org.unit/number of employees, 6 points, 10 points, 12 points, 20 points
    5001, 1, 2, 1, 1
    Could you give me a suggestion how I can count the number of employees?
    Thanks in advance!
    Best Regards,
    Arunas Stonys

    Arunas,
    you can crate 4 CKF one each for employee points, and in each of the CKY have a data function value =1 if <your condition is satisfied>. This way the CKY will have a value of 1 if point is 6 for the first CKY and similarly for the rest and use exception aggregation based on person ID to count the no. of employees with that particular point in the Org unit. Use org unit in the rows and these 4 CKY in the columns and you should be able to get the report.
    hope this helps.
    Regards,
    Aashish
    Edited by: Aashish Kalra on Jan 6, 2009 12:31 AM

  • How to find total recs in a local table for a particular condition

    Hi,
    How to find total recs in a local table for a particular condition?
    Thanks,
    CD

    Well, you may want to try this as well, and compare to the LOOP way.  Not sure what kind of overhead you may get doing this way. Here ITAB is our main internal table, and ITAB_TMP is a copy of it.  Again I think there may be some overhead in doing the copy.  Next, delete out all records which are the reverse of your condition.  Then whatever is left is the rows that you want to count.  Then simply do a LINES operator on the internal table, passing the number of lines to LV_COUNT.
    data: itab type table of ttab.
    data: itab_tmp type table of ttab.
    itab_tmp[] = itab[].
    delete table itab_tmp where fld1 <> 'A'.
    lv_count = lines( itab_tmp ).
    Regards,
    Rich Heilman

  • How to count the existing license from SAP B1

    Dear All,
    Does anyone how to count......how many licenses such as CRM or Professional have been used?
    Is it possible to use SQL to get the result?
    From Samson

    Hi Samson,
    You can check the number of available licenses in the License Administration in Business One:
    Administration -> Licence -> Licence Administration -> Components tab
    You can select each component in your license file, and see the total number of licenses along with the total number available. I'm not aware of any way to do this through SQL.
    Regards,
    Niall

  • Count total rows?

    Hello,
    In some function of my program, I need to count total number of rows but, I don't need to fetch results. Only the number of rows.
    Is there any way to count the total number of result rows without fetch?
    In OCI ver.7, it was very simple.
    Just Call ofen() (OCIStmtFetch() in ver.8) without defining, but it's impossible that fetch without defining in Ver.8
    Is there any idea to solve this situation?
    I can defining and fetching just like normal process, but customer can send any SQL statement so, it can include LOBs.. and so on.
    It's very waste source codes and memory for just counting rows.
    Thank you

    One possibility is to execute a different statement
    (i.e. select count(*) from foo;) to get the number of
    rows directly. This would probably be the most efficient
    way to get the row count (since no row data is shipped
    with this statement).
    Unfortunately, I was unable to fetch rows w/o defining
    in OCI either (I got an ORA-24374), so I am not sure how
    you can get around this.
    Incidentallly, when fetching LOBs, I don't think that
    the entire lob is fetched, only the LOB locator. In this
    case, there is very little over head associated with the
    data transfer.
    Also, I believe that ofen() was doing roundtrips in the
    past, and my impression was that the latency of the
    roundtrip to the server (and not the associated latency
    of transferring the data) was the bottleneck here. Hence,
    there may not be as much of a performance penalty as
    expected for doing the extra client define with OCI
    v8. So you still might be able to use your old ofen logic
    (after replacing with OCIStmtExecute/OCIDefine) and not
    see a very high performance hit.
    Hope that helps out somewh

Maybe you are looking for

  • Hidden application in itunes store. How to delete?

    hi how do delete hidden apps completely. I delete an app from my ipad and itunes, it still appears under hidden purchases in itunes store. the real issue why i want them gone is bcoz everytime i open itunes, it link with store and looks for available

  • Application Server File Output

    Hi Gurus,   I am uploading data to Application server. I have the data in internal table but I didnt find some data in application server. I have 48 fields but I can see some 30 fileds. How can see all the fields in application server. Regards,

  • Locally works - not online

    I really hope someone can give me, at least hint... My client switched to Akamai (OnStream Media) and I have serious problems to run our old osmf player, to work properly with rtmp MBR streaming (mp4 files). To cut short, after first successful switc

  • If I own Photoshop Elements 5.0 on an old computer without internet access, how do I open the image

    If I have Photoshop Elements 5.0 on an old computer without internet access, how can I open the image I created so I can print it?  The new computer with internet is not the one I have registered the Photoshop product. Thanks. Eddie

  • Media Offline not offline and unable to re-import sound and movie files

    I'm getting the dreaded red Media Offline screen and I've tried everything to fix it. To explain I am working on a movie with sound and various bunches of still images imported as numbered stills to be automatically converted to a movie for an exhibi