Modification of PD infotype 1050 screen

Hi All,
I would like to know the process of hiding fields on a standard PD infotype like 1050.
I know of the table T77CD and creating an alternate screen.
How do you go about creating an alternate screen and where do you specify the Z-module pool for it?
Please let me know.
Thanks and Regards,
Pankaj.

Hi
Couple things you need to check.
First, make sure the ZP000100 program and the 0200 dynpro are still present with their custom fields, after that go to T582C table and check if the link between the standard program and the Z one is still in that table (There has to be an entry in that table with the standard program name and its dynpro and the Custom Program name and its one, usually MP000100 - Dynpro 2000 and ZP000100 - Dynpro 0200).
Finally go to T588M table and check if the corresponding entry for the enhacement is still there (Usually ZP000100 Dynpro 200) If you double click on that entry you can check whether the fields are ready to be shown or not.
Best Regards

Similar Messages

  • Modifying the HR Infotype 25 Screen

    There are 6 fields on the infotype 25 screen we are using for this one client, P0025-PKT01 to P0025-PKT06, that use the data element BUPKT, which in turn is of the domain DEC3 - it is of type P, but it is essentially a whole number up to the hundreds.  Our client requested that these fields be able to accept numbers with 3 decimal places.  So my plan of action was to modify BUPKT to be of domain DEC3_3 (since doing that has no effect on other processes anyway), and then modify the screen fields to accommodate the change.
    This is where I got lost.  I only managed to manually extend the length of the fields, and my gut feeling says that I'm missing something.  Sure enough, I tried to create a record in said infotype, and the process still treats the contents of the fields as whole numbers.  For example:
    KRT01 = 0.70
    PKT01 = 2.95
    PROD1 = KRT01 * PKT01
    PROD1 = 0.70 * 2.95
    PROD1 should be 2.065, but the total says 2, 065!  It interpreted 2.95 as 2, 950 (it's correct in having a length of 6, but it has no decimal point).
    Does the answer to this problem lie in the screen modification, or will this require enhancements?  Or can I just regenerate the entire screen?  Please help me.

    normally the dynpro inherits field attributes from DDIC, so if you changed the data domain it should be OK
    now if you have a problem with values, the easiest way will be to divide them by 1000 each time you handle a calculation on those values...

  • Initial values of dates on Infotype 41 screen

    Hi,
    I am running same action (Rehire) in two different systems (quality and development )  - but the initial values of the dates that appear on the infotype 41 screen are different.
    can someone suggest me the reason behind it ?
    From where are the initial dates fetched on IT0041 screen when running the action . Why are the different ?
    Thanks,
    Nitu Kumari.

    Hi,
    For that, please draft a dynamic action code as shown below:
    IType FC No S Variable Function Part
    0000 06 10 P PSPAR-TCLAS=u2019Au2019
    0000 06 12 P T001-MOLGA=u2019XXu2019 (XX u2013 country grouping like 10 for US)
    0000 06 14 P PSPAR-MASSN=u2019YYu2019 (YY u2013 rehire action code)
    0000 06 16 I COP,0041,,,
    0000 06 18 W P0041-DAR01='A2'
    0000 06 20 W P0041-DAT01=P0000-BEGDA
    The table is T588Z. Let us know if you need further assistance.
    Donnie

  • Enhance infotype 0077 screen number 2008

    Hi,
    I want to enhance infotype 0077 screen number 2008.
    Using PM01, i created enhance single screen record with infotype 0077 with version 08.
    But the additional field appear on screen number 2000 instead of screen number 2008.
    How to add the additional field to 2008 instead?
    Thanks.
    Best regards,
    Xiang Li Heah

    Hi Volker Binder,
    Try "Infotype Screen Control" in T588M.
    T588M is a table and there is no column name called "Infotype Screen Control", can you provide further infomation on this?
    Hi Sheetal,
    My requirement is to add sexual orientation field into IT 77.
    The added field need to be display/edit on PA30 (screen number 2008).
    Using PM01, i created single screen enhancement  on IT 77 with version 08 (GB).
    Using PA30, by selecting different employee, the additional fields display on screen number 2000 but it is not display on screen number 2000.
    Many thanks.
    Best regards,
    Xiang Li Heah

  • Enhancements on Infotypes header screen

    Can I insert a push button in Infotype header screen?
    How can I do it?
    Regards
    Angela

    Hi all,
    I need to know if is it possible to add a custom field in COR1 for process order. I searched forum for something about this, but cannot find anything.
    can anybody please suggest me something ?
    thanks
    Kruthik

  • Infotype 1050 - Job Evaluation

    Question: Anyone know of infotype 1050 is being used by or could be used by the BSP page of Job Pricing in ECC 5.0?
    I went through the entire process from creating survey provider -> job matching -> aging -> composite result -> salary adjustment and don't see it write to this infotype.
    Was curious to know if that is part of the old functionality which is left there or it could be used by the job pricing functionality.
    Thx

    Hi:
    We are not using this IT (1050) with ECM. It can be used only as reference.
    Thanks,
    Prashant

  • How to use MODIF ID at a SELECTION-SCREEN

    Hello,
    how can use a SELECTION-SCREEN block with MODIF ID? My SELECTION-SCREEN definition looks like the example below and I want to combine it with a MODIF ID - how can I do this?
    SELECTION-SCREEN BEGIN OF BLOCK par3 WITH FRAME TITLE text-003.
    PARAMETERS:    p_pfadn  LIKE rlgrap-filename
                   DEFAULT    '/home/dsbftp/due_test/konditionen_avs3.txt'.
    SELECTION-SCREEN SKIP 1.
    PARAMETERS:    p_trans  TYPE tcode DEFAULT 'JC03',
                   p_appl   TYPE kappl DEFAULT 'J0'.
    SELECTION-SCREEN END OF BLOCK par3.
    thx

    Hi Mike,
    To modify the appearance of an input field on the selection screen, you must assign the parameter to a modification group as follows:
    PARAMETERS <p> ...... MODIF ID <key> ......
    The name of modification group <key> should be a three-character variable name without quotation marks.
    The MODIF ID addition always assigns <key> to the SCREEN-GROUP1 column of internal table SCREEN.
    Parameters assigned to a modification group can be processed as an entire group with the LOOP AT SCREEN and MODIFY SCREEN statements during the AT SELECTION-SCREEN OUTPUT event.
    You can do the following modifications to the selection screen elements:
    1) REQUIRED: When you set REQUIRED = 1, a field that is ready for input is made mandatory
    2) INPUT: When you set INPUT = 1,  Ready for input, even if Input is not set statically.
    3) OUTPUT: When you set OUTPUT = 1, Field is for display only
    4) INTENSIFIED: When you set OUTPUT = 1, Field is highlighted
    4) INVISIBLE: When you set INVISIBLE = 1, Screen field is not displayed, regardless of the static attributes.
    5) ACTIVE: When you set ACTIVE = 1, At the beginning of the PBO, ACTIVE is always set to 1, regardless of the static attribute settings. Setting ACTIVE to 0 automatically sets INPUT = 0, OUTPUT = 0, and INVISIBLE = 1. 
    Here is the sample code:
    REPORT modif_example.
    PARAMETERS: FIELD1(10) MODIF ID FL1,
                FIELD2(12) MODIF ID FL2,
                FIELD3(15) MODIF ID FL3,
                FIELD4(20) MODIF ID FL3.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
      IF SCREEN-GROUP1 = 'FL1'.
        SCREEN-INPUT = '1'.
        MODIFY SCREEN.
        CONTINUE.
      ENDIF.
      IF SCREEN-GROUP1 = 'FL2'.
        SCREEN-INPUT = '0'.
        MODIFY SCREEN.
        CONTINUE.
      ENDIF.
      IF SCREEN-GROUP1 = 'FL3'.
        SCREEN-REQUIRED = '1'.
        MODIFY SCREEN.
        CONTINUE.
      ENDIF.
    ENDLOOP.
    Hope it helps.
    Regards,
    Neeraj Gupta

  • User Id long field not displayed in communication infotype overview screen

    System: SAP 4.7
    After HRSP upgrade, in communication infotype overview screen (Program MP010500 and Screen 3000), the user id long field (technical field USRID_LONG) is not displayed for email subtype 0010 and CELL.
    For subtype 0001, the field (USRID) is still is visible.
    Any help is appreciated.

    Hi,
    Please check OSS note 1561054.
    Hope this helps.
    Donnie

  • Infotype 0071 - Screen Modifications

    Hi SAP - gurus,
    I would like to hide few fields in infotype 0071 - Pension Funds GB.  I am not able to find the  fields in the screen modifications table.  Can you let me suggest me how I need to go about this??
    Thanks in advance for your help.
    Regards,
    Lakshmi

    Hi Dilek,
    Thanks for your quick response.  I am checking in Module Pool - MP007100 Variable key - 05 since we have not configured the Pension schemes as Flat, Percentage or Mixed.
    Pls let me know your suggestions.
    Regards,
    Lakshmi

  • Can we do screen modifications for OM infotypes?

    Hi Experts,
    We have a requirement where we need to hide the business area field in the IT1008(Account assignments). Can any one please let me know how to do this?
    Thanks,
    Revanth.

    try
    to identiry the Module screen number and programme
    and later check the same in V_T588M 
    check in feature PA1008

  • Adding field from Custom Infotype in Screen Header-PA30

    Hi all,
    Can we add the fields from custom infotype to the screen header in PA30? When I tried through Change Screen Modifications, I could not see the custom infotype in the Infotype column, so I could not select the required field.
    Please guide.
    Thanks in advance.

    Hi,
    When you take a drop down from the infotype column, you will see a window with infotypes. By default, it is restricted to 500 entries. To change that, click on the narrow bar under u201Crestrictionsu201D (has a downward arrow) and change the maximum number of hits to 999. You will then get all the infotypes including the custom ones.
    Hope this helps.
    Donnie

  • Modification groups for infotypes

    Hi All,
    Could anyone please explain me the concept of modification groups in the contest of standard infotype screen fields in plain words? Is there any limit to the number of values that can be assigned to a particular modification group?

    Hi vijay,
    1. The modification group fields (4)
       which are avaialble in infotype screens,
       are actually available in all kind of screens.
    2. The purpose of them is to :
      a) group similar related fields
      b) so that at the same time,
       (at the same time means, in a loop)
       (other wise we have to give code for each field, one by one)
      c) they can be in EDIT MODE, Display MODE
      d) or INVISIBLE mode
      e) we can use the combination of 4 modification group fields
      f) for our any permutation/combination requirement.
    regards,
    amit m.

  • Default Wage Type Values in Infotype 8 screen using  exit EXIT_SAPFP50M_002

    Hi Experts,
    I am facing an issue with defaluting few of the Wage Type Amount/Percent values in Infotype 8 when PAI gets triggered while chnaging the record.
    I have implemented the custom logic and updating Wage Type amount for IT0008 sturcture in PAI ( PBAS0001 -> EXIT_SAPFP50M_002) and again rewriting the data back to screen by using cl_hr_pnnnn_type_cast=>pnnnn_to_prelp. But the changed data is not getting shown on the screen. Can some one help me out on this issue.
    I have tried with SHOW_DATA_AGAIN = 'X', but this is leading to non functioning of SAVE button. No BADI will suit for this requirement. How to acheive the solution for this issue?.
    This is an high priority issue for us and would appreciate your help in resolving this issue.
    Thanks and regards,
    Srikanth Reddy.

    Hi Srikanth
    Try updating IT0008 by submitting a report, as mentioned below:
    IF
    UR CONDITION
    SUBMIT ZHR0008 (for example)
    ENDIF.
    In ZHR0008
    CALL FUNCTION 'HR_EMPLOYEE_ENQUEUE'
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
    CALL FUNCTION 'HR_EMPLOYEE_DEQUEUE'
    Hope this helps
    Best Regards
    Reddy

  • HR infotype 0032 screen issue

    When I 'create' an infotype 0032 record I get 1 field i.e. 'Previous Personnel No.'.
    When I go to overview mode there are many other fields i.e. 'Rule', 'Car Value', 'Plate No', 'Asset Number', etc.
    How do I maintain or change the entries for the fields in the overview screen, as these are only displayed in the overview screen and not in the 'change' or 'create' screens?

    hi,
    open pa30 transaction.
    give emp no.
    infotype 32, click on change button.
    now u can change ur fields.

  • Custom Infotype - Overview Screen ( Screen 30000

    Hi All,
    I have developed a custom infotype. Need some inputs regarding the overview/List screen Please !
    the overview screen primarily is used to list the records for date ranges.i.e. every line / row will have a unique date range for which the record is valid.
    But is there a way in which we can get multiple rows for a date range in List Screen ??
    example.. If screen 2000(create/display screen) has 3 rows( Listed below) for a date range Date1 to Date2.
    (these records below are in the table control).
    Row 1. Name1 Age1 Dob1
    Row 2. Name2 Age2 Dob2
    Row 3. Name3 Age3 Dob3 ... and so on..
    Now the List Screen / Overview screen 3000 - This is how its needed to be seen...
    Row1 Date1 Date2 Name1 Age1 Dob1
    Row2 Date1 Date2 Name2 Age2 Dob2
    Row3 Date1 Date2 Name3 Age3 Dob3
    Instead of (This is what comes up on Screen 3000 now)
    Date1 Date2 Name1 Age1 Dob1 Name2 Age2 Dob2 Name3 Age3 Dob3
    ( The Screen Layout has been modified to add columns to accomodate Name2 Age2 ..... etc)
    Any suggestions/inputs will be highly appreciated !
    Regards,
    Mark

    HI
    I tried hiding it with the help of code.
    Still not able to achieve the result.
    THe below is the code what I am using.
    Please check it and suggest me.
    if psyst-ioper EQ 'LIS0' or
        psyst-ioper EQ 'LIS1' or
        psyst-ioper EQ 'LIS9' .
         loop at SCREEN.
      if screen-name EQ '*P9009-ZWCADM' or screen-name = 'P9009-ZWCADM'.
        screen-active = 0.
        endif.
        MODIFY SCREEN.
      endloop.
      endif.
    Still able to see the fields on the screen.Not being hidden.

Maybe you are looking for