PE51 Rules - table/field combinations

Hi all,
I need to add some employee subgroups to Rules section in our payslip (hr form editor).
However, the table field combination currently being used here isn't available in F4 dropdown, P0001/PERSK, although this field does exist in the structure. Therefore I can not save new entries with this combination..
Does anyone know how I can add new field selections for a given table, e.g. P0001.
Any insights much appreciated.
thanks
ps. I have tried maintaining the search helps in SE11 for the table field aswell (PPE51_7000), but it does not allow to maintain.
Edited by: minttea on Nov 26, 2010 12:52 PM

Go to T code PE51_CHECKTAB and enter country grouping and form class CEDT ...give the reference country and form class as 99 and CEDT.Goto Change here you can add in the table in table tab and field in Field tab..
Use that fields in your rules.
Mohan

Similar Messages

  • Settlement rule table field

    Hi Friends,
    What is the table and field to find out settlement rule as per project type.?
    Any pointers
    Thanks
    Ashutosh

    table COBRB

  • CURRENY CONVERSION RULES TABLE - FORMULA FIELD

    Hi,
    I have a list of rate types (avg,end,hist etc) defined in the Rate account dimension. The currency conversion (SPRUNConversion) procedure is running fine for all these rate types.
    Now I have added two new ratetypes to the rate account dimension. I have added corresponding rate date for these accounts for all reporting currencies for the required category and time. I have then used these new rate accounts in the 'FORMULA' field of the Currency Conv Business Rule table. When I now run the SPRUNConversion procedure I get the following error
    SPRunConversion Version 7.0.112
    ERROR FX-310 Timeid=20090300 - Nothing Extract from Fact - RATE
    When I go back to the Rate dimension and change the 'Ratetype' property for the new rates to blank (from 'FX') then I dont get any error with SPRunconversion however the accounts related to the new Ratetypes do not get processed.
    I have tried everything (Full process of dimensions, Optimizing applications etc) but nothing seems to work.
    Any idea why the CC table is not accepting the new rate accounts?
    Thanks,
    Prasanth.

    Hi Craig,
    There is an inherent limitation in BPC 7 MS version in the number of characters of the combined total of rate id characters with rates that you can define in the rate application. In my case we are trying to maintain in 'GLOBAL' rate entity about 12 different rates (avg, end, historical etc) and the combined char total is around 750. When we run currency conversion all the rateids are put into a field, but the char limit of this field is 500 char, so the system gives out an error.
    The currency conversion logic only considers those rate accounts with Group 'FXTYPE'. So when I remove this property for a few rate accounts, they were not considered and since the rateids char limt as mentioned above is within the 500 char limit the currency conversion was happening without error.
    This has been reported to SAP and they confirmed that it is a bug and this will be addressed in the SP being relaeased end of this year.
    We did a workaround by maintaining single alphabets for the rate ids i.e., AVG=A,END=B etc ... and used Rate entities to take care of the number of rates that we had.
    Thanks,
    Prasanth.

  • Combining table fields

    Hi,
    I'm mysql, PHP and DW
    I have a table named 'people' made of three columns, id , first_name and last_name.
    I need to run a sql sentence where i get the id field as it is and the other 2 fields combined together as fullname.
    i tried this as a recordset in DW5 but i got an error message:
    Select people.id, people.first_name&' '& people.last_name As fullname
    from poeple,
    thanks for help
    Joe

    SELECT id, CONCAT(first_name, ' ', last_name) As fullname FROM people
    The correct term is concatenate, not combine. That's probably why you didn't find anything by searching.
    http://www.google.com/search?q=concatenate+sql+table+fields

  • Table Fields of Product Analysis

    Hi All,
    I'm working on Product Analysis report for Inspection Lot.
    Unable to find the tables and fields for inspection parameters:
    1.Valid till date field
    2.weight
    3.FFA
    4.BCAR
    5.DOBI
    Thank You,

    Hi Sridhar,
    Quality Management Table Codes
    Master Data
    QMAT Inspection type - material parameters
    QMHU QM Link Between Inspection Lot and Handling Unit Item
    QMTB Inspection method master record
    QMTT Inspection Method Texts
    QPAC Inspection catalog codes for selected sets
    QPAM Inspection catalog selected sets
    QPMK Inspection characteristic master
    QPMT Master Inspection Characteristics Texts
    QPMZ Assignment table - insp. methods/master insp. characteristic
    TQ01D Authorization groups for QM master data
    TQ01E Text authorization groups for QM master data
    TQ21 Assignment of screens to screen groups
    TQ25 QM:screen sequence for master and inspection characteristics
    Catalogue
    QPCD Inspection catalog codes
    QPCT Code texts
    QPGR Inspection catalog code groups
    QPGT Code group texts
    TQ07 Follow-Up Action for Usage Decision of Inspection Lot
    TQ07A QM: Function Modules for Follow-Up Action
    TQ07T Language-dependent texts for Table TQ07
    TQ15 Inspection catalog type index
    TQ15T Language-dependent texts for table TQ15
    TQ17 Defect classes
    TQ17T Language-dependent texts for table TQ17
    Sample Determination
    QDEB Allowed. Relationships: Sampling Procedures/Dynamic Mod. Rules
    QDEBT Allowed combinations of procedures/dynamic mod. rules: texts
    QDPA Sampling scheme-instructions
    QDPK Sampling scheme header
    QDPKT Sampling scheme: texts
    QDPP Sampling scheme item
    QDQL Quality level
    Hope this list will help you.
    cheers
    Suvi

  • PE51 Rule

    Hi all
    I saw one rule in PE51 Payslip, What is XRT ?
    regards
    Sanjay

    XRT is just one of the table, field value of which would get displayed on the FORM. these tables are configured depending on the Form Class through Tx code PE51_CHECKTAB.

  • Hash tables in combination with data references to the line type.

    I'm having an issue with hash tables - in combination with reference variables.
    Consider the following:  (Which is part of a class)  -  it attempts to see if a particular id exists in a table; if not add it; if yes change it.   
      types: BEGIN OF TY_MEASUREMENT,
               perfid      TYPE zgz_perf_metric_id,
               rtime       TYPE zgz_perf_runtime,
               execount    TYPE zgz_perf_execount,
               last_start  TYPE timestampl,
             END OF TY_MEASUREMENT.
    METHOD START.
      DATA:  ls_measurement TYPE REF TO ty_measurement.
      READ TABLE gt_measurements WITH TABLE KEY perfid = i_perfid reference into ls_measurement.
      if sy-subrc <> 0.
        "Didn't find it.
        create data ls_measurement.
        ls_measurement->perfid = i_perfid.
        insert ls_measurement->* into gt_measurements.
      endif.
      GET TIME STAMP FIELD ls_measurements-last_start.
      ls_measurement->execount = ls_measurement->execount + 1.
    ENDMETHOD.
    I get compile errors on the insert statement - either "You cannot use explicit index operations on tables with types HASHED TABLE" or "ANY TABLE".      It is possible that.
    If I don't dereference the type then I get the error  LS_MEASUREMENT cannot be converted to the line type of GT_MEASUREMENTS.
    I'm not looking to solve this with a combination of references and work ares - want a reference solution.   
    Thanks!
    _Ryan
    Moderator message - Moved to the correct forum
    Edited by: Rob Burbank on Apr 22, 2010 4:43 PM

    I think it might work when you change it for
    insert ls_measurement->* into TABLE gt_measurements.
    For hashed table a new line here will be inserted according to given table key.
    Regards
    Marcin

  • How to deal with table.Field/sum(table.Field) BIEE

    I have a question with this table.Field/sum(table.Field), 
    and another case is: one field of table /another field of a table, but these two tables not directly relation, such as: one day sales(one table)/the last day sales(another table)

    The way to go is hierarchical field names, as it has been said.
    What would give you more flexibility, would be to give your element page's fields logical names. This would lead to building blocks, which can be freely combined. Any logic within the building blocks would not change at all, and logic going beyond a block would be straightforward to set up.
    Hope this can help.
    Max Wyss.

  • Field combination

    Dear Gurus
    in vd03>by Partner functions TAB>there is a 'sales employee'' function PE
    I want to see this also as 'table fields for selection' in SE16 for table KNA1VV. this field is not there , how can I bring this field in the 'table fields for selection' list on this table.
    or basically, I want to see a combination of [ Customer number + A/c group + Partner function 'sales employee''(PARVW) ]
    Can someone guide me here.
    Kind Regards

    Thanks, but I still am a bit confused
    but should it not be a table join with KNA1VV and KNVP.
    the field PARVW is in table KNVP. I want to see all data present in the databse with these 3 fields in action.
    I did not understand how creating a new master record data in PA30 shall show me this query result from a populated database
    can you please explain.
    Kind Regards

  • How to find table & fields of standard InfoObject?

    Hi
    How to find table & fields of standard InfoObject for creating generic DataSource?
    e.g. I want to know the table & field of 0MAINTPOS infoObject.

    You can get the list of tables involved in a particular DS by using the below method ( this another approach)
    --> RSA3 -- enter your DS ( execute later)
    --> Goto Tcode ST05 --> switch on the SQL Trace
    --> now execute the extract checker in RSA3.once done switch off(deactivate) the SQL trace.
    --> in st05 screen you can find the button "Display Trace" -- execute (here make sure SQL trace button is enabled.
    --> from the menu bar -->Trace list-->  select "combined table accesses".
    --> it will display the tables involved in it -- check for TABLE names section.... select that row Table names -- click on filter button --press F4 -- here we go it will display the list of entire tables involved in the extraction activity... here you need to sort the tables which are related to your DS.

  • Lowest value from 2 date fields combined

    Morning!
    Need a way to combine two separate date fields to determine the lowest combined value. The idea being finding an empno's overall seniority by looking at seniority date and birthdate, birthdate settles the tie in the event two empno's have the same seniority date.
    Can't find a way to do this using two date fields, only a single date field.
    I also need a way to continue finding the next empno in seniority after that, and so on. Need to increment some value or get the nextval somehow to find the next highest in seniority until the entire table has been reviewed.
    Thanks folks.

    Hey Thanks!!
    Table= Requests
    Fields: Empno, LastNme, FirstNme, Seniority_DT, Birth_DT,ReqDate,ReqTime,ChoiceNum
    Field values: vchar, vchar, vchar, date,date,date,date-time,vchar
    Examples in above order: 36525,smith,bob,08-jun-80,23-sep-60,15-mar-10,14:00,1
    The idea is that we assign (1) single day per month per employee of overtime based on seniority, and in case of a tie the birthdate settles seniority. Employees make more than one request per month so their empno appears in the table multiple times. Also a single empno can ask for one of two start times per requested day. At most, a single employee can make requests for any one of (12) days per month, on days Sun-Thu they can ask for one of (2) start times and on Fri-Sat they can ask for one of 3 start times. The "choice" field lets them indicate start time in order of preference.
    On each day on each start time, (2) different people work together, so for days 1-5 there are (2) shifts of (2) people each, total of (4) people assigned per day 1-5 and (6) people assigned on days 6-7.
    The needed output is that for Sunday-Thursday (2) people start at 14:00 and another (2) start at 18:00.
    On Friday-Saturday (2) people start at 14:00, (2) people start at 18:00 and (2) people start at 20:00.
    The idea for the report would be:
    Saturday, 13 March 2010
    1400 Bob Smith, Seniority Date
    1400 Ted Jones, Seniority Date
    1800 Tom Williams, Seniority Date
    1800 Karen Hu, Seniority Date
    2000 Mike Smith, Seniority Date
    2000 Jim Thomas, Seniority Date
    Sunday, 14 March 2010
    1400 Ed Davis, Seniority Date
    1400 Ron Thomas, Seniority Date
    1800 Tiger Woods, Seniority Date
    1800 Joe Davis, Seniority Date
    Each person may only work one day per month. In the event that there is a hole where no one put a request in, we need to go back over the remaining requests to fill them in. The original idea was to do this by:
    All choice #1 first, then start over looking at choice #2 and so on until all the days in the upcoming month are full.
    That's about the best I can explain it. The only way I can see is to do it by seniority and choice# then go around again if there's a hole. I just can't figure out how to look at both the seniority date and birthdate to ensure seniority nor can I figure the logic necessary to find the person, check if the spot is available and assign him or if not go to his next preference for that day and check if it's available and then continue to the next guy.
    It may have been simpler to explain the need in detail and ask that the structure and code be done from scratch but that's asking way too much so I thought I'd ask how to solve this problem and keep working on it from there.
    Thanks in advance again!
    ps... Haven't started the coding yet.... just need the code to accomplish finding seniority based on two date fields combined, then I'll start coding the entire thing.
    Edited by: user9320509 on Mar 10, 2010 5:33 AM

  • ANYBODY used the Currrency Conversion / Translation Rules Table yet???  Thx

    hi guys,
    we are working on the BUSINESS RULE: CURRENCY CONVERSION TABLE.
    here we have a easy three row table:
    Account Rate Type: AVG; Formula: [AVG]
    Account Rate Type: END; Formula: [END]
    Line 3: Account Rate Type: TRANS: Destination Account: XYZ;  >> Formula:[END]-[AVG]
    this works fine and great!!!!! differences within accounts of AVG and accounts of END between AVG to END rate are being posted in Account XYZ.
    here the is the requirement we trying to establish:
    for Line 3: using the AVG (of ACTUALS) and the AVG (of BUDGET) ... so different VERSIONS of the SAME ACCOUNT_1. We like to have the same differences (but differen versions) posted to XYZ account.
    what calculation do i put in the Formula field in the chart???
    anybody done this? got an idea? -
    thanks a lot, max  (BPC 7.0 NW)
    Edited by: Maximilian Weisheit on Jun 10, 2009 10:43 PM
    Edited by: Maximilian Weisheit on Jun 10, 2009 10:47 PM

    Thanks Ethans that was good explanation. So, we stayed within the version and the calculation worked fine. However, now I am wondering about the following:
    We take the [END]-[AVG] and we get the wanted result. let's say 1.5 - 1.3 = 0.2 ... So desitnation account will post 0.2. - Correct!
    Now if i run Currency Conversion / FX Trans again. it again takes 1.5 - 1.3 = 0.2 and it adds this 0.2 to the already noted 0.2 in the account = 0.4 in total. Run CC again an addiotional difference of 0.2 to the already there 0.4 which equals 0.6 total; and so on. It is adding on top what has been posted, not continiously just showing the difference in accounts.
    How do i modify that it is NOT adding, but everytime ONLY finding the difference?
    Thanks a lot, Max
    PS: Also I am wondering if anybody has detailed information on the Business Rule Table for Currency Conversion. - The BPC NW Help is rather light on the TABLE information.
    Edited by: Maximilian Weisheit on Jun 15, 2009 11:44 PM

  • Derivation rules  table name KEDE

    Hi,
    I have to fetch the values from Derivation rules maintained in KEDE & 8KER. But the derivation tables names are created by system and the names are system dependent and client dependent.                       
    Eg :  K9RS013900010 where S01 is my development system and 390 is the client. If the derivation rule is created in Quality and Production systems, the Table names will differ accordingly.
    Is there any solution to the above problem.  Is there any FM or some way to get the derivation table name.
    Thanks in advance,
    Vishnu Priya

    The derivation rules tables exist in table TKEDRS ( field Method = 'DRULE' )

  • Rule/Section field in excise invoice

    Hi,
    What is Rule/Section field in excise invoice?
    How can it be used?
    Regards,
    Ajit

    Go to SE16 for table J_2IRULES and maintain the entries. This is what OSS Note says:
    In the transaction J1IIN, when I enter a value for Rules/ Section, the system displays an error "Invalid Rule/Section entered" (8I 469). How can I enter the rules/ section here.
    Permissible Rule/Section are to be maintained in the table J_2IRULES. Only the rules maintained in this tables are allowed as possible inputs on the J1IIN screen. (The rule can be maintained as an entry in the J_2IRULES table. The rule can be of 10 characters).
    Regards,
    GSL.

  • Can't get a delimiter between Reapting Table Fields using the Double Eval formula.

    I have a problem in setting up the "Double Eval" formula, for a repeating table field.
    Background:
    I have a multiple-selection list box in an InforPath (2010) form. I want to concat all selected values in the list box and display them in a textbox with ";" as delimiter. I've gotten so far that with rules running when the list box is updated, the
    textbox content is updated listing the IDs of the selected items (I'm not sure yet if I want to display the IDs or make a lookup for the true text values, but that's another issue for later...).
    Problem:
    My problem is that I can't get the delimiter between the values. They are all listed in sequence with the ";" delimiter only at the end.
    I use the following formula ("Required" is the repeating field)
    eval(eval(Required; 'concat(., ";")'); "..")
    and get the following result:
    What I want to get into the comments text box is the string "684;239;91;".
    Any ideas what's wrong with my formula?
    (Using InforPath 2010 on a list published to SharePoint 2010.)

    Additional info that maybe is important to know:
    The multiple-selection list box is getting its values from a secondary data connection using a web service call:
    http://MySite/_vti_bin/ListData.svc/MyList?$filter=((CT%20eq%20'Product')%20and%20(CompGroup%20ne%20'OS'))&$orderby=Title
    The selections in my list box is yet stored in the field "Required" in a different SharePoint list, we can call it "BaseList", at the same site ("MySite").
    So to summerize:
    List 1: MySite/MyList
    Fields: CT, CompGroup, Title
    List 2: MySite/BaseList
    Fields: Required
    The different lists have more fields of course, but no need to list them all.

Maybe you are looking for