Error while maintaining Labour welfare fund table

Hi All:
I have maintained all the relevant tables for labour welfare fund configuration.But when i maintain table V_T7INU3 with all the relevant entries and try to save it, i get an error "delimit area of validity".
Please suggest how to resolve it.
Regards,
Kamini

Hi:
I have maintained the  following in tableV_T7INU1
LWF     1     LWF TAMILANDU     22      01.04.2006     04.09.2006
LWF     1     LWF TAMILANDU     22      05.09.2006     31.12.9999
LWF     2     LWF KARNATAKA     10      01.04.2006     31.12.9999
LWF     3     LWF WEST BENGAL     25      01.04.2006     31.12.9999
LWF     4     LWF GUJARAT     06      01.04.2006     31.12.9999
LWF     5     LWF MAHARASHTRA     13      01.04.2006     31.12.9999
LWF     6     LWF KERALA     11      01.04.2006     31.12.9999
LWF     7     LWF ANDHRA PRADESH     01      01.04.2006     31.12.9999
LWF     8     LWF HARYANA     07      01.04.2006     31.12.9999
LWF     9     LWF DELHI     30      01.04.2006     31.12.9999
LWF     10     LWF UTTAR PRADESH     24      01.04.2006     31.12.9999
LWF     11     LWF RAJASTHAN     20      01.04.2006     31.12.9999
LWF     12     LWF PUNJAB     19      01.04.2006     31.12.9999
and then maintained the following in table V_T7INU3
LWF     01     LWAP01     9     Annually     /3W1     /3W2
LWF     06     LWGU01     3     Half-yearly     /3W1     /3W2
LWF     07     LWHY01     9     Annually     /3W1     /3W2
LWF     10     LWKA01     9     Annually     /3W1     /3W2
LWF     11     LWKE01     3     Half-yearly     /3W1     /3W2
LWF     13     LWMH01     3     Half-yearly     /3W1     /3W2
LWF     19     LWPU01     1     Monthly     /3W1     /3W2
LWF     22     LWTN01     9     Annually     /3W1     /3W2
LWF     25     LWWB01     3     Half-yearly     /3W1     /3W2
LWF     30     LWDL01     3     Half-yearly     /3W1     /3W2
Now when i save it ,i get the error as:"delimit area of validity"
Now please tel me which start date and end date to check.
Regards,
Kamini

