‎2013 May 04 11:15 AM
Hello All ,
I am encountering a strange problem while calling FBL1N using submit command in my program.
The parameters I need to fill while calling the program are :
1. Vendor Code
2. Company Code
3. Open at key date ( Open items )
4. Normal Items (Check Box )
5. Special G/L indicator.
So for this am calling submit as below :
SUBMIT RFITEMAP WITH LIFNR = '100024'
WITH BUKRS = '1000'
WITH ALLGSTID = '20120101'
WITH XNORM = 'X'
WITH XSHBV = 'X' AND RETURN.
Now the problem is with third parameter , as you can see that I have set date to '20120101' i.e 01.01.2012 but when submit triggers FBL1N that date is set to today's date ( which is a default behavior of fbl1n ). I don't know why this is happening when I passing the date correct.
‎2013 May 04 11:30 AM
Hi,
Check if that is the field parameter technical name in the screen. If so Change your date to '01012012'. It might be skipping the conversion as screen is not used and then take today's date as default.
Cheers,
Arindam
‎2013 May 04 11:30 AM
Hi,
Check if that is the field parameter technical name in the screen. If so Change your date to '01012012'. It might be skipping the conversion as screen is not used and then take today's date as default.
Cheers,
Arindam
‎2013 May 04 11:34 AM
‎2013 May 04 11:36 AM
Hi,
I dont have any server access here. can you post the selection screen parameters of RFITEMAP.
Cheers,
Arindam
‎2013 May 04 11:37 AM
‎2013 May 04 11:37 AM
‎2013 May 04 11:44 AM
Hi,
I doubt those are the parameters name of the report. I checked about the net. I parameter is kd_bukrs. But you are doing BUKRS.
Can you copy paste the selection screen code in report RFITEMAP. Thats what I asked for.
Cheers,
Arindam
‎2013 May 04 11:59 AM
‎2013 May 04 11:59 AM
‎2013 May 04 12:00 PM
‎2013 May 04 1:26 PM
yeah ,
I have used SUBMIT many a times in my life with ABAP.
Actually I was trying to replace a CALL TRANSACTION( was written by an earlier abaper and was not working correctly ) with a SUBMIT and in call transaction method values are passed with SCREEN variables , without thinking I copied it to SUBMIT , this was the error which you pointed out