G/L account query !

Hi experts,
I am working in SRM 5.0 EBP 4.0 configuration.
We find that in a particular case, a purchase order failed to be posted to the backend system as the error was obtained.
( Error Message BBP_PD : Message number 047  I ::000 )
In RZ 20, I have got an alert stating the G/L account ' X ' cannot be used.
But I find that the G/L account has been maintained in the table ZBBP_DET_ACCOUNT for the particular product category.
Also I find that the G/L account is created for the company code in the respective backend system.
I get an error when I tried to debug ' in the function module
' META_ACCSERV_CHECKACCASSIGNMT ' which gives an error that the G/L account is not maintained .
Can any one clarify why this error comes and where does the system check in the backend for the G/L account value for a particular cost assignment.
Awaiting your expert comments!!!
With Regards,
Rajesh

Hi
<b>There can be couple of reasons which need to be checked thoroughly.</b>
Please ensure the following ->
<b>1) If you create a PR or PO directement in R/3 (= without SRM), do you get the same error ?
Account assignment type "P" for project has to be maintained in transaction OME9. If you do use standard configuration , both on SRM AND R/3 sides, you should not have this issue. However, if you work with EBP 3.5, i guess it means that the system was working well before.
2)
Check the field status group assigned to the GL Account in Tx FS00.
And look at the field 'Field Status Group' of 'Create/bank/interest' tab.
Double click on the field status group field, and check for the 'Additional account assignments' - Check here whether the WBS/Cost center/profit center are suppresed. If suppresed you cant use this GL to post against the cost objects.
3) Try to use the same GL account and the same WBS element you used in SRM while creating the PO in R3 (to check for the error). I suspect, you will come up with the same error as what you got in SRM.
Generally this error will pop up if there are any mismatch between the field status groups assigned to the GL account and the cost object P (projects/WBS). Check for the field 'Network' in both of the field status groups.</b>
Also, There are 2 ways to determine GL in SRM.
1. Maintain GL codes for product categories & Account assignment in SPRO. With this relevant GL code will be picked in SRM for the selected product category.
SRM server-->Cross appln basic setting-->Acct assignment--->Define GL acct for product category
2. Maintain logic to determine GL code in BADI BBP_DETERMINE_ACCT. In this BADI use ITEM_DATA and ACCT_DATA tables in method DETERMINE_ACCOUNT.
If you need to overwrite these,you will need to implement the BADI "BBP_DETERMINE_ACCT" and method "DETERMINE_ACCOUNT".
In this method ,use the FM "MR_ACCOUNT_ASSIGNMENT" for the retreiving the G/L account from R/3.
Hope this will help.
Please reward suitable points.
Regards
- Atul

