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 RV_KONDITION_SICHERN_V13A

Former Member
0 Kudos

I am stuck up with the FM as specified.. please tell me how to use this. and what all does this FM require to update DATABASE.

3 REPLIES 3

Former Member
0 Kudos

Check this...

DATA: lt_time TYPE TABLE OF vakedb, "Needed

ls_time TYPE vakedb,

lt_xkonh TYPE TABLE OF konhdb,

lt_xkonp TYPE TABLE OF konpdb,

lt_xstaf TYPE TABLE OF condscale,

lt_ykonh TYPE TABLE OF konhdb,

lt_ykonp TYPE TABLE OF konpdb,

lt_xkondat TYPE TABLE OF vkondat,

lt_ykondat TYPE TABLE OF vkondat,

lt_xvake TYPE TABLE OF vakevb, "Needed

ls_xvake TYPE vakevb,

ls_vake TYPE vake,

yes TYPE boole VALUE 'X'.

CALL FUNCTION 'RV_KONDITION_SICHERN_V13A' IN UPDATE TASK

EXPORTING

change_docs_write = yes " Write change documents

use_outbound_call = yes " Update external systems

TABLES

db_time = lt_time

db_xkonh = lt_xkonh

db_xkonp = lt_xkonp

db_xstaf = lt_xstaf

db_ykonh = lt_ykonh

db_ykonp = lt_ykonp

db_xkondat = lt_xkondat

db_ykondat = lt_ykondat

db_xvake = lt_xvake.

For updating DB, you have to fill corresponding table structures (for KONP table update DB_XKONP) like that...

Former Member
0 Kudos

chk the include J_1B_CBT_CONSIST_CL4 how that FM was used

0 Kudos

please help again..