2007 Oct 31 7:41 AM
I am using KOB1. So from my ALV program if one line clicked then it will call KOB1. Now the problem is in the KOB1 three fields re required field. 1. Cost center, 2 Order and 3 posting date. 1st two have there own parameter ID. But Posting date doesnt have. But I have to send value from my program for that field. So If Posting date doesnt have any PARAMERTE ID,then how can i send value there?
2007 Oct 31 8:06 AM
hi Kaushik,
you have to use the SUBMIT statement for the program behind transaction KOB1. Something like:
SUBMIT RKAEP000
WITH parameter EQ ...
select-option IN ...
tcode EQ 'KOB1'.
pls. not you have to specify the tcode as well
hope this helps
ec
2007 Oct 31 9:15 AM
Thanks Eric for ur valuable hepl.. BUT its not working. If u simply run the RKAEP000 program its showing TRANSACTION not found. Its also happening while im using SUBMIT statement in my program.
I have used below statements
SUBMIT RKAEP000
WITH AUFNR EQ LW_FINAL-OBJNR+2(12)
with BUDAT IN SO_BUDAT
with tcode EQ 'KOB1'.
Is there anything wrong....plz hepl its urgent
2007 Oct 31 10:46 AM