Populate New Fields Created on the CI_INCLUDE - SAP BDT

April 4, 2018 | Author: Anonymous | Category: Documents
Report this link


Description

populate new fields created on the CI_INCLUDE - SAP BDT http://www.sapdev.co.uk/enhance/bdt/bdt_gmaddfields.htm 0 1 de 11 04/11/2011 22:04 populate new fields created on the CI_INCLUDE - SAP BDT http://www.sapdev.co.uk/enhance/bdt/bdt_gmaddfields.htm SAP Development Enhancing SAP(CMOD) User Exits BDT Enhancement Framework BADI Field Exits SAP Develpment Ads by Google Share | Download Sap Fi Co Sap Jobs Sap ABAP ALV SAP ABAP List viewer SAP BDT to populate new fields created on the CI_INCLUDE of grant master table GMGR ABAP Reporting SAPscript Presenting data using SAPScripts SAP Help SAP development ABAP Help ABAP development code Dialog screens ABAP dynpro screen development BAPI/RFC Calling BAPI's and RFC's File Upload and Download MS interface Integrating SAP and Microsoft www.treegrid.com Ads by Google � Add fields to CI_ include CI_GMGR of GMGR database table ABAP Performance Improve performance Testing / eCATT Test SAP programs SAP Graphics Using graphics in sap programs MINISAP Stand alone SAP system for you home PC SAP Upgrade Upgrading your SAP ERP system SAP Currency / Language conversion Converting your SAP system to handle mutiple currencies/languages SAP Security and Authorisations Security topics such as authority checking and password fields � � Execute grants management BDT development transaction (GRANT_CUSTOMIZE) Grant Master BDT Customizing-> Screen layout and select �Field groups�(GMS2) SAP Netweaver SAP Web development Developing SAP web applications SAP ABAP web dynpro SAP Visual Composer Consume webservices or SAP BAPI and RFC function modules SAP Portal - ESS/MSS SAP Portal, ESS and MSS development BSP's developing BSP's applications ITS Internet transaction server Jco development Using the JCo to intergrate Java applications SAP Module Areas SAP HR SAP HR development SAP FI SAP Finance development � Click on �New Entries� SAP BW SAP Business warehouse development SAP PM 2 de 11 04/11/2011 22:04 populate new fields created on the CI_INCLUDE - SAP BDT http://www.sapdev.co.uk/enhance/bdt/bdt_gmaddfields.htm SAP Integration Integrate your plant floor to SAP fast, and without programming. www.junotsystems.com Sybase SQL Tools Sybase SQL, Sybase database tools Download Now! Windows, Linux, OSX www.aquafold.com BOM Software Done Right Manage, scrub, track 1000s of parts through an easy to use BOM tool www.siliconexpert.com SimplySAP : Job search results Updated : SAP MM/SRM Managing Consultant A leading organisation are urgently recruiting for a SAP SRM/MM Managing Consultant to joi... SAP Portals Lead Consultant A leading organisation are looking fo a SAP Portals Lead Consultant to joi their global ... 85246 SAP / SCM Supply Network Planning Sr. Consultant in India Job Summary:Role: SAP / SCM Supply Network Planning Sr. Consultant in IndiaStart: ASAPDura 85276 SAP / Integrated Planning Intgt Plg, trdg, sup Con APO-DP Consultant in India Job Summary:Role: SAP / Integrate Planning Intgt Plg, trdg, sup Con APO-DP Consultant in ... Join the Mailing List Enter your name and email address below: Name: Email: Subscribe Unsubscribe Get your Free Mailing List by Bravenet.com 3 de 11 04/11/2011 22:04 populate new fields created on the CI_INCLUDE - SAP BDT http://www.sapdev.co.uk/enhance/bdt/bdt_gmaddfields.htm � Enter details of new field group. For this example we are simply adding 2 fields to the gmgr table and providing a screen to be able to populate these. � Go back to main field group screen, select your new entry and double click on the �Field Group-> Fields� folder option from the left column. Now enter your fields, for this example I have copied fields from responsibilities group. 4 de 11 04/11/2011 22:04 populate new fields created on the CI_INCLUDE - SAP BDT http://www.sapdev.co.uk/enhance/bdt/bdt_gmaddfields.htm � Before you do the next steps you will need to go to SE80 and create a new function group for example create one called ZZ_GMNEW. Then within that function group create two function modules, Z_GMGR_NEWFIELD_PBO and Z_GMGR_NEWFIELD_PAI Within the top include of the function group insert the following declaration: TABLES: ci_gmgr. DATA: wa_gmgr TYPE gmgr, ����� wa_gmgr_old LIKE wa_gmgr. � � Within the source code of the function module Z_GMGR_NEWFIELD_PBO enter the following code: � CALL FUNCTION 'GMG_GMGT_GMGR_GET' ��� IMPORTING ����� e_gmgr = wa_gmgr. � wa_gmgr_old = wa_gmgr. � MOVE-CORRESPONDING wa_gmgr TO ci_gmgr. � Within the source code of the function module Z_GMGR_NEWFIELD_PAI enter the following code: � MOVE-CORRESPONDING ci_gmgr TO wa_gmgr. � CALL FUNCTION 'GMG_GMGT_GMGR_COLLECT' ��� EXPORTING ����� i_subname = 'CI_GMGR' ����� i_gmgr��� = wa_gmgr. � Now create a screen 0100 as a subscreen within the function group. Within the pbo module place the function call: CALL FUNCTION 'BUS_PBO' and within the PAI module place the function call: CALL FUNCTION 'BUS_PAI'. � Add the two new fields created in the CI_GMGR structure onto the screen. One way to do this is to go into change mode within screen layout and press F6. Now enter �CI_GMGR� in the �Table/Field name� input box and press enter. Now select the two fields required, ZZfield1 and ZZfield2 and press the green tick. You can now click anywhere in the screen painter to place the two fields on the screen. Save and activate the whole function group. Return to main BDT customizing screen (Grant_customize) and select �Views�(GMS3). Then click the �New Entries� button � � 5 de 11 04/11/2011 22:04 populate new fields created on the CI_INCLUDE - SAP BDT http://www.sapdev.co.uk/enhance/bdt/bdt_gmaddfields.htm � Enter view information as below, starting with the name as the next number in your custom name range and then the program (fgroup) and function modules you have just created. � Go back to main Views screen, select your new entry and double click on the Views-> Field Groups folder option from the left column. Now enter the new field group you created previously. Save data! 6 de 11 04/11/2011 22:04 populate new fields created on the CI_INCLUDE - SAP BDT http://www.sapdev.co.uk/enhance/bdt/bdt_gmaddfields.htm � Return to main BDT customizing screen and select �Sections�(GMS4). Then click the �New Entries� button � Input new entry and give it a description and title. Save data � Go back to main Sections screen, select your new entry and double click on the Section-> Views folder option from the left column. Now enter the new view you created previously. 7 de 11 04/11/2011 22:04 populate new fields created on the CI_INCLUDE - SAP BDT http://www.sapdev.co.uk/enhance/bdt/bdt_gmaddfields.htm � Return to main BDT customizing screen and select �Screens�(GMS5). Then click the �New Entries� button � Enter details for you new screen, Save data. � Go back to main Screen screen, select your new entry and double click on the 8 de 11 04/11/2011 22:04 populate new fields created on the CI_INCLUDE - SAP BDT http://www.sapdev.co.uk/enhance/bdt/bdt_gmaddfields.htm Screens-> Sections option from the left column. Now enter the new section you created previously. � Return to main BDT customizing screen and select �Screen Sequence�(GMS6). Then select the screen sequence entry and double click on the Screen Sequence -> Screens folder option from the left column. � Add your screen to the sequence by clicking on the �New Entries� button � Add you new screen to the screen sequence. Save data. 9 de 11 04/11/2011 22:04 populate new fields created on the CI_INCLUDE - SAP BDT http://www.sapdev.co.uk/enhance/bdt/bdt_gmaddfields.htm � Execute transaction BUSP (click on option from main grant customizing menu), new screen will now appear as tab on grant master transaction �GMGRANT� SAP Development Enhancing SAP(CMOD) User Exits BDT Enhancement Framework BADI Field Exits 10 de 11 04/11/2011 22:04 populate new fields created on the CI_INCLUDE - SAP BDT http://www.sapdev.co.uk/enhance/bdt/bdt_gmaddfields.htm Share | Contact Us Message Board Partners Terms of Service Privacy Policy Advertise ©SAPDev 11 de 11 04/11/2011 22:04


Comments

Copyright © 2025 UPDOCS Inc.