Skip to main content

Share ways to manipulating on "FinPeriod"


Forum|alt.badge.img+5
  • Captain II
  • 398 replies

Hello,

    Looks like we don't have parameters “@Period” like “@today”, which we can get Current Period or Last Period or any other period we like directly.
    But according to my recent expericence, we can manipulate period in some ways, and I have put the details in the below 2 post:

 

 

In short here:

  1. We can use datatime formula to get the current period like below:
    =iif(Month(Now())<10,CStr(Year(Now()))+'0'+CStr(Month(Now())),CStr(Year(Now()))+CStr(Month(Now())))
  2. We can also join 
    “PX.Objects.GL.FinPeriods.TableDefinition.FinPeriod”  to get periods we want.
  3. We can calculate based on “FinPeriodID” fields like below:
    The below is supposed to join a period with its pre Period
    =IIf( Right( [ItemCustSalesHist.FinPeriodID], 2)='01',CStr( ( Left( [ItemCustSalesHist.FinPeriodID], 4)-1))+'12', [ItemCustSalesHist.FinPeriodID]-1)

 

Did this topic help you find an answer to your question?

4 replies

BenjaminCrisman
Acumatica Employee
Forum|alt.badge.img+4
  • Acumatica Support Team
  • 716 replies
  • September 2, 2022

@ray20 It depends on what you’re looking for I think, but there are HistoryByPeriod tables which can store the period data of Last Activity Period.

Additionally, for reports using Report.FormatPeriod(@StartPeriod) + ' to ' + Report.FormatPeriod(@EndPeriod), where @StartPeriod and @EndPeriod are defined as parameters for the report.

Did you end up finding a workaround that you were looking for?


Forum|alt.badge.img+5
  • Author
  • Captain II
  • 398 replies
  • September 3, 2022

@BenjaminCrisman 
Thank you for your sharing.  Yes, I could get what I want by


The below is supposed to join a period with its pre Period
=IIf( Right( [ItemCustSalesHist.FinPeriodID], 2)='01',CStr( ( Left( [ItemCustSalesHist.FinPeriodID], 4)-1))+'12', [ItemCustSalesHist.FinPeriodID]-1)


Forum|alt.badge.img
  • Semi-Pro II
  • 81 replies
  • June 23, 2023

I find this works well for my GIs, assuming your financial periods are formatted as MM-YYYY.

=PadLeft( CSTR(Month(@Param_Date)) , 2, '0') + CSTR(Year(@Param_Date))


Patw
Jr Varsity I
  • Jr Varsity I
  • 6 replies
  • September 19, 2023

I’ve been using the following for converting Today() into [ARTran.FinPeriodID] (YYYYMM format). The company I work for has our Financial Calendar start in November and end in October. This is why it starts off by asking if the month is greater than 10. I’ve identified the values that would need to be changed in order for it to work with other months.

Iif(Month(Today())>10,Concat(Year(Today())*100+100,(Month(Today())-10)),Concat((Year(Today()))*100,(Month(Today())+2))

 

10 represents (Start Month - 1) In my example, it is November (Which is 11, so thus 11 - 1 = 10)
2 is just the remainder of 12 - the above number (12 - 10 = 2)


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings