Alternative of PCL4 table

HI,
We have a edit report that displays the information about the persons whose infotype values have changed in this month, it get the person number and infotype from PCL4 table which have key field 'SRTFD' , now the searching in PCL4 is taking a long time because of huge amount of data, and the structure of SRTFD field which make it impossible to provide key field values.
I am looking for alternative approch through which we can get changed records.
Thanks,

If you need to see before and after of actual changed (updated) infotype records then the only place to see that is PCL4.  Otherwise, you can simply look at the implicit "before" and "after" via the dates, i.e., delimited records.
I will caution you, however, that has been our experience that the data in PCL4 can be very trying to analyze programmatically.  For example, delimited records will often appear as an insert followed by an insert followed by a delete operation which means that the new record was created (inserted), the old record was delimited (the ENDDA changed) and inserted and finally the original record (with original BEGDA and ENDDA) is deleted.  In that case you can look at the first and second operations (the two Insert operations) in BELEGE to get the before and after values (or the first and the last, or delete, operation).
In another case would see a only one insert followed by a delete operation.  In that case you would need to compare the "I" and the "D" records to determine what values changed. 
However, for reasons that not even our SAP consultants have been able to figure out, we've also seen bizarre scenarios such as several "I" operations followed by a single "D" operation or multiple "U" (update) operations that apparently happened at the same time.  Dynamic actions may have something to do with it but regardless it makes reporting off this cluster very frustrating.  That coupled with the lack of documentation on it makes me wonder if SAP intended anyone to do custom development with it.
There is a standard report named RPUAUD00 that I would recommend you look at.  Use it as-is if you can but if you cannot you might consider copying it and working with it as a baseline.
Good luck.

