Info type screen change

Hi,
I have to make changes in the screen of 0105 (Communication) Infotype for subtyp MAIL. There are 2 fields USRID & USRID_LONG in 0105 IT, by  default USRID field is being displayed on the screen instead I want to make USRID_LONG field to be displayed on the screen.
Is this possible through configuration

Hi,
just do like this...
data:
  USRID like tabname-USRID,
  USRID_LONG like tabname-USRID_LONG.
at selection-screen output.
  if USRID_LONG is initial.
   loop at screen.
     if screen-name CS 'USRID'.
       screen-active = 0.
        modify screen.
    endif.
  endloop.
endif.
This code will result in hide the usrid on the screen...initially the field USRID_LONG will visible
Edited by: Kiran Saka on Feb 10, 2009 11:50 AM

Similar Messages

  • Table T588M for info type screen display:

    Hi Experts
    I have deleted relevant entry in in table T588M for an info type still the system shows some screen. where from does that screen come. Can anybody help..?

    As i understand, there is a screen element that you want to get it disabled but is not available in the table v_t588m. Is that right???
    If YES, the screen element/ field of your screen, for example 3000 of it0817, can be disabled from the screen layout also.
    Go to SE80 -> select the module pool mp081700 as your program -> select screen 3000 -> Click on the 'layout' in the application toolbar -> select the element and delete or change the properties, might be display properties in your case.
    Hope this helps.
    Cheers,
    LG

  • Change with info type screen 2002.

    Hi All
    I want to change infotype screen 2002 subtype 1200 (over time hours paid), need to add a field P2002-PREAS.
    the same thing should work for List entry for multiple entires.
    Any idea how can I modify this.
    rgds
    Anup

    Hi I have created a new screen 4099, copy of 4050 with that field, modified screen 4099 which is for subtype 1200, what programming code do I need to change??
    C

  • Changing screen layout of custom info type

    Hi we created a new custom info type from std info type 0002 .We want to realign the fields in the generated info type,but we get an syntax error if we chg it from the screen editor ... can u tell me how to chg it?

    Have you read <a href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAXX/PYINT_INFOTYP.pdf">Developing an Infotype in Personnel Administration</a> before creating your new infotype ?
    Look at pages 16-25. (in peculiar look for T588M and modification groups)
    Regards

  • Custom table needs to be updated based on changes in Info type P0000

    Hi All,
       I have a requirement wherein when we make changes to info type P0000 this should be reflected to a custom table.
    If i create a new record, delete an existing record or make changes to a record in INFOTYPE P0000 this should also be reflected in my custom table.
       My custom table has 5 fields from info type p0000 and some custom fieds.
       please can you let me know exactly which user exit to use to acchieve the solution. and where exactly i can put the logic.
    Thanks,
    Mars

    Hi Venkat,
      I tried to code in the method AFTER_INPUT and executed but there are few thing which i have come across.
    1. when ever i create a new record in PA40 and each time i save the screens of PA40 this method is called and based on check it tries to update the table taht many times.
    2. The logic which i have used in the BADI implementations is as below:
      DATA: l_text TYPE string,
                 l_answer TYPE string,
                 lw_split TYPE XXXX.  (custom table)
      IF old_innnn NE new_innnn.
        lw_split-mandt = sy-mandt.
        lw_split-pernr = new_innnn-pernr.
        lw_split-begda = new_innnn-begda.
        lw_split-endda = new_innnn-endda.
        l_text = 'Does this employee need a split STIP?'.
            Display a pop up message to the user.
        CALL FUNCTION 'POPUP_TO_CONFIRM'
          EXPORTING
            titlebar                    = 'Choose'
            text_question               = l_text
            text_button_1               = 'Yes'
            text_button_2               = 'No'
            default_button              = '1'
            display_cancel_button       = space
         IMPORTING
            answer                      = l_answer
         EXCEPTIONS
            text_not_found              = 1
            OTHERS                      = 2.
        IF sy-subrc EQ 0.
          IF l_answer EQ '1'.
            lw_split-stflg = 'Yes'.
          ELSE.
            lw_split-stflg = 'No'.
          ENDIF.
        ENDIF.
        MODIFY TABLE  XXXX FROM lw_split.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            wait = 'X'.
      ENDIF.
    3. when i try to activate this chunk of code it gives me error  saying "XXXX" is unknown. i tried to declare it under TABLES but in Vain.
    4 I have also tried to use the modify statement in IN_UPDATE instead of updating custom table in same method but its giving me same error "XXXX" is unknown. i tried to declare it under TABLES but in Vain.
    can you let me know your view on this. The above chunk of code is in case of creating a new record in P0000 info type.
    Thanks,
    Mars
    Edited by: Mars878 on Oct 13, 2009 9:18 AM

  • Enable Functional Area field in PA30 Info type 0001 Screen

    Hi,
    I need to enable Functional Area (PA0001-FKBER) field in info type 0001 screen of PA30 and the functional area should pick up value corresponding to cost centre.
    I unhide the field in T588M table, but still i dont see the field in PA30 Info type 0001 Screen,
    Can someone please let me know what other settings need to be activated for enabling functional area in 0001 screen.
    Awaiting quick response.
    Thanks.
    Sudha

    Dear Shuda,
    Please check the attached note 763962,798840,701933,755796 and 822157
    Also,
    If Funds Management and Controlling are updated in an integrated way such that the cost center is always the leading account assignment and the fund center is derived, the HR must not (and does not) support the maintenance of derived information (such as fund center). Thus there are the following three possible scenarios:
    - Funds Management (FM) is not active.   -> HR doesn't show Fund Center
    - FM is active but without CO-Integration-> HR shows Fund Center
    - FM is active with CO Integration       -> HR doesn't show Fund Center
    These scenarios can be maintained with time dependence (active from-dates): There can be a period for the first, a second time interval for the second and a third time interval for the last scenario.
    Hope this help
    Sarah

  • HRMD_ABA change pointer trigger not work for info type changes

    Hi,
      In change pointer for message type HRMD_ABA Certain changes to HR records like adding activity types to infotype 315, changing dates to infotype 0001, 0105 and 315 and adding/changing/deleting are not woking through change pointers.
    We are are replicating those changes through RHALEINI program, so can anyone let me know how to customize in case of adding this info types to trigger automatically through change pointers.
    Thanks,
    Marai

    Hi,
       Then check for change document created or not, if created then use SWEC  to  link it

  • Why does the screen change when I type certain letters?

    Something is wrong.  When I am typing along, all of a sudden the screen changes and I am no longer on mail but back to the home page.  I have checked the batteries in my wireless keyboard and track pad.  They are ok.  imac semms very hot.   I have shut it down and restarted.  Any ideas?

    Hello,
    Have you blown the dust out lately?
    Get Temperature Monitor to see if it's heat related...
    http://www.macupdate.com/info.php/id/12381/temperature-monitor
    iStat Menus...
    http://bjango.com/mac/istatmenus/
    And/or iStat Pro...
    http://www.islayer.com/apps/istatpro/
    Report the highest temps please.

  • Creating new info type in HR module

    Hi all,
    My requirement is to resave 0000 info type as 0001 on certain condition, can I do that?
    Or is it the case that for creating custom info types range should be greater than 9000.
    Thanks and regards,
    Ridhima

    Hi,
    Yes infotype can be 9nnn not less than that.
    anyhow here are the steps.
    ) Go to Transaction PM01.
    2) Enter the custom Infotype number which you want to create (Should be a 4 digit number, start with 9).
    3) Select the ‘Employee Infotype’ radio button.
    4) Select the ‘PS Structure Infotype’.
    5) Click on Create… A separate table maintenance window appears…
    6) Create a PS structure with all the fields you want on the Infotype
    7) Save and Activate the PS structure
    8) Go back to the initial screen of PM01.
    9) Click on ‘All’ push button. It takes a few moments.
    10) Click on ‘Technical Characteristics’. Infotype list screen appears
    11) Click on ‘Change’(pencil) button
    12) Select your Infotype and click on ‘Detail’ (magnifying glass) button
    13) Give ‘T591A’ as subtype table
    14) Give ‘T591S’ as subtype txt tab
    15) Give your subtype field as subtype field
    16) Save and come back to PM01 initial screen
    17) Click on ‘Infotype Characteristics’ … Infotype list screen appears
    18) Click on ‘Change’ (pencil) button
    19) Click on ‘New Entries’
    20) Enter your Infotype number and short text
    21) Here we have to set different Infotype Characteristics as per the requirement. (Better open another session with some standard Infotype’s infotype characteristics screen and use as the reference to fill yours)
    22) Save your entries.
    23) Now the Infotype is created and ready to use.
    24) If you want to change the layout of the Infotype as per your requirement…
    25) In the PM01 initial screen…Select ‘Screen’ radio button and give 2000 as the screen name, then click on edit.
    26) In the next screen.. Select ‘Layout Editor’ and click ‘Change’.
    27) Screen default layout appears…here you can design/modify the screen..change the attributes of the fields..etc.
    28) Save and activate. (Don’t forget to ‘Activate at every level)
    Feel free to revert back.
    --Ragu

  • Custom field in standard info type data vanishes

    Hi,
    We have enhanced standard info type 9 & added a custom field.
    in PAI defaulting some value to this custom field.
    In PA30 when we make changes to existing records it defaults the valu in the custom field and when we save it it saves to data base.
    After some time the value in this field vanishes.
    Any idea on this?

    Hi there
    The screen of the infotype 0009 is separated in the standard screen and the customer subscreen. When the
    bank country key is changed, then the current screen has to be refreshed: this is due as the displayed screen is dependent of the country key (eg 2000 for the international screen, as example  2006 for France, etc).
    When we refresh the screen (technically a LEAVE SCREEN is done), the customer own fields are not yet passed from the screen layout to the screen logic as at the time of the refresh the customer PAI logic is not yet processed. Unfortunately this screen logic cannot be changed as this is a central place in the infotype 0009.
    Hope this would help!
    Kind regards
    Sally

  • Who has deleted the info type?

    Hi there,
    We are running ECC6.0 with Oracle 10g Release 2 on Windows 2003 Server. On our development box, somebody had deleted an important info type. The Security Audit is not enabled in ECC. How do I find out which user deleted that info type?
    What if, instead of an info type, an important table is wrongly deleted from the ECC system? How to find out the username, who deleted it and is there a way to retrieve the table back?
    I appreciate your valuable comments / suggestions.
    Regards.
    Herbinger.

    I am not sure but have a look on table CDHDR and CDPOS. These tables store the information about change logs, may be you can get some information from these tables.
    Regards
    Subhash

  • How to Enhance the info type in ECC 6.0,

    I  face a problem while enhanceing the infotype in EEC 6.0 ,
    but i know how to enhance in 4.7, here i face a problem is
    a error message comming like this
    "" SCREEN STRUCTURES AND CONVERSION CLASSES ARE NOT CREATED IN CORE SYSTEM"""
    what is that mean.
    actually i follow procedure in EEC 6.0 is
    initally go to T-CODE PM01 , then enter the info type num and click on edit button ,it will navigate into create the strrecture ,then iam creating the domain ,data element and save active.
    then  i click on GENERATE OBJECT button.
    finalliy i face above message like that,
    plz give me an idia ..
    Thank& Regards
    varma

    Please follow follwoing steps for PA infotypes.
    1. Execute PM01.
    2. Select 4th Tab as "SingleScrn" and enter infotype no. (eg. 0001).
    3. click Generate Objects button.
    4. Will get a screen for entering fields which u want to append to infotypes.
    5. Activate it.
    Pls mark necessary points if this helps to u.
    Regards,
    Ranjith

  • Additional field in 0001 info type

    Hi all,
    I want to add a new field in 0001 info type.
    i believe this is just enhancement.
    Could you pls suggest the ways to enhance the 0001 info type accordingly..?
    Thanks & Regards,

    1. Using transaction PM01 chose the 'Enhance Infotype tab' and press the create 'All' button.
    2. In the next screen enter the new fields you wish to add to the Infotype 0001.
    3. After Saving  and Activating check the screen(using PA20 / PA30) and table PA0001. You will be able to see your new field.

  • Problem with customized info type creation

    hi
    When i am creating customized info type using T-code PM01, i get error message like "package in non original system only modifiable with organizer tools".
    The above message is coming whenever save the infotype in either customized package or local package.
    As per my observation when i save the infotype, it default takes SAP package So i need to change that package.So how can i change the package in T-code PM01.
    Please tell me the solution to overcome the error.
    Thanks,
    Ali

    Hi,
    Since infotype attribute in table T582A is clent specific, so you should maintain the entries in the target client.
    Create the table entry of your infotype in the other client in view V_T582A (infotype attribute) or via t-code PM01 and click button 'infotype characteristics. Also you can transport CR from client to client via t-code SCC1 as well.
    Hope helps,
    Chen Jian

  • How to load info type 7410 career types to Jobs or Positions

    Hello Expert,
    I’m trying to use T-code PP01 to load career types and career levels (info  type 7410 )  by LSMW,
    But I’m not able to maintain info type 7410 by pp01,
    I had change the  table T77CD to accept maintain infotype from standard transaction,
    But getting below error:
    “Time constraint not found for S 7410”
    Any advice please on how to load career types and levels by LSMW
    Thanks

    Hello,
    I can't use HRTMC_PPOM with LSMW for data load,
    I had add also CP with 7410 , C & S was there for each career types only CP was missing and I add it, but still in PP01 not able to maintain career types , check attached
    Thanks

Maybe you are looking for