2007 Sep 04 5:29 AM
after running a bdc progran in background,next day morning when i see the results,few record are not updated(error records) what will i do then?
name of the purchase contract smartform?
what is the difference between for all entries and joins?
what is the purpose of table maintenance generator?
how ti print script without using print program,t/n,printing layout test?
structures does not contain any data,but in some scripts we kept these structures?how it shows data when we print it?
how to find tables for structures?
how to print std text to other side of page in script?
how we use std symbols in script?
what is the use of pick st?is it obsoleted?
after running a bdc progran in background,next day morning when i see the results,few record are not updated(error records) what will i do then?
name of the purchase contract smartform?
what is the difference between for all entries and joins?
what is the purpose of table maintenance generator?
how ti print script without using print program,t/n,printing layout test?
structures does not contain any data,but in some scripts we kept these structures?how it shows data when we print it?
how to find tables for structures?
how to print std text to other side of page in script?
how we use std symbols in script?
what is the use of pick st?is it obsoleted?
2007 Sep 04 5:40 AM
Hi,
after bdc,
usually when we run the bdc in back ground
if it is session then the <b>error session log willbe generated in sm35</b> you can see there
if it call transaction
collect all the error records in to a internal table and store it in
application server using <b>open dataset</b>
call transaction tcode using bdcdata update 'S' mode 'N' messages into
bdcmsgcoll
loop this bdcmsgcoll where msgtyp = 'E'
and collect it in a internal table.
what is the difference between for all entries and joins?
for all entries means whenever you got an internal table filled and if for all the entries in that table if you want to fetch data from other database table
then we will go for for all entries...
this is helpfull in avoiding select with in a loop..
joins means when ever we need data from related database tables then we go for joins...
what is the purpose of table maintenance generator?
this is useful to maintain the data in the database table
we can enter multiple entries in one single shot. and if we do this we can assign
the transaction code for the table to maintain the data in the data base table.
how ti print script without using print program,t/n,printing layout test?
i think these are the ways to see the output of a script..
structures does not contain any data,but in some scripts we kept these structures?how it shows data when we print it?
structures doesnot store data in the database.
but these will be used in the progam as internal table or work areas and wil be filled in the runtime and they will print the data
these data wil be cleared onc3e the program execution ngot completed...
how to find tables for structures?
some times structures wil be filled from differnet tables..
go for where used list which is availbale in the application tool bar
how we use std symbols in script?
there is an option in the menu bar
inset > symbolsss-text symbols, progam symbols
then just clik and choose ....... it willbe printed
thanks & regards,
Venkatesh