Team Viewer iView generating dump in R/3?

Hi All,
Whenever I select Team Viewer iView a dump is generated in R/3 as follows:
Syntax error in program "SAPLCK_EXTRACT_LEVEL2
The following syntax error occurred in the program SAPLCK_EXTRACT_LEVEL2 :    
"Field "LVC_S_FC2_WAO" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement."                                          
Error in ABAP application program.                                            
"SAPLHRWPC_ATTSTATUS "
The backend is R/3 4.7 and EP 6.0 on WebAS 6.40.So let me to know that do I need some <b>basic support packages</b> for the same so that there are no dumps in R/3.
Regards,
Pavanmeet.

hi,
I was also facing the same problem. i was able to rectify it by making some adjustments in the customizing options (thats by changing the TMW-profile customizing for the screen area to 'TDTYPE')..
Here's how to do it:-
1) in IMG go to Time Manager's Workplace > IDs for Time Data > Assign Display of Time Data ID List to Profiles
2) here,  choose your profile.
3) in the field selection option add a new row with value -- 'TDTYPE'
4) save the changes.
and hopefully ur problems should be solved...
Regards,
Sagar.

Similar Messages

  • MSSTV001 - Delegating tasks using the team viewer iview.

    We are setting up a proxy so that our highest level mangers will not have to do their own compensation planning through MSS.  We found the user exit MSSTV001 to use for this purpose.  Does anyone have experience in using this user exit?
    I am looking for examples of code entered into: EXIT_SAPLHRWPC_TO_REMOTE_001 and EXIT_SAPLHRWPC_TO_REMOTE_002.
    Any other helpful information is appreciated.  I already have a sheet from SAP Online help that gives me a few details on what to do.  It is called:  Delegating tasks using the team viewer iview.
    Points will be rewarded for any helpful answers.
    Thanks,
    Sara

    Hi Gabriel,
    Requirement 1
    Thanks. I did so. Using this I can see the OrgUnit. However, this is the OrgUnit of MSS user. It remains same through out the program. It is unlike pernr which changes as the user clicks on different Employees.
    My exact requirement is as below:
    User will click on Employee Selection drop down box. After that he will select "Employees from Organizational Structure". Here organization structure will be displayed. Now the user will expand Org Structure. I want to know the Org Unit of different Organization as the user will go on expanding the Org Structure using the buttons
    Requirement 2
    User will click on Employee Selection drop down box. After that he will select "Employees from Organizational Unit". Now we can see the Go button. I have to write some code on the button. Where I can find the code for the button. I spent lot of time. I am not able to find out the exact place where the view for the button is located.
    Please help.
    Regards,
    Gary

  • Colum Configuration in the Team Viewer iview

    Hi Customizers/Developers,
    We have been running MSS for some time on our portal, and just recently an issue has been raised by our customers. In the upper, right corner in the Team Viewer iview there is an icon leading to a new window where one can add certain information in the Team Viewer column (I think the window/icon is called something like Column Configuration). One of the options here is TO_ATTEND, but we want to remove this option.
    Does anyone know where to change/custimize this?
    I tried to look in the IMG -> integration with other SAP components -> business packages/functional packages -> MSS -> Object and data provider -> Define Columns. But I couldn't figure out quite what to do.
    Have anyone else faced the same issue? What were your experiences?
    Help is highly appreciated!
    Many thanks!
    Regards,
    Stina.

    Stina,
    can you upload a screenshot
    Thanks
    Bala Duvvuri

  • How to find out OrgUnit from the MSS team viewer iview

    Hi Experts,
    Please refer following link:
    https://wiki.sdn.sap.com/wiki/display/profile/HowtoreadinformationfromtheteamviewerinWeb+Dynpro
    Using this link, I am able to find out the perno.
    I have to find out OrgUnit of selected person. I did the mapping. I have also written following code:
    String orgunit = wdContext.currentSelectedOrgUnitElement().getObjid();
    wdComponentAPI.getMessageManager().reportSuccess("You have selected orgunit "+ orgunit);
    However, orgunit value is always null
    Can you please let me know how we can get the orgunit in this case?
    Regards,
    Gary

    Hi Gabriel,
    Requirement 1
    Thanks. I did so. Using this I can see the OrgUnit. However, this is the OrgUnit of MSS user. It remains same through out the program. It is unlike pernr which changes as the user clicks on different Employees.
    My exact requirement is as below:
    User will click on Employee Selection drop down box. After that he will select "Employees from Organizational Structure". Here organization structure will be displayed. Now the user will expand Org Structure. I want to know the Org Unit of different Organization as the user will go on expanding the Org Structure using the buttons
    Requirement 2
    User will click on Employee Selection drop down box. After that he will select "Employees from Organizational Unit". Now we can see the Go button. I have to write some code on the button. Where I can find the code for the button. I spent lot of time. I am not able to find out the exact place where the view for the button is located.
    Please help.
    Regards,
    Gary

  • Webdynpro and eventing from team viewer

    Hi.
    We are trying to add new fields to the MSS "General Data" iView (com.sap.pct.hcm.eeprofilegeneraldata.par) and are considering the following approaches:
    1.) Write additional java code to retrieve the data we need and display it on the iview.
    2.) Create a new iview from scratch using webdynpro.
    At the moment we are leaning towards option 2 as we do not have much java experience and have found webdynpro relatively easy to use. But my question is....how difficult would it be for a webdynpro iview to pick up the eventing from the standard Team Viewer iview? I would want to make sure that when a user clicks an employee on the Team Viewer, his/her data would show up in the new webdynpro iview. Any details on how to go about this would be appreciated.
    Thanks in advance,
    Chris

    Hi Chris
    If you are creating a new  iview from the scratch to display the details you had to have the epcf subscribe function. Here you get the parameter passed from the first iview. For this the raise event have to be fired from the MSS iview. So in the Msssiview You write the code for Raiseevent ON click of the button.
    <b>Event Sending from par</b>
    EPCM.raiseEvent("urn:com.sap.tc.webdynpro.example.reponamespace","linkclickevent",variable);
    <b>
    Event Receving on Webdynpro</b>
    WDPortalEventing.subscribe("urn:com.sap.tc.webdynpro.example.reponamespace","linkclickevent",wdThis.wdGetEpcflistenAction());
    public void onActionepcflisten(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent, java.lang.String dataObject )
        //@@begin onActionepcflisten(ServerEvent)
    //    wdContext.currentContextElement().setName(dataObject);
    //      wdComponentAPI.getMessageManager().reportSuccess("listen eventfired......");
         wdComponentAPI.getMessageManager().reportSuccess("dataobj is....."+dataObject);
        //@@end
    (The variable dataObject cannot be changed to other name)
    Regards
    Geogi

  • Eventing in Portal page between Team Viewer and Custom Webdynpro for ABAP

    We are trying to implement a new Portal page that contains a Team Viewer Iview and a custom Webdynpro for ABAP iview.
    The idea is that the when a manager select one of his direct report in the Team Viewer, the custom Webdynpro for ABAP would pick up the selection_changed event and retrieve the data for the selected employee.
    We followed the instruction provided by SAP in note 1112733 and it worked in our development environment. When we moved the iviews to our testing environment it stopped working.
    I also used the Diagnostic Iviews provided by SAP and I get the same result: Works in Dev, does not work in QA or in Prod.
    We also followed the troubleshooting steps of note 945516 and it still did not help us. We can not find a difference in our system set up.
    We are therefore looking for pointers as to what could be our problem.
    Thanks!
    Edited by: Benoit Fortin on Feb 20, 2009 2:28 PM

    Problem was solved internally:
    The reasons the eventing worked in Dev and not in QA or Prod, was that we had a different level of patch for ESS/MSS between instances, which I was not aware of.
    Dev was on ESS/MSS version 600 SP14 and QA and Prod was on a different level. Once we implemented ESS/MSS SP 14 accross the board, everything was good.
    Edited by: Benoit Fortin on Nov 13, 2009 11:57 AM

  • Reg MSS Team Viewer

    Hi,
      We have implemented MSS 60.1 in Enterprise Portal SR1. We have customized reports for Manager screens in R/3. We published the reports as IAC in EP. My Question is whether we can integrate the customized report with Team Viewer such that manager will select the per no from team viewer iview and IAC view will reload the report for that Per no.
    Thanks in Advance.
    Regards
    Vasudevan Gopalan

    Hi,
    You can probably do it using the PCD page or PCD service options in the Column Definition of  Object & Data Provider in the backend(SIMG_SPORT).
    Good Luck,
    Suresh Datti

  • Team viewer

    i recently started working online and my boss asked me to install Team viewer. i installed as he said, and told him my user id and password as i had no idea regarding the team viewer scams. I logged into the site using his id and password and did the work he told me. there was no activity other than that on my computer which i could see. after that i exit from team viewer and threw it in trash and than empty the trash as well (i told him my concern and he said its fine delete it).... i didnt told him my any other information... is my system in danger? or are any files corrupted or imported during this time? or is it possible he took any of my financial information? and can he still access my computer? thanks...
    urgent response needed...

    Hi Mick,
    The Team Viewer iView has one parameter used for this purpose, "SortCol". In that parameter you can enter the key (ID) of the corresponding column in SAP (after which the list should be sorted). Note that there has been bugs  related to this funciton in older versions of the iViews. 
    BR,
    Markus

  • MSS Team View evaluation path for non chief positions (s-s)

    Hello,
    We have a problem with display of employees under non chief manager - reporting managers (connection A002). In our organization we have line managers and under them team managers who are leading team of employees. Those managers want to see their employees under MSS Team View iView.
    I have checked forum posts and try to create correct evaluation path but i didn't get results yet. I have created 2 evaluation paths:
    Z_MANG (copy of SAP_MANG):
    10 *     B 008      S
    20 S    B 002      S
    30 US  A 208 P
    Z_S-S (copy of MSSDIREC):
    10 S  A 002     S
    20 S  A 008     P
    30 S  A 008     US
    I also included them into rules so:
    Root rule (rule 1) - Z_MANG
    Target rule (rule 3) - Z_S-S
    I have also done customizing under Object and Data provider and if I choose standard evaluation paths (e.g. SAP_MANG and MSSDIREC), I get employees shown - if I give manager a hat (A012 connection).
    Could you please help me with advice, where am I wrong? I think that first evaluation path (Z_MANG) is ok and it finds non chief manager, maybe is a problem with second one that don't show employees?
    Thank you for answers in advance.
    Best regards,
    David

    My first suggestion was either use Bottoms-up approach or top-down dont use both..like either use either of below
    S A 002 Reports (line) or
    S B 002 Is line supervisor
    but figured u will still have depth issues..so therefore
    you cld experiment like below..i understood your requirement, and i am suggesting this totally off-hand thats on top of my head..as i said experiement doing this way..
    say you have four levels  why dont you use different evalutaion path to link them between each level..
    say 1st to 2nd (reports to A002)
          2nd to 3rd (subordinate to A005)
          3rd to 4th/4th to 3rd (Is line supervisor B 002 )etc
    this way you will not have the depth issue as each one is diffeent Ev path..
    ...oops i can see people laughing at this solution..but well..i tried!

  • WebDynpro ABAP + Team viewer integration

    Hi All,
    I have webDynPro ABAP application and a Enterprise Portal 6.0 SP2 with MSS package 6.0 installed on it. As you know there is a teamviewer iview on the left frame of portal and when you click on one person in the team viewer list and event is triggered and the program on the right frame get this trigger and changes its content accordingly. My question is how can the webdynpro abap application get the pernr clicked in the team viewer iview.
    Thanks for replies

    Hi, I have the same issue.
    I need to capture the personal number selected in Team Viewer. Probably a Portal Eventing might be fired, but I need to know if someone knows whats the namespace and the name of that event. Or where can I find these information?
    Thanks

  • Team Viewer Issue

    How do I set up the Team Viewer in MSS?
    I have set up the ODAP, but not sure how to link it to the Team Viewer iView in MSS with the relevant view (MSS_TMV_EE_DIR)?
    Thanks

    Using MSS ERP 2005 on EP 7.0
    I have a requirement to design a page with the Team Viewer iView on the General  Information Page. What I am trying to achieve is that if a manager selects an employee in the Team Viewer the employee profile iViews (General Data and Personal data which are dependent on the pernr that is passed from Team viewer) their information should appear in the same General Information Page.

  • Team Viewer and WebDynpro IView

    Hi all,
    I have a two iViews, the first I use a team viewer and the second a WebDynpro Aplication. I want selected a employee in the team viewer and pass your key in the web dynpro Iview.How can i proceed?
    Thanks
    Ivo

    Thanks Armin!

  • Unable to see the employee photo in team view

    Hey experts, we have been handling with an issue almost two days and still cannot find any solutions, in mss service of homepage the employee photo is not visible as you can see below, i know that there was a thread about the same issue and we did what they told and what the right answer was but still has the same problem, * we run the program that generate the url * all of our reletad service is active * we apply a note (employee photo not updated).
    do we need to nakisa add on to see the photo or anything else that we can do,
    Thanks in advance.
    answers will be rewarded.

    hi ,
    i think ur missing some steps in the note as chk in  se11 > T77TMCPIC_URLS > click on display and do as below ...if u follow as per screen shot below ...wait for some other experts reply on this....
    next click on below button and log off and log -in and refresh the team view in portal

  • Cuatomizing MSS Team Calendar iView on the Portal

    We have installed the ESS And MSS Business package.  But we are unable to access the MSS Team Calendar.
    The error message is:
    No views found: Missing customizing.
    Please advice.  Is there a how to guide?

    Hi Amr Azim
    Please check the below threads for similar issues :
    Team Calendar in MSS: No Views found: Missing customizing
    MSS Team calendar error - No Views found,  Missing Customizing
    For accessing MSS Team calendar iview in the sap portal, you need to check the IGS configurations
    [Internet Graphics Server (IGS) Administration |http://help.sap.com/saphelp_nwpi711/helpdata/en/48/bbe36cd880307ce10000000a42189b/content.htm] , SAP Note 704604, 946153, 1294238.
    Hope it will helps
    Regards
    Arun Jaiswal

  • Team Viewer performance

    Hi,
    Here is my issue:
    When a Managers go into the MSS portal, click on the Team Viewer and select "Peers", they end up in a loop.  When they end the session and go back in,  they are unable to open that Iview(screen).  This happens in all the iviews where they might select PEERS. We have had a work around in place by re-creating their userIDs. 
    Is there another way to clear the manager settings without deleting the userID?
    We also change the view depth to 3 "V_TWPC_V.
    Thanks
    Jean Seguin

    Close

Maybe you are looking for

  • Please make iCal update the date in the dock!!

    If I leave iCal open for several days, the date in the icon on the dock remains unchanged. I have to quit iCal to get the date to update (the current date shows as soon as I quit iCal; I don't even have to restart the application.

  • An out-of-sequence check is not permitted for payroll type B

    We had to  do advance payments for 4 pay periods for an employee through offcycle workbench. One of the checks was wrong so we had to reverse it. It is an out of sequence reversal. Now when i try to do a correction run , it gives me an error An out-o

  • BAPI_PR_CREATE Extension Issue

    Hi I am using BAPI_PR_CREATE to upload Purchase Requisition Create data for ME51n Transaction. Here there is screen Enhancement has been added to ME51n. When Iam uploading data through BAPI_PR_CREATE the below error message is been shown in RETURN st

  • Still can't copy/cut/paste....

    was there actually a manager sitting at the conference table when they decided that us blackberry users didn't need to cut and paste? this is not good!!

  • 1st-Gen iPod charging problems

    I have had a 1st-gen iPod touch since Dec 2008 and really love it. One annoying problem that I have found with it is a charging problem that I think that I have finally nailed down. I use a wall charger to charge my iPod while idle and while I use it