LinkedIn
RSS

Archive for March 26th, 2010


Hide functions in reports

GA_googleFillSlot(“POSTSAP”); Have you ever need that your program don’t show the execute button, or background execution option, or even the variant selection option? You can do it but declaring this info: REPORT bla bla bla. …. *- Data declaration DATA gt_exclude                TYPE TABLE OF rsexfcode. DATA gs_exclude                TYPE rsexfcode. … INITIALIZATION. *- Hide options gs_exclude-fcode  = ’ONLI’. ”Hide execute APPEND gs_exclude TO gt_exclude. gs_exclude-fcode  = ’PRIN’. ”Hide Print+Execute APPEND gs_exclude TO gt_exclude. gs_exclude-fcode  = ’SJOB’. ”Hide Execute in [...]

Read More...