How to pass Employee number of MSS - General Information to Start Process.

Hi All,
Just like HR admin role, Employee Information number is getting passed in Display Processes, Start Processes, and Personnel File, we have to make same scenario working for MSS also.
In MSS, General Information Page, when manager selects the Employee, then that Employee Number should get passed in Display Personnel File and also in Start Process.
I am new to HR module so I have not explined the requirement properlly, but Experts may be knowing this. Please help.
Regards,
Nikesh

Hi Siddharth Rajora,
I have actually 2 doubts..
1. You mean to say this can be done and is already implemented, but I think it will only work if we put "Display Personnel File and Start Process" under "Related Activities" area right ?
2. But user wants these views in the Detailed Navigation, so if he selects PERNER from general Information Page, and then if he clicks on "Start Process (under Detailed Navigation)" , then it shud show list of processes for that Employee.
Can you please guide me properly.

Similar Messages

  • How to pass Employee number of MSS - Employee Search to Start Process

    Hi All,
    Just like HR admin role, Employee Information number is getting passed in Display Processes, Start Processes, and Personnel File, we have to make same scenario working for MSS also.
    In MSS, General Information Page, when manager selects the Employee, then that Employee Number should get passed in Display Personnel File and also in Start Process.
    I am new to HR module so I have not explined the requirement properlly, but Experts may be knowing this. Please help.
    Regards,
    Nikesh

    Hi Siddharth Rajora,
    I have actually 2 doubts..
    1. You mean to say this can be done and is already implemented, but I think it will only work if we put "Display Personnel File and Start Process" under "Related Activities" area right ?
    2. But user wants these views in the Detailed Navigation, so if he selects PERNER from general Information Page, and then if he clicks on "Start Process (under Detailed Navigation)" , then it shud show list of processes for that Employee.
    Can you please guide me properly.

  • How to Pass personal number(pernr) to the ESS Webdynpro ABAP Application

    Hi,
    How to pass personal number of employee to the standard ESS webdynpro ABAP application as application parameter of iview.
    Thanks
    Srikanth

    Hi
    For WebDynpro application in iView there is a property to set Parameter for WebDynpro application.
    Handel these passed parameters in Default plug of Interface Controller.
    Note string passed as parameter in iview is case sensitive.
    Try this code to get URl of Deployed application
    String appURL = null;
    try {
         WDDeployableObjectPart currentAppPart =wdThis
                                  .wdGetAPI()
                                  .getComponent()
                                  .getApplication()
                                  .getDeployableObjectPart();
    appURL = WDURLGenerator.getApplicationURL(currentAppPart);
    } catch (final WDURLException ex) {
    wdComponentAPI.getMessageManager().reportException(
                             new WDNonFatalException(ex),
                             false);
    Mandeep Virk

  • Add field to MSS General Information

    Hi experts,
    I'm trying to customize the iviews in MSS > General Information to add fields to the iViews. Thus, I need to identify what are the function modules they are calling. However, when I open sap.com/mss~eepro/ Web Dynpro component in NDWI, I could not see any model! Can anyone explain to me how does this application work then if it has no model to store function modules?
    THanks,
    Zm

    Hi,
    if you have access to ECC System go to transaction ST05 and run the trace with the user who is having access to run the iView. after it is on go to portal and run the General Information iView. after executing that go back to ECC system and switch off the analysis and see the RFC trace.
    it will show all the Function Modules that are called when executing the iView.
    and it is better if we don't make any changes to the standard FM and instead use the custom FM to add the fields, since we did the same sought of development using custom fm.
    creating a model and making changes to the application.
    Hope this helps.
    Cheers-
    Pramod
    reward points if helpful.

  • How to calculate a number of calendar days from a start date (e.g. 60 days from 3/10/2012)

    How to calculate a number of calendar days from a start date (e.g. 60 days from 3/10/2012)

    DT,
    If the starting date is in Column A, and you want to calculate what the date would be 60 days later, in Column B, write in Column B:
    =A+60
    Couldn't be much easier.
    Jerry

  • MSS - General Information - Related Activities Links

    Hi,
    what is the best/easiest way to change the MSS - General Information - Related Activities links?
    Thanks!
    Elvez

    Hi,
    created a custom area and assigned it to my "Related Activities" iView.
    /Elvez

  • MSS General Information (Employee Search iview Fetching wrong Manager)

    Hi,
    In MSS we have General Information page which has Employee Search iview. This iview display the information in a table which has several columns... (Name, Personal Number, Manager, Position, Staffing Ration, Job... etc)
    The problem is under the Manager Section its displaying the wrong Manager Name, it should show the name of manager who has logged in but instead its showing some other manager.
    e.g. If David has logged in as a Manager and is searching for employees reporting him then in the employee search iview it show David's name as Manager for all his reportees) But in our case instead of David its showing wrong manager name.
    We have checked from functional point of view and the reporting relationship is okay as the manager (David) is able to approve the leave requests and overtime requests raised by his reportees.
    Kindly suggest a solution.
    Regards,
    Mittal

    1) For all other managers its working fine but this is the case with only one manager.
    2) Can you please tell me which is that FM which gets called through standard Java Webdynpro iview.
    Thanks

  • How to pass Idoc number to workfow

    Hi all,
    How to pass triggered Idoc number to the workfow ?
    I wanna to display the Idoc number in mail, when error occur in posting, but workflow is trigarring but I am not able to get the Idoc number, even I given key element as idoc reference to the EDIDC-DOCNUM in the Business object ( z object).
    Please let me know how to solve this...
    Thanks yaar..
    HP

    Hi Hp,
    Check the Workflow log or the event log?
    Check the binding between event container to workflow container?
    Thanks and Regards
    Balaji E.

  • How to Customize Employee Number Generation?

    m trying to generate a custom employee,applicant numbers through a dummy business group.
    I've created on Application: Oracle E-Business 11.5.10.2 the work structure and am now on the step of customizing the employee generating number.
    I followed the link steps:
    Below steps already done:
    Technical Side:
    1- Create New Sequence in DB.
    -----Sequence Code----------
    DROP SEQUENCE APPS.APPSLEAD_CUST_NUMB;
    CREATE SEQUENCE APPS.APPSLEAD_CUST_NUMB
    START WITH 1
    MAXVALUE 999999999999999999999999999
    MINVALUE 0
    NOCYCLE
    NOCACHE
    NOORDER;
    2- Create New Package for issuing the numbers.
    ----------Package Code--------------
    Create or replace package appslead_package as
    Function get_emp_custom_number (
    p_business_group_id IN number
    ,p_legislation_code IN varchar2
    ,p_person_type IN varchar2
    ,p_person_number IN varchar2
    ,p_party_id IN number
    ,p_person_id IN number
    ,p_national_id IN varchar2
    ,p_date_of_birth IN date
    ) return varchar2;
    end appslead_package;
    Create or replace package body APPSLEAD_PACKAGE as
    Function GET_EMP_CUSTOM_NUMBER (
    p_business_group_id IN number
    ,p_legislation_code IN varchar2
    ,p_person_type IN varchar2
    ,p_person_number IN varchar2
    ,p_party_id IN number
    ,p_person_id IN number
    ,p_national_id IN varchar2
    ,p_date_of_birth IN date
    ) return varchar2 as
    /*Check if the person id is exists on the system or not*/
    cursor person_exists is
    select employee_number,applicant_number,npw_number
    from per_all_people_f
    where party_id = p_party_id;
    --and p_effective_date between effective_start_date and effective_end_date;
    lseq_num number;
    l_next varchar2(30);
    l_emp_num varchar2(30);
    l_apl_num varchar2(30);
    l_npw_num varchar2(30);
    begin
    open person_exists;
    fetch person_exists into l_emp_num,l_apl_num,l_npw_num;
    if person_exists%notfound then
    Select to_char(Appslead_Cust_Numb.Nextval) Into lseq_num From Dual;
    l_next := 'AppsLead-'||lseq_num;
    return l_next;
    Else
    If p_person_type = 'EMP' then
    l_next := l_emp_num;
    Elsif p_person_type = 'APL' then
    l_next := l_apl_num;
    Elsif p_person_type = 'CWK' then
    l_next := l_apl_num;
    End if;
    End if;
    Close person_exists;
    return l_next;
    end get_emp_custom_number;
    End appslead_package;
    Functional Side:
    1- Create or Modify Business Group Employee numbering method to Manual.
    2- Create New Formula Function.
    3- Create New Formula EMP_NUMBER_GENERATION with Type "Person Number Generation"
    ------Formula Script--------
    EMP_NUMBER_GENERATION
    Create Custome formula for generation employee number*/
    DEFAULT FOR Person_Number IS ' '
    DEFAULT FOR Party_ID IS 0
    DEFAULT FOR Person_ID IS 0
    DEFAULT FOR National_ID IS ' '
    DEFAULT FOR DATE_OF_BIRTH IS '1900/01/01 00:00:00' (date)
    DEFAULT FOR Hire_Date IS '1900/01/01 00:00:00' (date)
    INPUTS ARE
    Legislation_Code (text),
    Person_Type (text),
    Person_number (text),
    Party_id,
    Person_id,
    Date_of_birth (date),
    Hire_date (date),
    National_ID (text)
    Next_Number = '0'
    Invalid_msg = ' '
    IF Person_Type = 'EMP' then
    Next_Number = TO_CHAR(Get_Emp_Custom_Number(Legislation_Code,Person_Type,Person_Number,Party_Id,Person_Id,National_ID,Date_Of_Birth))
    Else
    Invalid_msg = 'This is not an person_type of Employee!'
    Return Next_Number
    Now, when I create a new employee I need the employee number to appear as
    "AppsLead-Emp-00001"
    But its not, and the screen of employee master is not allow to create an employee without filling the number.
    How to do the same?
    What should be the Employee Number Generation ?
    1- Automatic generation with Global Sequencing
    2- Manual
    If your answer is manual, in the employee master screen, the employee id is required and when you create the employee the id should be entered.

    there are some fast formula you can use.
    Please check metalink

  • How to pass serial number read from a PCB.

    Hi,
    I have a question:
    How do I pass serial number read from a PCB so it will be embedded in Test Report file name for that test sequence. I am running Sequence in “New Execution" - Single Pass.
    My test report file after I run test does not have serial number: “TEST_Rev6_Report[NO_UUT_SERIAL_NUM0][2 32 24 PM][4 26 2013].xml” but my Report Header has serial number present.
    Thank you,
    Henry

    The attached screenshot shows how to set your report options, make sure you have the <TestSocket> and <UUTStatus> macros included in the Report File Path otherwise the serial will not be filled in the filename (Generate path is called a second time from the Single Pass -- Test Socket Entry Point sequence).
    I used the ParallelModel.seq to test it.
    The attached sequence file shows how to set the serial number.
    Search for "Specifying Report File Paths by Expression" in the help for more macros.
    Attachments:
    Sequence File 2.seq ‏5 KB
    Screenshot.png ‏57 KB

  • How to pass po number to API

    Hi All,
    Can you please let me know how to pass po_number(Purchase Order Number) while creating an assignment. i'm using hr_asignment_api to create assignments. Or do we have any other way to pass PO_NUMBER value to any API.
    Thanks,
    Anil

    Hi jackytam  ,
    /people/yeusheng.teo/blog/2008/01/05/ordering-unit-vs-order-pricing-unit-in-srm-sus
    you make get some pointers
    regards,
    Neelima

  • How to pass variable number of parameters to a FORM.

    Hi,
    What is the correct syntax to pass variable number of parameters to a subroutine?
    PERFORM TEST TABLES BRETURN USING TEST_NAME CHANGING MY_OUTPUT.
    FORM TEST TABLES RETURN STRUCTURE BAPIRET2
              ITAB STRUCTURE ITABLE_LINE OPTIONAL
              USING VALUE(NAME) TYPE STRING
              CHANGING VALUE(OUTPUT) TYPE STRING.
    The above code does not work. How can we specify an optional parameter?
    Thanks and Regards,
    Sheetal
    Message was edited by: Sheetal Pisolkar

    Hi,
    I am trying to use a subroutine instead of function.A FUNCTION understands optional keyword.
    How can this work for a FORM?
    CALL FUNCTION 'TEST'
         EXPORTING
              MY_OUTPUT = 'output'
         IMPORTING
              TEST_NAME = 'mytest'.     
    FUNCTION TEST
    *     EXPORTING
    *          VALUE(OUTPUT) TYPE STRING
    *     IMPORTING
    *          VALUE(NAME) TYPE STRING
    *     TABLES
    *          RETURN STRUCTURE BAPIRET2 OPTIONAL
    *          ITAB STRUCTURE ITABLE_LINE OPTIONAL          
    ENDFUNCTION.
    PERFORM TEST USING TEST_NAME CHANGING MY_OUTPUT.
    FORM TEST TABLES RETURN STRUCTURE BAPIRET2 OPTIONAL
    ITAB STRUCTURE ITABLE_LINE OPTIONAL
    USING VALUE(NAME) TYPE STRING
    CHANGING VALUE(OUTPUT) TYPE STRING.
    ENDFORM.
    Is this be possible?
    Thanks
    Sheetal.

  • MSS General Information Employee Search A002 relationship

    Hi All,
    We are having A002 based reporting structure ( no A012 relationship maintained).
    In General information there is a Iview for employee search.
    When we execute this search ( say using pernr), search does not return any values.
    Now if I maintain A012 relationship between Organization unit and the managerial position then this search works fine.
    My question is:
    1. Is issue related to structural authorization?
    2. Do i need to maintain some entry in T77S0 table?
    3. Or do I need to implement Z search class in Object and Data provider similar to CL_HRWPC_SEARCH_VIA_SELID?
    Any help would be highly appreciated.
    Thanks and warm regards,
    Aditya

    No the issue here is evaluaiton path what shall be used cause as you see
    This iView displays the employees in the manageru2019s area of responsibility, that is, employees who report either directly or indirectly to the manager. The display is based on the SAP application component Organizational Management.
    so check the properties of the iview ie
    Group of organizational structure views
    sap.xss.tmv.orgviewgroup
    Administrator
    Optional
    Organizational structure view group, for example MSS_TMV_EE, stored in Customizing.
    Individual organizational structure view
    sap.xss.tmv.orgview
    Administrator
    Optional
    Organizational structure view, for example MSS_TMV_EE_DIR, stored in Customizing
    ie check Function module HRWPC_GET_DIREPS_OF_LEVEL_1
    (Rule MSS_TMV_RULE1 uses evaluation path SAP_MANG and rule MSS_TMV_RULE5
    uses evaluation path MSSDIREC.)
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/2e/5a5d45d9f24fbdb06be2ff53651c3e/frameset.htm
    You can use your own evaluation path to accomodate your a012 relationship ie using OADP
    modify sap_mang to return your relationship
    https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=190743879
    HRWPC_OADP_GET_SEARCH_ROOTS calls HRWPC_GET_PATHROOTS

  • How to change Employee Number Generation from Manual to Automatic

    Hi,
    We have given Employee Number Generation Manual while creating Business Group. Now we want to change that to Automatic. I have tried to change but I count not.
    Please tell me what are all the steps needed to change Employee Number Generation From Manual to Automatic

    Hi,
    1. Goto org screen --> query business group
    2. Click other --> Business Group info
    3. Change second option from Employee Number Generation from Manual To Automatic.
    Also look
    Employee number generation process
    Hope it work for u.
    Ayaz
    Edited by: Ayaz on Dec 20, 2010 7:15 PM

  • How to pass version number from source location to records center?

    When designing our record management approach, one of the requirements from business is to pass the version number from the source location to records center. They need to know which version has been declared as a record for the same document.
    Is there a way to implement this (OOB)? Thank you.

    Hi,
    Based on your description, my understanding is that when you sent a document to records center, you want to pass version number from source location to records center.
    When a document is sent to the records Center, we keep its version number as assigned in its original document library as metadata that is submitted along with the document to the Records Center (in the “Properties” sub-folder of the document library in
    the Records Center).
    Automatically synchronizing that version number directly into the versioning system in the Records Center is something we should probably consider for a future version, but even in the current version we definitely don’t lose that information.
    Hope this helps clarify.
    Refer to the following article:
    http://blogs.msdn.com/b/recman/archive/2006/08/24/715883.aspx
    Best Regards,
    Lisa Chen
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

Maybe you are looking for

  • How do I make Address Book default for vCards

    I use Apple Address Book (6.0) and have the Lion O/S 10.7.1on my 2 Macs.  My Apple Address book syncs with my Gmail (Google Apps) contacts. Recently when I opened a vCard, Outlook for the Mac attempted to open the vCard.  I cancelled this as I no lon

  • Essbase Variable with more than a value for use after in Planning forms.

    I want to now if it would be possible to create a variable with more than a value for use after in Planning forms. The variable that I want to use is created in Essbase. Example: &Years = FY08,FY09,FY10

  • Apps language is in German will not change to English

    Have just purchased new IPAD2 having succesfully set it up - when going into Apps everthing is in German -  have checked language in settings, have also changed German to UK IN ITunes account but still remains German in Apps - any ideas ?

  • Where can I download the lion installer, Where can I download the lion installer

    I would like to upgrade my MacBook 2,1 to LIon...it is not qualified to run Mountain Lion. The Lion installer is no longer available at the App Store. Where can I purchase Lion?

  • Multi-Instance Object Searches

    I want to use OEM 10g - and the table of Preferred Credentials - to be able to search ALL monitored database instances for either all occurences of a particular object type (such as finding all database links) or all objects with a particular name (s