Similar Messages

  • Modified Historic Accounting query tools/Inflation Accounting tool for Assets

    Modified Historic Accounting query tools/Inflation Accounting tool for Assets
    Does anybody know if Oracle provide such a product, or is it a third party solution that interfaces with Oracle? If you have any info on this, I would be grateful
    Thanks

    First check if you can add the function associated with the tools option to "responsibility exclusions" using sysadmin.
    See http://download.oracle.com/docs/cd/A60725_05/html/comnls/us/fnd/fndscrsp.htm
    If not, then consider writing a personalization (one for each tools>menu option)
    The personalization will fire on the "special7" (or whichever the number is).
    In the actions, you should display an error message that says "This option is not available". That will prevent the user from opening the form.
    Hope this helps
    Sandeep Gandhi
    Independent Techno-functional Consultant

  • AR Aging by account query

    Hi ,
    I am building a view which should have the aging information for all the customers who are having amount due remaining to pay.
    here I have 1 query which gives all the dues for all the customers.
    select trx_number
    , ps.trx_date
    , ps.due_date
    , ps.invoice_currency_code
    , sob.currency_code
    , ps.class
    , ps.amount_due_original
    , ps.amount_due_original * nvl(exchange_rate, 1) acctd_amount_due_original
    , ps.amount_due_remaining
    , ps.acctd_amount_due_remaining
    , ps.status
    , ps.cust_trx_type_id
    , ps.customer_id
    , ps.customer_site_use_id
    , ps.customer_trx_id
    , ps.cash_receipt_id
    , ps.gl_date
    , ps.org_id
    from gl_sets_of_books sob
    , hr_operating_units ou
    , ar_payment_schedules_all ps
    where sob.set_of_books_id = ou.set_of_books_id
    and ou.organization_id = ps.org_id
    and ps.status = 'OP'
    and ps.org_id is not null
    order by ps.org_id asc, ps.due_date desc
    I have added buckets and all other details to the query as
    select rc.customer_number
    , rc2.CUSTOMER_NUMBER Brand_Cust_Number
    , rc.CUSTOMER_NAME
    , rc2.CUSTOMER_NAME Brand_Customer_Name
    , ps.trx_number
    , ps.trx_date
    , ps.due_date
    , ps.class
    , ps.status
    , ps.cust_trx_type_id
    , ps.customer_id
    , nvl(rcta.attribute5,ps.CUSTOMER_ID) Brand_Customer_id
    , ps.customer_site_use_id
    , ps.customer_trx_id
    , ps.cash_receipt_id
    , ps.gl_date
    , sob.set_of_books_id
    , sob.chart_of_accounts_id
    , gcc.SEGMENT1 Company
    , gcc.SEGMENT2 Location
    , gcc.SEGMENT3 Department
    , gcc.SEGMENT4 Account
    , gcc.SEGMENT5 Future_1
    , gcc.SEGMENT6 Future_2
    , gcc.SEGMENT7 Future_3
    , gcc.CONCATENATED_SEGMENTS gl_cc_concat_kff
    , gcc.CODE_COMBINATION_ID
    , ps.invoice_currency_code invoice_currency_code
    , sob.currency_code SOB_Currency_Code
    , ps.amount_due_original inv_curr_amount_original
    , round(ps.amount_due_original * nvl(ps.exchange_rate, 1),2) sob_acctd_amount_due_original
    , ps.AMOUNT_DUE_REMAINING
    , ps.ACCTD_AMOUNT_DUE_REMAINING sob_acctd_amount_due_REMAINING
    , ps.org_id
    , round(sysdate-ps.due_date) No_Of_Days
    , sysdate Run_date
    , sysdate as_of_date
    , (CASE WHEN round(sysdate-ps.due_date)<0 THEN AMOUNT_DUE_REMAINING END) Inv_Cur_Current_amt
    , (CASE WHEN round(sysdate-ps.due_date) between 0 and 30 THEN AMOUNT_DUE_REMAINING END) Inv_Cur_Days_0_to_30
    , (CASE WHEN round(sysdate-ps.due_date) between 31 and 60 THEN AMOUNT_DUE_REMAINING END) Inv_Cur_Days_31_to_60
    , (CASE WHEN round(sysdate-ps.due_date) between 61 and 90 THEN AMOUNT_DUE_REMAINING END) Inv_Cur_Days_61_to_90
    , (CASE WHEN round(sysdate-ps.due_date) between 91 and 120 THEN AMOUNT_DUE_REMAINING END) Inv_Cur_Days_91_to_120
    , (CASE WHEN round(sysdate-ps.due_date) between 121 and 180 THEN AMOUNT_DUE_REMAINING END) Inv_Cur_Days_121_to_180
    , (CASE WHEN round(sysdate-ps.due_date)>180 THEN AMOUNT_DUE_REMAINING END) Inv_Cur_Days_180_plus
    , (CASE WHEN round(sysdate-ps.due_date)<0 THEN ACCTD_AMOUNT_DUE_REMAINING END) sob_Cur_Current_amt
    , (CASE WHEN round(sysdate-ps.due_date) between 0 and 30 THEN ACCTD_AMOUNT_DUE_REMAINING END) sob_Cur_Days_0_to_30
    , (CASE WHEN round(sysdate-ps.due_date) between 31 and 60 THEN ACCTD_AMOUNT_DUE_REMAINING END) sob_Cur_Days_31_to_60
    , (CASE WHEN round(sysdate-ps.due_date) between 61 and 90 THEN ACCTD_AMOUNT_DUE_REMAINING END) sob_Cur_Days_61_to_90
    , (CASE WHEN round(sysdate-ps.due_date) between 91 and 120 THEN ACCTD_AMOUNT_DUE_REMAINING END) sob_Cur_Days_91_to_120
    , (CASE WHEN round(sysdate-ps.due_date) between 121 and 180 THEN ACCTD_AMOUNT_DUE_REMAINING END) sob_Cur_Days_121_to_180
    , (CASE WHEN round(sysdate-ps.due_date)>180 THEN ACCTD_AMOUNT_DUE_REMAINING END) sob_Cur_Days_180_plus
    from gl_sets_of_books sob
    , hr_operating_units ou
    , ar_payment_schedules_all ps
    , ra_customers rc
    , ra_cust_trx_line_gl_dist_all rctlda
    , gl_code_combinations_kfv gcc
    , ra_customer_trx_all rcta
    , ra_customers rc2
    where sob.set_of_books_id = ou.set_of_books_id
    and ou.organization_id = ps.org_id
    and ps.status = 'OP'
    and ps.org_id is not null
    and ps.CUSTOMER_ID=rc.CUSTOMER_ID
    and ps.CUSTOMER_TRX_ID=rctlda.CUSTOMER_TRX_ID
    and rctlda.ACCOUNT_CLASS='REC'
    and rctlda.latest_rec_flag = 'Y'
    and rctlda.CODE_COMBINATION_ID=gcc.CODE_COMBINATION_ID
    and ps.CUSTOMER_TRX_ID=rcta.CUSTOMER_TRX_ID
    and gcc.segment4 in('111100','111102','4110000')
    and nvl(rcta.ATTRIBUTE5,ps.CUSTOMER_ID)=rc2.CUSTOMER_ID
    and ps.CUSTOMER_ID=14273
    order by rc.customer_name
    From this query i am missing the payments records,because of this i am unable to get proper customer balance.
    actually I could get straight away from 1st query but i need to restrict for some accounts as i wrote in second query where clause.
    to get this i wrote one more query same as second but instead of ra_cust_gl_dist_lines_all i have used ar_receivables_applications_all to get the code_combintaion with cash receipt id.
    2nd query is working perfect and giving all the details and amounts,but missing payments details as i told in the above.
    Coud any one please tell me how to get payments/cash receipts applied to a customer query or else if you have complete aging query.
    Thanks,
    Y

    Hi
    Could you please send me the query if possible to [email protected]
    Thank you very much for that.
    Thanks,
    YMR

  • Retained Earnings Account query

    Hi Folks,
    At Ledger level we can assign one balancing segment value for Retained earnings account , where as if we have multiple balancing segment values in same BG LE and OU so how we can differentiate the retained earning account balances for different balancing segment values.
    Regards
    Prasanth

    Hi Rupa,
    Thanks for your reply,
    Sorry for inconvience, actually my query is as follow.
    We have single ledger with multiple balancing segements , we will enter multiple transactions for each balancing segment values. but we can assign only one balancing segment at ledger level how system will create other balancing segment retained earnings account , and how it will get effect.
    Ex:- Balancing segments (1, 2, 3, 4, 5) we will assign only "1" at ledger level. later we entered transanctions for "2" , "3" vis versa, how system will generate retaned earnings account combination for "2" , "3" . based on what functionality it is working .
    Regards
    Prasanth

  • Freelance (DPS pro account) query

    Hi all,
    Bob Levine has kindly cleared up a lot of my confusion on this for which I'm very grateful.  However I have a final query that I thought I'd ask here if that's ok.
    I am a freelance designer specialising in printed magazines and I'd ideally want to be able to offer ios/android newstand versions to existing and new clients.  In my head I thought I could purchase a pro DPS account and be able to do this, but I've found out that even with the pro account I could only make 1 multi-folio app.
    So for me to offer this as a service I'd have to have my clients each purchase a pro account for their app and I would design their publication/folios for it.  Obviously the client would have to manage payments of their account, otherwise I could end up with a number of different accounts on behalf of numerous clients to take care of!
    Now, if the above is correct, then what is the advantage of buying a pro account over going with one of the many companies who give you their own inDesign plug in and deal with submission etc, sometimes for slightly cheaper, than the pro account subscription.  Is it just a case of having more freedom with the design if you use the DPS plug-in?
    I'm obviously missing something but I'm trying to get a clear understanding of the costs of different options  before I dive in.  I wish the adobe info would do that :/
    Hope that's clear, sorry if it's not!
    Any help is appreciated.
    Thanks
    Ian

    Thanks for the reply Brian.  I totally agree that a small or individual licence to publish apps would be a much more elegant solution.  I mean the clients would have their own apple id so the certs etc would be in their name.  I'm amazed it's this convoluted.
    It seems that it would be clearer if instead of calling the different accounts 'licences' or 'accounts', they should just say it's a monthly app maintenance fee or something like that, because it really is linked to the app that's created rather than the professional designer who created it.
    I'd be interested though in your thoughts on the benefits of going with Adobe's publishing suite over one of the other companies out there.  I'm very much an adobe user of course so I naturally look at the DPS first in the hopes that it would be the best for inDesign interaction, but there's some pretty big publications that use plug-ins from other companies, although I'd still have the same hassle with having to manage different 'accounts' for different apps/clients.

  • Changing my Apple ID Account query

    I have an apple ID that is not in the form of an e-mail address.  For example: abcdefghijk99.  I've had it for years, going back to when I was a Windows PC user (until I saw the light 2 years ago and switched to Apple products) for itunes purchases initially.  As far as I was concerned my appleid was fine and I've used it to purchase more music and apps for my Mac, iphone, ipad and ipod since.  Then I discovered a problem. Having downloaded the Find My iphone app it prompted me for an appleid in the form of an e-mail address and would not accept my original appleid.  Likewise the same issue applied to the the same for finding the ipad.
    So I checked it out online a little to try and see if it is possible to change your applid and found the "My Apple ID" section at https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/ and that under the "Manage my account" section you can make changes to your appleid account.  But changing your name to an e-mail address is not one of them, at least if it is to the e-mail address that is your default e-mail address as held by itunes.
    So ok, and I imagine others would suggest this, that I could set up another ID as an e-mail address and use this for the Find my iphone and ipad facilities.
    But looking forward, it doesn't solve the problem at all.
    1.  I've built up a fair history of purchases using itunes and from the App store under my original non e-mail address and I don't want to lose them.  And of course future updates to software that I've purchased from the App Store would be against my original appleid and I don't want to lose that thread.
    With the advent of "iCloud" I understand that it will want you to enter your Appleid in order to upload to, sync your devices with etc.,  If it wants this to be entered in e-mail address format then it will not be accessible to me.
    2.  Appleid software is inconsistent in that for iTunes and The App Store it will allow the ID to be entered both as a non E-Mail address and as an E-Mail address.  But for the Find my iphone App, will only accept an E-Mail format address as the Appleid.  I think this is perhaps a legacy of MobileMe, which possibly The iCloud is going to use the MobileMe format as an Appleid.  And if so that will have implications for other users who have the same type of appleid as me.
    3.  All I want to do is simply change my Appleid to my default E-Mail address, but it won't let me.  I raised this issue on the telephone with Apple who understood my issue, did not immediately know the answer, but said would discuss with colleagues and E-Mail me back.  The reply was:
    "I talked about your case with my colleagues. The only suggestion that came to mind is that you consult iTunes via email and ask if they can amend the ID or if it would be possible to transfer you purchases from one account to another account."
    Ok. So it led me to here, the Support area, because it seems impossible to be able to raise the issue by E-Mail with them, as much as I've tried to by going from page to page trying to find out "how to contact them".
    So does anyone here have any good ideas as to how I solve my problem?   Additionally is there anyone from Apple itself who monitors questions raised in this community?  If so could they let me know that they appreciate my problem and how/if it can be dealt with?
    Hoping someone comes up with a solution and looking forward to hearing from anyone with suggestions.

    Solved with assistance from iTunes support.  The main problem was that you cannot use an e-mail address which is associated with your existing account.  So the answer is to set set up a new e-mail address with your Internet Service provider.  Next step is to log into iTunes using your existing appleID (which in my case was a non e-mail address as mentioned in my question) and then modify your itunes id and e-mail account, both to the new e-mail address.  I tried it and it worked.  All downloaded history such as itunes music and apps that I have downloaded onto my devices over time has been retained.  Furthermore I can now use the "Find my iPhone app" to find both my iphone and iPad.  Likewise will be able to use this revised appleid to access iCloud once available and synch my apps etc.,  Very pleased with iTunes Support's prompt response and remedy.

  • GR/IR Clearing account query

    Hi SAP Gurus,
    We have business scenarios where GR/IR account gets debited and credited with different amounts. We want to clear even those cases using program SAPF124 by maintaing the required tolerances. Also in SPRO we can maintain the GL to which the clearing differences shall get posted. The path for maintaing these GLs is as below:
    SPRO>Financial Accounting>General Ledger Accounting>Business Transactions>Open Item Clearing>Clearing Differences>Create Accounts for Clearing Differences
    I want to know if it is possible in SAP to maintain specific GL accounts for posting differences for specific GR/IR accounts. This is the requirement as we have many GR/IR accounts for different purposes.
    Regards,
    Vijay

    Hi Sridhar,
    Could you please eleborate this for me.
    Regards,
    Vijay

  • I have three email accounts query...does anyone ha...

    Hello Members, my phone is 5800 and i have a Hotmail, Googlemail and an AOL email account, i find i need to access them as i still get inportant emails.
    I understand there are email clients for my phone ie Nokia messaging, OVI, but i don't really want an application running on my phone that allows anyone to enter my inbox, should the phone get lost, or i forget it at someone house, say.
    So my prefered access to my email accounts would be to go directly through there websites, but i was wondering if there exists an app that can sit on the desktop of the phone that when i click say an icon within it for Google mail all that would open is a Google mail login screen, and then my inbox appears.
    I understand this sound a bit like having 'Favourites' link in Internet Explorer but more direct to the point of getting to the login of the website.
    Do any members have any ideas?
    Kind regards
    Livio   

    Hi,
    There is no such option in the handset, where in you can open the mail using the Web. But you can install Gmail appliaction in the handset. But for AOL & Hotmail, you need to check if they have developed application for Symbian platform.

  • Bank accounts query

    Dear All ,
    this is regarding maintaining different bank accounts for EoU and Domestic division:
    How do we ensure that we pick the right bank a/c if we  have a common vendor between domestic and eou?
    Have we need to  split the vendors in domestic and vendor in EOU  (ie duplicated the vendors) or do we differ via the payment method?
    If we differ via payment method, Pl guide with  the process if we do have to select only EoU or only domestic open items?
    Regards ,

    Hi,
    "Partner Bank Type" option is availble for these type of specific situations.
    You can see the partner bank type filed in the VENDOR MASTER in the PAYMENT TRANSACTION screen , in that after the IBAN this field is available. this is 4 char specific. maintain seperate partner bank type for each bank.
    AND
    in the invoice you  have the field availble there you enter the parnter bank type based on the transaction. select the proper parnter bank type and at the time of F110  system picks the relevant bank accordingly.
    VVR

  • SAP Deposits Management/ Bank Customer Account query - ECC 6.0

    Dear all,
    In SAP Deposits Management in the new platform, we have the node Financial Services both in Easy Access and IMG under which we have the major functionalities like Account and Product Management. However this is unavailable in ECC 6.0. Request you to clarify whether these functions are available in SAP ECC 6.0 under SAP Bank Customer Accounts.
    Regards
    Subhobrata

    Dear Subhobrata,
    to answer your immediate question on Deposits Management, please read my lines below.
    Maybe consider posting similar questions in the Forum: Industry Solutions General.
    Most industry consultants from the banking practice are contributing and posting there.
    The straightforward answer to your question is
    No, the nodes published for the "banking services from SAP" process platform (Deposits/Account Management, Analytical Banking) are not published again in ECC 6.0.
    Installation procedures, components and licenses are completely different.
    This is due to different architectural design, IT and banking business requirements.
    The node Financial Services is one application platform (the most recent application release is 7.0 on NetWeaver 7.11) that comprises
    + transactional banking with the components for managing, posting to and servicing of current accounts, savings, deposits, loans, collaterals and hierarchies of accounts for purposes of cash & liquidity (cash pools/sweeps) and global limit management
    + analytical banking with the components for managing risk, ALM, analytical (bank-unit-internal) limit and BASELII requirements.
    The single-purpose application component of Bank Customer Accounts on ECC does not handle this variety, yet focuses on current and yield account/demand deposits for special-purpose banks/financial institutions.
    regards
    Ralf

  • Cancellation of iCloud account query - URGENT PLS

    I received an email purportedly from 2015 Apple Inc. 31-23, rue Sainte Zithe,
    L-2763 Luxembourg.  email address Apple/iCloud Genius Care <[email protected]>
    saying that my account will be terminated unless I verify my Apple account and the link takes me
    to a form that does look like an Apple form with some of my correct information filled in.  Before I
    fill it in completely which includes my credit card info, I would like someone to please let me know
    if this is legitimate.
    Many thanks.
    Ellen

    Ellen ..
    It's phishing. Do not respond. It's not legitimate.
    Please forward the email to:  [email protected]
    Never reply to an email from:  "Your AppleCare support center" or "Apple / iCloud Genius Care".
    Apple will never send you an email asking you to verify your Apple ID credentials or your credit card information.
    If you ever receive an email such as this again. do not reply, do not call. Forward the email to the reportphisihing email address above then delete that email.
    Identifying fraudulent "phishing" email

  • Send account query

    User Dale.Strugnell571 Paid but not Minutes, please load the delivered account!

    try sending your username password using WS security as described here
    http://download.oracle.com/docs/cd/E14004_01/books/EAI2/EAI2_WebServices29.html

  • Account Query is taking longtime and not giving desired results

    Hi,
    I'm trying to run the following query to get code combination id for last six months with 1)no activity in gl_je_lines
    2) Sum of begin balance and PTD is zero
    Her's query :
    select
    cc.segment3 SEGMENT
    from apps.gl_code_combinations cc,
    apps.gl_balances bal,
    apps.fnd_flex_values_vl ffvl,
    apps.fnd_flex_value_sets ffvs,
    (select period_name
    from apps.gl_periods
    where period_set_name ='abc Calendar'
    and to_date(period_name,'Mon-YY') between add_months(sysdate,(6*-1)-1) and sysdate) p
    where cc.CODE_COMBINATION_ID = bal.CODE_COMBINATION_ID
    and ffvl.FLEX_VALUE = cc.segment3
    and ffvl.FLEX_VALUE_SET_ID = ffvs.flex_value_set_id
    and ffvs.flex_value_set_id = 2222222
    and bal.SET_OF_BOOKS_ID =555
    and cc.CHART_OF_ACCOUNTS_ID = 11111
    and bal.period_name = p.period_name
    and ffvl.ENABLED_FLAG = 'Y'
    and ffvl.END_DATE_ACTIVE is null
    and bal.TEMPLATE_ID IS NULL
    and bal.actual_flag='A'
    and bal.currency_code 'STAT'
    and ffvl.creation_date <= add_months(sysdate,(6*-1)-1)
    and cc.SEGMENT3 not in (
    select
    distinct gcc.SEGMENT3
    from apps.gl_je_lines l
    , apps.gl_code_Combinations gcc,
    (select period_name
    from apps.gl_periods
    where period_set_name ='abc Calendar'
    and end_date > add_months(last_day(sysdate),-1) and end_date <= last_day(sysdate)) lp
    where l.code_combination_id = gcc.code_combination_id
    and gcc.CHART_OF_ACCOUNTS_ID = 11111
    and l.period_name=lp.period_name
    and l.set_of_books_id = 555
    and l.status='P')
    group by cc.SEGMENT3
    HAVING sum(abs(nvl(bal.BEGIN_BALANCE_DR,0))-abs(nvl(bal.BEGIN_BALANCE_CR,0))+abs(nvl(bal.PERIOD_NET_DR,0))-abs(nvl(bal.PERIOD_NET_CR,0))) = 0--------------------------------------------------------------------------------
    Here's Explain Plan
    Operation Node Cost IO Cost CPU Cost Cardinality Object Name Options Object Type Optimizer
    SELECT STATEMENT 5155 5094 554583434 1 ALL_ROWS
    FILTER
    HASH (GROUP BY) 5155 5094 554583434 1 GROUP BY
    FILTER
    TABLE ACCESS (BY INDEX ROWID) 4 4 31301 1 GL_BALANCES BY INDEX ROWID TABLE ANALYZED
    NESTED LOOPS 18 18 427467 1
    MERGE JOIN (CARTESIAN) 14 14 396166 1 CARTESIAN
    TABLE ACCESS (BY INDEX ROWID) 4 4 49409 1 GL_CODE_COMBINATIONS BY INDEX ROWID TABLE ANALYZED
    NESTED LOOPS 8 8 82677 1
    NESTED LOOPS 4 4 33268 1
    NESTED LOOPS 4 4 31368 1
    INDEX (UNIQUE SCAN) 1 1 8171 1 FND_FLEX_VALUE_SETS_U1 UNIQUE SCAN INDEX (UNIQUE) ANALYZED
    TABLE ACCESS (BY INDEX ROWID) 3 3 23196 1 FND_FLEX_VALUES BY INDEX ROWID TABLE ANALYZED
    INDEX (RANGE SCAN) 2 2 15293 1 FND_FLEX_VALUES_N3 RANGE SCAN INDEX ANALYZED
    INDEX (UNIQUE SCAN) 0 0 1900 1 FND_FLEX_VALUES_TL_U1 UNIQUE SCAN INDEX (UNIQUE) ANALYZED
    INDEX (RANGE SCAN) 2 2 33113 4 GL_CODE_COMBINATIONS_N3 RANGE SCAN INDEX ANALYZED
    FILTER
    TABLE ACCESS (BY INDEX ROWID) 20 20 163416 1 GL_JE_LINES BY INDEX ROWID TABLE ANALYZED
    NESTED LOOPS 5136 5076 545022343 1
    MERGE JOIN (CARTESIAN) 5103 5043 544739760 4 CARTESIAN
    TABLE ACCESS (BY INDEX ROWID) 5 5 37587 1 GL_PERIODS BY INDEX ROWID TABLE ANALYZED
    INDEX (RANGE SCAN) 2 2 15043 4 GL_PERIODS_N2 RANGE SCAN INDEX ANALYZED
    BUFFER (SORT) 5098 5038 544702173 7 SORT
    TABLE ACCESS (FULL) 5098 5038 544702173 7 GL_CODE_COMBINATIONS FULL TABLE ANALYZED
    INDEX (RANGE SCAN) 3 3 29414 36 GL_JE_LINES_N1 RANGE SCAN INDEX ANALYZED
    BUFFER (SORT) 10 10 346757 1 SORT
    INDEX (FULL SCAN) 6 6 313489 1 GL_PERIODS_U1 FULL SCAN INDEX (UNIQUE) ANALYZED
    INDEX (RANGE SCAN) 2 2 15493 1 GL_BALANCES_N1 RANGE SCAN INDEX ANALYZEDThis query is taking two hrs to get results :
    How to tune this query to get results faster

    Hi,
    170 posts and still do not know how to use {noformat}{noformat} tags?
    Please read <a href="https://forums.oracle.com/forums/thread.jspa?threadID=2174552#9360002">How do I ask a question on the forums?</a>
    If you have a performance issue have a look at <a href="https://forums.oracle.com/forums/thread.jspa?threadID=2174552#9360003">How to improve the performance of my query? / My query is running slow. </a>
    Additionally when you put some code please enclose it between two lines starting with {noformat}{noformat}
    i.e.:
    {noformat}{noformat}
    SELECT ...
    {noformat}{noformat}
    Also consider closing some of your questions when someone is answering. Looking at your profile:
    Handle:      user518071 
    Status Level:      Newbie
    Registered:      Jun 30, 2006
    Total Posts:      170
    Total Questions:      92 (58 unresolved) it still looks that you have 58 unresolved questions. Are they really all unresolved?
    Regards.
    Al

  • ICloud Account query

    Hi everyone.
    So, if I use my Outlook id as my Apple id, will I be able to access, send and receive emails, using my Outlook id through the iCloud webmail interface as well? Will all my emails, contacts, calendars, and storage, sync and automatically update with the emails, contacts, calendars, and storage on the iCloud webmail?
    In other words, will the iCloud webmail become a duplicate of my Outlook inbox with respect to the content? In other words, will I be able to access my iCloud webmail the same way as I use Outlook, without logging into the Outlook account at all?
    Thank you very much.
    VRK.

    The only email addresses that icloud processes are the icloud.com, and, if you already have aliases, the mac.com and me.com.
    icloud does not manage emails from other services.
    BTW, what do you mean by an outlook id?  outlook is just an email client that can handle any number of email services.  Or are you refering to an MS Exchange account that outlook uses?

  • 'Run this Step as the following account' query

    I need to deploy an upgrade for hundreds of machines. A clean install is preferred over a customized package. So the source setup is used without making any changes.It took a considerable amount of time to make the upgrade work.However it works only when
    the option ' Run with user rights' is selected and with the admin rights provided for that particular account.It fails with the system account. I was able to eventually make it work only with the below conditions
    1) Run with user rights in program properties
    2) Give Admin rights to the test account
    3) If i put XYZ.exe /S in the command line it fails. So i had to put the content inside a folder called X. The data source in the package properties has \\servername\PackageID\Application name. The X folder is in \\servername\PackageID\Application name\X.
    The command line is X\xyz.exe.
    Point 1 and Point 3 are OK. But Point 2 is impossible as it is difficult to do for hundreds of users.
    I thought of using ' Run command line ' in the TS. I tried a domain account for 'run this step as the following account'. What should i put in the command line and in 'Start in' ? I am not able to proceed and getting errors. I need to replicate the scenario
    in the task sequence so that i can take care of all the three points. Is this possible ?  Looking forward for the answers from the experts...thanks

    As best practice, see if you can have the installer create a log file, if it errors out it will indicate why or look in the temp directories for one.
    It might be because the installer is extracting files or trying to extract to a temp folder under a user profile which won't exist under the System account. 
    When you run the installer, check to see where it may using a temp directory.