Similar Messages

  • PCL4 TABLE LOG FOR INFOTYPE 2001 IS NOT WORKING IN QUA 070 CLIENT

    Heloo,
    Could some one let me know the ways to capture the log of infotype 2001.
    I have used PCL4 table to capture all the changes made to INFTY 2001.
    This is working fine in DEV 070.
    But not working in QUA 070.
    Could someone let me know what is the problem and the solution.
    Thanks a lot for your efforts.

    Hi Lata!
    I created the absences (T554S):
    Ps grouping, Absence type text
    04,0100 VACATION WORKIN DAYS (quota working fine)
    34,0100 VACATION NATURAL DAYS
    When I check your steps I have this information
    1. Absence type screen no. should be 2001.
    I have checked in table T554S.
    Screen number quota working fine: 2001
    Screen number quota working bad: 2001
    2. Quota deduction should be selected in V_554S_Q table
    Check quota deduction quota working fine: is checked
    Check quota deduction quota working bad: is checked
    3. Check that in counting rule you have assigned correct deduction rule.
    Counting rule for quota working fine: is 010
    Counting rule for quota working bad: is 030
    The counting rule 030 is created for me, maybe this is the problem is a similar copy of the rule 010. It has different conditions because in Psgroup "04" the vacations are working days but in group "34" the vacations are natural days.
    4. In deduction rule check whether correct quota no. you have maintained.
    In deduction rule working fine the absence quota type is 10, standar leave, days
    In deduction rule working bad the absence quota type is 30,                        ,days
    I've checked the absence quota type and are similars:
    In 10 absence quota type
    ESG Time quota types: 1
    PS Grpg tm Quota Typ: 01
    Absence quota type: 10
    Time/measurement unit: Days
    Time constraint class: 02
    In 30 absence quota type:
    ESG Time quota types: 3
    PS Grpg tm Quota Typ: 02
    Absence quota type: 30
    Time/measurement unit: Days
    Time constraint class: 02
    What's wrong?
    Kind regards,
    Julian

  • Entries in PCL4 table

    Can anyone throw some light when a row will be inserted into PCL4 table related to payroll related transaction.
    I am getting an error message when processing W2C - 'Employee selection is required for this form' and upon debugging the program is accessing this table.
    There are entries in this table for my PERNR but the field SRFID is not in the format (first 6 characters should be 0's...where as entries currently in the table are like 000012......) for the row to be selected.
    So how and when a row is getting inserted into this table will be useful in solving the problem.
    Also please let me know how do I conclude that W2 is generated successfully, will there be any table entries to indicate this?
    Cheers,
    Anantha

    Dear Anantha,
    You can opt to deactivate this check by maintaining a constant 'TRESF'
    view  in V_T511K. Set its value to 1. Please refer to note 1019363
    for further details on maintaining this constant.
    Hopefully this information helps.
    Kind regards,
    Graziela Dondoni

  • Alternative of base tables.

    Hi,
      Is there any alternative for base tables, By that performance will be improved still more? Not Internal times.
    Thanks
    Avi
    Points will be rewarded

    Hi
    Use of Views instead of base tables
    Many times ABAP programmers deal with base tables and nested selects. Instead it is always advisable to see whether there is any view provided by SAP on those base tables, so that the data can be filtered out directly, rather than specially coding for it.
    Not recommended
                Select * from zcntry where cntry like ‘IN%’.
                 Select single * from zflight where cntry = zcntry-cntry and airln = ‘LF’.
                Endselect.
    Recommended
                Select * from zcnfl where cntry like ‘IN%’ and airln = ‘LF’.
                Endselect.
    Thanks
    MAx

  • Alternative to text table?

    Hi All
    I have created a custom table where the superannuation fund code (data element P13Q_FCODE), along with a start date and end date are primary keys.
    The texts for the superannuation fund code are maintained in table T5QSD.
    What I am after is as follows: when a user wants to see the contents of the table I want to also include the description (from table T5QSD).
    I cannot use the text table concept as table T591A is already using table T5QSD as a text table.
    Does anyone know if there is an alternative way to perform the task. Should I be looking at creating an event?
    Thanks in advance.
    Rajdeep Kumar

    Rajdeep Kumar
    Text table for the field Fcode and data element P13Q_FCODE is T591S.
    Check how this is ?
    Click on below link.
    [http://bp2.blogger.com/_O5f8iAlgdNQ/R_rThSm1qyI/AAAAAAAAA98/P1bxw8tUWzE/s1600-h/Superannuation-785278.jpg|http://bp2.blogger.com/_O5f8iAlgdNQ/R_rThSm1qyI/AAAAAAAAA98/P1bxw8tUWzE/s1600-h/Superannuation-785278.jpg]
    Double click on search help H_T591A for the field FCODE and data element P13Q_FCODE .
    Then check the below link.
    [http://bp1.blogger.com/_O5f8iAlgdNQ/R_rTiCm1qzI/AAAAAAAAA-E/SVvdn3DJvtw/s1600-h/H_T591A-788788.jpg|http://bp1.blogger.com/_O5f8iAlgdNQ/R_rTiCm1qzI/AAAAAAAAA-E/SVvdn3DJvtw/s1600-h/H_T591A-788788.jpg]
    Here you can see Check tabel T591A and Corresponding Text table T591S for the field FCODEand  data element P13Q_FCODE.
    I hope that it helps u.
    Regards,
    Venkat.O

  • Alternative of Bridge table in data Modelling.

    Hello Gurus,
    while doing the data modeling, we found one place where we have Many to Many joins between One Fact and 3 Dim.
    where in Dim., we mostly have only one attribute/ Dim, which relates Many to Many with Fact.
    so as in obiee we have to build the bridge table to take care of the issue.
    is there any alternative method of data modeling that can eliminate the Bridge table itself?
    I was thinking to add the dim attribute in fact itself. though it's with diff grain it should work??

    If you really have a many-to-many relationship from fact to dimension, which attribute value (which of the many) would you put on the fact?
    What is the issue you are having with a bridge table?

  • Alternative for Pooled table M_VMVAC in ECC 5 version

    Hi,
    Pooled table M_VMVAC in version 3.1i does not exist
    in ECC 5.Can anyone tell me the alternative for this?
    Pool/cluster is M_VMVA in 3.1i version
    Helpful answers will be rewarded
    Thanks
    Kiran

    Check data base view V_VMVAC.
    Regards
    Sridhar

  • Alternative for Pooled table M_VMVLA in ECC 5 version

    Hi,
    Pooled table M_VMVLA in version 3.1i does not exist
    in ECC 5.Can anyone tell me the alternative for this?
    <b>Pool/cluster  M_VMVL in 3.1i version</b>
    Helpful answers will be rewarded
    Thanks
    Kiran

    Hai Kiran
    Check the following Code in program 'RVV50L21'.
    the following Code is present in ECC 5.0
    select * from <b>shp_idx_gdsi</b> where wadat in i_datum     "470
                                     and   vstel in i_vstel
                                     and   route in i_route
                                     and   vbeln eq vttp-vbeln.
    simillar code in 3.1 version is
    select * from <b>m_vmvla</b> where wadat in i_datum
                           and   vstel in i_vstel
                           and   route in i_route
                           and   vbeln eq vttp-vbeln.
    Replacent table for m_vmvla is shp_idx_gdsi
    Regards
    Sreeni

  • Alternatives to dynamic tables for displaying dynamic data

    What methods are available for displaying data from MySQL
    with PHP on a web page? Is there any alternative to a dynamic table
    when the the quantity of data will vary? anything CSS based?
    Many Thanks

    On 27 May 2006 in macromedia.dreamweaver, Pingus mum wrote:
    > so i could just output to a div for example?
    Or a paragraph, or an <h4>, or an unordered list, or
    any other container
    tag, or the src attribute on an <img> tag, or any
    combination of the
    above. Consider the case where the database consists of press
    releases -
    date, headline, body. You could, say, make the repeat region
    like this:
    <h1>Press Releases</h1>
    <!-- start of repeat region -->
    <h2><& headlineFromDatabase &></h2>
    <p><& dateFromDatabase &> - <&
    bodyFromDatabase &></p>
    <!-- end of repeat region -->
    <address>Contact Information</address>
    Joe Makowiec
    http://makowiec.net/
    Email:
    http://makowiec.net/email.php

  • Alternative to logical table

    Hi,
    How to resolve the issue given below
    dim1 --------<- fact ->------dim2
    | |
    | |
    ▲ ▲
    | |
    | |
    |________dim3_______|
    I want dim3 to be dimensional instead of fact ( which turns out to be fact after mapping shown above ). Is there any other alternative rather than creating logical table and joining dim1 , dim2, dim3 as single entity ?
    Thanks
    Suresh

    Hi Suresh,
    First of all we don't know how your business scenario is there...
    I think your table has columns of measure and dimensions...
    At that time, you better devide measure columns into fact table and dimensions as logical dimension table in BMP layer.
    If not try this...
    create any dummy logical table.. and dummy column...
    make that column as key,
    Now connect (complex join) this dim3 to dummy table (1 to N)...
    So that now it would act as dimension rather than fact...
    Thanks & Regards
    Kishore Guggilla

  • Alternative to READ table

    Dear all,
      We can not use READ TABLE with LOGICAL  operators like  LT, LE,GT,GE ..........
    Is there any alternative to read a particular line  from an internal table  with  the logical operators......
    Thanks in advance...............

    Hi Ubhka,
    You can read the Internal table by two way 1) Using the Loop and 2) Using the Read statement.
    1) Loop at itab into wa_itab.
      If wa_itab-A LT = '200'
        * the action that you would like to perfrom like moving data from one table to another or appending  
         *data
      endif.
        endloop. 
    2) Read table itab into wa_itab.
    if wa_itab-A LT = '200'
        * the action that you would like to perfrom like moving data from one table to another or appending  
         *data
      endif.
    I my view you can try with the loop. Using loop would be a good idea.
    Regards,
    Kittu

  • Alternating row in table

    Hi
      I am having a problem in displaying rows of a table in alternative color. We have a table data fetched from a model. We make some changes on the table ui element and update. But we face problems in alternate color.
    please help
    reuben

    Hi
      You can display alternating color in a table if the readonly property of a table ui element is set to true. Otherwise it will not work :(.
    regards
    Ravi

  • Alternative of BSEG table(Vendors related)

    Hi gurus,
    Please provide alternative tables of BSEG.
    As per my Knowledge table are BSIK , BSAK.
    is it right?
    I need extact line item number(BUZEI) of document number(BELNR).
    Please send code how can i get the line number based on
    BSIK , BSAK.
    Thanks & Regards,
    Padmaja.

    Hi
    BSIK and BSAK are rights, so if you have the doc. number and item the code is
    DATA: WA_ITEM TYPE BSIK.
    Get open items
    SELECT * FROM BSIK INTO WA_ITEM
                                      WHERE BELNR = <BELNR>
                                            AND BUZEI  = <BUZEI>
    ENDSELECT.
    IF SY-SUBRC <> 0.
    It means the item is cleared
      SELECT * FROM BSAK INTO WA_ITEM
                                          WHERE BELNR = <BELNR>
                                                AND BUZEI  = <BUZEI>.
       ENDSELECT.
    But you should consider the performance will be very bad if you don't use the company code and vendor code, it's very strange you have only the doc. number and item number without knowing the company code.
    Max

  • Alternative to JClass table

    Hello All,
    I am in need of your suggestion.
    Already we are using a JClass tables in my Swing based java application to load the data from the database.
    And i wish to migrated to the latest and much user friendly way (would be a freeware) to present the data in the table.
    Can you please suggest me a good option in this regard.
    Thank You,
    Arun S

    This forum is about the JDK.
    JClass is not a part of the JDK.
    Try a JClass forum.
    Locking.

  • Alternative to REGUP table

    Hi, I am trying to get information from REGUP table however in my WHERE clause in the SQL statement, I only have VBLNR column, since we cannot create index to this table, my access to this table is slow.
    My question, are there any other tables in which the information in REGUP table is also stored so I can use that table(s) instead of REGUP?
    Pls advise.
    thank you.

    Hi,
    Try these:
    REGUP_CODE
    REGUPO
    REGUPW
    Warren

Maybe you are looking for

  • Intel Mac Mini Duo on WiFi network

    Just got my Intel Mac Mini Duo and had upgraded to 10.4.6, firmware, boot camp, Windows XP Pro all running alright. I had an Airport Extreme and Airport Express based wireless network at home configured with closed network. My PB G4 and another Sony

  • Problem in REAL TIME loading

    Hi Expert ! The problem is that the REAL TIME infopackage load 0 records. I build a real time extractor in R3 based on a view (Fi table) . In BW i created a dso DTP (DTP FOR REAL TIME) infopackage(Adapter: REAL TIME) . the dtp and the infopackage are

  • BlackBerry Desktop Software error when trying to run from my computer desktop

    Hi: I have installed the BlackBerry Desltop Software ver 6.0 on my Dell Dimension 4700 PC @3.4 GHz which runs Windows XP Professional Version 2002 with Service Pack 3 and has 1GB of RAM. Each time I have tried to start the software from the desktop i

  • Exporting JPEGs from InDesign CS4

    I've exported jpegs from InDesign CS4 for years and each time I get an Export JPEG dialog box that gives me the option to adjust the resolution. Suddenly, when I export to JPEG, I get no dialog box and it automatically creates a JPEG at 300 dpi. I've

  • Reports Oracle 10G

    Hi all, i´m newly in this forum, but i can see much activity, thats good ! Well, my main question is : How can i do reports from Oracle 10G Additional Info: The server is : Solaris 10 + Oracle 10G And i can access it through to a remote desk (Windows