CAT2 multiple person data entry and worklist

Hello everybody,
For our users we have created a multiple person data entry profile and everything is working fine. hours for multiple people can now be entered in CAT2. However, our users are now stating a new request: They would like to see the worklist aswell (just like with single person hour entry).
When trying to customize the data entry profile and making the setting for showing the worklist, SAP shows the message that multiple person and worklist are mutually exclusive, so not posible.
However, the request from our users doesn't seem that strange. Would anyone of you know a way to combine the worklist with multiple person hour entry?
Thanks in advance for your advice.
Peter Hageman

hi
As per the message frm SAP , standard way would not be possible , you may think of a enhancement for this.
Regards
sameer

Similar Messages

  • Multiple page data entry form

    Hello,
    I need to build a multiple page data entry screen for users
    to enter information into the DB table. There are many fields I
    need to capture and store in a table. Some of the fields are multi
    line text field for the users to enter a few lines of text in a
    textbox. But right now, I wasn’t sure which approach I should
    take.
    1. Use session variables to capture the data as the users are
    completing the multiple page data entry then store all the values
    at the end when the user finish entering all the data.
    2. Create a temporary table in a DB to capture the data until
    the user is finished then store the values in the temporary table
    back to the real table.
    I hope someone can provide me with some suggestions on this.
    Thank you in advance for any assistance.

    It depends on how you want to handle:
    User fills out first couple of pages only. He may or may not
    come back.
    User fills out a couple of pages and then uses browser to go
    back to page 1, which he changes and resubmits.

  • I have an iMac and the latest Firefox; however, I *can't* get auto-fill to work...I do a lot of repetitive data entry and auto-fill/auto-complete IS NOT WORKING

    I downloaded the auto-fill app for firefox (latest version) and have the latest firefox version, yet none of the autofill works whenever i do it once.
    i've even restarted firefox, shut down my iMac for a while, started firefox up again, nothing.
    i do A LOT of repetitive data entry and this is getting frustrating for me to work from home.
    help, please! *thanks in advance!*

    We apologize that you are experiencing issues with some Firefox feature.
    When typing in a text field, does is drop-down list appear when typing?
    If not, please '''try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • Extending DataFinder to include Non-Data Entries and Relationships Between Entries

    I am trying to create custom data centralization and management software for our lab with DataFinder Toolkit.  In addition to storing data from data acquisitions, I want to be able to store additional information with the data such as images, pdf files, word documents that can be easily accessed after finding the data.  My current idea is to handle external files by storing the filepath in a property of an object vs trying to store the data itself in the datafinder database.  My code would know how to open these files so the user can see them with external software or a custom labview app.
    I also want to be able to store non-data objects such as an object that describes a piece of test equipment or a sample through properties and external files.  Images and documents are again important here.  And then create relationships through unique barcoded IDs that are a property in the datafinder entry.  So not only could I look at the data, I could find information about the samples and lab equipment. Or anything else we think needs to be saved.
    The code I am writing around DataFinder would be in charge of maintaining the unique IDs and know how the relationships between those IDs work to generate the proper queries. Like a 'Get Test Equipment Used' button next to a search result.
    For the external non-data objects I was going to use Labview code to create a file with all the information about the object (unique ID, properties and external file paths) and create a plug-in so the datafinder will index the file and make it searchable.
    Does this seem reasonable? I like the idea of working with one system and having everything update based on adding, deleting and modifying files in a folder. Also, I like the idea of not splitting the data management up into multiple technologies and having to make those work together.
    Solved!
    Go to Solution.

    From the description, you've given the system seems plausible. The non-data elements you discussed when broken down are just additional data to associate with an object.  Storing file paths seems plausible as done in the community example below:
    Execute String/Numeric Querry Using Data Finder Toolkit
    https://decibel.ni.com/content/docs/DOC-10631
    Regards,
    Isaac S.
    Regards,
    Isaac S.
    Applications Engineer
    National Instruments

  • Open data slice for data entry and close afterwards

    Dear all,
    I have created one data slice for a characteristic combination country xy in order to prevent the data entry within the data entry query for the user. But for some reason I have to run a planning function in order to summarize some values and write a total value in the characteristic e.g. country xy.
    The planning function brings out an error message because this can not be executed due to the fact that this combination is protected.
    Is there a way to open the data slice before the planning function is writing the data in the cube? I have tried to to this in the Data slice exit, but I do not have an idea how to open the DS, save the data and close the DS again.
    We are running NW BI 7.0. Any ideas would be great.
    Best regards,
    Stefan from Munich/Germany

    I did something like this by creating an FM and calling that FM from a FOX function. I think you will have to use three commands to execute three functions one after the other (and not combine them in one planning sequence) - first one will switch off the data slice, next will be your planning function containing the logic, and the last will switch it back on.
    The FM would be something like below:
    FUNCTION Z_SWITCH_DSLICE.
    *"*"Local Interface:
    *"  IMPORTING
    *"     REFERENCE(I_INFOPROV) TYPE  RSINFOPROV
    *"     REFERENCE(I_DSNR) TYPE  RSPLS_DSNR
    *"     REFERENCE(I_STATUS) TYPE  I
    *** This function imports the name of a real-time Infoprovider and a Data Slice number
    ***        and a parameter I_STATUS. If I_STATUS is 1, data slice is activated
    ***        If I_STATUS is -1, data slice is de-activated
    data wa_ds type rspls_ds.
    select single * from rspls_ds
            into wa_ds
            where infoprov = I_INFOPROV
              AND objvers = 'A'
              AND dsnr = I_DSNR.
    if I_status = 1.
       wa_ds-used = 'X'.
    elseif I_status = -1.
       wa_ds-used = ''.
    endif.
    update rspls_ds from wa_ds.
    ENDFUNCTION.
    The Fox code will be like below -
    CALL FUNCTION Z_SWITCH_DSLICE
        EXPORTING
           I_INFOPROV = <infoprov name>
           I_DSNR = <Data Slice Number>
           I_STATUS = <0 or 1>.

  • How to use the same variable value for data entry and the planning sequence

    Hi,
    the scenario is the following:
    Using the WAD template a user enters cost center plan data. The cost center is selected by the chosen value for the variable "V1".
    Afterwards he shall push a button which starts a planning sequence (including saving the data and further functions). This planning sequence uses a filter that also contains the variable "V1".
    What or where has it to be defined that the planning sequence uses automatically the same value for the variable "V1" as selected for the data entry?

    You have to define in the planning function. The planning sequence is only a sequence and it read the planning functions underneath it.
    Ravi Thothadri

  • How to Sort JTable data using Multiple fields (Date, time and string)

    I have to fill the JTable data with some date, time and string values. for example my table data looks like this:
    "1998/12/14","15:14:38","Unicorn1","row1"
    "1998/12/14","15:14:39","Unicorn2","row2"
    "1998/12/14","15:14:40","Unicorn4","row3"
    "1998/12/17","12:14:12","Unicorn4","row6"
    Now the Sorted Table should be in the following way:
    "1998/12/17","12:14:12","Unicorn4","row6"
    "1998/12/14","15:14:40","Unicorn4","row3"
    "1998/12/14","15:14:39","Unicorn2","row2"
    "1998/12/14","15:14:38","Unicorn1","row1"
    ie First Date field should be sorted, if 2 date fields are same then sort based on time. if date and time fields are same then need to be sorted on String field.
    So if any one worked on this please throw some light on how to proceed. I know how to sort based on single column.
    But now i need to sort on multiple columns.So what is code change in the Comparater class.
    Thanks in advance.. This is urgent....

    I think your Schedule objects should implement Comparable. Then you can sort your linked list using the Collections.sort() method without passing in a Comparator.class Schedule(Date date, String class) implements Comparable
      public void compareTo(Object obj)
        Schedule other = (Schedule)obj;
        return date.getTime() - other.getDate().getTime();
    }

  • First data entry and First consolidation

    If I start new BCS system, will the Period and year of First data entry be the year and period of First consolidation?
    I thinkt that it is not possible to track the Change of stockholder's equities in subsidiary from REAL starting period of acquition.

    First:
    There is one very important thing to know about "first consolidation period/year":
    Lets say 12/2008
    If you use carry forward, for example with movement type 100, then you are allowed to upload data into 12/2008 on movement type 100 and only then.
    Second:
    You need to assign an accounting technique to the consolidation group change and reporting.
    Check this link:
    [http://help.sap.com/saphelp_sem60ep1/helpdata/en/68/08d54276053258e10000000a155106/content.htm|http://help.sap.com/saphelp_sem60ep1/helpdata/en/68/08d54276053258e10000000a155106/content.htm]
    Have a look at the table what those attributes mean.
    BR

  • Manual Data Entry and Leading Sign in BCS

    Hi,
    can somebody help me,i need informations about the Leading Sign in the Manual Data Entry. Where can i make a field in the ucwb, to enter a Leading Sign at the Manual Data Entry in the ucmon?
    Thanks in advance,
    with regards,
    Thomas Rettenmaier

    Hi Thomas,
    What exactly you mean under 'Leading sign'?
    Best regards,
    Eugene

  • How to add new data entry and display old data in the same screen in SM30?

    Hi, Experts:
    We need to use SM30 to maintain a table entry. When I click the button of "New Entries", the table screen becomes blank. I can only add new data but not be able to see the old data existing in the table.
    How can I have the new line available for me to add new data at the same time see the data currently existing in the table?
    Thanks,
    Jenny

    Hi, thanks for the reply!
    Just to follow up for what we did to disable the delete function for maintaining table records. We hided the Delete button by adding a "MODULE disable_delete" code in Screen Painter. So now only adding records to the table is allowed.
    Thanks,
    Jenny

  • I have 2 gmail accounts  - one synchronises, one is grey, showing no data entry and a date 01.01.70 - any ideas how to fix it? (iphone5 /ioS /)

    I have 2 gmail accounts on my iphone 5 with IOS 7 - a private and a business account. Both are set up exactly the same way, just the username and the password are different. One account synchronizes as usual via mail app, the other account seems to do the same thing as well but after synchrinizing this account is highlighted grey for a while. When I go to "all mails" I see tons of mails dated 01.01.1970 with no sender or content. After a few minutes I can use the account in a normal way again and all the " no sender " mails vanished. How can I fix the problem?
    Thank you in advance for helping!

    For me the same problem: 2 gmail accounts, one ore both have often the folder greyed out. After a reset by holding down both buttons it works for a few minutes then the problem is there again.
    Also the same problem with the no subject 01.01.1970 emails (this was also there in previos IOS and never been solved!).
    I have a 4S with IOS7.
    For now my only solution is to switch to Mailbox.
    Best regards

  • How to show email id in personal Data of ESS

    Hi All,
    I have a scenario in which i have to show the email id mail in personal data iview of the personal information .
    Iam using NWDI . I have checked the personal data DC and found that the RFCs being called in the application are related to 0002 infotype. I didnt find any field for email id in 0002 infotype. In my case the email id has to be picked from su01 user data.
    Please help me to proceed further.
    Thanks,

    Hi,
    I think there ia already an Iview you can use. Check Change own data
    http://help.sap.com/erp2005_ehp_04/helpdata/en/34/1100414a0e40a5ae68d5aeacc30165/frameset.htm
    This picks email from from su01/su03
    This is there in ESS version 1.0 also. You can add remove lot of fileds using the infoset in SPRO setting in
    Personnel Management > Employee Self-Service > Service-Specific Settings > Whou2019s Who.
    Srini

  • Changes to the ESS Personal Data iview

    Hi There
    With regard to the 'Personal Data' iview on ESS.
    I have a scenario where fields marked as REQUIRED are DISABLED.
    How do i enable them ?
    When trying to change the field configuration by previewing the Personal Data iview and then doing 'control + right click' on the relevant disabled field the changes DO NOT take effect.
    When changing an enabled field the change take effect.
    Any ideas as to what may be causing this ?
    Any advice with regard to resolving this issue will be appreciated.

    Hi,
    The ESS/MSS fields can be enabled/disabled from spro settings at the backend.
    Please check with HR consultant to see the status of that field.
    The pathmay be:
    >Personnel Management > personnel administration > own data > personal data
    Thanks
    Muthukumar

  • Using an MS Excel like template for data entry into an Oracle table

    Does anybody know of a way, or development tool, that has the look and feel of MS Excel but can be used for data entry and be saved to an Oracle table and be embedded into a JSP page? I am currently using iSupport and have a need to allow users to enter data into an MS Excel like template, once the user saves the service request I need for the values to be saved in the attribute fields of the service request. I need the ability to map the cells of the template to the fields in the Oracle table. Any help would be greatly appreciated. Thanks in advance.

    An Excel spreadsheet may be stored in database table .
    http://www.oracle.com/technology/pub/articles/saternos_tables.html

  • Hi to all... What is a  XML data provider,stored Procedure, personal data

    Hi to all... What is a  XML data provider,stored Procedure, personal data providers in deski.  when we use these data provider in desk top intelligence.. and use of it.
    Please give detail description of the above...
    Thanks for reply..........

    Hi,
    We can create Desktop Intelligence reports using XML Data Provider, Personal Data Files and Stored Procedure.
    Following is some detailed information about these three.
    Xml data provider:
    Xml data provider is used for the integration of external data sources stored in XML format.
    This is similar to HTML.
    Stored Procedure:
    A stored procedure is a set of SQL commands that has been compiled and stored on the database server.
    Once the stored procedure has been "stored", client applications can execute the stored procedure over and over again without sending it to the database server again and without compiling it again.
    Stored procedures improve performance by reducing network traffic and CPU load.
    Personal data files:
    u2022     *.prn files
         A PRN file is a special type of file which contains instructions for a printer, it tells the printer what to print on the page and where as well as which paper tray to use, what the paper size is and a number of other controls.
    u2022     *.asc files
          Between the values of a row any number of carriage returns  or blanks are allowed. In any case it is strongly recommended that the data table be stored in such a way that it can be read and edited easily.
           The values may be stored in any format (integer, floating point, exponential notation) and they must be separated at least by one blank. The class information must be of integer type, the row identifiers are interpreted as strings. The lines can have any length and must not contain any comment.
    u2022     *.csv files
    A CSV file is a specially formatted plain text file which stores spreadsheet or basic database-style information in a very simple format, with one record on each line, and each field within that record separated by a comma.
    Regards,
    Pradnya Kokil

Maybe you are looking for