How to enhance IT 1001 additional data screen.

Hi Folks,
I want to enhance IT1001 additional data screen, (I want to add two fields on the screen), the table of it is HRPAD34 and it also contains CI include, But When i try to enhance it through PPCI T-code, I'm unable to do it, Can any buddy suggest how to enhance screen  of additional data of IT1001.
Thanks
Teja.

try this link u will get enhancing infotype....
<link to blocked site removed by moderator>
Thanks,
Amol
Edited by: Thomas Zloch on Feb 6, 2012

Similar Messages

  • Display Alternative Account in Additional Data screen of FB03

    Dear SAP experts,
    Transaction code FB03's screen does have an alternative account column. But I want to display
    Alternative account when I click on each account (in line item of FB03 screen) or display
    alternative account in Additional Data screen of FB03. I don't know how to do it.
    Does anyone here know about configuring this, please help me.
    Thank you so much.
    Maxielight.

    Hi,
    To display the "Alternative Account Number" field in report of the new General Ledger, please proceed as follows:
    1) Implement Note 895609 and 939649.
    2) To display "Alternative Account Number" in the line layout variant, proceed as follows:
    - Call transaction O7R3 and add BSEG-LOKKT as special field.
    - Then change the line layout variant. The system now displays the "Alternative Account Number" field.
    3) In the line item display in the classic General Ledger (transaction FBL3N), you could enhance the custom selections in transaction SE36 as described in Note 310886. However, in the new General Ledger, the custom selection in transaction FAGLL03 has different sub-areas. Each of these areas corresponds to a structure:
    G/L account master record SKA1_FS
    G/L account company code SKB1_FS
    G/L account line item BSIS_FS
    Since the "Alternative Account Number" is not included in the structure SKB1_FS in the standard delivery, please implement the enhancement as described in Note 945932.  To include more fields in the custom selections of transaction FAGLL03, you can enhance the structures using an APPEND.
    Regards,
    Gaurav

  • Info type 1001 Additional Data and Maintenance Using PPOME

    Hi All,
    I have gone through the steps of creating additional data for a new relationship that I have created in Organizational Management.  Everything works fine when maintaining this relationship using transaction PO13 - Position maintenance.
    Transaction PO13 - 1. Create relationship. 2. Additional data screen comes up. 3. Additional data is saved.
    Transaction PPOME - 1. Assign relationship. 2. No Additional data scree.
    I have debugged the code and PPOME calls module pool MP100100 the same way at PO13 and infact the system actually goes through the code to call my additional data screen, but the screen is not present in PPOME even though the system calls it.  
    Has anyone ran into this issue?  Is there a solution?  Or does PPOME not support the maintenance of relationship additional data?
    thanks.
    JB

    check this view T77OMTABUS.
    In the attribute scenerio select the OME0  and then double click on tab page of scenerio of each object type....
    against the object S there are several tab page defined. i think you need to create the  entry for the additional data also.
    hope this would work..
    Thanks,
    Amar

  • How to add Fields in Additional Data B in VA01/VA02.PLease help me out.

    HI All,
    My requirement to add a Custom Screen in Va01/VA02 .Kindly suggest if any screen exists are there.
    How to Add extra fields in Additional Data B in header of VA01/VA02.is access key is neccessary for that.
    Thanks in  Advance.

    Hi
    Check the link
    http://techbays.com/2008/04/17/implicit-enhancement-in-sap-ecc-60/
    There is a BADI BADI_SD_V46H0001 and Method EXIT_SAPLV46H_003.
    You should be able to it without access keys.Consult your SD Functional Guy also
    Regards
    Sanil Bhandari

  • Enhancement in VA01 Additional data B tab

    Hi All,
    I have added 2 fields in tcode VA01 in header --> Additional Function --> Addtional data B (screen 8309) which are getting saved in VBAK table in custom fields which i have added in VBAK table using append structure.
    Now my requirement is, for a particular order type one of the fields which I have added in Additional data B screen should be mandatory. For that i have wriiten a code in PBO (include MV45AOZZ)
                                      LOOP AT SCREEN.
                                           IF VBAK-AUART = 'Z2OR' AND SY-TCODE = 'VA01'.
                                                IF SCREEN-NAME = 'VBAK-ZZTRIPORDER'.
                                                       SCREEN-REQUIRED = 1.
                                                       MODIFY SCREEN.
                                                ENDIF.
                                            ENDIF.
                                       ENDLOOP.
    Now this code is working fine if I visit that screen (Additional data B screen), but it is not working if i dont visit that screen. I want that the document will not get saved if that field blank for that particular order type.
    Can anyone help me please?
    Thanks in advance.
    Regards,
    SURYA

    Hi
    If you are in the screen, it works, if no, it doesn't work. The manner to do it is with a userexit. Try it with USEREXIT_SAVE_DOCUMENT_PREPARE in include MV45AFZZ for instance.
    I hope this helps you
    Regards
    Eduardo
    Edited by: E_Hinojosa on Jul 1, 2011 9:14 AM

  • Customer master - Group Code in Additional Data screen

    Hi,
    In customer master, in the 'Additional Customer Data' pop up screen  (Extras -> Additional Data), you can find a field for group code (KNA1-KATR6).   Where in IMG do I maintain the values for this field?
    Appreciate your advise.  thanks!

    Hi,
    You can maintain this values in the below path
    IMG->LOGISTICS GENERAL->BUSINESS PARTNER>CUSTOMERS->CONTROL->DEFINE ATTRIBUTES->CUSTOMER ATTRIBUTES 6
    In the above path you can define the required entry and it will appear in the Customer master configuration.
    regards,
    santosh

  • Field BSEG-HKTID does not exist in the additional data Screen

    Hi
    We are facing a problem while posting the parked document. Field BSEG-HKTID does not exist in the screen SAPLF040 0331.
    As we want to avoid entering the field-data at the time of payment proposal run using T.code F110, we prefer to enter at the time of posting a parked document or at the time of parking.
    We had checked the field status (of Posting key and GL) and its not available.
    We refered note 953374 House bank details: Account ID in the document. It asks to activate the RE-FX component. However, we are not in the real estate business hence not logical to do so. How do we need to proceed?
    PP

    To do the same change with the transaccion FB02 y FB03, create an enhancemente point in the program: SAPMF05L dynpro: 1301, module: DYNPRO_MODIFIKATION, at the of perform open_fi_dynpro_mod and write:
    LOOP AT SCREEN.
      IF sy-tcode = 'FB02'.
        IF screen-name = 'BSEG-HKTID'.
          screen-input = 1.
          screen-invisible = 0.
          screen-active = 1.
          screen-output = 1.
          screen-group4 = ' '.
          MODIFY SCREEN.
          EXIT.
        ENDIF.
      elseif sy-tcode = 'FB03'.
          IF screen-name = 'BSEG-HKTID'.
          screen-input = 0.
          screen-invisible = 0.
          screen-active = 1.
          screen-output = 1.
          screen-group4 = ' '.
          MODIFY SCREEN.
          EXIT.
        ENDIF.
      endif.
      ENDLOOP.
    and, all ready.

  • Problem in CV01n additional data tab screen when BDC recording

    i am using bdc for uploading data . i am all ready write the code and its working fine in DEV and QAV . but the problem is in PRD is the additional data screen is not coming .. its coming like a empty screen . the fleads are not showing .. error is coming like ' the corser filed is not in this screen and fileads are also not in this screen' . please give the solution  for uploading the data ...

    you check your code
    PERFORM bdc_dynpro      USING 'SAPLCLMO' '0100'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'RMCLM-CLASS'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=DOKM'.
        PERFORM bdc_field       USING 'RMCLM-CLASS'
                                      wa_unit-class.
        PERFORM bdc_field       USING 'RMCLM-KLART'
                                      wa_unit-klart.
        PERFORM bdc_dynpro      USING 'SAPLCLMO' '0100'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'RMCLM-CLASS'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=DOKM'.
        PERFORM bdc_dynpro      USING 'SAPLCLMO' '7777'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=SAVE'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'RMCLM-KDOKAZ'.
        PERFORM bdc_field       USING 'RMCLM-DOKNR'
                                      wa_unit-doknr.
        PERFORM bdc_field       USING 'RMCLM-DOKAR'
                                      wa_unit-dokar.
        PERFORM bdc_field       USING 'RMCLM-DOKTL'
                                      wa_unit-doktl.
        PERFORM bdc_field       USING 'RMCLM-DOKVR'
                                      wa_unit-dokvr.
        PERFORM bdc_field       USING 'RMCLM-KDOKAZ'
                                      wa_unit-kdokaz.

  • Adding custom fields to VA01 additional data tab without access key

    I have to add custom fields at item level in transaction VA01/VA02.
    Is  access key required to add fields to additional data screen i.e 8459 ?
    Is there any way to do this without using access key ?

    Hi ,
    Try for any User Exit or BADI available for the tcodes.
    Here are exits for VA01 and VA02.
    Exit Name           Description
    SDTRM001            Reschedule schedule lines without a new ATP check
    V45A0001            Determine alternative materials for product selection
    V45A0002            Predefine sold-to party in sales document
    V45A0003            Collector for customer function modulpool MV45A
    V45A0004            Copy packing proposal
    V45E0001            Update the purchase order from the sales order
    V45E0002            Data transfer in procurement elements (PRreq., assembly)
    V45L0001            SD component supplier processing (customer enhancements)
    V45P0001            SD customer function for cross-company code sales
    V45S0001            Update sales document from configuration
    V45S0003            MRP-relevance for incomplete configuration
    V45S0004            Effectivity type in sales order
    V45W0001            SD Service Management: Forward Contract Data to Item
    V46H0001            SD Customer functions for resource-related billing
    V60F0001            SD Billing plan (customer enhancement) diff. to billing plan
    Regards,
    Lakshman.

  • Additional Data tab missing from PO items

    Hi Experts,
    The Additional Data tab for items is missing when I try creating a PO.
    I have compared the screen layout, with the system where it is working fine, and found no difference in the configuration.
    Please suggest, how can I enable the "Additional Data" tab in PO for items.
    With Warm Regards,
    Sayan

    Hi Preeti/ Dev,
    Please refer to the below screen-shot.
    Here you will find the Additional Data tab in the Items section.
    The Additional Data tab in the header section is appearing fin

  • LSMW to load Additional Data....

    Hi All,
    I  uploaded some GL accounts using the LSMW tool.Unfortunately i need to load additional Data-the Commitment items which was not captured initially.How do i upload this additional data-commitment items using LSMW to its field?
    I cannot do this manually as i have over 2000 recorded.

    You can use LSMW with the following parameters:
    Object: 0010 GL A/C Master Record
    Method: 0001 Hier. structure or 0002 Flat structure
    Program Name: RFBISA00
    Within the structure you can assign TCODE = 'FS02' to change the GL account. Commitment item is FIPOS.
    Brenda

  • HRP1001 - Additional data

    Hi,
    I would like to programatically create a 1001 relationship record using RH_INSERT_INFTY. But I couldnt find a way to also update the 1001 Additional data for object types like Room(PAD22), Qualification (PAD31) etc.
    For the rest of the Infotypes I am able to see a structure p<nnnn>_exp available which can be used.
    Any help.
    Thanks.

    Solution:
    Move your data to a structure of the additional data (e.g. PAD23, PADxx, etc).
    Then use method cl_hr_adata_type_cast=>padnn_to_adata to cast your PADxx structure to the ADATA field of INNNN structure.
    Calling RH_INSERT_INFTY with the INNNN-ADATA filled will create the additional data and it's links.
    To moderator: I know this is an old thread. I am updating my solution for other users who may be asking the same question. I too was searching for this.

  • How to Additional Data Tab to HUMO detailed data screen and Update to VEKP

    Hi All,
    I have a requirement where I have to assign the Serial Number to Packaging Material of Handling Units. SAP standard allows to enter the Serial Numbers to the Materials of Delivery Item which is Non Packaging Materials.
    Now, I need to enter the Serial number to Handling Unit material and there is place to enter the serial number and I want to enhance the detailed data screen of HUMO transaction.
    Please help me how to do this. OR is there any SAP note which can be used to allow the serial numbers to Packaging Materials.
    Thanks,
    Prabhakara

    Solved.

  • How to change the name of the Tab "Additional Data B" in VA02 Tcode?

    Hi All,
    I have enhanced the VA02 Header screen, and placed another Tab called DATA A.
    Here I have two requirements
    I want to change the name of the Additional Data B to some other name say DATA B
    2. I have to add these two tabs in the menu  Go to->Header->Additional Functions ->DATA A
           Go to->Header->Additional Functions ->DATA B.
            in VA02/VA03 T codes.
    How can I Achieve these functionalities, please help me.
    Thank you.
    Regards
    Ram.

    Hi,
    Check this link Adding extra tabs in standard transactions for sales and contracts without access key.

  • Adding new fields to additional data B screen in sales transaction

    Hi All,
    I have a requirement like this I need to add 3 input fields and 1 push button(select oppurtunity) in additional data B screen of sales order transaction.If I click on this button I want geneate one pop up dialog box just like as search help box and I should be able to search data for these 3 fields data based on some 4 input fields data?How can I acheive this?I can add button and what I have to write the code in PBO and PAI of this screen?Please some body help me in this regard.
    Regards
    Mahesh

    Hi friend,
    In SAP we can add few fields from maintain reserve fields. Please go through it;
    Maintain Reserve Fields In Customer Master
    There are reserve fields in the customer master record which are not used in the standard system. They are available for use and are as follows:
    Customer group 1 (View: V_TVV1 Field:KVGR1)
    Customer group 2 (View: V_TVV2 Field:KVGR2)
    Customer group 3 (View: V_TVV3 Field:KVGR3)
    Customer group 4 (View: V_TVV4 Field:KVGR4)
    Customer group 5 (View: V_TVV5 Field:KVGR5)
    You can find the fields in the customer master record under the sales and distribution data in Sales. Choose additional data under Environment.
    It is advisable to change the field description (Data elements KVGR1 to KVGR5).
    This is described in the system modifications in the Reserve fields unit of the customer master record:
    Reserve Fields in Customer Master
    Record
    In this step you maintain the valid entries for the individual views.

Maybe you are looking for

  • Netweaver on linux - download from SDN

    Hello Kathleen, Is this new Linux download (maxdb or db2) any different - with any additional functionality - from the DVD's that have been available for some time on sap knowledge-shop (www.sap.com/shop) ? Also, I downloaded the NW4_TestDrive.iso_Pa

  • Unable to cancel a print job

    I need to cancel a print job so other things behind it will print.  It still appears in the 'pending jobs' list and will not go away.  It says that it is 'deleting' but it's still there.  What can I do to get rid of it.?  Thank you.

  • Importing Files Captured in iMovie HD

    Hello, I'm running Final Cut Express 2.0.3. When I try to import clips to FCE that I captured in iMovie HD 5.0.2 and double-click them so they play in the Viewer, the clip will appear in the viewer but when I press play it will play fine for like a s

  • Help Request: ORA-01950: no privileges on tablespace

    I am a fairly new Oracle DBA. I have a developer who has his own tablespace, and he is getting the error message above when he tries to execute the following script to create a table: CREATE TABLE SOA_FWK_VALUE_TRANSLATION CONTEXT_ID VARCHAR2(10) NOT

  • HT1849 when I download album works from itunes it does not associate with the correct artist

    when I download album works from itunes it does not associate with the correct artist