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

Similar Messages

  • Screen Modifications for Travel Privileges (0017) screen

    Hi all,
    I am trying to change the screen modifications for Travel Privileges with module pool MP001700.  The problem is I can't find the module pool through the IMG>Personnel Management>Personnel Administration>Customization User Interfaces>Change Screen Modifications. If not here, where/how can I do this?
    Your help is much appreciated.
    Thanks.
    Regards,
    Eric

    Hi guys,
    Thanks for the replies but I was looking to do screen modifications preferably by non ABAP methods. I have found the solution where you need to create the module pool manually and the fields selections will appear.
    Regards,
    Eric

  • How to can we do selection-screen modification for LDB?

    Hi All,
    I have custom field in my selection-screen of LDB PNP.
    Can you people please let me know how can I put the selection-screen modificaiton For ex:
    i have created
    parameters a as checbox.
    select-options: p_btrtl for p0001-btrtl no-intervals.
    now If the check box is selected then p_btrtl we can enter values or esle If check box is not selected then p_btrtl will be grayed out, ( I.e. SCREEN-INPUT = 0)
    This is simple from ABAP without LDB. But with LDB can we achieve?????????????
    Satish
    Edited by: Satish Vasireddy on Jun 23, 2010 4:05 PM

    you can use the following logic for the additional selection validation. I have done by using PNP LDB. Ex : I have done for one of the field in IT0377.
    SELECT-OPTIONS: s_bplan FOR p0377-bplan.
    *&      Form  check_selection_0377
      This subroutine is used to check the selection screen
    FORM check_selection_0377.
      LOOP AT p0377 WHERE pltyp  IN s_bplan
                     AND levl1 IN s_lti
                     AND   begda LE pn-endda
                     AND   endda GE pn-begda.
        CALL FUNCTION 'HR_CHECK_AUTHORITY_INFTY'
          EXPORTING
            tclas            = 'A'
            pernr            = pernr-pernr
            infty            = p0377-infty
            subty            = p0377-subty
            begda            = pn-begda
            endda            = pn-endda
            level            = 'R'
          EXCEPTIONS
            no_authorization = 1
            internal_error   = 2
            OTHERS           = 3.
        IF NOT sy-subrc IS INITIAL.
          DELETE p0377.
        ENDIF.
      ENDLOOP.
    selection not found and no value selected
      IF sy-subrc NE 0.
        READ TABLE s_bplan.
        IF sy-subrc EQ 0.
          REJECT.
        ENDIF.
        READ TABLE s_lti.
        IF sy-subrc EQ 0.
          REJECT.
        ENDIF.
      ENDIF.
    ENDFORM.                    " check_selection_0377
    Regards,
    Preetham

  • Can I disable screen dimming for accelerometer-only game?

    My game uses a little touch, but during most levels just accelerometers to control it (like a marble game). After playing for a while the screen will go dim then to black if the player doesn't touch the screen. Is there anything I can do to disable this power-saving feature while the game is running?

    Not possble.
    http://www.apple.com/feedback/iphone.html

  • At Selection Screen modification for a paramter

    hi
    two questions
    I am trying to make a parameter field have a default value with un-editable mode...
    So I did it this way
    *& Report  Z_506757_TEST3                                              *
    REPORT  Z_506757_TEST3                          .
    TYPES: STR(20).
    TABLES: VBRP.
    SELECTION-SCREEN BEGIN OF BLOCK B1.
    PARAMETERS: FNAME TYPE STR,
                LNAME TYPE STR,
                FINAL TYPE STR DEFAULT '200'.
    SELECTION-SCREEN END OF BLOCK B1.
    *INITIALIZATION.
    final = '200'.
    APPEND final.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF SCREEN-NAME = 'FINAL'.
          SCREEN-INPUT = 0.
          MODIFY SCREEN.
        ENDIF.
        PERFORM MERGE.
      ENDLOOP.
    *&      Form  merge
          text
    FORM MERGE.
      CONCATENATE FNAME LNAME INTO FINAL.
    ENDFORM.                    "merge
    I dont get the default value as 200.. if the screen-input = 0... so how should handle this problem
    Another problem is if i fill the FNAME AND LNAME fields, WITHOUT PRESSING THE EXECUTE BUTTON i should get the value filled in the FINAL field
    Can this be handled in the At-SELECTIOn Screen output
    Is this possible

    I tried this code in my system and it works as expected. The field FINAL is not input enabled and is defauled to 200.
    REPORT zkartest.
    TYPES: str(20).
    PARAMETERS: fname TYPE str,
                lname TYPE str,
                final TYPE str DEFAULT '200'.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF screen-name = 'FINAL'.
          screen-input = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.

  • Screen Modifications Recruitment Module

    Dear All,
    I wanted to make screen modifications for Intial entry of basic data's initial screen and even organisational assignment and other recruitment infotypes. But unable to find any pertaining to them. Can any one suggest me on this...
    Regards,
    Rajasekar

    Hi,
    Check feature MASSN via PE03: Determining the Fast Entry Dialog Module.
    And check the return value in table TDCT, you will find the screen and program call by PB40 Initial Entry of Applicant Data.
    And you can create your own dialog module to adjust the initial screen or change the exist one.
    Hope helps,
    Chen Jian

  • Re:Screen Modifications

    Hai Experts,
    we are doing screen modifications for infotypes that we can use through PA30,
    i want to know whether its possible to make screen modifications while performing actions(pa40),
    if possible what is the procedure.
    Regards,
    Chiran Reddy.

    Hai Navneet,
    Thank you for your reply,i want to know that if we perform any screen modifications througgh module pool program,its impact will be both on pa30 and pa40 also.
    my requirement is that in an infotype
    some fields will be active while hiring
    same fields will be inactive while promotion
    same fields will be hidden while transfer.
    for the above process,is there any solution.
    Regards,
    Chiran Reddy.
    Edited by: chiran reddy on May 9, 2008 6:14 AM

  • Here is how to enable full screen mode for AIR Mac Desktop Apps

    I just discovered that with a very simple native extension method, I can enable full screen mode for AIR Mac Desktop Applications.
    This gets you the full screen icon in the top right, and it works perfectly with no changes to my code. (Obviously only works on Lion and above, since this is a Lion feature)
    Enjoy.
    Here's the code:
        FREObject _EnableFullScreenMode(FREContext ctx, void* functionData, uint32_t argc, FREObject argv[])
            //We should be okay to do this, even on 10.6, according to this post:
            //http://www.cocoabuilder.com/archive/cocoa/311124-implementing-full-screen-for-10-7-but-app-should-also-run-on-10-6.html
            //We can't use [NSApp mainWindow] - didn't appear to work
            //This seems to though:
            NSArray * allWindows = [NSApp windows];
            if (allWindows.count > 0)
                NSWindow *mainWindow = [allWindows  objectAtIndex: 0];
                NSWindowCollectionBehavior behavior = [mainWindow collectionBehavior];
                behavior |= NSWindowCollectionBehaviorFullScreenPrimary;
                [mainWindow setCollectionBehavior:behavior];
            //TODO: Return a boolean instead depending on if we found the main window
            return NULL;

    Press Control + Command + F on your keyboard to enter or exit full screen mode.

  • Find screen number for enhancement.

    How to identify screen number for a particular standard SAP transaction for enhancement. Suppose I want to enhance any screen of any transaction how to search/identify customer screen number and enhance them, I want to add some fields or tab or anything else.

    Hi Avirat,
    You can get the screen number for screen enhancement using the following methods:
    1) Googling  on the Tcode or by reading OSS notes .
    2) Go to SPRO transaction . Navigate to the application component and see whether any section on Enhancement exists.
    3) Other ways of finding it are -
        i) CMOD based screen exits -
    Here the 4 digits 0101,0111,0201,0211,0301,0311  are the screen numbers where enhancement can be done .
    In case project is already implemented, get the project name from MODACT table.
    ii) For BADI based screen exit - Do a look up on SXS_SCRN table
    Regards,
    DPM

  • Screen change for payment

    we want to hide cash discount column in standard  "post incoming payment" screen, is it possible by changing screen variant or user exit?
    I tried, but haven't got it, it seems only document number, Sales order number column can be hide

    Hi,
    You can not create screen variant for F-28 as it is not a dialog program.
    So I don't think that it can be changed as it's a sap defined standard t.Code.
    You can define the zero tolerance for cash discount to the user authorization in document posting in customizing OBA4 and assign to user in OB57.
    Regards,
    Gaurav

  • How to upload data for custom infotype

    Hi  Friends
    Can we use HR_INFOTYPE_OPERATIONS   FM  for custom infotype too  or is there other way or other Standard FM to upload data for custom infotype  starting with 9000..etc.
    Points will be there for sure.
    Thanks
    Meeta & Roopa

    Thanks for quick response.
    my qns is can we use Standard FM like HR_INFOTYPE_OPERATIONS  for custom infotype too ?
    in my requirment  input will come from portal form and in background  Java Wd is going to use these FM  but i have this big  doubt can we use these standard FM for  uploading data in custom infotype as well or else is there any other way.. but for sure we can't use BDC and LSMW in this requirement .
    Thanks Meeta & Roopa

  • Screen layout for FSV

    Hi,
    How to create the screen layout for the financial statement version? What is the T-code?
    Thanks
    Sridevi

    I don't think you can have a screen layout for FSV. FSV in short is the represenattion of GL accounts in a Hirarchial way.
    When you have created your FSV in OB58, this FSV is available in all the standrd todes that are using FSV as a base and the screen layout that the Tcpde provides is avaialable in the same Tcode.
    For Example if you are using F.01 after executing the report, you have the chnage layout option which you can use.
    Hope you understood.
    Reward points if useful.
    sarma

  • Screen layout for Customer group

    Is there any way we can define a screen layout for a particular customer group(having particular fields mandatory and remaining optional).
    Any help will be appreciated.
    Thanks,
    ALAM.

    It is through the transaction code OBD2
    The path is
    SPRO-FINANCIAL ACCOUNTING-ACCOUNTS RECEIVABLE AND ACCOUNTS PAYABLE-CUSTOMER ACCOUNTS-MASTERDATA-PREPARATIONS FOR CREATING MASTERDATA-DEFINE ACCOUNT GROUPS WITH SCREEN LAYOUT
    Hope this helps.
    Pls reward if this helps.

  • X6 full screen handwriting for Chinese language do...

    I bought Nokia X6 in Hong Kong 2 months ago, at that time I can use full screen handwriting for Chinese language. But after updating the SW I'm no longer able to use Chinese handwriting input.
    Help me please to offer me some advices on how to solve this problem, thanks in advance.

    I think you need to find a Chinese font that works when you install it into your operating system... not all fonts are created equal, and not all fonts work... I don't use Chinese, so can only suggest using Google to search for a font that works with your Mac

  • Need screen protector for macbook white A1181

    can't find screen protector for macbook white A1181. I am not sure if screen size is 13 or 13.3.
    Does anyone know where one can be purchased?
    Thanks
    MacBook (13-inch Late 2007)
    Macbook 3.1
    Intel core duo
    2.2 Ghz
    L2 cache 4 mb
    Bus speed 800 mhz
    Memory: 2 GB 667 mhz ddr sdram
    EMC 2200
    MB062xx/A
    111.79 hard drive

    Hiya.
    All the 13" MacBooks are 13.3" diagonally.

Maybe you are looking for