Application Development 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: 

fiscal month

Former Member
0 Kudos

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

Former Member
0 Kudos

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.

3 REPLIES 3

Former Member
0 Kudos

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.

0 Kudos

is there any function module for doing the same.

0 Kudos

Can you give the full code to implement please