Additional Blogs by Members
cancel
Showing results for 
Search instead for 
Did you mean: 
athavanraja
Active Contributor
0 Kudos

* this handler is called once the page is first created (stateful mode)

  • it performs a once-off data initialization or object creation

select kostl ltext up to 5 rows from cskt into table cat where spras eq sy-langu and

                                       kokrs eq '' and

                                       datbi ge sy-datum .

clear col_wa .

move: 'KOSTL' to col_wa-columnname ,

      'Cost Center' to col_wa-title ,

       'LEFT' to col_wa-horizontalalignment .

append col_wa to col_control_tab .

clear col_wa .

move: 'DESC' to col_wa-columnname ,

       'Description' to col_wa-title ,

        'LEFT' to col_wa-horizontalalignment .

append col_wa to col_control_tab .

clear col_wa .

clear: its_url , g_url .

move:

  • If you are running on  WAS6.4 use the following URL for ITS

  • http://<server>:<port>/sap/bc/gui/sap/its/webgui/!?~transaction=ks03&CSKSZ-KOSTL=' to its_url .

*else if you are using standalone ITS (pre WAS6.4 system) use the following URL

  • Note that when you are using integrated ITS you dont need to login again

*'http://

:

/scripts/wgate/webgui/!?client=<client>&login=&password=<password>&language=en&~transaction=ks03&CSKSZ-KOSTL=' to its_url .

move: 'http://www.google.com/search?q=' to g_url .

5 Comments