This content from the SAP Concur Community was machine translated for your convenience. SAP does not provide any guarantee regarding the correctness or completeness of this machine translated text. View original text custom.banner_survey_translated_text
Hello everyone!
I'm starting to use Report Studio and I have a lot of questions related to some requirements I have. Is there anyone who can answer some of my questions?
For example, in Concur we have a lot of year types. Is there anything I can use to join them as one simple field?
Please let me know any answer.
Thank you!
This content from the SAP Concur Community was machine translated for your convenience. SAP does not provide any guarantee regarding the correctness or completeness of this machine translated text. View original text custom.banner_survey_translated_text
I'm curious as to what a "year type" is? Also, we do offer free training on using our Cognos Reporting tools. Keep in mind the training is for beginners and is not a custom report building class, but a basics/foundational class, but the price of the class is great and it does provide some good information to get started with report building.
Visit: www.concurtraining.com. Click on the Learn about Reporting to see our documentation and a list of upcoming classes.
Kevin
This content from the SAP Concur Community was machine translated for your convenience. SAP does not provide any guarantee regarding the correctness or completeness of this machine translated text. View original text custom.banner_survey_translated_text
Hi Kevin!
As you know, we use the Year in many things within Concur. (Concur Data Warehouse > Expense Reports > Report Dates and Statuses). We have First submitted year, First submitted fiscal year, First Approved year, Sent for payment year, Paid Year, Current year. I want to know if there's any coding or technique I can use to merge or join these fields.
Please let me know.
Thank you!
This content from the SAP Concur Community was machine translated for your convenience. SAP does not provide any guarantee regarding the correctness or completeness of this machine translated text. View original text custom.banner_survey_translated_text
You won't necessarily merge these fields, but rather just add all the year data items you want to your report. For most of those data items, the year won't change much, except in the instance of the fiscal year. Most reports don't span multiple years. Reports are submitted, approved and sent for payment pretty much within the same year except if the report was created in December and wasn't sent for payment until January. Fiscal year is a little different as the end of a fiscal year could be in the middle of a year.
Your best bet is to just add the all necessary data items to the report you are building.
This content from the SAP Concur Community was machine translated for your convenience. SAP does not provide any guarantee regarding the correctness or completeness of this machine translated text. View original text custom.banner_survey_translated_text
Thanks a lot for your answer Kevin! It was really helpful!
Now I have another issue. Let's say that field "ORG UNIT 2 - Name", contains every Country setted up on customer's Concur Site. Is there any way to group specific countries and rename each group of countries within Report Studio?
For example:
1. Colombia, Venezuela, Ecuador, Panama belong to group SAC
2. Mexico belongs to group MEX
3. US, Canada belong to group North America
Please let me know if you have an answer for my question.
Thank you!
This content from the SAP Concur Community was machine translated for your convenience. SAP does not provide any guarantee regarding the correctness or completeness of this machine translated text. View original text custom.banner_survey_translated_text
Hi @oziel-alvarez ,
I know there are at least two ways to do that.
case when [Org Unit 2 - name] in ('Colombia', 'Venezuela', 'Ecuador', 'Panama') then 'SAC' when [Org Unit 2 - name] in ('Mexico') then 'MEX' when [Org Unit 2 - name] in ('US', 'Canada') then 'North America' else 'others' end
Hope it helps. 🙂
Felix