HR Infotype Screen Programming!

Hi All,
I have a text field in my infotype screen which is editable.
By default, the enteries are in CAPS.
What do i need to do, if i want the field to accept "Caps" and small letters aswell?
Thanks in advance for all the responses.
Regards,
Sundar.

Sundar,
If you are working with a standard SAP infotype, fields and Screens, this change is considered a modification.
The other thing that you should check is if your field is tied to something defined in the data dictionary, then upper/lowercase is also attached to the domain of your field definition.  Changing it only on the screen may not necessarily populate the field with upper/lowercase.
If you click on the "definition" tab of the domain definition you will see a checkbox called upper/lower case.
Best Regards,
Chris H.

Similar Messages

  • Transfer control back to calling program from infotype screen

    i've developed a module pool program that uses 'call transaction pa30'BDC  to an custom infotype screen... after the 'save' button is pressed the control goes to the infotypes initial screen.
    but i want the control to come back to the calling module pool program.. how do i do that??

    Hi Joseph,
    have you considered using function module HR_INFOTYPE_OPERATION with parameter DIALOG_MODE = '2' instead of CALL TRANSACTION?
    Regards,
    Christian.

  • Feature to default values on infotype screens

    Hi All,
    Could I use a Feature (txn PE03) to determine the default values on an infotype screen?
    For example, I want the value in field FUNKT on Infotype 34 to default to say 'KLMN' if the Employee Group is '1' and the Emp. sub group is 'Z5'.
    I would like to use the screen modification config (table T588M) to assign the Feature and get the values without coding.
    I know I can achieve this by using a subroutine on dynamic actions or a BADI for infotype processing etc. but I am lazy and don't want to code if I can avoid it.
    Many thanks in advance
    Sanjay

    Thanks Sarika.
    I can create a Feature in PE03 but how do I use that in the config (table T588M)? Because if I am not able to use it in the config, I will be forced to code (using any Fn. Mods of the likes of HRFEATUREBACK*).
    The Feature ABKRS doesn't seem to be specified in table T588M as such there is bound to be coding behind it in the IT0001 processing programs.
    Cheers,
    Sanjay

  • FIle path in Screen Programming

    Hi I am new to screen programming.
    My program would pick a file from desktop and process it.
    I am a bit confused how would I give the file path. Should it be a input/output field??
    I want something like,
    PARAMETERS: filename TYPE text255 OBLIGATORY.
    ANy suggestions.
    Ster.

    Hi,
    Try this code ..
    SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETERS: P_FILE LIKE RLGRAP-FILENAME.
    SELECTION-SCREEN: END OF BLOCK B1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.
       CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
        EXPORTING
          field_name = p_file
        CHANGING
          file_name  = p_file.
    DATA : lv_file  TYPE string.
    IF P_FILE IS NOT INITIAL.
    lv_file = p_file.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                      = lv_file
       FILETYPE                      = 'ASC'
       HAS_FIELD_SEPARATOR           = 'X'
       DAT_MODE                      = ' '
      tables
        data_tab                      = LT_ITAB
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
      ENDIF.
    Regards,
    Saran

  • Plugging in iPhone 'interrupts' full-screen programs

    When I plug in my iPhone to charge, if I'm currently in a full-screen program (i.e., playing World of Warcraft), it causes the program to be interrupted and go to a partial minimization. Is there a way I can get this to stop? Thanks.

    I just started getting this same problem in IOS 7.1,  never had a problem till before IOS7.1  When it gets to step 6 or 7 it will turn to a blue screen and restart with a message on my Mac that says "iphone can not be detected" or something like that.
    Anyine got any fixes for it?

  • Screen Programming * removed_by_moderator *

    Hi everyone,
    I'm very new for screen programming in OOP's . Can any one tell me how to implement the screens in our report? plz tel me how to write attributes, element list and flow logic and also how the flow logic is implemented using layout? give me simple code...( i'm excepting ABAP code not theorotical part)...
    Thanks in Advance
    Edited by: Julius Bussche on Jul 16, 2008 8:37 AM

    Hey!
      Check out this link
    http://saplab.blogspot.com/2007/10/sample-abap-program-for-module-pool_18.html
    One thing 
       Kindly close all your questions you have posted before otherwise moderator will lock this question . Read the rules of enagagement.
    Name:  priya patil  - View user's Business Card   
    Registered:  Apr 18, 2008 
    Total Posts:  47 
    Total Questions:  28 (28 unresolved) 
    Forum Points:  0 
    Regards
    Abhijeet

  • How to hide OM infotype screen field

    Hello Experts.
    Please let me know how to hide OM infotype Screen field ? i want to hide Percentage field on IT1011.
    I know i can create alternative screen "Z" and hide the field and attach alternative screen to the Module pool.
    Please let me know if i can do this using BADI so there will not be any change to standard.
    Regards,
    Saurabh

    Hi Shiva,
    To get the detail about a table filed you can use DDIF* function module.
    Here in this particular case you can use FM   DDIF_FIELDINFO_GET.
    Pass the table name & field name.
    After executing that FM you can check   DFIES_TAB  in Tables parameter. i t will be having an entry.
    Check for filed name as   KEYFLAG  , if it is not initial ie.  X then supplied filed is Primary Key.
    If KEYFLAG is initial then supplied filed is not a primary key.
    Thanks & Regards
    Satyam

  • How to add F1 help on a field for a screen program?

    Dear all,
    Can you suggest the method / sample code to add F1 help text for a field on a screen program.
    what is the methodology to do this!!?
    Regards,
    Vj

    Hi,
    if u maintain the doccumentation for the data element of a field(if it is from data dictionary table) which u r refering to create the screen element u don't need to write any doccumentation.otherwise follow this link
    Adding F1 help.
    rgds,
    bharat.

  • Tutorial for Screen programming & Module-Pool programming

    Hi Experts,
    I have no previous knowledge of Screen programming & Module-pool programming.
    Please provide me good tutorials on those so that I can master those in a couple of days as I need to use those in my current assignment.
    I require those badly.
    Rewards assured.
    Thanks.
    Anirban.
    Moderator message: please do not ask for documents or tutorials, search for available information, do not use terms that assign a higher priority to your issue compared to all others, do not promise rewards.
    [Rules of engagement|http://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
    Edited by: Thomas Zloch on Nov 15, 2010 2:14 PM

    hai guru,
    use abapdocu----- tcode give ur keyword and search it.
    or
    sap technical .
    search in sap sdn ok.
    thanks.
    anji

  • Crystal Report Intigration using screen programming

    I am having 2 problems regarding crystal report.
    1) I have developed crystal report using crystal report wizard for table 'MARA'
    now i want to call this crystal report using screen programming. How i can do this.
    2) and how i can call parameterised crystal report using abap programming.
    can any one help me ?
    Thanks.

    hi,
    this is code for open the crystal report press the button.
    First import the crystal report  using Report  and  layout manager
    goto administration->setup->general--->Report  and  layout manager
    create one button in add-on form.when we press the button the following event triggered.
    get the docnumber for that particular form and pass it.
    Case SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED
                            If pVal.ItemUID = "btnPrint" Then
                                Dim strAcNcmr As Integer
                                strAcNcmr = objForm.Items.Item("txtDocNo").Specific.Value
                                Dim oRS As SAPbobsCOM.Recordset
                                oRS = objSBOAPI.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                                oRS.DoQuery("SELECT MenuUID FROM OCMN WHERE Name = ' Purchase Indend' AND Type = 'C'")
                                objSBOAPI.SBO_Appln.ActivateMenuItem(oRS.Fields.Item(0).Value.ToString())
                                Dim oForm1 As SAPbouiCOM.Form
                                oForm1 = objSBOAPI.SBO_Appln.Forms.ActiveForm
                                oForm1.Items.Item("1000003").Specific.String = strAcNcmr
                                oForm1.Items.Item("1").Click()
                                oForm1.Items.Item("1").Visible = False
                                oForm1.Items.Item("2").Click()
                            End If
    this is easy solution for open the crystal report for add-on form
    Thanks & regards
    B.lakshmi narayanan

  • Offline Screening program /SAPSLL/SPL_OFFLINE_SCREENING

    Hi all,
    Has anyone tried running the Offline screening program /SAPSLL/SPL_OFFLINE_SCREENING in the background.
    I have tried this but am getting a message that this program is not executable in the background.
    Can anyone please enlighten me on this.
    Thanks in Advance,
    Sam

    Yes, this program can be run in background.
    You must provide filenames in the "File Path on Application Server" area of the screen.  Specify the "Path of Source File" and "Path of Local File" fields -- please note that these file must be in XML format with specific tags.  Once you provide these parameters for these fields, you can "Execute in Background."  The result will be written to an XML file that is specified in the "Path of Target File" field.  Also, if you have enabled the configuration to "Write Audit for Simulation of SPL Screening" in the "Control Settings for "Sanctioned Party List Screening" Service" configuration activity, you will be able to review the SPL Audit Trail for any matches.
    Let me know if this helps.
    Chris

  • I/o field in screen programming

    the default data type of i/o field in the screen programming is char(1). how can we declare it as char(10), i want to capture the value of the field in one screen to another field in other screen... in doing this i am able to get only the first character....
    how to populate the whole value....
    thank you.

    Hello,
    Is the dialog program custom or SAP?
    If custom, try going into SE80 for the function group and check what the source of the screen field is.  If it comes from a structure, then you will need to increase the source field in the structure, which means you also have to check and see if any other code or program will be impacted by the field size increase.  If the field is defined directly on that particular screen, then you should be able to increase the size using the Screen Painter (Attributes tab) for that field.  You would still need to check for references to the field to see if any other code is affected.
    Hope this helps.
    K---

  • Way to see infotype screen without going PA20?

    Hi Experts,
    Is there a way to see just the infotype screen without going to PA20. I want to see the changes I am making using T588M and see which field has what technical field name and how the screen will look like when I make changes using T588m?
    Thanks a bunch,
    JESS..

    Hi,
    You can also check screen painter through transaction SE51. Give the module pool name under u201Cprogramu201D and the screen number, select layout editor and display. If you click on any field, the technical name will appear in the u201Cnameu201D row above. Further, any field with u201C?u201D is a mandatory field.
    Hope this helps.
    Donnie

  • Copy Standard infotype screen for country purpose

    Hi,
    I am trying to copy the Standard screen (2007) for the infotype IT0002 to make some country specific modification.
    However I am not able to copy the standard screen as it is asking for the Access Key.
    Can you please suggest if there is a way to copy the standard infotype screen without providing the access key.
    Regards
    Bharath

    Hi,
    Why don't you just enhance the infotype via PM01 - Enhance single screen?
    (MP000200 screen 2007)
    Regards,
    Dilek
    Edited by: Dilek Ersoz Adak on Feb 8, 2010 6:53 PM

  • Infotype screen chage

    Hi All,
    How do i change infotype screen for infotype2?.If i hit system menu  status  it shows screen number 2000.I need 2010 for molga 14 ugr92.Points will be rewarded.
    Thanks.
    Message was edited by:
            fred johnson
    Message was edited by:
            fred johnson

    Hi!
    I am not sure, if you have tries Customising User Interfaces in the IMG under personnel admin.
    Rgds
    Sarajit

Maybe you are looking for

  • CMD + [ - Doesn't seem to work? (MAC)

    Hi I'm having trouble sending items to front or back. I think that i'm doing something wrong, but can some one tell me how to, and what i should press down, to send shapes and other stuff to the back? Thank you!

  • Print files in a folder hierarchy recurisly.

    So I have a folder, that contains mainly more folders, which contains files I want printed out in order (by order i mean like all files in a folder, then switch folders, print all those files). Is there a script that someone has in which I could mayb

  • HT4796 My downloads are only opening in the text reader, my downloaded programs are not opening to run

    Everytime I download a program and select it from the download menu, the download only opens from the text reader. How do I get my downloads to open properly?

  • Can not import photos from iPhone

    I am no longer able to import photos from my iPhone 6+ with iPhoto. I get the error Unreadable Files. The following files could not be imported. The file is in an unrecognized format. IMG_0001.JPG. That is for the eight pics I have on my iPhone.

  • OS compatibility with CC

    I have two Mac's, a desktop with OS 10.8.5 and a laptop with OS 10.6.8.  Will CC Photoshop for Photographers work with both machines?