cancel
Showing results for 
Search instead for 
Did you mean: 

How we can read SNP result logs using ABAP tables or function modules?

former_member379943
Participant
0 Kudos

Hi

How  we can read SNP result logs using ABAP tables or function modules? I want to read the Result logs of SNP Optimizer-IT_ARCMAT for reporting purpose like wise remaining logs had to be read.Suggest me the best way to read the SNP Logs data & write a report.

Thanks

Poorna

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

In SE11 ==> Database table==> /SAPAPO/SNPOP* and hit F4 for the list of SNP Optimizer related tables

0 Kudos

To see which tables are saved for the SNP-optimizer output log you can
check the include /SAPAPO/LMSDP_SNPOPTFD4. Most tables are directly
saved with INSERT /SAPAPO/SNPOP*, so you can search the coding with
"SAPAPO/SNPOP" to know this tables.

Some tables are saved using the routine "write_out_table_to_db", in
which the table name is concatenated with /SAPAPO/ and the parameter
&2 when the routine is called, e.g. statement:

"write_out_table_to_db lt_opama snpoparm."

It means that it is saved to /SAPAPO/SNPOPARM. So you have to search the
coding for "write_out_table_to_db" to know this tables.

rupesh_brahmankar3
Active Contributor
0 Kudos

Hi Poorna,

You can use the FM /SAPAPO/MSDP_OPTLOG_DLD_RESLOG  or /SAPAPO/MSDP_OPT_SAVE_OUTP_LOG function module. Also you can use the table ''/SAPAPO/SNPOPAMA' and '/SAPAPO/SNPOPARM'

Regards,

R.Brahmankar