Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to use RBMVSHOW?

Former Member
0 Kudos

I want to start a direct input job (RMDATIND with variant) programmatically. I read online that I can do it using RMBVSHOW. The job has already been defined using BMV0, including the variant.

How do I start it from a program?

3 REPLIES 3

shivhare
Active Contributor
0 Kudos

Hi Cristine R

i think go to BMV0 then go to then go to expert manu and select your job then stop it then you can run your program

thanks

Amit Shivhare

Former Member
0 Kudos

Hi cris,

Welcome.

using this program or tcode we can schedule a program for direct input method with variant by just clicking define job

To enhance the batch input procedure, the system offers the direct input technique, especially for transferring large amounts of data. In contrast to batch input, this technique does not create sessions, but stores the data directly. It does not process screens. To enter the data into the corresponding database tables directly, the system calls a number of function modules that execute any necessary checks. In case of errors, the direct input technique provides a restart mechanism. However, to be able to activate the restart mechanism, direct input programs must be executed in the background only. To maintain and start these programs, use program RBMVSHOW or Transaction BMV0.

Examples for direct input programs are:

Program

Application

RFBIBL00

FI

RMDATIND

MM

RVAFSS00

SD

RAALTD11

AM

RKEVEXT0

CO-PA

see these links

http://help.sap.com/saphelp_40b/helpdata/pt/f6/ca0769a7a911d1950500a0c930e0da/content.htm

http://www.scribd.com/doc/2343763/SAP-FICO-data-transfer-workbench

thanks

karthik

Former Member
0 Kudos

Thanks for the replies.

I found a function online that does what I was looking for:

CALL FUNCTION 'BI_START_JOB'

EXPORTING

jobid = ''

jobtext = 'Z...'

repname = 'RMDATIND'

server = ''

variant = 'Z...'

new_job = 'X'

continue_job = ''

START_IMMEDIATE = 'X'.

That works fine. However, I do not know if this has unwanted repercussions. If anyone has used this before or is familiar with this function, please let us know.

Thanks.

Edited by: Cristine R on Jul 14, 2008 3:58 PM