2014 Jan 21 8:16 AM
Hi,
In transaction 'me21n' i created a screen exit with some fields after completion of screen exit. i run transaction i comes but when i enter data to those fields and click on 'save' the data of those fields are not saving the table 'ekko'.how can i avoid it.
please help me urgent.
2014 Jan 21 9:43 AM
Hi Krishna,
If you are using MM06E005 exit for customer fields in purchasing document ,then you have to do it in EXIT_SAPMM06E_008. in this u need to enable the "update".
for ex:
e_ci_ekko-zzpcardid = ekko_ci-zzpcardid.
e_ci_update = 'X'.
Note: u need to give Screen field as EKKO_CI-ZZPCARDID(custom field name).
Regards,
Lakshmi.
2014 Jan 21 8:18 AM
Hi,
does it works if you modify any others data of EKKO or EKPO ?
(standard fields)
regards
Fred
2014 Jan 21 8:19 AM
Hi Krishna
In the PAI of your subscreen did you pass back the data to the standard. If not please pass it their is an exit to pass back the data from custom field to standard.
Nabheet
2014 Jan 21 9:10 AM
2014 Jan 21 9:16 AM
Are you using MM06E005 if yes then you have to do it in EXIT_SAPMM06E_008
2014 Jan 21 9:26 AM
2014 Jan 21 9:28 AM
2014 Jan 21 9:23 AM
Hi Krishna,
transfer the data in the FMs EXIT_SAPMM06E_007 and/or EXIT_SAPMM06E_008 it its header and if its item please refer below , read the SAP documentation
Functional Exits
The Dynpros are linked to the Standard Program via Function Modules.There are Function Modules that provide your subscreen with data (Export) and Function Modules that fetch data from your subscreens (Import).
Header Screen:
- <b>EXIT_SAPMM06E_006</b> - Export Data to Customer Subscreen for Purchasing Document Header (PBO)
- <b>EXIT_SAPMM06E_007</b> - Export Data to Customer Subscreen for Purchasing Document Header (PAI)
- <b>EXIT_SAPMM06E_008</b> - Import Data from Customer Subscreen for Header
Item Screens:
- <b>EXIT_SAPMM06E_016</b> - Export Data to Customer Subscreen for Item (PBO)
- <b>EXIT_SAPMM06E_017</b> - Export Data to Customer Subscreen for Item (PAI)
- <b>EXIT_SAPMM06E_018</b> - Import Data from Customer Subscreen for Item
Please look at documentation for further usage.
Happy Coding,
Santhosh Yadav
2014 Jan 21 9:43 AM
Hi Krishna,
If you are using MM06E005 exit for customer fields in purchasing document ,then you have to do it in EXIT_SAPMM06E_008. in this u need to enable the "update".
for ex:
e_ci_ekko-zzpcardid = ekko_ci-zzpcardid.
e_ci_update = 'X'.
Note: u need to give Screen field as EKKO_CI-ZZPCARDID(custom field name).
Regards,
Lakshmi.
2014 Jan 21 10:22 AM
2014 Jan 21 11:36 AM
Hi,
If u r not including the custom fields in include tables, we need to include . please observe the following screen.
2014 Jan 21 10:55 AM
hi Krishna,
First let us know r u trying to save Custom fields data or standard fields.
if ur designing custom fields (or standard fields)to save in your EKKO table, create a Zstructure and append in EKKO and try saving them.
regards,
2014 Jan 21 11:26 AM
2014 Jan 21 11:14 AM
Hi Krishna ,
First to create zstr and append with standard table EKKO_CI and then after simply
assign field value and use
move corresponding ekko_ci to e_ci_ekko .
Regards
Vivek
2014 Jan 21 12:40 PM
Did you
Regards,
Raymond