Application Development and Automation 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: 
Read only

Function Modules?

Former Member
0 Likes
347

Hi All,

What is the Purpose of all the below Function Modules?

CALL FUNCTION 'K_GROUP_SELECT'

CALL FUNCTION 'G_SET_INSERT'

CALL FUNCTION 'G_INTERVAL_GET_NEXT'

Akshitha.

1 REPLY 1
Read only

Former Member
0 Likes
318

hi akshita,

In webdynpro v use the FM

k_group_select is used for searching for cost-object groups via a pop-up window.... n i don know abt other 2 FMs...

also c this ex..

constants: c_x(1) type c value 'X',

c_kstar like t800s-feld value 'KSTAR '.

parameters: p_kstar like t800s-setnr. "Cost Element Group

*----


F4 for Cost Element Group -


AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_KSTAR.

CALL FUNCTION 'K_GROUP_SELECT'

EXPORTING

FIELD_NAME = C_KSTAR

SELECT_SETS_WITHOUT_CLASS = C_X

IMPORTING

SET_NAME = P_KSTAR

EXCEPTIONS

NO_SET_PICKED = 02.

CASE SY-SUBRC.

WHEN 1. MESSAGE S003(GR).

WHEN 2. MESSAGE S004(GR).

ENDCASE.

*----


rgds,

guna...

Edited by: gunaseelan murugesan on Mar 2, 2008 12:02 PM

Edited by: gunaseelan murugesan on Mar 2, 2008 12:03 PM