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

fiscal month

Former Member
0 Likes
605

How to convert month to fiscal month. is this fm FTI_FISCAL_YEAR_MONTH_GET can be used for getting the month.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
580

Hi

Try using table T549Q for convering to fiscal month.use this code below.

SELECT pabrj pabrp begda endda
    INTO  CORRESPONDING FIELDS OF TABLE it_pyper
    FROM t549q
    WHERE permo = c_99
    AND begda <= w_begda
    AND endda >= w_endda.

Hope this helps u.

****Reward points if helpful.

How to convert month to fiscal month. is this fm FTI_FISCAL_YEAR_MONTH_GET can be used for getting the month.

3 REPLIES 3
Read only

Former Member
0 Likes
581

Hi

Try using table T549Q for convering to fiscal month.use this code below.

SELECT pabrj pabrp begda endda
    INTO  CORRESPONDING FIELDS OF TABLE it_pyper
    FROM t549q
    WHERE permo = c_99
    AND begda <= w_begda
    AND endda >= w_endda.

Hope this helps u.

****Reward points if helpful.

Read only

0 Likes
580

is there any function module for doing the same.

Read only

0 Likes
580

Can you give the full code to implement please