‎2006 Jun 27 10:10 AM
Hi,
with 'POSTING_INTERFACE_DOCUMENT'
is it possible to run it, so that you do not see the screens come up, at the momment they do, and I press return to take it to the next section. How do I make it work in background mode so the user can not see all the screens and it just completes everything it needs to.
Thanks
‎2006 Jun 27 10:15 AM
Hi sims,
1. POSTING_INTERFACE_START
Call this FM (See documentation of this FM)
before calling your Fm.
2. This FM will set the environment for bdc purpose.
regards,
amit m.
‎2006 Jun 27 10:15 AM
Hi sims,
1. POSTING_INTERFACE_START
Call this FM (See documentation of this FM)
before calling your Fm.
2. This FM will set the environment for bdc purpose.
regards,
amit m.
‎2006 Jun 27 10:17 AM
First:
CALL FUNCTION 'POSTING_INTERFACE_START
EXPORTING
i_function = 'C'
i_mode = pc_mode A, N o E
i_user = sy-uname.
<b>if pc_mode =</b> <b>A-- forground
N- back ground</b>
‎2006 Jun 27 10:16 AM