Display Problem in Custom Infotype

Hello Experts,
                      A problem is being encountered in the display of data using the overview icon for a custom infotype. When we enter data through transaction PA30, we are able to see data as per the date validities when the user clicks on display icon. But when the Overview button is clicked, the data is not being displayed properly.
The following comments were logged with the following dates.
02.12.2007 31.12.9999 - Comment 1
14.11.2006 30.11.2006 - Comment 2
01.01.2006 13.11.2006 - Comment 3.
when the same is observed using Overview icon, data is not being diaplyed properly.
Any help would be greatly appreciated.
Thanks
Srinivas.

Hi Sankhadip,
                       Thanks for your reply. The problem is in my Custom IT9005. The time constraint of the infotype is 2. I am using LSMW to upload data. I am not having any problem with loading data as of now, but its only wit the overview icon, its not updating properly.. Please help me with this. Thanks again for your response.
Srinivas.

Similar Messages

  • Problem in custom infotype module pool

    Hi experts,
    I have created custom infotype using PM01 where i am showing fields Basic and HRA. When I enter the value for Basic, automatically the calculation for HRa should be done depending on formula. Also, the HRA fields should be only output field. When I do the changes in the module pool PBO and regenerate the object , the changes I made get disappered. Do I have to create Z of the includes. If so, how to assign it to the infotype?  Please help me to solve this problem since its urgent.
    Thanks in advance.
    Proper solution would be rewarded.
    Ujjwala

    C
    This is the flavour of Infotype.
    When you regenerate the Infotype, you are again reassigning the Chanrecterstcis of your Infotype. so the Existing will get regenerated with the Standard Code.
    To avoid this what I suggest you is.
    After finishing the Regeneration then edit the Module pool of the Infotype basically Screen 200 then add your code and Activate it there itself. Hope you got it.
    If you again Regenerate it you loose your Code.
    If you have further Questions please let me know.

  • Problem in custom infotype.

    Hi friends,
    I have two problem on creating custom infotype 9010.
    The infotype has 4 field:
    docu_type -> subtype field
    Docu_number
    cost -> DE:WAERS
    cost_curr -> DT: Curr length 10 dec 2
    I referred the cost to the cost_curr field of the infotype 9010
    First Problem
    The infotype is created but when I tried to enter the cost via pa30
    put 50 on it, and press enter, 50 will be changed into 5000. But when I re-enter again, the ammount remained unchanged.
    2nd Problem.
    For the infotype i need to give a further information on the screen.
    Such as that, it looks like the screen on IT0022 where when you put the educational establishment, the text of the subtype appears beside it. How do I suppose to do things like that with my infotype so that when I enter 4 as the subtype field, the subtype text appears.
    Thanks

    prob 1 .
    what is the reference field u have given for the currency of ur 9010 table .. just check the reference field u have given for currency ..
    how are u handling this in the pai part of the code , can u just make the field pass to a char field and then reassign it to the screen field .. for primary investigation.
    prob 2.
    u need to maintain a field just adjacent field in the layout as ouput field only . and populate this field with the suitable text once u enter the subtype field which is input field .
    this u need to do in the pai part of the infotype mp901000 code  ..
    if p-styp is not initial .. "subtype is present fire the text part .
    populate text to screen field p9010-stxt.
    endif.

  • Making a field as display only in custom Infotype.

    Hi,
    I have to a requirement to make a field as display only in a custom infotype. This field should be greyed out while entering data via PA30 for any employee such that it wont allow to eneter data manually but it gets updated by a program. And also this field should have a default value , say, NO.
    Please help me as this is too urgent.
    Regards,
    Binay.

    Hi Binay
    Please go to Screen Painter SE51 for your custom infotype program MP9XXX00
    9XXX - infotype number.
    Go to Layout editor for your Single screen (Screen Number 2000)
    Double click on the field you want to make display only
    In the screen attributes DISPLAY OPTIONS for that field choose "Output Only"
    Activate Layout.
    If you want to code something to be populated for the field code in PAI or PBO modules in the Module pool program
    Its very easy.

  • Problem in custom infotype --urgent

    Dear Freinds,
                i have create a custom infotype , iam facing one problem when i say
    create and enter into the screen, and if the user doesnt do any change any thing
    in the screen (i.e if he is not performing any changes in the screen) and hits
    the button back , it is asking do  you want to save.  Please let me know why it is  behaving in this way.
    regards
    syamala.

    Dear Pranesh
                 i have created the custom infotype..........while testing i have found that
    if i am creating a new record and we dont select any record in the infotype
    and try to exit (by clicking X button) then a popup button is coming for a confirmation do you want to save the record.......here i have not select any field
    after me pressing F5 (create) in PA30 . So now if  say yes it saves record , if no
    then it exists out of infotype without saving............this should not come like this
    please let me know what i should do in this regard.
    however--- if  enter begda and endda  it is saving on the dates i have entered...so it will be new record only...........it gets delimited ...as begda and endda or not defaulted.
    thanks in advance

  • Updation problem in custom infotypes.

    HI ALL,
    I have created two custom infotypes, and the process is that one infotype updates the other infotype.
    When i open the first infotype by pa30 and then open the second and changes some value which update the first infotype table. now when i go to first info type it shows the old value. untill i exit pa30 and start again then it shows the updated values. what is the solution for this.
    Thanks.

    Hi abap sap,
      It is becasue of PAI and PBO module itterations.
    Go to the custom related program created with that infotype and insert your logic to clear the field contents.
    Reward if useful!

  • Display problems with custom JComponent

    I am having issues displaying two custom JComponents at the same time.
    I have created a class which extends JWindow, and runs the following
    code:
    getContentPane().add(new CustomComponent(20,20));
    getContentPane().add(new CustomComponent(120,20));
    setSize(640,480);
    setVisible(true);The class CustomComponent extends JComponent and has the following
    method:
    protected void paintComponent(Graphics g)
        g.fillOval(x,y,50,50);
    }The problem is that only the second CustomComponent added is
    displayed. When the following code is run, there is no problem:
    getContentPane().add(new CustomComponent(20,20));
    setSize(640,480);
    setVisible(true);
    getContentPane().add(new CustomComponent(120,20));
    setSize(640,480);
    setVisible(true);Note that BOTH setSize and setVisible must be run inbetween each
    CustomComponent addition for them all to be displayed.
    Can anybody shed any light on what's happening. I don't get this
    problem when adding JLabel, so I guess it must be a problem with my
    CustomComponent.
    Thanks for your help.

    Leaving it. Ok. This way you get a BorderLayout as default, which means that by adding both components without a position constraint, both are placed in the center position, probably overlaying each other.
    Try setting the LayoutManager to null, and set both location and size on your custom components manually.

  • Problem displaying 4 decimals amount in table control of custom infotype

    Hi friends,
    i have created a custom infotype 9404. In that i have a amount field ZBASERATE(of type CURR 13, 4 decimals).
    When am trying to fill the ZBASERATE with ZOLDRATE(of type CURR 13, 2 decimals).
    For example,
    ZOLDRATE = 25.68
    And am trying to push 25.68 into ZBASERATE, so in my PA9404 table, in the field  PA9404-ZBASERATE value is stored as 25.6800 which is as required and correct.
    But When i go to tcode PA30 and tried to see this value ZBASERATE. It is displaying as 2568.00 instead of 25.6800.
    Which is incorrect.
    Kindly help me with your valuable suggestions.
    Regards
    Anji Reddy

    Solved,Thanks

  • Problem in creating help input for custom infotype creation

    Hi,
    I had the task of creating a custom infotype for storing recruitment test result.
    I created it using the following structure:
    Component ______________Data Element
    TEST_TYPE______________ZTEST_TYPE
    TEST_DATE
    LOCATION
    PIC_____________________RFPER
    EX_PIC
    TEST_RESULT____________ZRESULT_TYPE
    STATUS_________________ZSTATUS_TYPE
    OTHER_POSITION_________PLANS
    Now for the component other_position for the entry help i use is H_T528B with check table T528B. My objective is, when the infotype is accessed through pa30 and user is inputting the entry, when they press F4 on the inputbox for other_position, help search should show the list of all position within the system. But rather than that, the input help display such message:
    No values selected
    Maintain entries?
    Yes       No         Cancel
    When I choose yes, the input help suddenly prompt me to "Choose customizing project"  which i believe is from SPRO.
    How do I fix this problem so that when I press f4, the help will shows all position within the system.
    Thanks

    not answered, but found another work around

  • Displaying Custom Infotype in the Overview Section of LSO_PV10 and LSO_PV1A

    Dear experts,
    We would like to display the custom IT in the Overview Section of Create Course Run (LSO_PV10) and Change Course Run (LSO_PV1A) screen. User currently can create and edit some standard ITs from this overview section.
    Currently, the custom IT has been built and configured to Object Course (E). It can be displayed from PP01 when choosing Object E.
    How can we display the custom infotype to the standard Create Course Run (LSO_PV10) / Change Course Run screen (LSO_PV1A) Overview area?
    Many Thanks!
    Regards,
    Ripin

    Hai,
    I also faced your problem. I created business event. but when i am checking the business event, but results nil. But system is showing no. for that it is not showing object and relation.
    For that i create again object and realationships for that event. Automatically, system overlap that event.
    it it is helpful or not, i don't know. If it is helpful , do like that way.
    Thanks

  • Module pool F4-Help problem for a field in custom Infotype(HR).

    Dear Gurus,
    I have created a custom Infotype and fields are like
    P9015-NAM01.
    P9015-NAM02.
    P9015-NAM03.
    all are fields for name.
    I want F4 help for these fields with values same as  Family Members-First name  given in 21 Infotype .
    for all 3 fields same f4 help values.
    But when i see in the screen for first field the values are populating as selected but for second field the selected value is not picking..
    DATA: BEGIN OF it_val1 OCCURS 7,
        nam01 LIKE p9015-nam01,
        rel01 LIKE p9015-rel01,
       END OF it_val1.
      SELECT *  FROM t591s INTO TABLE it_t591s WHERE
         sprsl = 'EN' AND
         infty = '0021'.
    *SUBTY
    *STEXT
      SELECT * FROM pa0021 INTO wa_21 WHERE pernr = p9015-pernr .
        READ TABLE it_t591s WITH KEY subty = wa_21-famsa.
        it_val1-rel01 = it_t591s-stext.
       CONCATENATE wa_21-favor wa_21-fanam INTO it_val-nname SEPARATED BY space.
        it_val1-nam01 = wa_21-favor.
        APPEND it_val1.
        CLEAR : it_val1, it_t591s.
      ENDSELECT.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
        DDIC_STRUCTURE         = ' '
          retfield               = 'NAM01'
        PVALKEY                = ' '
         dynpprog               = sy-cprog
         dynpnr                 = sy-dynnr
        dynprofield            = 'P9015-NAM01'
        STEPL                  = 0
        WINDOW_TITLE           =
        VALUE                  = ' '
         value_org              = 'S'
         multiple_choice        = ' '
         display                = 'F'
        CALLBACK_PROGRAM       = ' '
        CALLBACK_FORM          = ' '
        MARK_TAB               =
      IMPORTING
        USER_RESET             =
        TABLES
          value_tab              = it_val1[]
         field_tab              = t_fields[]
         return_tab             = t_return[]
         DYNPFLD_MAPPING        = t_DYNPFLD_MAPPING
      EXCEPTIONS
        PARAMETER_ERROR        = 1
        NO_VALUES_FOUND        = 2
        OTHERS                 = 3
    In the same way i am calling for P9015-NAM02. & P9015-NAM03.
    Is there any wrong in calling this FM...kindly help.....

    Write the FM inside,
    at selection-screen on value-request for <nam1>.
    It seems that you are calling the funtion module for only first field. Repeat it for other two fields also-
    at selection-screen on value-request for <nam2>
    call FM.
    at selection-screen on value-request for <nam3>
    call FM.
    Sumit

  • Custom infotype - issues with conversion class - making fields display only

    Hi,
    I created the custom infotype 9008 using t-code PM01, created conversion class ZCL_HRPA_UI_CONVERT_9008_XX and assigned it to screen structure ZHCMT_BSP_PA_XX_R9008 in the view V_T588UICONVCLAS. Coded the methods IF_HRPA_UI_CONVERT_STANDARDOUTPUT_CONVERSION and IF_HRPA_UI_CONVERT_STANDARDINPUT_CONVERSION. I'm trying to make some fields display only within the method OUTPUT_CONVERSION dynamically. Coded the check class ZCL_HRPA_INFOTYPE_9008 with business logic.
    Everything seems to be working fine when I test using the test tool through t-code PUIT_UI.
    When I try to create/modify 9008 record through PA30, the code in the methods OUTPUT_CONVERSION  and INPUT_CONVERSION is never getting executed. The control is not coming there at all. The fields are allowing input. Any idea why this is happening.
    We are on ECC 6.0 and at service pack level SAPKE60035. Couldn't find any relevant SAP notes as well.  Appreciate your help in this regard.
    Thanks,
    Kumar.

    Hi Venkata,
    Check this document.
    This explains about custom infotype creation.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60a7586d-edd9-2910-68a8-8204303835a1?overridelayout=true
    regards,
    Brinda L

  • HR Custom InfoTypes problem when added to custom Infoset Report for PA

    Hi, I am having an issue with the adhoc query /SAPQUERY/HR_ADM. I added the custom infotypes 9* I created to this standard infoset by using SQ02 and adding these by going into the menu path Edit--> Change InfoType selection. I regenerated this object and attached to a transport. The query runs fine in the DEV system where I made the change...I can choose fields for output or selection from the standard infotypes and custom infotypes as expected. I migrated this transport to the test system and now when I try to do the same thing I get an error when I try to click on any object in my custom infotype and some of the standard infotype. I tried regenerating and resending to the test system and still have the same issue. This is the error in the dump:
        79 * create work area                                                
        80   create data data_wa like line of data_table.                    
        81   assign data_wa->* to <data_wa>.                                 
        82   assign component fcat_wa-fieldname OF STRUCTURE <data_wa>       
        83     to <field>.                                                   
        84                                                                   
        85   loop at t_fcat into fcat_wa.                                    
        86     field_filled = 'X'.                                           
        87     assign component fcat_wa-fieldname OF STRUCTURE <data_wa>     
        88     to <field>.                                                   
        89     if sy-subrc <> 0.                                             
    >>>>>       raise internal_error.                                       
    It appears the TEXT488 is the value in the fcat_wa-fieldname and I do not see this in the data_wa.
    Does anyone know how to fix this problem or what I might try or look at to see what the difference is between the DEV system (where it works ok) the the Test system where it is giving me an error?
    Thanks in advance for any help you can provide.
    Laurie

    After further investigation I found the problem to this was in the generation of the objects. Even though I generated before attaching to a transport  and all looked ok, there is some sort of bug causing it to not generate properly so I had to sign on to each environment and generate the object in SQ02 including in Production. After I did this the custom infotypes were accessible in the Infoset.

  • Custom Infotype - to display the description  in query ouput!!

    I have created a Custom Infotype  and when I run a Infoset Query against the custom infoset, the field is getting displayed but not the description.
    For Ex
    ADP Infotype Company Code A11 - America
                           Company Code A12 - Africa
                                                    A13 - Russion,
    My issue is, when i run the query, the three letter code (A111, A12) is getting displayed but not the descripton itself.
    Can some one please let me know how to display the description in the output when we nun the infoset Query.
    Thanks for your assiance!!

    Hi,
    Have u given proper Data element and Domain to the field?
    Generate the Query again.
    Manoj

  • Custom Infotype not displaying locked records in the list screen (3000)

    I have a custom infotype (9xxx) that will not display the locked records (locked indicator (sprps) is set to X) in the list screen (3000) in PA20 and PA30.
    Any ideas on what may be causing the records to not display in the list screen?
    Thanks,
    Ted

    Hi,
    for creating both employee and appliciant infotype you must check 'Both'  in PM01  IT tab.
    Regards.

Maybe you are looking for