Error in CATS Data entry

Hi gurus,
I have created org unit, positon, holder on 01.01.2008 and hired emp on 01.01.2008 .
iam trying to give cats entry in cat2 on 03.12.2008 it is not showing personal numbers under that org unit, but it is showing on 04.12.2008.how can i enter time for previous periods.
Give me soem inputs to solve this error.
Regards,
Hema

Hi Hema,
As per your new query i understood that u wan't " percentage of completion of current date ".  The percentaging system will be done by the Project Systems team by giving the percentages as we will not do that.
The PS team will be creating WBS element in that percentages should be given.  These are all comes under Budgeting.
I hope you got your answer.
Bhaskar
Edited by: Vijay Shankar on Dec 5, 2008 6:36 AM

Similar Messages

  • CATS-Data Entry Profile-Unable to Enter Personnel Number

    Hi,
    I am working on CATS. I have created a data entry profile and it is a copy of standard profile HR-ONLY The query is that when I go-to CAT2 the Personnel Number is grayed out meaning I cannot enter the personnel number.
    Kindly, help.
    Regards,
    Garima

    Hi garima dutta
    go to spro-cross application component -time sheet- specific settings for cats regular-cats regular-set up data entry profile.  there you have personnel selection check with your data entry profile whether radio button of time administrator is checked or not.  If it is checked then you check your authorization in su03 give the cvr parameter value as your data entry profile and save it. If you have any doubts please feel free to ask me
    ok
    bye
    Naveen

  • Add a New Field in CATS Data Entry Profile.

    Dear Team:
    Our requirement is when employees apply for overtime using Employee Self Service, there should be an option of choosing the Reason for the Overtime so that this becomes as a reference to the approver in decison. Please let me know the in which table is referred to for addition of a new field either from technical perspective or from functional point of view. Let me know the steps if possible.
    There is one HR Data Entry Profile.
    Also, let me know the Groupings: Settings, Worklist, Data Entry profile.
    Thanks and Regards
    Team Member.

    SAP has provided standard long text feild on the profile use that deild to enter the text no need of any additional customization.

  • Error when Fetching CATs Data to BI

    Hi,
    I have created data source in R/3 System (Source System) for CATS data and extracting data Using function Module. Using transaction RSA3 it is fetching all the desired records in R/3 System.
    In BI System extracting Full Data and when monitoring it is throwing Error.
    Error 7 when sending an IDoc
    Error when opening an RFC connection    2
    Error when opening an RFC connection
    Errors in source system
    Function Module for fetching CATS Data
    FUNCTION ZLBTIME_GET_CATSREC.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(I_REQUNR) TYPE  SRSC_S_IF_SIMPLE-REQUNR
    *"     VALUE(I_DSOURCE) TYPE  SRSC_S_IF_SIMPLE-DSOURCE OPTIONAL
    *"     VALUE(I_MAXSIZE) TYPE  SRSC_S_IF_SIMPLE-MAXSIZE OPTIONAL
    *"     VALUE(I_INITFLAG) TYPE  SRSC_S_IF_SIMPLE-INITFLAG OPTIONAL
    *"     VALUE(I_READ_ONLY) TYPE  SRSC_S_IF_SIMPLE-READONLY OPTIONAL
    *"     VALUE(I_REMOTE_CALL) TYPE  SBIWA_FLAG DEFAULT SBIWA_C_FLAG_OFF
    *"  TABLES
    *"      I_T_SELECT TYPE  SRSC_S_IF_SIMPLE-T_SELECT OPTIONAL
    *"      I_T_FIELDS TYPE  SRSC_S_IF_SIMPLE-T_FIELDS OPTIONAL
    *"      E_T_DATA STRUCTURE  ZLSCATS OPTIONAL
    *"  EXCEPTIONS
    *"      NO_MORE_DATA
    *"      ERROR_PASSED_TO_MESS_HANDLER
    * Example: DataSource for table SFLIGHT
    *  TABLES: SFLIGHT.
    * Auxiliary Selection criteria structure
      DATA: L_S_SELECT TYPE SRSC_S_SELECT.
    * Maximum number of lines for DB table
      STATICS: S_S_IF TYPE SRSC_S_IF_SIMPLE,
    * counter
              S_COUNTER_DATAPAKID LIKE SY-TABIX,
    * cursor
              S_CURSOR TYPE CURSOR.
    * Select ranges
    **  RANGES: L_R_CARRID  FOR SFLIGHT-CARRID,
    **          L_R_CONNID  FOR SFLIGHT-CONNID.
    * Initialization mode (first call by SAPI) or data transfer mode
    * (following calls) ?
      IF I_INITFLAG = SBIWA_C_FLAG_ON.
    * Initialization: check input parameters
    *                 buffer input parameters
    *                 prepare data selection
    * Check DataSource validity
        CASE I_DSOURCE.
          WHEN 'ZLTIME_DS_3'.
          WHEN OTHERS.
            IF 1 = 2. MESSAGE E009(R3). ENDIF.
    * this is a typical log call. Please write every error message like this
            LOG_WRITE 'E'                  "message type
                      'R3'                 "message class
                      '009'                "message number
                      I_DSOURCE   "message variable 1
                      ' '.                 "message variable 2
            RAISE ERROR_PASSED_TO_MESS_HANDLER.
        ENDCASE.
        APPEND LINES OF I_T_SELECT TO S_S_IF-T_SELECT.
    * Fill parameter buffer for data extraction calls
        S_S_IF-REQUNR    = I_REQUNR.
        S_S_IF-DSOURCE = I_DSOURCE.
        S_S_IF-MAXSIZE   = I_MAXSIZE.
    * Fill field list table for an optimized select statement
    * (in case that there is no 1:1 relation between InfoSource fields
    * and database table fields this may be far from beeing trivial)
        APPEND LINES OF I_T_FIELDS TO S_S_IF-T_FIELDS.
      ELSE.                 "Initialization mode or data extraction ?
    * Data transfer: First Call      OPEN CURSOR + FETCH
    *                Following Calls FETCH only
    * First data package -> OPEN CURSOR
        IF S_COUNTER_DATAPAKID = 0.
    * Fill range tables BW will only pass down simple selection criteria
    * of the type SIGN = 'I' and OPTION = 'EQ' or OPTION = 'BT'.
    **      LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'CARRID'.
    **        MOVE-CORRESPONDING L_S_SELECT TO L_R_CARRID.
    **        APPEND L_R_CARRID.
    **      ENDLOOP.
    **      LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'CONNID'.
    **        MOVE-CORRESPONDING L_S_SELECT TO L_R_CONNID.
    **        APPEND L_R_CONNID.
    **      ENDLOOP.
    * Determine number of database records to be read per FETCH statement
    * from input parameter I_MAXSIZE. If there is a one to one relation
    * between DataSource table lines and database entries, this is trivial.
    * In other cases, it may be impossible and some estimated value has to
    * be determined.
    **      OPEN CURSOR WITH HOLD S_CURSOR FOR
    **      SELECT (S_S_IF-T_FIELDS) FROM SFLIGHT
    **                               WHERE CARRID  IN L_R_CARRID AND
    **                                     CONNID  IN L_R_CONNID.
            OPEN CURSOR WITH HOLD s_cursor FOR
    *        SELECT * FROM zlvctmbw.
            SELECT a~counter a~pernr a~workdate a~skostl a~lstar a~rproj a~awart a~kokrs a~meinh a~tcurr a~price
                   a~unit a~bukrs a~ersda a~erstm a~ernam a~laeda a~laetm a~status a~refcounter a~reason a~belnr
                   a~catshours a~act1 a~act2 a~task a~lang1 a~narr1 a~lang2 a~narr2 a~cmnt a~clst a~plchl
                   b~ltxa1 b~transfer b~hrkostl b~hrlstar b~hrcostasg b~statkeyfig b~catsquantity b~bemot
                   c~pspnr c~pspid
                   d~kunnr
            FROM   catsdb AS a
            LEFT OUTER JOIN catsco AS b ON a~counter = b~counter
            JOIN   prps AS p ON p~pspnr = a~rproj
            JOIN   proj AS c ON c~pspnr = p~psphi
            JOIN   zltproj AS d ON d~pspnr = c~pspnr.
        ENDIF.                             "First data package ?
    * Fetch records into interface table.
    *   named E_T_'Name of extract structure'.
        FETCH NEXT CURSOR S_CURSOR
                   APPENDING CORRESPONDING FIELDS
                   OF TABLE E_T_DATA
                   PACKAGE SIZE S_S_IF-MAXSIZE.
        IF SY-SUBRC <> 0.
          CLOSE CURSOR S_CURSOR.
          RAISE NO_MORE_DATA.
        ENDIF.
        S_COUNTER_DATAPAKID = S_COUNTER_DATAPAKID + 1.
      ENDIF.              "Initialization mode or data extraction ?
    ENDFUNCTION.
    When fetching data using VIEW in source system it works fine.
    When testing for fetching data of SFLIGHT using function module ZRSAX_BIW_GET_DATA_SIMPLE
    made a copy of RSAX_BIW_GET_DATA_SIMPLE, it is working fine.
    Pls suggest the cause of error.
    Regards
    Vishal

    Hello Praveen,
    Connection is fine as I tried fetching data of SFLIGHT using standard template function module which works fine and in transaction sm58 I do not any data.
    Regards
    Vishal

  • Error while running PB40 - initial data entry action

    Hi Friends,
    I am running PB40 initial data entry action. The values that I am giving in the Personnel Officer field are not getting accepted.
    Its giving me error : *Entry does not exist in T526 (check entry)*
    I have checked T526 table in SE16 and its showing me all the values that have been maintained for my administrator group APPL.
    "PINCH" feature is also maintained where the Tclas B- applicant data has value APPL.
    In SU3 also, I have maintained SGR - APPL.
    Please advise what else cab done to correct this error.

    reema
    have u activated switch between OM and Personal office
    PPVAC PREF just check it out and let me know

  • Multilple Data entry profiles in ESS for CATS

    hi,
    We are implementing CATS and configured the data entry profiles in IMG. Can u tell me if multiple data entry profiles can be chosen by employees through ESS webdynpro applcaition. I need this as the screen layouts for an employee logging time to different projects are different. Is choosing data entry profile provided in ESS ?
    Apprecaite your help
    Regards
    PN

    Hi Bala /Krish,
    Thanks for the replies. i understand that based on the employee groups, sub groups a data enry profile would be assigned to an employee..
    Lets take up this scenario
    1) Employee 1 is assigned to Per Area 1 (HR) and lets say data entry profile 1 on monday
    2) He is asked to work for a diffrent Per area 2 ( project systems ) for 1 day and then after that day he is assigned back to profile 1 again.
    3) On wednesday he comes bak , he is already assigned to data entry profile 1, where he books his time for Per Area 1 (HR). Now how does he book his time for the one day where he was assigned to Per Area 2 ( PS)
    any ideas ? I know this wud be a custom enhancement,
    wanted to know
    1) if BAPI and Web dynpro ESS record working time code will need to be modified ?
    2) What wud be effort and time estinate for such a requirement ?
    3) is it possible ?
    Appreciate your inputs,  i guess i am going on asking questions
    Regards
    PN

  • Hide CATS lines in data entry screen

    Hi,
    Does anyone know if it is possible to keep certain approved CATS records in the data entry screen (transaction CAT2) from being displayed, while other approved records are still displayed? Suppose we have the customer field ZSTATUS to decide whether the line is to be displayed or not. So far I have been looking for a user exit where we can hide lines without physically removing them from the CATS database, without succes.
    Thanks in advance!
    Jürgen

    Thx for your answer
    I tried, but if I change the contents of the lines I don't want to display in the enrich_table, CATS also inserts these changes in the CATS database.
    I'm looking for some hide functionality only on display level, we want to keep the lines in the database for costing purposes later on.
    I suppose I can delete certain lines from the internal table at the beginning of the CAT2 routine, but this would mean a modification to standard SAP.
    Jürgen

  • CATS - adding WBS Short Text to Data Entry Section

    i got the wbs short text to appear in the work area but it's not showing up in the data entry section. It's all setup in CAC2 under worklist and data entry. Am I missing something else ?. There looks to 5 core fields in the data entry section and using CAC2 - i can take any of those fields away and add them back but cant add any other columns to be displayed
    thanks in advance,

    Hi,
    Thankyou for your response.
    The Short text i mentioned is not the text of the attendance / absence code. It is the additional message one may want to associate with the record being entered.
    It can be seen in a pop-up window in CATS whenever the hours field of such a record is double-clicked.
    When i try to transfer such a record with an additional short text assigned to it in CATS to HR (CAT6/CATA), the short text does not transfer.
    Could you help me find a way to transfer such short texts to respective HR infotypes (IT2001  /  IT2002)
    Thanks for your help!
    Thanks and regards,
    Shreyasi.

  • CATS default entries in data entry section

    Hello experts,
    can anyone tell me, if (and how!) it is possible to get accounting objects assigned to
    a personnel number in a customer's table into the data entry section without using a
    worklist or template, just having these informations in the data entry area when starting
    CATS as Web Dynpro ABAP application?
    Many thanks for your answer!
    Regards
    Rainer

    Did you solve this?

  • E-Recruiting Workflow after Data Entry Error

    Greetings,
    The E-Recruiting Workflow after Data Entry Error enables you to change and internal or external application that was entered manually.  If for example, you enter the application to the incorrect reference code, you can assign a different one.  As a result the status of the original application is set to rejected with the status reason of "Replaced by new Application".
    My question is why doesn't the candidacy also get set to rejected?  Although the application is rejected, the candidacy is still in process and so this candidate will continue to show on the Candidate Shortlist for the requistion.  There is nothing that I can tell that will stop a recruiter from continuing to recruit this candidate.  I am thinking of changing the workflow to also reject the candidacy, but before I do that, I want to know if there is an error in my thought process here.
    Can anyone shed some light on this?
    Thanks!

    Hi;
    As far as I know this is how Acrobat works.  You can try to post your question in the Acrobat Forms Forums, you might get more help on this specific issue there since this isn't unique to FormsCentral forms: http://forums.adobe.com/community/acrobat/forms
    Thanks,
    Josh

  • Set Field Focus After Data Entry Error

    In a form created in Acrobat XI Pro (and distrubuted via Forms Central), I have various form fields (text, date, etc.). When the user performs a data entry error (e.g. incorrect date format based on date mask, etc.), the field focus is lost. The user must mouse-click into the field to set the field focus and re-enter their data. Is there any code that allows the app to return an error and set the focus back on the field returnign the error? Thanks / Todd

    If you converted the PDF to a FormsCentral form then it's a FC issue, not a PDF issue...

  • Data entry issue in CATS

    Dear All,
    when i enter time (hours) in data entry sheet.. system says "Enter relevant working time attributes" I really dont know where i have done mistake.
    Im using fields Pernr.name,controling area, tasklevel, task type, task component and attendance/ absence type in data entry sheet.
    when i enter time only with controling area and attendace type, its accepting the time data but if i assigned task leave, task type and task component, then only system thooughing an error msg "*Enter relevant working time attributes".
    I have checked all asignement with task type,tasklevel and task component.. which all ar correct but i dont knw why this msg coming..
    can any one help me???
    thanks,
    Manjula.

    Hi Manju..
    I think there is an problem in tasktype component.. check whether you have activated 'component task type 'activated or not.. if you activated the check box.. then you just maintained abbsence / attendance type  or wage type and also check the default vaule in the profile settings.
    try and let me knw..
    Dinesh.

  • 'Error while signing data-Private key or certificate of signer not availabl

    Hello All,
    In my message mapping I need to call a web service to which I need to send a field value consist of SIGNED DATA.
    I am using SAP SSF API to read the certificate stored in NWA and Signing the Data as explained in
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/d0201854fb6a4cb9545892b49d4851/frameset.htm,
    when I have tested using Test tab of message mapping  it is working fine and I am able to access the certificate Keystore of NWA(we have created a keystore view and keystore entry to store the certificate) and generate the signed data ,but when I test end to end scenario from ECC system,it is getting failed in mapping with the error
    ' Error while signing data - Private key or certificate of signer not availableu2019.
    Appreciate your expert help to resolve this issue urgently please.
    Regards,
    Shivkumar

    Hi Shivkuar,
    Could you please let me know how you were trying to achieve the XML signature.
    We have a requirement where we have to sign the XML document and need to generate the target document as following structure.
    <Signature>
         <SignedInfo>
             <CanonicalizationMethod />
             <SignatureMethod />
             <Reference>
                     <Transforms>
                     <DigestMethod>
                     <DigestValue>
             </Reference>
        <Reference /> etc.
      </SignedInfo>
      <SignatureValue />
      <KeyInfo />
      <Object>ACTUAL PAYLOAD</Object>
    </Signature>
    I am analyzing the possibility of using the approach that is given in the help sap link that you have posted above. Any inputs will be apprecited.
    Thanks and Regards,
    Sami.

  • Error While entering data in VA01

    Hi,
    I get the following error while entering data for "Plant" in Sales order creation (VA01). Can anyone please tell me how to solve this problem.
    Runtime Errors SAPSQL_INVALID_TABLENAME
    Except. CX_SY_DYNAMIC_OSQL_SEMANTICS
    Date and Time 27.04.2009 12:57:13
    Short dump has not been completely stored (too big)
    Short text
    A table name, specified in an SQL command, is unknown.
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "SAPLV61Z" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_DYNAMIC_OSQL_SEMANTICS', was
    not caught in
    procedure "SEL_KONDTAB" "(FORM)", nor was it propagated by a RAISING clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    An invalid table name "A996" was specified in an Open SQL command:
    Due to one of the following reasons, the error occurs only at runtime:
    - the table name was specified dynamically, or
    - the SELECT clause, WHERE clause, GROUP-BY clause, HAVING clause, or
    ORDER-BY clause was specified dynamically.
    Missing RAISING Clause in Interface
    Program SAPLV61Z
    Include LV61ZU01
    Row 260
    Module type (FORM)
    Module Name SEL_KONDTAB
    Trigger Location of Exception
    Program SAPLV61Z
    Include LV61ZU01
    Row 724
    Module type (FORM)
    Module Name SEL_KONDTAB
    Source Code Extract
    Line SourceCde
    694 and kschl = se_kschl
    695 and datbi >= se_date
    696 and datab <= se_date
    697 and (coding_tab).
    698 endif.
    699 endif.
    700 else.
    701 if t681-ksdat is initial.
    702 if not <entrytab> is assigned.
    703 select * from (t681-kotab) appending table <cond_tab>
    704 where kappl = se_kappl
    705 and kschl = se_kschl
    706 and (coding_tab).
    707 else.
    708 select * from (t681-kotab) appending table <cond_tab>
    709 for all entries in <entrytab>
    710 where kappl = se_kappl
    711 and kschl = se_kschl
    712 and (coding_tab).
    713 endif.
    714 h_subrc = sy-subrc.
    715 if select_split ne 0.
    716 modify coding_tab from coding_alter index select_split.
    717 select * from (t681-kotab) appending table <cond_tab>
    718 where kappl = se_kappl
    719 and kschl = se_kschl
    720 and (coding_tab).
    721 endif.
    722 else.
    723 if not <entrytab> is assigned.
    >>>>> select * from (t681-kotab) appending table <cond_tab>
    725 where kappl = se_kappl
    726 and kschl = se_kschl
    727 and datbi >= se_date
    728 and datab <= se_date
    729 and (coding_tab).
    730 else.
    731 select * from (t681-kotab) appending table <cond_tab>
    732 for all entries in <entrytab>
    733 where kappl = se_kappl
    734 and kschl = se_kschl
    735 and datbi >= se_date
    736 and datab <= se_date
    737 and (coding_tab).
    738 endif.
    739 h_subrc = sy-subrc.
    740 if select_split ne 0.
    741 modify coding_tab from coding_alter index select_split.
    742 select * from (t681-kotab) appending table <cond_tab>
    743 where kappl = se_kappl
    Thank you in advance....
    Regards,
    Sriram.

    An invalid table name "A996" was specified
       in an Open SQL command
    Find out the transport request pertaining to Table A996 and ensure that both that request and the configuration request pertaining to that table are moved simultaneously.
    thanks
    G. Lakshmipathi

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

Maybe you are looking for

  • SSO to J2EE application from SAP Portal

    Hi I am trying to do SSO from SAP Portal to a J2EE engine which runs on SAP Web AS. Here are my queries 1. When I deploy a J2EE application on Web AS , I dont get any login screen. How can I make sure that if a user wants to access this J2EE applicat

  • Accessing User Defined Types

    We have recently updated our libraries to the latest version (2.102.2.20) - and have lost access to the critical objects and methods that were accessing our User Defined Types on Oracle. In particular, this code: OracleUdtDescriptor descriptor = Orac

  • Error in resource driver... XAException

    Hi, I have a nagging question hope someone here can help. I have a BPEL process running on a mid-tier server and I kept getting the XAException when I start the process. The process did run despites the message and I did not get the message when I ru

  • DAO Error - Logon Failed

    Post Author: aurel60 CA Forum: General Hi everybody, We are working with VB6, Access and Crystal Report to make some reports.And today, some users have contact me because they have a new problem with a report.You could see bellow the error message :T

  • My iMac (Mac os X Lion 10.7.5) does not connect to known Wi-Fi networks after turning it on or waking it up?

    I've tried downloading this sowftware update  but it says it needs version 10.7.3 Nothing seems to work, Please help.