Similar Messages

  • Error while Activating Activate Global Funds Management Functions (PSM-FM)

    Hi,
    I am getting the below error while activating Activate Global Funds Management Functions (PSM-FM) in Funds Management.
    Aktivierung des Haushaltsmanagements ist nicht erlaubt
    Message no. ZZ003
    Kindly help me in fix this issue....
    Thanks
    Kishore

    Hi,
    Thanks for your reply. But can you clarify me why we need to delete the row Z_LEAVE in SE11 for FMISPS table. Because here ABAPER is objecting to do this as they feel there may be some impact if we delete this.
    Kindly clarify me
    Thanks
    Kishore

  • Error while filling the set up table for 2LIS_11_VAITM

    Dear Experts,
    i am facing an error while filling the set up table for 2LIS_11_VAITM in the source system.
    The error was "Company code for sales org 9000 does not exist (document 1326)".
    when i checked the document in the Header table VBAK,company code was blank for the document .
    Company code was there in the selections for the setup table.
    The error means that company code should be maintained for the sales document as per my knolwedge.i think document was not created properly in the source system.
    Could you please help me out to over come the problem.
    Regards,
    Sunil...

    in the selection screen for filling the setup table, there is a parameter No. tolerated faulty documents
    you'll have to enter at least '1' here in your case
    it might be that there are other erronuous records, in that case it will crash again, and you'll have to increase the value for this parameter
    (under "normal" circumstances, all documents in the source should be correct... but apparently it's possible to circumvent this)

  • Error while deriving the currency from table T001P.

    Hi Friends,
    I am trying to run payroll for NZ using schema NZ00 but i am getting an error stating "Error while deriving the currency from table T001P. Error during initialization of Payroll"
    I have checked V_T001P, V_T001 and have deleted the personnel area and subarea and again created it but still i am unable to solve this problem.
    Could you please help me as to where this error can be corrected.
    Thanks,
    Manj

    About the incidence, the problem might be related to the links between
    personnel area, company code and currency set up (table T001P, T500P and
    T001).
    Please check the following points:
    1- Have you assigned the Personnel area to the Company code under SPRO -
    IMG -> Enterprise Structure -> Assignment -> Human Resource Management
    -> Assignment of Personnel Area to Company Code.
    2- SPRO -> Personnel Management -> Personnel Admin -> Basic Settings ->
    Determine Currencies (Public Sector Currency Need to be maintained along
    with the other node).
    3- SPRO- Personnel Management -> Personnel Admin -> Payroll Data ->
    Basic Pay -> Define Hourly Rates for several decimal places. (Please
    maintain all the nodes).
    4- Maintaining the table t500c through transaction code OE00.
    Regards
    Ramana

  • Error while selecting date from external table

    Hello all,
    I am getting the follwing error while selecting data from external table. Any idea why?
    SQL> CREATE TABLE SE2_EXT (SE_REF_NO VARCHAR2(255),
      2        SE_CUST_ID NUMBER(38),
      3        SE_TRAN_AMT_LCY FLOAT(126),
      4        SE_REVERSAL_MARKER VARCHAR2(255))
      5  ORGANIZATION EXTERNAL (
      6    TYPE ORACLE_LOADER
      7    DEFAULT DIRECTORY ext_tables
      8    ACCESS PARAMETERS (
      9      RECORDS DELIMITED BY NEWLINE
    10      FIELDS TERMINATED BY ','
    11      MISSING FIELD VALUES ARE NULL
    12      (
    13        country_code      CHAR(5),
    14        country_name      CHAR(50),
    15        country_language  CHAR(50)
    16      )
    17    )
    18    LOCATION ('SE2.csv')
    19  )
    20  PARALLEL 5
    21  REJECT LIMIT UNLIMITED;
    Table created.
    SQL> select * from se2_ext;
    SQL> select count(*) from se2_ext;
    select count(*) from se2_ext
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04043: table column not found in external source: SE_REF_NO
    ORA-06512: at "SYS.ORACLE_LOADER", line 19

    It would appear that you external table definition and the external data file data do not match up. Post a few input records so someone can duplicate the problem and determine the fix.
    HTH -- Mark D Powell --

  • Error while deriving the currency from table

    i am getting the below error while simulating the payroll for india.
    Error while deriving the currency from table T001P & Error during Initialization of payroll.
    i am SAP HCM Trainee.. practicing at home.

    Pls check the currency in table T500C.
    You can use TCode OE00 for table maintenance T500C.
    Also check whether currency is there in table V_CURC and T510.
    Hope this will help.
    Regards
    Ghouse

  • Error while reading payroll area D0, table T549S

    Hi,
    would you know what this kind of error message could mean?
    "Error while reading payroll area D0, table T549S"
    This is an error while trying to extract payroll data to business warehouse. What should I look for to find the cause of this error?
    Thanks in advance,
    Mantas

    You have to contact the HR consultant in ur tem
    Next they might have not mapped the payroll which you are trying
    REWARD POINTS

  • Error while maintaining determination rule in CRM

    Hi,
    I get the following error while trying to copy the existing determination rule. Could you analyse this please.
    ERROR MSG:
    Prefix number: entry missing for system CRD client XXX
    Message no. 5W023
    Diagnosis
    Tasks, rules, and workflow definitions require an ID that is unique throughout all systems and clients. In this way, you can ensure that you can transport these objects from one system into another at any time (without restrictions). From a technical point of view, the uniqueness of the ID is ensured by what is known as a "prefix number". You can define a separate prefix number for every system and every client in table T78NR.
    System Response
    If a prefix number is not defined in the client in which you are currently working, it is not possible to maintain (maintenance terminates).
    Procedure
    Maintain table T78NR in Customizing, and create an entry for the system in question and the current client.
    Many thanks
    Guest01

    Organizational Management objects are identified by an eight-digit number.
    In the cases of tasks, workflows, rules and task groups, this eight-digit number consists of a three-digit prefix number followed by a five-digit number which is determined by internal number assignment. The complete number must be unique across systems and clients. From a technical point of view, the uniqueness of the number is catered for by the prefix number.
    Cheers
    -Srinivas Kumar

  • Error while reading data through External Table!!!

    CREATE TABLE "COGNOS"."EXT_COGNOS_TBS9_TEST"
    (     "ITEM_DESC" VARCHAR2(200 BYTE),
    "EXT_CODE" VARCHAR2(20 BYTE),
    "RC_DATE" DATE,
    "RES_KD_AMNT" NUMBER(18,3),
    "RES_FC_AMNT" NUMBER(18,3),
    "NRES_KD_AMNT" NUMBER(18,3),
    "NRES_FC_AMNT" NUMBER(18,3),
    "TOTAL" NUMBER(18,3),
    "OF_WHICH_OVR1" NUMBER(18,3)
    ORGANIZATION EXTERNAL
    ( TYPE ORACLE_LOADER
    DEFAULT DIRECTORY "EXTDATADIR"
    ACCESS PARAMETERS
    ( RECORDS
    DELIMITED BY NEWLINE LOAD WHEN *({color:#ff0000}EXT_CODE LIKE 'TBS9%'{color})* FIELDS TERMINATED BY ','
    MISSING FIELD VALUES ARE NULL )
    LOCATION
    ( 'TBS9_TEST.CSV'
    External table creation went through successfully but am getting error while reading data. Am quite sure error is because of above line in red color. Could you please help me in transforming logic.
    Thanks in Advance,
    AP

    Let's start with the basics...
    1) You state that you are getting an error. What error do you get? Is this an Oracle error (i.e. ORA-xxxxx)? If so, please include the error number and the error message as well as the triggering statement. Or is the problem that rows are getting written to the reject file and errors are being written to the log file? If so, what record(s) are being rejected and what are the reasons given in the log file? Or perhaps the problem is something else?
    2) You state that you are quite sure that the problem relates to the hilighted code. What makes you quite sure of this?
    Justin

  • Error while relating sequence to a table

    thanks for a quick reply.
    i incorporated the suggestions that i got from here and i am getting the following error while i am trying to create a trigger:
    ERROR at line 1:
    ORA-04089: cannot create triggers on objects owned by SYS
    It is pretty self-explanatory but I dont know why I am getting this error. I am connected as sys/change_on_install as SYSDBA
    Help please!!
    Mahesh

    Mahesh,
    Hehehe well I had a little chuckle here after reading that. Don't create objects as SYS, that be a bad thing, unless your an elite hax0r.
    First make a new user and create that table and trigger and sequence under this new user. The create user syntax is below. It is wise to make a user also that has DBA privs, so you don't need to be connecting as SYS (The syntax below makes a DBA user). This is very helpful if your forget your SYS password (which you really should be changing).
    Note that you will have to specify the new user name, password, and in particular the TABLESPACE this new user will be making objects in. I put USR as it, but check to see if you have this tablespace or find one to make objects in, because right now your makeing tables in the SYSTEM table space which is a baaad thing.
    DROP USER "U_TYLER";
    CREATE USER "U_TYLER" IDENTIFIED BY "MY_PASSWORD_HERE"
    DEFAULT TABLESPACE "USR"
    TEMPORARY TABLESPACE "TEMP"
    PROFILE DEFAULT ACCOUNT UNLOCK;
    GRANT "CONNECT" TO "U_TYLER";
    GRANT "RESOURCE" TO "U_TYLER";
    GRANT "DBA" TO "U_TYLER";
    ALTER USER "STB" DEFAULT ROLE ALL;
    GRANT CREATE SYNONYM TO U_TYLER;
    GRANT DROP PUBLIC SYNONYM TO U_TYLER;
    GRANT CREATE PUBLIC SYNONYM TO U_TYLER;
    Reply back if your still having some troubles, cause we love to help people worldwide :).
    Tyler

  • Error while activating data from new table of DSO to active table

    HI,
    while activating data from new table of DSO to active table i am getting
    error message as "Error occurred while deciding partition number".
    Plz any idea hoe to resolve this one.
    thanks & regards
    KPS MOORTHY

    Hi
    You are trying to update/upload the Records which are already been there in the DSO Active Data Table which has the partition.
    Try to see the Record Nos already been activated and update/upload with selective, if possible.
    You can trace the changes at Change log table for the same.
    Hope it helps
    Edited by: Aduri on Jan 21, 2009 10:38 AM

  • Error while maintaining the Update Rules for the Infostructure

    Hi,
    I have added 2 new characteristics for the existing infostructure S9xx and executed the same. While maintaining the Update Rules for the same, system is giving the error message 1. "Field 'PARVW' unknown" and 2. Error generating program RMCX0011.
    Please guide me in resolving the issue.
    Thanks & Regards,
    Kumar.

    Hi,
    This is with reference to my earlier question that an error is occuring while maintaining the update rules for the existing Infostructure.
    Solution provider for this will be rewarded with good points.
    Regards,
    Kumar.

  • Error while inserting data into a table.

    Hi All,
      I created a table.While inserting data into the table i am getting an error.Its telling "Create data Processing Function Module".Can any one help me regarding this?
    Thanx in advance
    anirudh

    Hi Anirudh,
      Seems there is already an entry in the Table with the same Primary Key.
    INSERT Statement will give short dump if you try to insert data with same key.
    Why dont you use MODIFY statement to achieve the same.
    Reward points if this Helps.
    Manish

  • Error while deploy mapping ora-06550 table or view does not exist

    Hi everyone,
    i have a target source 'U_BCK' that cointains some Oracle table.
    I have also created a target schema 'BCK_OWNER' where i create some dimensions and cubes with mappings.
    My mappings connect some table from U_BCK with dimension or cube from BCK_OWNER.
    My repository owner is called 'rep_owner' and i used this user to create every metadata.
    Now i'm trying to deploy, and i don't have any problem until deploying mappings. When i try to deploy mappings i get some errors like ora-06550,ora-00942 table or view does not exist and statement ignored.
    Please help me and sorry for my english...
    Thanks,
    Alex.

    The mapping, that drives the data from one table to another is deployed to the database as a PL/SQL package. When deploying your mapping fails, it most often means that the resulting PL/SQL package doesn't compile in the database.
    Using Oracle SQL Developer (or Toad, SQL Navigator or any other tool) connect to the schema on the database where you have deployed the mapping. Open the pl/sql package and compile it. That should show you the place where the compilation fails, and give you an idea as to what table it can not find. Otherwise, in SQLPLUS, you can simply give the following command:
    ALTER PACKAGE THE_PACKAGE_NAME_GOES_HERE compile body;
    show errors;
    As the database user who owns the source tables, make sure to issue a GRANT command for each of the source tables, granting SELECT access to the database user who owns the mapping:
    grant select on TABLENAME to TARGETSCHEMA.
    hope this helps
    Borkur

  • Error while loading to active data table in DSO

    Hi,
    please help me in resolving the issue with active data table . when i am activating the new data table the job gets cancelled with message as 'Error when assigning SID: Action VAL_SID_CONVERT table OCALMONTH'.
    Thanks and Regards,
    Prasad.

    Hi,
    In the displaying error message tab of ODS activation, you will get error message and invalid value for the 0CALMONTH will be displayed. Search the NEW TABLE of ODS with the same value, identify the error records.
    If you have PSA in the flow, delete (w/o making the status RED), correct data in PSA and reconstruct the data.
    If you don't have PSA, you have to delete by making red, reload through PSA correcting the erroneous data in PSA.
    Regards
    Chandu

Maybe you are looking for

  • How can I boot a linux live cd in my macbook pro 8,1

    I have a macbook pro 8,1 13inch. Whenever I attempt to boot from a linux live cd (ubuntu, kubuntu, gparted, knoppix) I get dropped to a busybox interface with a message that the live file system can not be found. I have tested the linux cd on a non a

  • New tab strip for PO header data

    Hello, for a customer project there is the need to add a new customer individual tab strip to PO and contract header data. Is there an User Exit or any other predefined way to do this in a most efficient way with minimum changes in SAP standard? Rega

  • Lock table overflow 1 & Error 7 when sending an IDoc

    dear all, we r getting error in purchasing cube for itm datasource 2lis_o2_itm for delta... 1.Lock table overflow 1 2.Error 7 when sending an IDoc 3.Errors in source system when i check in details it is showing : Data Package 1 : arrived in BW ; Proc

  • IPhoto import is missing a few items

    I am trrying to import photoes and moves from my camera into iPhoto. All I do is plug in the camera and click import in iPhoto. There are 218 items to import. With 3 items remaining it slows down - a lot! After a while it finishes however but only 21

  • Is there an automated way to delete duplicate photos in iPhoto?

    I've imported 1000's photos with many duplicates.  Is there a quick way to delete the dulplicates?