Reg Timesheet Display restriction

Hi
I want to restrict users to see only their Timesheet not others How to Handle this issue In our case They are using PersonnelNo and i want whenever user enters CAT2 by default PersonnelNo should come there should not be an alternative selection for this in Timesheet initial screen As i am new to SAP any one help me to solve this problem
Regards

Hi Karthik,
the select-option should be refreshed in AT SELECTION-SCREEN OUTPUT. event then it will remove the color.
try like this.
DATA: l_v_flag TYPE flag VALUE 'X'.
SELECT-OPTIONS: so_order FOR aufk-auart.
AT SELECTION-SCREEN OUTPUT.
   IF l_v_flag IS INITIAL.
     REFRESH: so_order[].
   ENDIF.
  START-OF-SELECTION.
** Validate if so_order should be refreshed if yes clear the flag. and then in AT SELECTION-SCREEN OUTPUT the select option will be refreshed.
   clear l_v_flag.

Similar Messages

  • End User - ESS Timesheet Display Issue

    Hi All,
    Hopefully I have posted this in the correct forum. I tried to search of the issue I have for an end user but had no success, so I thought since my post graduate study surrounds ERP systems and work with SAP every day, I though it was best to register.
    Now the issue I have here is, when the user goes into their portal ESS to view their timesheets, the display is unsual. They do not have an option to manually go back to previous weeks and the view of their timesheet is 'squashed' in (Timesheet Entry View) but if you scroll across to the right where the date and 'go to' function is, it has been cut off. There are no issues with any other users so it appears to be a local issue
    Currently, I have reverted back to IE7, checked for any add on's that may cause display issues, I have checked their roles and everything is normal. The only issue I can see is some conflicting issues is with the Browser and SAP.
    Any help will be appreciated.
    Edited by: A_Ali_ on Jul 19, 2011 1:05 AM

    Check the configuration setting for the profile that's being used by ESS. As this is where you can restrict user's ability to navigate forward and back from current week etc.
    Cheers,
    Brad

  • FBl3N Display Restriction

    Hi all,
    As we know In FBL3N report displays Line item wise details.
    when i click partcular line item it will displays respective line details.But i dont want to see respective line items details,i want to restrict that how can i achive in this regard.

    Do you want this for a specific account(s) or should the choice of transaction be the headers and balances only, without the ability to drill down into the document?
    Cheers,
    Julius

  • FB03 display restrictions by using corporate group field of Vendor master

    We had new requirement for the FB03 Transaction display.
    1>     In vendor master data we are assigning the Secure and non-secure for the corporate account group field. Based on the Secure and non-secure, we have to restrict the FB03 transaction display.
    2>     If itu2019s secure vendor, then no one should have authorization to display the documents belongs to these vendors of any transactions (Fb03 or FBL1N).
    So based on this criteria we need to restrict the display for FB03 transaction.
    thanks and regards
    Prathap

    Hello Pratap
    Please seek help from your SAP BASIS
    How it works is
    1. You have a T code
    2. You see which roles use it
    3.  Then accordingly you can tag that role to the User
    4. Moreover when basis works they check in SUIM t code as to which roles the T code is tagged to and then they go ahead and assign the same to the user
    5. There is another t code PFCG where they create z roles as well since standard roles are not used by them. And in this t code the authorisation objects are handled as well and profiles and roles are created. This is then tagged to a user.
    6. then this authorisation is visible in SU01 in the user
    Thanks and Regards

  • SMQ1,SMQ2 display restriction

    dear experts
    In SRM i would like to restict transactions SMQ1,SMQ2 to display only,i have searched in su24,one object common to both is S_ADMI_FCD with field S_ADMI_FCD and value NADM(Network administration using trans. SM54, SM55, and SM58),what values shall i provide to restrict to display

    >
    Nishant Sourabh wrote:
    > Add t-code SMQ1 and SMQ2 ..but make S_ADMI_FCD with value NADM inactive and check. As you make the S_ADMI_FCD object inactive, you will not see the delete icon.
    this is correct and works.

  • Query - Fiscalyear/period - Display - Restricted KF

    Hello Guys,
    I have a requirement from the users like they will be entering the fiscal period/fiscal year in the selection screen
    for example:
    FisPer/Fis Year ---> 001/2009 to 006/2009
    in the output I have a keyfigure called for example ZKEYFIG
    it has to display like this
    profit center                         001/2009    0002/2009   0003/2009  Q1  004/09 005/2009 006/2009 Q2
    My question how to calculate the quarter.
    Do I have to write the code in the userexit.
    Please let me know .Thanks in advance for your help.
    Senthil

    No you don't need to write a Code assuming you have period column in your Infoprovider, if you make a small change / or you have a to write a small code.
    NO Code needed :  If Period and Year are entered separately in the selection screen
    Create a Restricted key figure and use this Year field variable as restriction-1
    Restriction two will be a constant - Period1, Period2 and Period 3
    Name this Q1
    Similarly make 3 other restricted key figures for Q2, Q3 and Q4
    Small Code needed if you don't have year separately
    Calculate year and store that in a variable from your Selection and then use same method as explained above.

  • Displaying Restricted Key Figure Based on Fiscal Year

    I'll try and explain my problem.
    We have created a query using the CCA cube. We created 3 restricted key figures each with a different budget plan version. They are called 'AB' ,'PB' and 'RB'. When the user runs the query it will show planned values out for 5 years. So for example right now we are in Fiscal year 2006.
    The problem is that 'AB' is only valid for year 2006, 'RB' may only me valid for 2007 and 'RB' may only be valid for 2008 - 2010. They use a different plan version for different years, If I place all three columns on the report I get zeros when the plans are not valid. Here is what I would like: When the fiscal year changes somehow select the correct restricted key figure to show and also adjust the text to reflect the fiscal year.
    Its like my variables are dependent on the fiscal year displayed.
    Any help would be great.
    Rick

    Hi Richard,
    Have you tried out the Suppressing Zeros options in query properties...if the whole column is blank for a particular year, you should be able to suppress it. Click here for more info:
    http://help.sap.com/saphelp_nw04/helpdata/en/1e/99ea3bd7896f58e10000000a11402f/content.htm
    You can use text variables in the RKF description to reflect the year for which the data is being displayed.
    Hope this helps...

  • Reg dynamically displaying records from database into a jsp page

    I am working in a project which is using struts and hibernate.In a class I gave code for retrieving data from a table and I put it in a list.
    List retrieveList;
    public List getRetrieveList() {
    String SQL_QUERY ="from student s";
    Query query = session.createQuery(SQL_QUERY);
    retrieveList = query.list();
    return retrieveList;
    public void setRetrieveList(List retrieveList) {
    this.retrieveList = retrieveList;
    And this list value I want to be displayed in a jsp page.What I have given is :
    <jsp:useBean id="records" class="StudentImpl" scope="session" />
    <bean:define id="list" name="records" property="retrieveList" />
    <table align="center" bordercolor="black" cellpadding="10" cellspacing="10">
    <logic:iterate id="data" name="list" type="pojo.student" indexId="index">
    <tr>
    <td><html:multibox property="checked" value=""></html:multibox></td>
    <td><bean:write name="data" property="studentname" /></td>
    <td><bean:write name="data" property="age" /></td>
    </tr>
    </logic:iterate>
    </table>
    When I run my jsp page its showing an error
    org.apache.jasper.JasperException: [Ljava.lang.Object; cannot be cast to pojo.Student
    can anyone resolve this problem?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    ya i got through criteria query.
    Transaction tx = session.beginTransaction();
              try{
                   Criteria query = session.createCriteria(Student.class);
                   list = (ArrayList)query.list();
                   tx.commit();
                   setRetrieveList(list);
                   session.close();
              catch(Exception e){
                   System.out.println(e);
              }

  • Display restriction in AdvancedDataGrid

    Hi All,
    I am using AdvancedDataGrid for displaying information. I set
    "variableRowHeight= true", so I cannot set the rowCount property I
    guess.
    Now my Grid is displaying information beyond the pageheight
    ie., its adding number of rows as many as possible. But what I
    actually want is that, before displaying each row int he grid, it
    should check whether the new row is having enough display area left
    in the screen to accommodate, then only it should add the row and
    display the information.
    so kindly give your suggestion to acheive that.
    Thanks
    Suren

    Adobe Newsbot hopes that the following resources helps you.
    NewsBot is experimental and any feedback (reply to this post) on
    its utility will be appreciated:
    Flex 3 - Creating inline item renderers and editors:
    assets/brighten.jpg'} ]); ]]> </mx:Script>
    <mx:DataGrid id='myGrid' dataProvider='{initDG}'
    variableRowHeight='true'> <mx:columns>
    <mx:DataGridColumn
    Link:
    http://livedocs.adobe.com/flex/3/html/cellrenderer_6.html
    Tag Archive for datagrid.variablerowheight at Flex Examples:
    Tag Archive for 'datagrid.variablerowheight' ... One of my
    favorite Flex components is the the trusty DataGrid. It seems
    whenever I build some sort of
    Link:
    http://blog.flexexamples.com/tag/datagrid.variablerowheight/
    Flex 3 - List control:
    Note: To use DataTips with a DataGrid control, you must set
    the ... The following example sets the variableRowHeight property
    for a List control to true :
    Link:
    http://livedocs.adobe.com/flex/3/html/dpcontrols_2.html
    Tag Archive for variablerowheight at Flex Examples:
    The following example shows how you can use the Flex TextArea
    control as a drop-in item editor to allow you to easily edit the
    items in a DataGrid control.
    Link:
    http://blog.flexexamples.com/tag/variablerowheight/
    mx.controls.DataGrid (Flex 3):
    The DataGrid width is sized to fit the width of all columns,
    if possible. The default number of displayed rows, including the
    header is 7, and each row,
    Link:
    http://livedocs.adobe.com/flex/3/langref/mx/controls/DataGrid.html
    Flex Monkey Patches variablerowheight:
    Tags: atagrid, datagrid-row, Flex, variablerowheight Posted
    in: Uncategorized. What if you have a datagrid that is only going
    to have a few rows of data,
    Link:
    http://blog.flexmonkeypatches.com/tag/variablerowheight/
    Disclaimer: This response is generated automatically by the
    Adobe NewsBot based on Adobe
    Community
    Engine.

  • Reg. Display of Output exceeds 255 characters as spool list

    Dear Experts,
    My requirement is that i need to display output that exceeds 255 characters in length as spool list. How should i achieve it?
    Regards,
    Ramesh Manoharan

    Hello,
    Following SAP Notes can also help you :
    [https://service.sap.com/sap/support/notes/1226758|https://service.sap.com/sap/support/notes/1226758]
    [https://service.sap.com/sap/support/notes/1174095|https://service.sap.com/sap/support/notes/1174095]
    Wim

  • Reg : Heading display in Adobe Forms

    I have Created an appln using Adobe Forms.
    In Body Pages Data is displayed with Heading. I have given Flowed Option for mulitple pages display.I want the Heading
    to be reflected in all the body pages.
    I  don't want to display it in Master Page bcos I am displaying some text in first body pages continued by the table.
    Any option is there for getting Heading in all the Table display pages only. Thnks in advance...

    Hi
        Go to the Table in the body page  -> then select the Header row only -> right click on the header  row -> Go to Palletes -> Object -> Under pagination tab -> Check the check box Include Header Row in Subsequent Pages .
    Then save and active it. Try this one. I think it will solve your problem.
    Thanks
    Sriiiiiiiiiiii(Srikanth)

  • Reg:Rows display in Table Control

    Dear All,
             I created a Table Control which is displaying 30 rows in the initial screen.But my requirement is to display up to 200 rows in
    the initial screen itself how can it be done??

    Try to change the Vis Length column of the table control....
    All you can do is make the Table Control visible to the entire screen....it will display the number of rows which it can in the that screen....
    Rest will be availabe via vertical and horizontal scroll bars.

  • Reg : Icon display in PDF

    Hi all
    Im displaying icon in list display.. Its working fine .
    Im just Conveting my list display into  PDF using CONVERT_ABAPSPOOLJOB_2_PDF
    After Converted in to  PDF my  icon is not displaying in that  PDF
    For Exapmle its displaing only ICON-ID like '@02@'  not icon
    How to solve this issue
    kindly help.
    Regards
    sri

    Hi,
    Check the printer settings .
    May be you can use "RSTS_GET_ATTRIBUTES".
    Regards,
    Sandeep

  • Company Code-Timesheet Entry Restriction

    Hi!
    The timesheet entry of a resource working within a company code & cost center should not be able enter into the WBS Element or Project ID belonging to another company code. How to set this in configuration?
    Bekele

    Hi,
       You need stop cross company code transaction which is done at Controlling area level setting and also you need to see whether inter company code transaction at OBYA has been allowed or not. Kindly get the help of your FI/CO person.
    Regards
    Avisek Bhardwaj
    Edited by: A Bhardwaj on Sep 25, 2009 12:29 PM

  • Keychain displays restricted access message when I try to view passwords in both login and iCloud

    If I try to view a password for either an application or website using Keychain. As soon as I tick the box 'show password' a message pops up saying "Access to this item is restricted" How can I access and view my passwords?

    Maybe:
    Keychain password access is denied.  Any suggestions?  Thanks
    Re: Keychain Access

Maybe you are looking for

  • GR/GI print form

    Hi Experts, My client is using same SAP system for multiple countries. One of the country was already using WE03,WA03 output types for GR/GI form printing. Now another country wants new format for GR/GI print form. Can i use WE01/WE02 , WA01/WA02 for

  • Maintenance Charges in Plant Maintenance Module

    HI Experts, I want to prepare a report which gives the utilization charges(IW31) for a particular Vehicle for a given period of time.Can any one suggest in which table Cost Element,Total Plan Cost and Total actual costs are stored while preparing Mai

  • Oracle for HP UX - which version to download?

    I am going to test a 2-processor, Itanium server with HP UX 11i v2 (11.23) in order to see if I will buy it or not. So, I would like to download an Oracle 9i to test with this box. I can see 2 versions at the download center: Oracle9i for HP-UX/IA64

  • Flash player 11.6 r602

    I had this installed on my computer when I bought it back in 2008, and it has stopped working. What is it for, and how do I get it to work again?

  • Video plays with no audio in Keynote

    [FOLKS: please disregard this question. I couldn't find the answer I needed when I searched which is why I posted. However, after posting, the "related questions" actually had one that fixed it. For future reference, it's this one. Thanks anyway.] I