Maybe you are looking for

  • Ask Apple for better iPhoto (Aperture) Library sharing!

    *Some Background...* My wife and I each have our own Mac and iPhone and we share a digital camera. Between the three camera devices we snap a lot of photos and we want easy access (over the network!) to each other's photos so we can both maintain a s

  • Nokia 6230i and sending caller ID

    My Mobile service does support caller ID features. I have been experiencing this problem with my mobile 6320i (with my other mobile 6320, I have got no problem) I tried to enable caller ID to be sent to other party, but it did not work, I reseted the

  • F.13 in Background mode?

    Hi all, I am trying to schedule F.13 Tcode( SAPF123) in background. It has got 2 options; 1) test run:- no issues here 2) actual run:- in forground mode it asks for a user confirmation(i.e press enter manually). Only after user "enters" it clears the

  • How to disable digital signing and saving of PDF form?

    I have a PDF form that I have created. It does not have a signature field becuase I need them to print and physically sign the form. However no matter what I do Adobe Reader offers the option to digitally sign the form (as well as save it). How do I

  • BW security profiles for BPC

    Hello, I was hoping someone can provide some more details on the BW rolls listed below and how they are used for BPC as well as their impact on user in the BPC/EPM frontend security settings/profiles.  If I am missing any it would be appreciated if y