Cannot hide 'Project Subobject' column in CATS regular.

I am trying to hide standard columns from CATS regular (timesheet).
I was successful to hide columns 'Project' and 'Project Description', but column 'Project Subobject' cannot be hidden! it still shows up in ESS.
I do this from IMG Employee Self-Service->service-specific settings->working time->record working time->define field selection->Data Entry Section->Project Subobject (this is field CATSFIELDS-CPR_OBJTEXT).
Any idea why this particular field cannot be made invisible?
T.

Please note that the prerequisite for a field to be hidden on the
data entry screen of transaction CAT2 is that this field have
the button 'Hide' set in transaction CAC2,  in the 'Influencing'
(per profile)
Also check in  the 'Modifiable' (per client) part ie this is global setting for CATS, it can be set as display here but to hide
it you can do as above in 'influenceing'

Similar Messages

  • Input help not showing up for columns in CATS regular application

    I am using standard iView Time Entry in ESS available in EP7 ECC6.0.
    the issue I am having is that there is no popup (input help)  for columns 'Reason Code',  'Region' and 'OT Rsn'. But if I go into ECC6.0 t-code CAT2, the popups are available.
    Any idea what may be causing this issue?
    Tiberiu

    Suresh is right, You need to build your own search help with above table and implement the class
    ie CL_XSS_CAT_VALUE_HELP* in se24

  • Start time/end time columns in the weekly overview of CATS regular

    Hello,
    Does anyone know if it is possible to have the start and end time columns in parallel of the duration column in CATS regular (iView "record working times" in ESS) in the weekly view. Those columns are available in the daily view but we want them in the weekly view. This is possible on the backend but the question remains for the ESS.
    Thanks a lot for your help
    KR
    Gaëlle

    Dear Gaëlle,
    My client have this requirement as well. So have you found your way to configure it?
    Please let me know..
    Thanks in advance
    Regards,
    Bryan

  • Cannot Hide {This App} or Hide Others

    For one of my users on my Powerbook running 10.4.7, I suddenly cannot hide the current app or hide the others because both lines are disabled in all apps, regardless of how many apps are running. When I switch from one app to another, no window of the first is visible when I'm in the second. Preferential Treatment says that I rehave no corruped plists. Applejack reports that everything is OK after booting into single user mode. I can find no item in any plist using PlistEdit Pro that seems related to the problem. Also, the problem does not exist if I logon as another user.
    I've backed up the fubared system and restored another backup. However, since this is the second time this has happened to one of my machines, I'd like to know why it happens and how to fix it with something short of major brain surgery.
    P15" Powerbook G4 1.25 GHz   Mac OS X (10.4.7)  

    Hi, clewis303. Welcome to the Discussions.
    You wrote: "I suddenly cannot hide the current app or hide the others because both lines are disabled in all app"1. Just to confirm, do you mean that the Hide and Hide Others choices in all applications' application menus are unavailable (greyed-out)?
    2. Do the keyboard shortcuts for Hide (Command-H) and Hide Others (Command-Option-H) still work, despite the fact that the menu choices are unavailable?
    3. In the System Preferences > Speech > Text to Speech tab, if "Speak selected text when the key is pressed" is selected (checked), then click "Set Key..." and see if Command-V has been set as the keyboard shortcut. If so, change it: the default is Command-Option-F13.
    4. In the System Preferences > Keyboard & Mouse > Keyboard Shortcuts tab, be sure no keyboard shortcut has been set to ⌘H or ⌘⌥H. If so, either:• Change the shortcut to another: click the value in the Shortcut column, then press the desired keyboard combination for the new shortcut.
    • Click Restore Defaults to reset all shortcuts in the list to their default values.5. An errant Startup or Login Item maybe the cause. My "Troubleshooting Startup and Login Items" FAQ can help you pin that down if such an item is causing the problem.
    6. Are you using an external keyboard with your PowerBook? If so, does the problem occur if you startup without the external keyboard?
    7. Are you using any third-party software for defining your own keyboard shortcuts? If so, see if this has redefined or disabled the shortcuts.
    8. One of the applications you use regularly may be redefining these keyboard shortcuts or otherwise prohibiting their use. I suggest troubleshooting your regular, particularly third-party (non-Apple) apps by process of elimination to see if one of them is causing the problem.
    9. If none of the above, after pressing Command-H or Command-Option-H fails to operate correctly, check the ends of these Console logs for clues.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Running a J2EE project on WAS at a regular interval

    I am going create a EJB project to poll (or check) any change in a DB and do some business logic or mapping everytime when the DB is changed. So, my question is how I can configure this project to run at a regular interval, says 5 mins?
    Since my WebSphere is running on J2EE 1.3 so I cannot use Timer approach which is available on EJB running on J2EE 1.4.
    Also, no client is needed to invoke the program, meaning that there is no client to call the remote interface of EJB

    Ok, you have your servlet defined, but now you should map it using mapping tags. Try editing your web.xml file as follows (adding mapping):
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.4" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
      <display-name>EmpDtlsWarDisp</display-name>
      <servlet>
        <display-name>EmpDtlsWebDisp</display-name>
        <servlet-name>EmpDtlsWebComp</servlet-name>
        <servlet-class>tshot.EmpDtls</servlet-class>
      </servlet>
      <servlet-mapping>
        <servlet-name>EmpDtlsWebComp</servlet-name>
        <url-pattern>/EmpDtls</url-pattern>
      </servlet-mapping>
    </web-app>Note the adding of "tshot." in front of your EmpDtls in your servlet-class tag.
    This means you need to create a directory in your src location called "tshot", move your EmpDtls.java into the new directory, and then edit that java file, placing the following line at the top of it:
    package tshot;Once you have re-built and re-deployed this you should be able to access your servlet at:
    http://localhost:8080/EmpDtlsCx/EmpDtls
    Refactoring is a term used to mean you've decided to change the name of a variable, method or some alteration of your java file such as changing package names (or adding to a package in this case) whereby the results may or may not affect other classes which depend on this class. Typically, nowadays refactoring is usually done by selecting a refactoring command from a menu item or button within an IDE (Integrated Development Environment) whereby the IDE performs all of the dependancy checking for you and copies the change to affected areas where necessary. Thus, all you need to do is choose the right refactoring operation and click "Ok" in most cases. In the old days, you would have to keep track of all affected areas and manually edit where necessary, based on your imposed change.

  • OBIEE - How to selectively hide or disable columns on a dashboard prompt?

    Hello! I need some help with OBIEE dashboard Prompts. Any help will be highly appreciated!
    Question 1. How to selectively hide or disable columns on a dashboard prompt or the entire prompt? There seems to be no "hide" or "dsable" options on
    prompts.
    Question 2. How to synchronize 2 different prompts on the same dashboard?
    The application is this: There are total of 2 tabs on a dashboard ("tab_1" and "tab_2"). Each tab uses different prompts ("pr_1" and "pr_2"), having just one first drop down column in common ("Product_id").
    The desired functionality is this: user selects "Product_id" on the first tab's prompt, which filters its reports (on "Go") and also propagates to the second tab. When user clicks on the second tab, the reports there are already filtered (or begin filtering) by "product_id", selected on the first tab.
    Question 3. How to prevent the reports from retrieving when switching to a different tab on a dshboard? Specifying dummy default values in the prompt does
    not seem to preven reports from retrieving, which still takes time.
    Thank you very much!
    Roger

    Regarding Question 2:
    What you need to have is a Dashboard scope dashboard prompt for Product_ID (i.e., Don't use the column prompt from the prompt tab within the Request.)
    1) Create the dashboard prompt, put it on tab1 and save the prompt to a presentation variable, say prmtProdID. Set the scope to "dashboard." (This is the default, by the way.) If you create a dashboard prompt and set the scope to "dashboard," then the prompt values selected will hold true across dashboard pages.
    2) On tab2, go to your report and in Criteria mode, apply a filter to the Product_ID column making it equal to the PV. (Click the filter icon, Add>Variable>Presentation Variable and type prmtProdID. Save.)
    When the user selects a Product_ID on tab1 of your dashboard and hits "Go," not only will it filter your report on tab1, when you go to tab2 the report here will be filtered with the same value selected in the prompt on tab2.
    Regarding Question 3:
    If you implement 2, you cannot implement 3. You can't have it both ways. Not for the same scenario. But if you want to know how to do it in general, read this:
    http://obieeone.com/2009/08/24/how-to-stop-queries-to-automatically-fire-off-once-entering-dashboarddashboard-page/

  • Report Painter - cannot hide an element selected for the drill-down report

    Dear Experts
    I am using report painter to modify a report by trying to hide a row but getting the following error.
    You cannot hide an element that you selected for the drill-down list
    Message no. K7186
    Diagnosis
    You cannot hide elements that have already been selected for the drill-d
    System Response
    The function was canceled.
    Procedure
    Deselect the relevant row or column from the drill-down list.
    It says to deselect the relevant row from the drill-down list, but not able to find out how do i do it.
    kindly please help me to solve it
    thanks in advance
    Suresh

    Hi,
    If you are asking me whether i am trying to hide the row in the report painter form or in the output of the report, then, yes i am trying it in the report painter.
    I copied this standard form  '0SAPRATIO-01' for Cash Flow statements-Indirect method(tcode FSI5) and trying to modify the copied one. I tried to hide an existing row but it gave me the above message.
    any help?
    Suresh
    Edited by: rasuresh on Aug 10, 2010 12:44 PM

  • ESS & MSS - CATS regular/Record Working Time (Web Dynpro)

    Hello,
    SAP Library help (http://help.sap.com/saphelp_nw70/helpdata/en/ef/e18d3f7057eb0ce10000000a114084/frameset.htm) says the following:
    Compared with CATS classic, the following constraints exist for this Web application:
    Since CATS regular is an Employee Self-Service application, time administrators or data entry personnel cannot recording working time data.
    Is there any workaround to solve it? I mean, we need to recording working time data centrally through ESS or MSS. That's possible? Any enhacement for that? No matter where to do it (ESS or MSS).
    Thanks!
    Miguel Angel.

    Hi Jigar,
    That's almost exactly the requirement we need to implement!
    Basically we need:
    a. The employees with computer will record their own working times via ESS
    b. For the employees without computer, their working times will be recorded via MSS by:
    1. their org unit superior OR
    2. someone like a time administrator defined in a custom list containing "employees for the time administrator".
    I mean, someone called "time administrator" will record working time for a determined numbers of employees, but this "time administrator" is not the org unit superior. It's possible?? This is the mostly case.
    Other requirements:
    - Default time sheets and target hours for employees (for each employee the corresponding time sheet and target hours)
    Thanks!!
    Miguel Angel.

  • Cannot open project: the folder for this project cannot be found cs4

    I am using Encore CS4  and I get the error "cannot open project: the folder for this project cannot be found"
    Having searched the forums I can not find a solution for when the project folder has been deleted.
    Can someone tell me the solution to this issue.

    If you deleted the Encore directory, you cannot fix this.  You'll have to start over.
    Encore creates this folder structure:
    Root or some other Folder
    MyProject.ncor (the Encore project FILE)
    MyProject (the Encore project directory)
    Other Folders for the Encore project (e.g. Cache, Sources)
    You can get the "the folder for this project cannot be found"  in various ways.
    There have been two recent threads in which the user, by accident or on purpose, changed the folder location or name.  You can fix this by renaming the folder correctly or moving it back (or moving the Encore project file to the correct relative position).
    Folder was renamed.  If you name the folder "MyProjectX" Instead of "MyProject," the project file "MyProject.ncor" can't find it.
    Encore project file was moved - or Encore directories were moved.  If you move "MyProject.ncor" to some other directory or drive (including inside the folder "MyProject"), it can't find the directory - it is looking one directory level below where the project file is located.
    If you delete the Encore project directories, the stuff that Encore uses that projects menus, motion, etc, are gone.  While many of its instructions are inside the project file itself, many are not.  Some of the deleted material might be recreated (e.g. trying to fake Encore into accepting a copy of a menu), but most cannot.

  • I cannot export projects from GB in my MacBook into GB on my iPad3; nor can I export from IPad to my MacBook. I have tried going onto Apps update on the MacBook, but there were none available. I have read that this omission is to be corrected - can you co

    I cannot export projects from GB in my MacBook into GB on my iPad3; nor can I export from IPad to my MacBook. I have tried going onto Apps update on the MacBook, but there were none available. I have read that this omission is to be corrected - can you confirm this is intended to happen, or is it already in process. While awaiting for this essential development, can you please suggest any way of transferring information either way?

    spicer_the_coalman wrote:
    I cannot export projects from GB in my MacBook into GB on my iPad3
    http://www.bulletsandbones.com/GB/GBFAQ.html#exportgbxtogbi
    (Let the page FULLY load. The link to your answer is at the top of your screen)
    spicer_the_coalman wrote:
    nor can I export from IPad to my MacBook.
    http://www.bulletsandbones.com/GB/GBFAQ.html#exportgbitogbx
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • Error when submitting time in CATS regular

    when trying to submit time in CATS regular (ESS Time Entry standard application) I get the following error:
    "Personnel number 00090339 does not exist or you do not have authorization
      Erroneous records exist. Navigation is not possible "
    any idea what might be the issue?
    Portal user exists in ECC6 and is assigned to employee 90339 in infotype 105.
    Portal user has the standard SAP employee role assigned in ECC6.
    T

    Tiberiu,
    check the dump in st22 and check the authorisations for the user
    Thanks
    Bala Duvvuri

  • Getting error message "cannot prepare project for publishing (-50) -- and it wont publish my project. What's up?!

    getting error message "cannot prepare project for publishing (-50)" and, subsequently, it won't publish the bloody thing. I have publsihed many videos previous to this one so I have no idea waht is going on.
    So, my question is -- WHAT IS GOING ON?!!

    Hi
    See if this might help
    Error -50
    Error -50   paramErr  Error in user parameter list
    Can there be any external hard disks - if so How is/are it/they formatted ? Must be Mac OS Extended (hfs) if used for Video.
    UNIX/DOS/FAT32/Mac OS Exchange - works for most but not for VIDEO.
    What this means in Your situation is above me.
    • free space on internal boot hard disk? How much ?
    Pictures
    • in what format ? .jpg, .bmp, .tif, else ?
    Audio
    • from where/what format ? iTunes, .avi, .mp3, .aiff, else ?
    The "com.apple.iMovie.plist" file
    Many users has not observed that there are TWO libraries.
    • Library - at root level
    • Library - in user/account folder - THIS IS THE ONE to look into
    from Luke Burns
    I fixed the problem.. but it was very, very strange. I had a very long section for credits and set the line spacing to 1.0.. for some reason this caused it. I removed it, and it worked fine. I put it back, and I couldn't preview or play the video.
    I don't know why that could cause that big of a problem, but it did..
    Yours Bengt W

  • How to Hide a entire column in a Table Control?

    Can we hide an entire column in a Table control? Plz give some hints in doing the same...

    Here is a sample, if you wish to do it programattically.   If you used the table control wizard, then you should have a module which is listed in the flow logic PBO of the screen.  Its probably commented out.
    itabcon_change_col_attr
    Uncomment it and create the module.  Then put the code that I have in the module below into your module.
    report zrich_0003 .
    *&spwizard: declaration of tablecontrol 'ITABCON' itself
    controls: itabcon type tableview using screen 0100.
    data: begin of itab occurs 0,
          fld1 type c,
          fld2 type c,
          end of itab.
    start-of-selection.
      call screen 100.
    *&      Module  STATUS_0100  OUTPUT
    *       text
    module status_0100 output.
    *  SET PF-STATUS 'xxxxxxxx'.
    *  SET TITLEBAR 'xxx'.
    endmodule.                
    *&      Module  ITABCON_change_col_attr  OUTPUT
    *       text
    module itabcon_change_col_attr output.
    <b>  data: wa like line of itabcon-cols.
      loop at itabcon-cols into wa.
        if wa-screen-name = 'ITAB-FLD2'.
          wa-invisible = '1'.
          modify itabcon-cols from wa.
        endif.
      endloop.</b>
    endmodule.               
    Regards,
    Rich Heilman

  • I cannot edit project in project server after editing it in project professional

    Hi
    i cannot edit project in project server 2013 after editing it in project professional.
    i.e I created an enterprise project in project server and then edit it with project professional. after i published it to the server and open it with project server, it shows the changes. but when i click on a cell, suddenly the task list and gantt table
    hidden!!
    it happens even if I start a project with project professional.
    I'm the admin user.
    what's the problem?
    Thanks.

    CU means cumulative updates, which are intermediate bug fix packages between SP. The latest CU for Project 2013 was release on September 12th. See reference
    here.
    Can you try to reproduce the bug with
    IE in compatibility mode?
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • How do I hide a table column

    Hi,
    I'm trying to create a link column in a table by declaring one column as link type and set its linkColumnKey to another column which contains the actual text of the http URL. I'd like to hide the second column in the table. How do I do that? One of the posts I found said that I can set the column type to USER and an empty title, then the column won't be displayed since I don't have a renderer. However, the column still gets displayed.
    Any help would be appreciated.
    Thanks,
    Jenny

    Try this
    this.model.getColumn("col1").setType(TableColumnType.LINK);
              this.model.getColumn("col1").setLinkClickTarget("_blank"); //to open in new win
              this.model.getColumn("col1 Opportunities").setLinkColumnKey("col2");

Maybe you are looking for

  • How Can I Consolidate My iTunes Account?

    When I first tried to link my Apple TV to iTunes Match (when it first appeared in the UK), I could not do it with my iTunes account, even though I had signed up to it. Upon scouring the Apple forum, I learned that a few people were having the same pr

  • Unable to authenticate users using Custom plugins in OAM 11g

    We are working on a requirement in which we have to write a custom authentication plugin in OAM 11g. we were able to import and activate the plugin we created a new authentication module with steps in the following order 1)UserIdentificationPlugin 2)

  • Iphone 4s Purchased in USA is not supporting after IOS 8.0

    I have brought unlocked Iphone 4s from US, two year before. I have inserted a SIM AIRCEL, Vodafone, Idea same was working fine. But 15days before when I have received update for IOS 8.0. I have updated same IOS but now i am not able to receive any se

  • No image when click on "show photo settings"

    So...I've added all of my pics into an iMovie file, but for some reason, with this particular movie, I can't edit my photos once I click on "show photo settings". It's just a black screen but the cursor still runs across for the ken burns effect... a

  • How to execute only once the *copy* about LRF1 tcode ?

    Hi Experts ! I duplicated the LRF1 tcode by ZLRF1 tcode with the main program SAPLZLRFMON (please see below). I have an issue with the execution about the ZRLF1 tcode, normally the LRF1 tcode can be execute only once under the same warehouse number,