Error in "Display G/L account balances" Fiori app

Hi experts,
I am getting below error while configuring the "Display G/L account balances" SAP Fiori app in our demo landscape. I am getting the similar error for all other 6 Finance apps that I am trying to configure.
Cannot call "Service"
GW error log says that this is an authorization error
The app was configured according to the standard SAP Fiori app configuration process, all services have been activated, roles have been created and assigned correctly to my user etc.
Here is also a su53 screenshot from backend SAP system
Below are the system details:
Gateway - SAP NW 7.4 SP10, UI for sFIN UIAPFI70 release 200(latest), SAP_UI SP11(latest)
Backend - SAP ECC 6.0 EhP 7 SP07, SAP_FIN 720(latest)
Do you have any pointers or ideas? Any help will be much appreciated!
Cheers,
Abhinav

Abhinav,
How did you activate the Gateway service? (FAC*ENTITIES)
There seems to be some problems with Service registration. (/IWFND/MAINT_SERVICE)
In addition there seems to be problem with RFC authorization.

Similar Messages

  • Error linking my personal Behance account through AdobeCC app at work

    I have a personal Adobe ID and and Behance site that I use for all my own stuff.
    At work / office, we recently upgraded to CC and we were each given new Adobe ID's.
    I have the CC desktop app on my work machine, but when I try to link my personal Behance account I get the error 'Linking with an Adobe ID is not supported at this time' ??
    Help.
    Tony.

    Hi Tony - we can definitely help! To have a private convo where we can give you your accont info, please write us a ticket here and someone will get back to you ASAP:
    Behance Support & Forum : Submit a request for assistance

  • GL Account Balance Query Issue

    Hi,
      I'm trying to extract GL Balances in the following format
    Company Segment(Segment2)  ||   Account Number(Segment1) ||  Cost Center Segment4 ||  Account Descr ||  Actual Flag || Account Type || Activity || Activity in Period || Currency || Period End date || Account Balance
    Here's my query :
    SELECT     gcc.segment4  "Company Segment",
               gcc.segment1  "Account",
               gcc.segment2  "Cost Center",
               a1.description "Account Description",
             --  a2.description Company_Description,
               Decode(gcc.account_type,'A','Asset','E','Expense','L','Liability','O','Equity','R','Revenue') "Account Type",
               Decode(gcc.enabled_flag,'Y','TRUE','FALSE')  "Active Account",
               Decode(abs(bal.Period_net_dr - bal.Period_net_cr),0,'FALSE','TRUE') "Activity in Period",
               bal.actual_flag  " Actual Flag",
               bal.currency_code  "Account Currency",
               per.end_date  "Period End Date",
               SUM(( NVL(bal.PERIOD_NET_DR,0) + NVL(bal.BEGIN_BALANCE_DR,0))) - SUM(NVL(bal.PERIOD_NET_CR,0)+NVL(bal.BEGIN_BALANCE_CR,0)) -
                         SUM( NVL(bal.BEGIN_BALANCE_DR,0) - NVL(bal.BEGIN_BALANCE_CR,0))   "Account Balance"
    FROM        apps.fnd_flex_values_vl a1,      --- For Account Segment
                apps.fnd_flex_values_vl a2,              -- For Cost Center
                apps.gl_code_combinations gcc,
                apps.gl_balances bal,
                apps.gl_periods per
    WHERE       a1.flex_value = gcc.segment1 
    AND         a2.flex_value = gcc.segment2
    and         a1.flex_value_set_id = 111111        -- Value set id for Account
    ---and         a2.flex_value_set_id = 222222    -- Value set id for Cost Center
    and         gcc.code_combination_id = bal.code_combination_id
    and          bal.period_name = per.period_name
    and         gcc.segment1 in ('777777')      --- Sample Account for testing only
    --and         gcc.segment2 in (222222)
    and         per.period_set_name ='GL_CALENDAR'
    and         bal.period_name ='SEP-13'
    and         bal.actual_flag='A'
    group by    gcc.segment4,
                gcc.segment1,
                gcc.segment2,
                a1.description,
               --            Decode(gcc.account_type,'A','Asset','E','Expense','L','Liability','O','Equity','R','Revenue'),
                Decode(gcc.enabled_flag,'Y','TRUE','FALSE'),
                Decode(abs(bal.Period_net_dr - bal.Period_net_cr),0,'FALSE','TRUE'),
                bal.actual_flag,
                bal.currency_code,
                per.end_date
                order by gcc.segment1,gcc.segment2
    1) If I  comment value set id 222222(Cost Center), then I'm getting 15 Records ,If I uncomment that I'm getting 10 records?Is there anything wrong with my queryAs I'm not displaying descriptions for cost center and company do I need to join fnd_flex_values_vl again or not ? 2) To check activity in particular period in this case for SEP-13,I'm using the following clause : Decode(abs(bal.Period_net_dr - bal.Period_net_cr),0,'FALSE','TRUE') Do I need to check ABS values also ro not?

    Hi,
      You can do this with WD dynamic programming.
      You can do with domodifyview badi for accounting component /SAPSRM/WDC_UI_DO_ACC.
      You need to handle both views 'V_DO_ACCOUNTING' and  'V_DO_ACCOUNT_DETAIL' in the domodifyview badi implementation.
    I am sending the sample  code. How to attach the custom search help dynamically.
      DATA lo_nd_comp_context    TYPE REF TO if_wd_context_node.
      DATA lo_nd_acc_context     TYPE REF TO if_wd_context_node.
      DATA lo_nd_info_acc        TYPE REF TO if_wd_context_node_info.
      DATA lv_value_help_mode    TYPE i.
      DATA lv_value_help         TYPE string.
      " Read Context
      lo_nd_comp_context = wd_context->get_child_node( name = 'COMP_CONTEXT' ).
      " get node info object of accounting node
      IF lo_nd_acc_context IS BOUND.
        lo_nd_info_acc = lo_nd_acc_context->get_node_info( ).
      ENDIF.
      " continue only if node info is supplied
      IF lo_nd_info_acc IS BOUND.
        " get current search help info
        lo_nd_info_acc->get_attribute_value_help(
          EXPORTING
            name            = 'G_L_ACCT'
          IMPORTING
            value_help_mode = lv_value_help_mode
            value_help      = lv_value_help
    " Below this will add the custom search help from SRM .
             lo_nd_info_acc->set_attribute_value_help(
            EXPORTING
              name            = 'G_L_ACCT'
              value_help_mode = 'BUS2121'
              value_help      = 'Z_F4-Your search help'   " you own search help.
      endif.
    Regards,
    Devi prasad

  • Report on GL Account Balance

    Hello Experts,
    I need to pull a report to display the GL Account balances for all the accounts per period.
    I tried FAGLB03 (FS10N), but it though it splits per period, it displays the total amount of all the accounts.
    I even tried S_ALR_87012277, but it sums up for all the periods though it breaks the report up at Account level.
    Is there a standard SAP report that I can use to display amounts split per Account for each period during a fisical year, for a CoCd instead of having to run the report for each period seperately.
    Thanks in advance.
    Regards,
    N

    As an alternative, you may customize the report program RFSSLD00, to bring in the period column.

  • Display account balances for vendor PO's and GRPO's

    In the BP Master, there is a display for customers of the account balance, open orders, deliveries, and opportunities.  But for vendors there is only an account balance.  There should be a similar display for open PO's and GRPO's.

    Hello Marcia,
    Maybe you can have a try with Drag&Relate function then use Filter to just include Open PO/GRPO only, the total amount will be displayed at the bottom of Drag&Relate result window.
    Howeve this is not as convenient as the open balance field directly showed on BP Master Data field.
    Regards,
    Canna Mu

  • Hi guys, I have a problem with my new macbook pro 15". I tried to updtate the apps (iPhoto, iMovie and Garageband), but an error was displayed "You have updates available for other accounts". I don't have other accounts!!! :(

    Hi guys,
    I have a problem, I have a new macbook pro. I updated the software without problems; then I tried to update iPhoto, iMovie and Garageband, but an error was displayed "You have updates available for other accounts". I don't have any other account, i tried everything found on the net but nothing seems to work...Please help me!!!!

    Same thing for me it writes "To update this application, sign in to the account you used to purchase it."

  • Profit Center wise G/L Account balance Display

    Hi,
    I m unable to find Standard Report Profit Center wise G/L Account balance Display (for ref.: FS10N)...
    when i m creating it's Z report, facing some problems like period showing 16 instead of 9 and other's...
    please let me know what can i do...
    thanks...

    HI!
    Profit Center wise G/L Account balance Display
    Tcode:S_PL0_86000030 - G/L Account Balances (New)
    regards,
    Rup

  • Similar report for Account Balance display which could be scheduled in the background

    Hi SAP gurus,
    As we know to display GL Account Balance Display we have std report "FAGL_ACCOUNT_BALANCE" But we can not run this in background as it is ALV report.
    So I would like to know a similar report which could be scheduled in the background.
    Thanks in advance
    Regards,
    -Chetan

    Hi,
    As division is not header field of invoice it is not available in accounting document header as well. Thus it will not be available in any standard reports showning items per account. I'm affraid you need to develop your own report or try to extend existing using user-/customer-exits.
    You can find more information in OSS note 13131.
    Regards,
    Marcin

  • Account Balance - Display Unreconciled Transaction

    SAP B1 2005B PL40
    Click on the arrow of the account balance of COA screen, SAP standard report "Account Balance" will be popped up. After checked the option "Display unreconciled trans. only", the reconciled transactions were shown also.
    Please advise.
    Thanks,
    Vivian

    Chan
    One of my client face the similar kind of problem, was sorted out by SAP
    would be a better option to log a support ticket,
    Rizz

  • Trial Balance displayed in GL Account currency

    Dear experts,
    I am working with a client implementing an SAP All-in-one Best Practice UAE version.
    The Client asks to have a Trial Balance of the GL accounts with 3 currencies view.
    1st view column:  Account Currency
    2nd view column: Local Currency
    3rd view column: Group Currency
    I tried the T.Code: S_PLO_86000030 ... and when i tried to put the currency type (80) -- which is the ledger currency and which is what the client asked for ...However the system is not allowing me to do so and generating an error msg "Enter a correct currency type:
                                     --  Message no. GH102
             Diagnoses       -- You want to see data for a currency type that is not kept in the ledger concerned.
    Sys. Response       -- The program cannot be run.
              Procedure      -- Check your entries for the currency type and ledger. Also check the valuation (legal,management,
                                        corporate group) of this ledger in Customizing.
    And i am only able to choose from the currency types: 10 -- Company code currency
                                                                                    30 -- Group currency
    So can anyone advise me and help me in this issue ????
    Your reply is well appreciated.
    For more info. and additional explanation plz let me know.
    Nabil Fares

    the currencies r found there as 1st currency Local Currency LBP and 2nd currency: group currency USD for all company codes in the parent. T.code OB22 .. they are found ... there is still the 3rd currency empty or available .. but yhe ledger currency that i want in the report which is Currency code 80 is not found from the report of the Account Balances using the T.code S_PL0_86000030 - G/L Account Balances (New)
    I want the report to generate the balance in the Account Currencies and not in ( 10 - Local currency or 30 - group currency ). using the T.code OB22 i only have the options (10,30,40,50,60 --- Company code currency, Group Cur, Hard cur, Index based cur. and global company cur .. respectively) ... So how can i got the result of my Balance in the Account currency which is Ledger currency type 80 ???
    Thanks in advance ....

  • Why is error 100 displayed when I try to sign in to my account?

    Why is error 100 displayed when I try to sign into my account?

    Hi Linda,
    Please refer the KB : http://helpx.adobe.com/creative-suite/kb/troubleshoot-download-assistant.html

  • FS10 (GL Account Balance Display) and FS10N(GL Account Balance Display)

    Hi All,
    when we are using FS10 and we are using layout u2018/VELASCOu2019, then in assignment field we get Customer Number.
    But
    when we are using FS10N and we are using layout u2018/VELASCOu2019, then in assignment field we get NOT GETTING Customer Number, but reference number or document number.
    please can suggest why it is working differently.
    Thanks and Regards
    Reena

    Hi,
    I see that you are using FS10 and FS10N which is for GL account balance display and you are mentioning about Customer Number not being populated in this. I assume you are referring to the drill down line item report since account balance output has not option for changing layout.
    In general coming to the GL line item report and customer number, this field is displayed in the report if the table BSEG is filled for this field. So summarizing, if there is no entry in table BSEG for this Line item there cannot be entry in FBL3N. What you are referring to would be a 'offsetting account' logic. Please check the note 112312 about the 'offsetting account' logic.
    But in your case I see that you are referring to Customer Number being displayed in assignment field, so I guess you are using sort key in master data to fill Customer number.The sort key in the master data of the G/L account fills field BSEG-HZUON.
    Refer note 334466 and 676338 for good info about how zuonr is filled and Please refer to the notes 215798,  984305. They will describe you how to put a special field into the line item display.
    Hope this helps.
    Kind Regards
    Soumya

  • GL Account Balance Display Problem

    Hi SAP Gurus
    I am having the problem with the GL Account display.
    When I use the T.Code:FS10N to display the balance of the particular GL Account
    the total shows  one balance and if I go through Line item, it shows different amount.
    I request you to kindly reply to me why this difference occurs and due to what reason?
    Thanks with regards,
    Bala.

    Dear Bala,
    You can check the data (GL Account Balance) in database table GLT0 or write a query or report with logical datbase SDF and structures SKC1A / SKC1C
    Try to analyse if the the difference is in differnet currencies or different business areas.
    What report are you using for line item.
    RFSUSA00, RFSOPO00, or RFSSLD00.
    Also, visit the following thread:
    Problem regarding difference in FS10N and FBL3N
    Hope this will help.
    Regards,
    Naveen.

  • Displaying Remarks field to GL Account Balance window

    Hi There
    Is it possible to add an additional column to the Account Balance window to display the Remarks field from the origin document, ie, ODLN,Comments or OVPM, Comments.  The Journal Remarks already are displayed but is limited to 50 characters.
    Using 2007A SP01 PL10 - without crystal reports
    Thanks!
    Lorna

    Hi Tracey
    Yes u can add a udf to the Accounts balance window while creating udf give the character length to 100 so that u can have 100 characters to enter and u shuld enter the remarks of odln /ovpm remaks manully in this udfautomatically it will not populate .
    i think this will solve ur prob
    regards
    Jenny

  • HT5570 I got an error message when I tried to download a song and it didn't download but my account balance was lowered by the cost of the song.  What gives?

    I got an error message when I tried to download a song and it didn't download but my account balance was lowered by the cost of the song.  What gives?

    Apple has announced they are currently experiencing issues with iTunes store purchases... give it some time to clear up.

Maybe you are looking for