MSS General Data iView

Hi To all,
I'm implementing MSS 60.1.5 <b>(No WebDynpro)</b>
I have a problem with GeneraData iView
(com.sap.pct.hcm.eeprofilegeneraldata.default)
It's a JSP and it utilize the RFC HRWPC_RFC_EP_READ_GENERALDATA
The problem is that the iView do not show in a correct way the data. I.E. next to Employee SubArea(description) show the office adress, or next to salary class(description) show the value of the Employee status.
Someone know how can I reorganize the view?
Thanks in advance
Dom

Hi,
        Can you help me regarding MSS iview customization (based on par and not webDynpro).There is one iview General data in which we have to add one new field.For that a new function Module is created in the Backend R/3 by ABAP persons.The New Function module wraps the old function Module + the new Field.Do you know How this filed can be shown in our iview.
Regards
Imran

Similar Messages

  • Trying to personalize the MSS General Data iView

    We want to make personalize the General Data iView, which appears on the General Information page.  We want to hide a couple of fields (contract text and cap. Utilization) and change the text for another field (Contract Data).  We attempted to do this in the standard way, which is to preview the iView and hover the cursor over the area we wish to personalize and use Ctrlright-click.  The general data iView does not work by itself.  It only works in conjunction with the Employee Search iView on the General Information page.  So then we tried to personalize the same fields on the General Information page also using the Ctrlright-click and then clicking Apply and then Ok.  The changes appear to save while still in preview mode.  Once we close and re-open the page the changes are gone.  The system will not allow us to make personalizations to a page and save them.  There is no error message showing, the changes are just not saved when you re-open the page.  Is there a fix that will allow us to personalize (as an administrator) a page and save the changes?

    Hi,
    Try it by doing it from portal content folder and navigate to the folder where the iview exits and then iview right click ->open object and preview here and do the changes and save.
    If we do it from the content area or from the page the changes will not be there for next time.
    Thanks,
    gopal

  • MSS 1.41 - General Data iView - Content not updated

    Hi Gurus,
    This is the first time I have this clue and i'm not able to find anything in the forum concerning this topic.
    A manager login the portal and selects an employee through Employee Search iView.
    General data iview displays his organizational information but not updated.
    This employee changed position on 01.01.2014, data are up-to-date in IT1 but still the oldest data are displayed.
    Nothing can be customizing in SPRO neither in PCD.
    Maybe a parameter to add in the iview config...
    Iview used : mss.generalinfo_generaldata
    Thank you in advance for your advices.
    Matthieu

    Did you check the org.unit and his positions relations ships dates are valid as per IT0001 record.
    can you place the screen shots for more clear on this issue ...

  • General Data iView under Employee Profile

    Hi All,
    I need to change the General Data file under Employee Profile in MSS.
    The file name is: com.sap.pct.hcm.eeprofilegeneraldata.par
    Right now the display under GEneral data in portal shows positon name but i need to show the position Number also..the concerned JSP file inside the above said PAr file uses Java class method like data.getPosition() to fetch the position name.
    NOw i am not sure how and by which method i can fetch position number too and display it.
    COuld anyone help/advice..
    thanks

    Hi Mate,
    quite new to these things..but i extracted my par file via WINRAR and i have to change my JSP page..i am able to change it but thing is i don know which method i have to use to fetch the posiiton number.
    The JSP code is like this  -
    <%@ page import="java.util.ResourceBundle"%>
    <%@ taglib uri="htmlb" prefix="hbj" %>
    <jsp:useBean id="data" scope="request" class="com.sap.pct.hcm.employeeprofile.generaldata.GeneralDataBean" />
    <jsp:useBean id="cKey" scope="request" class="com.sap.pct.hcm.orgmanagementeventing.CKey" />
    <hbj:content id="myContext" >
    <hbj:page>
        <%= cKey.getJavaScriptForURLCaller() %>
        <% ResourceBundle rb = componentRequest.getResourceBundle(); %>
        <%
            String payType;
            String payArea;
            String payGroup;
            String payLevel;
            if(data.getCompensationType()==data.TYPE_PAY_SCALE){
                payType = rb.getString("pay_type");
                payArea = rb.getString("pay_area");
                payGroup = rb.getString("pay_group");
                payLevel = rb.getString("pay_level");
            } else {
                payType = rb.getString("sal_type");
                payArea = rb.getString("sal_area");
                payGroup = rb.getString("sal_group");
                payLevel = rb.getString("sal_level");
        %>
        <hbj:form>
              <%= cKey.getHiddenFormField() %>
              <%= cKey.getJavaScriptForEventReceiver(componentRequest, myContext.getCurrentFormId()) %>
              <table border="0"><tr><td colspan="7">
                  <hbj:textView text="<%=data.getName()%>" design="HEADER2"/>  <hbj:textView text="<%=\"(\" + data.getPERNR() + \")\"%>" design="HEADER3"/>
              </td></tr>
              <tr><td colspan="7" height="5px"></td>
              <tr>
                <td colspan="3"><hbj:textView text="<%=rb.getString(\"group_contract_data\")%>" design="HEADER3"/></td>
                <td>   </td>
                <td colspan="3"><hbj:textView text="<%=rb.getString(\"group_communication\")%>" design="HEADER3"/></td>
              </tr>
              <tr>
                <td><hbj:label id="la" labelFor="a" text="<%=rb.getString(\"work_contract\")%>"/></td><td> </td><td><hbj:textView id="a" text="<%=data.getWorkContract()%>"/></td>
                <td></td>
                <td><hbj:label id="lb" labelFor="b" text="<%=rb.getString(\"email\")%>"/></td><td> </td><td><hbj:link id="b" reference="<%=\"mailto:\"+data.getEmail()%>" text="<%=data.getEmail()%>"/></a></td>
              </tr>
              <tr>
                <td><hbj:label id="lc" labelFor="c" text="<%=rb.getString(\"hire_date\")%>"/></td><td></td><td><hbj:textView id="c" text="<%=data.getEntryDate()%>"/></td>
                <td></td>
                <td><hbj:label id="ld" labelFor="d" text="<%=rb.getString(\"office\")%>"/></td><td></td><td><hbj:textView id="d" text="<%=data.getOffice()%>"/></td>
              </tr>
    etc etc----
    if you see here they are using method like getEmail() etc for displaying data on front end screen.
    at the top of this file there is a bean file included -
    <jsp:useBean id="data" scope="request" class="com.sap.pct.hcm.employeeprofile.generaldata.GeneralDataBean"
    this must be having all methods..bt i don know where this bean file can be acceessed? i cant see it anywhere in my extracted PAr file.
    The only requrement of mine is to display postion number next to the text(text is already getting displayed)..

  • MSS Personal data iview

    HI Experts,
    I have to add phone field in personal data iview.
    I am using EP7.0 Portal ,and this is a webdynrpo based iview,I wanted to know whether there is any hidden field for phone or we need to add this field or is there any configuration required from backend.
    Thanks in advance.
    Thanks,
    Vinay

    Hi,
    If this field already manitained at r3 side, you need to get that field from R3 as same what the other fileds you are getting. Nothing is required for this only thing you have to Map this field and you have to bind this field to your view.

  • MSS iView - General Data

    Hi All,
    I copied the "General Data" iview from MSS biusiness package. I am on EP7.
    When i view this page, i see "Contract Data", "Communications Data", "Organisational Assignment" and "Personnel Structure".
    I want to remove "Communications Data" from the above iview.
    How to achieve this ?
    Your help is much appreciated as we are in a critical phase.
    Thanks,
    Sathya

    Hi,
            Can you help me regarding MSS iview customization (based on par and not webDynpro).There is one iview General data in which we have to add one new field.For that a new function Module is created in the Backend R/3 by ABAP persons.The New Function module wraps the old function Module + the new Field.Do you know How this filed can be shown in our iview.
    Regards
    Imran

  • MSS Employee search and General Data

    Hi All,
             We are implementing ESS/MSS. When i preview "Employee Search" iview in (Content Provided by SAP>Line Manager> Employee Search) iview. It shows all employees under that line manger with all options. But when i click on any employee, it is not showing any information. I tried to test "General Data" iview, it simply shows "Please select any employee, to display data" text only.
    Any help on this will be greatly appreciated.
    Cheers,
    Krish.

    Hi,
    Please check your OADP customizing.
    If your system is at ERP 2004 release refers to ~
    Different Features of OADP based on ERP 2004  https://wiki.sdn.sap.com/wiki/display/ERPHCM/DifferentFeaturesofOADPbasedonERP+2004
    If your system is at ECC 6.0 release refers to ~
    Different features of OADP based on ECC 6.0
    https://wiki.sdn.sap.com/wiki/display/ERPHCM/DifferentfeaturesofOADPbasedonECC+6.0
    For ECC 6.0 you can check your customizing by testing function module HRWPC_OADP_TEST as shown in above link.
    Regards
    Pooja

  • MSS - Compensation Profile iViews Error Messages (Parameter CREVI not set)

    Hello Folks,
    We are currently implementing ECM with MSS and SAP Portal. In the Plan Compensation iView when I click on the Employee Name hyperlink it is launching Employee Compensation Profile page having General Data, Compensation Adjustments, Salary Development, Salary Survey Data, Compensation Guidelines, Compensation Eligibility, LT Incentive iViews.
    I am getting below listed messages in these iViews, I am not able to trace where the configuration for these is missing i.e. either in the Resource or Service or in any of the SPRO step. Could you please help me in pointing to the location where I am missing in the config part.
    General Data iView - "Internal error; Parameter CREVI is not set, Salary Development: An error occurred while the data was read."
    Salary Development, Salary Survey Data, LT Incentive iViews - "No data available"
    Compensation Guidelines, Compensation Eligibility iViews - "To display data, first select an employee".
    Thanks much for your help!
    Thanks,
    NVR.

    Enter in the iview PCD portal content :
    iView Compensation Planning - edit iview - in propertes search for the field Compensation Review (CREV) it's optional and fey from SAP Table T71ADM08
    Edited by: Javier Ignacio Serrano Zamorano on May 5, 2010 10:20 PM

  • MSS General Information - Personal Data Iview

    Hi,
    On Mss> Team > General Information,  We want to add to Personal Data Iview more fields, for example secondary address, We dont have NWDI, so I'm looking for some table to customize an add the parameters....
    Any help?
    Thanks in advanced!

    Unfortunately there is no table for this to customise, You can try peronalisation
    Without NWDI this cannot be achieved.
    http://help.sap.com/saphelp_erp2005/helpdata/en/ee/63ef41925b2135e10000000a1550b0/frameset.htm

  • Salary Data iview inside General Information

    Hello Colleagues,
    In MSS, we added the "Salary Data" iview to the "General Information" section/workset. However, when we select an employee in the "Search" area, no data is displayed in the "Salary Data".
    However, the "Salary Data" works when used inside the "Compensation Information" section/workset.
    The Search iview for General Information is com.sap.pct.erp.mss.generalinfo_employeesearch
    The Search iview for Compensation Information is com.sap.pct.erp.mss.compensationinfo_employeesearch
    My question is: Is there any way of having the "Salary Data" iview working under the "General Information" section (with General Information Search..)?
    Thanks in advance,
    Marco

    Hello Marco,
    The iView will not event on selection by just adding the standard delivered view  to the General Information Page. You'll probably have to do the following steps first:-
    1) Add the Salary Data FPM view to the General Information FPM application perspective using Self-Service Administrator
    2) Create a new Salary Data iView by selecting Webdynpro Java Application ->MSS Empl Profile application --> General Information --> Salary data. Add this new iView to your General Information Page
    Hope this helps.
    Pooja

  • MSS - team - General Data, Employee selection add Custom col with KM link

    Hi There,
    I am trying to add a custom column for MSS team selection for general data. Which works alright, now i want to make that column click able (like email) and this should direct me to a dynamic Km link based on employee selected.
    I have added custom column and able to display custom content on the team member selection table. I am able to make it clickable if i select "link" option on column configuration. So that also works.. now i want to pass employee number to my custom webdynpro application. Can you suggest anything here.
    Thanks a lot.
    Regards,
    Sudhir

    Hi Sudhir,
    If I understand correctly, though oadp config, you have added new column and attached a service key to make it as a clickable one. Once u er clicks on the link, I believe you want to display the KM doc which takes pernr as url parameter or some thing like that.
    If my understanding is correct then, you have to  create a WD Application, which reads the selected pernr( or org or position). You need to add pcui_gp/xssutils as used DC and then add context nodes of FcObjectSelection to read the selected record details as described in the above wiki which I gave i.e. https://wiki.sdn.sap.com/wiki/display/profile/How-toaddacustomWebDynproiViewtotheMSSEmployeeProfile%28ECC+6.0%29
    You have to pass the value returned by the Selected Object to the KM as url parameter.
    Also use this blog to see the frontend context values of WDJ application. It will help you in understanding the various values of the context nodes.
    /people/yugandhar.reddy/blog/2011/03/26/simple-way-to-debug-ess-and-mss-web-dynpro-java-based-applications--very-useful-technique
    This should wok for you, let me know if your requirement is different.
    Regards
    Yugandhar Reddy

  • MSS - General Information Page - "Contract Text"

    Hello Experts,
    I am having trobule finding out where the field "Contact Text" comes from.  The field is shown on the MSS Page "General Information" on the iView "General Data".  The subheading is "Contract Data".
    I have run a trace on the portal page.  It looks like the page is reading the following infotypes:  0000, 0001, 0002, 0016, 0041, 0105, 0008, 0032, 004.
    I assume the "Contract Text" field would come from IT0016.  However, there is no "Contract Text" field on that infotype.  Can anyone please tell me where this "Contract Text" field comes from?
    Thanks,
    Mike

    The information that is displayed in the field "Contract Text" field is in the Infotype 0001 , field P0001-ANSVH
    Hope this solve you doubt.
    Regards

  • MSS/Company property iview empty

    Hello,
    We need to show company property iview from MSS/General Information. We've customized 40 infotype. We choose a user from Employee Search iView, when selecting an employee, the Company Property iView is empty.
    Please, do you know how can I do so as to show data in this iView?
    Thank you

    If the iviews show blank or nothing.... You should check the permissions of the iviews or page, and see with the user,. give permissions to the rol as read permission and end user permissions.
    This could be....
    Hope its help
    Bye

  • 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.

  • 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

Maybe you are looking for

  • How can I make my iTunes work?  After update, it won't resond at all.

    I've tried EVERYTHING within my power. I need expert advise. Thank you for your time and consideration.

  • How to change the web icon in the browser window

    i have created my site and cant find how to change the icon in the browser window (like they have done at the top of this page with the Adobe icon before the  Adobe Forums: text )would anyone be kind enough to give me some help??

  • PBS APP Streaming Low Quality on NOVA Only

    Hi, For the past couple of days or so the PBS App on AppleTV is streaming in low-res for NOVA episodes only (Frontline, for example, is just fine). Is anyone else having this problem? I can't seem to find a support contact email from PBS to contact t

  • Vendor sub-range in automatic po

    Hi, All, I have a problem with vendor sub-range in the next process: In info record there is sub-range SR1 for material/vendor. In contract there is sub-range SR2 for same material/vendor In mrp was created requisition with reference to contract. we

  • Invalid value in field wip entity name

    hi I create cto cycle i did the following steps. create sales order in model item progress order -create onfiguration item star item is created . progress order to create supply eligible jobis created after that in wip discrete job form type the job