2011 Jul 20 10:04 AM
i have a problem with add 3 columns in t code FBL5n, i used BTE and the fields appear but without data . which table or code i will use to in FM to display data in transaction.
thanks all for help
2011 Jul 20 10:25 AM
hI,
I hope you have added the fileds to the two structres RFPOS and RFPOSX .Once it is done you need to execute the program RFPOSXEXTEND . You need to use BTE 1650, and in the custom function module you need to pass the values to E_POSTAB strucre.
Regards,
Nagaraj
2011 Jul 20 10:31 AM
Thanks for your responce ,
i'm really do all of that but the data not appear .
my code in FM 1650 is ...
DATA : VAR_VTWEG TYPE VBRK-VTWEG ,
VAR_KUNAG TYPE VBRK-KUNAG .
SELECT SINGLE VTWEG FROM VBRK INTO VAR_VTWEG WHERE VBELN = E_POSTAB-VBELN.
SELECT SINGLE KUNAG FROM VBRK INTO VAR_KUNAG WHERE VBELN = E_POSTAB-VBELN.
IF SY-SUBRC EQ 0.
LOOP AT GT_VBRK INTO GS_VBRK.
E_POSTAB-VTWEG = VAR_VTWEG.
E_POSTAB-KUNAG = VAR_KUNAG.
ENDLOOP.
ENDIF.
I_POSTAB = E_POSTAB.
thank you.
2011 Jul 20 10:40 AM
Hi,
If you have done what i tild then ,In the code why there is a loop.I don't think loop is required. please check are you getting correct data or not..I mean debug and see.
Regards,
Nagaraj
2011 Jul 20 11:56 AM
i make a break point in FM and run FBL5N to enter debuge but there is nothing done . is that another way to debuge code
thank you
2011 Jul 20 12:03 PM
Hi,
Have you added product , process and your cutom function module in BF44 and customer product in BF24.
You need to do these customizing steps.Once done then only you can debug the function module as it will be called internally.
For more information you can search SCN related to BTE'S.
Regards,
Nagaraj
2011 Aug 04 9:11 AM
dear all
i have the same problem and also i do all the last requirement i did't know what is the problem
1-i add fields to the structure
2-execute the program.
3-add product
4- add function with 1650.
the debugger not enter to the function module when run fbl5n but the function run correct when i run it individualy please how can i solve this problem and is there is another way to add column without using BTE.
thanks
2011 Aug 04 9:12 AM
dear all
i have the same problem and also i do all the last requirement i did't know what is the problem
1-i add fields to the structure
2-execute the program.
3-add product
4- add function with 1650.
the debugger not enter to the function module when run fbl5n but the function run correct when i run it individual please how can i solve this problem and is there is another way to add column without using BTE.
thanks