‎2006 Sep 08 6:28 AM
Hi all
i want to add 2-3 zfields in MFBF transaction ..there is no screen exit for this..how to go abt it if there is no screen exits.
regards
shankar
‎2006 Sep 08 6:32 AM
u can create your own screen for that transaction and write a BDC to populate the data from ur screens to the original transaction.
i did the same way for CO15 transaction.
‎2006 Sep 08 6:53 AM
Hi,
check this,
http://www.sapdevelopment.co.uk/enhance/fexits.htm
also the foll links,
http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
http://www.planetsap.com/userexit_main_page.htm
http://www.sap-img.com/abap/what-is-user-exits.htm
http://www.sapdevelopment.co.uk/graphics/add_image.htm
http://www.sap-img.com/abap/field-exits-smod-cmod-questions-and-answers.htm
http://72.14.203.104/search?q=cache:uJ_stO9vjjMJ:www.ficoexpertonline.com/downloads/User%2520ExitsWP...screenexit(sap)&hl=en&gl=in&ct=clnk&cd=5
please reward if it helps.
‎2006 Sep 08 7:02 AM
Hi Shankar,
u can do it in the screen itself.Screen number is 801,but in order to add the zfields u require the access key.If u get the access key u can put ur zfields in the screen.
regards,
nagaraj
‎2006 Sep 08 7:14 AM
generally they wont be giving the access key, if the access key is given the problem is solved, if they wont give the access key. u ll hvae to follow up this way..
create the required screens of that transaction and write a BDC to populate the values on ur created screen to the original transaction
‎2006 Sep 08 7:25 AM
Hi,
You have to create one sub-screen with naming convention and create the layout with required fields.
after in main screen flow logic you have to write like"call customer-screen 'subscreen name' including 'sub screen no'".
after that for transporting data from screen to data base you write the code in function exit.
in database table you have to append the structure with your zfields.
Thanks ,rayeez