Lingering query cannot process

Hi, I need some help tracking the reason behind the lingering of a Create Table as Select STATEMENT;
Something is hapening, most probably some locks have been aquired and never released by the server.
First of, i am runing queries against a database server with one client: myself. All the queries it runs are ordered by me.
I cannot make any sense of what is making my query sometimes run, and others not.
The query I am trying to run:
CREATE TABLE FAVFRIEND
NOLOGGING TABLESPACE TARGET
AS
SELECT USRID, FAVF
FROM (
     SELECT ID AS USRID, FAVF
     FROM PROFILE P
     MODEL
          PARTITION BY (ID)
          DIMENSION BY (1 as FINDEX)
          MEASURES (FAVF1, FAVF2, FAVF3, FAVF4, FAVF5, 0 AS FAVF)
          RULES (
               FAVF[1] = FAVF1[1],
               FAVF[2] = FAVF2[1],
               FAVF[3] = FAVF3[1],
               FAVF[4] = FAVF4[1],
               FAVF[5] = FAVF5[1]
     ) FAVFRIEND
WHERE FAVF IS NOT NULL
The query Is syntatically correct, and has finished more than once.
Before this query is run my program launches sqlplus with a script that performs
DROP TABLE FAVFRIEND PURGE;
QUIT;
After this I snapshot a set of statistics. That do not involve querying neither the PROFILE table, nor the FAVFRIEND table.
Finally I order the execution of this query, and most times, it just hangs there not doing any processing.
I can tell with certanty that all the other sql I have sent to the database has finished execution.
1) because it was processed via sqlplus, which always disconnects after processing a batch.
2) because I run the following query:
select s.username,s.sid,s.serial#,s.last_call_et/60 mins_running,q.sql_text
from v$session s join v$sqltext_with_newlines q on s.sql_address = q.address
where status='ACTIVE'
and s.username = 'SONO99'
and type <>'BACKGROUND'
and last_call_et> 0
order by sid,serial#,q.piece
Which tells me that the only query sono99 (my user) is running, is the CREATE TABLE as SELECT.
Furthermore, the exact same procedure that isn't working for this query has worked before with the Unpivot query and the Select Project and Union queries.
The only thing that changed from the previous benchmakrs to this one is that this one involves the model query.
Another piece of information, let's say my sqlplus is haning there... trying to execute the Model query that just does not run. I kill sqlplus. Instantly when i query Oracle for the lingering queries with the select from v%session and sql_text, I notice that my CREATE TABLE with model is no longer there. So: disconnecting from the database is enough for oracle to know that the client is no longer interested in a server response.
After making sure nothing from sono99 is runing against the database, i try to DROP FAVFRIEND TABLE PURGE;
The statement fails because no FAVFRIEND table was created. And finally i wonder: could it be that the PROFILE table that was only selected upon was locked?
Well, i try to drop the profile table... and it drops.
So: my conclusion is! No locks exist neither on the Profile table nor on the Database object Favfriend (which does not exist at the point that i issue the execution of this query). Possibly some temporary tablespace was aquired by the Model query that has not been made available by oracle at the End of a previous successful CRETE TABLE as select statement.
But even if this was the case, any locks should have been released because I always restart the database before going into the
snapshot
create table as select
snapshot.
I have no idea what may be making oracle not process my statement.
Something else that I have just tried:
Now I just tried bulk loading the 5 million rows of data into the Profile table, and runing the query again.
The data was of course inserted successfully, and the query is of course still hanging.
I tried however, in parallel to run a second query, this one just performing a SELECT count(*) FROM PROFILE, and it succeeded doing so.
A Select NAME FROM PROFILE WHERE ID=500000 also returns a result.
The profile table is definably not the issue here.
by the way i just exported to a txt the status of my haning oracle system, and it looks like this:
"USERNAME"     "SID"     "SERIAL#"     "MINS_RUNNING"     "SQL_TEXT"
"SONO99"     "140"     "40"     "10,9"     "CREATE TABLE FAVFRIEND
NOLOGGING TABLESPACE TARGET
AS
SELECT USR"
"SONO99"     "140"     "40"     "10,9"     "ID, FAVF
FROM (
     SELECT ID AS USRID, FAVF
     FROM PROFILE P
     MODEL"
"SONO99"     "140"     "40"     "10,9"     "
          PARTITION BY (ID)
          DIMENSION BY (1 as FINDEX)
          MEASURES (FA"
"SONO99"     "140"     "40"     "10,9"     "VF1, FAVF2, FAVF3, FAVF4, FAVF5, 0 AS FAVF)
          RULES (
               FAVF[1]"
"SONO99"     "140"     "40"     "10,9"     " = FAVF1[1],
               FAVF[2] = FAVF2[1],
               FAVF[3] = FAVF3[1],
               FA"
"SONO99"     "140"     "40"     "10,9"     "VF[4] = FAVF4[1],
               FAVF[5] = FAVF5[1]
     ) FAVFRIEND
WHERE F"
"SONO99"     "140"     "40"     "10,9"     "AVF IS NOT NULL
This is way beyond my comprehention of Oracle. Going to try to run this again with 100 k tuples instead.
Edited by: user10282047 on Oct 20, 2009 12:05 PM
Now, trying the same process, without even restarting the database once (i just killed the lingering sqlplus connection) and recreated the profile table with 100k tuples. It executed successfuly my query. I am starting to think that this problem has something to with oracle and the number of threads it tries to created to run a modal query with 5 Million partitions. But if it is so, it shouldn't work sometimes and others not.
Edited by: user10282047 on Oct 20, 2009 12:23 PM

This definably looks like an oracle bug!
Throughout the night the computer ran several tests against the database with source tables containing less than 5 million tupels and it succeeded in processing them.
The 5 million tuple query has like 1 in 100 chances of succeeding.
I thought about chaning the query implementation and eleminating the Partion By (ID),
but unfortantly the CV(ID) function can only be used on the right side of a rule.
I cannot right a rule like FAVF(cv(ID), 1) = FAVF1(CV(ID),1),
and so. While the first CV works the last doesn't.
Just finished trying this query with 3 million tuples, and It also worked.
I am gonna quit trying to find out a problem on my behalf, this clearly on Oracle's hands not mine.
There is some breaking point where the model query stops working.
Currently i think that it may be related with the Partition By clause, Oracle may not be prepared to handle that many partitions. Unfortunately I can not process the query with just one partiton (that being the whole database table, because they don't allow me to use the CV function on the left side of a rule).
So I will consider the operator tested.
Edited by: sono99 on Oct 21, 2009 8:27 AM

Similar Messages

  • Error:  Due to a lock, query cannot be executed at the moment

    Hi,
    I am getting the following error when executing my query:
    Error:  Due to a lock, query cannot be executed at the moment
    Abort System error in program SAPLRSDRC and form /BIC/ZABC_01
    The query has been running fine for the past few months.
    Can anyone explain why this error occured and what can I do to avoid this?
    Thanks in Advance!!
    Regards,
    Swapna

    Hi Swapna,
    make sure that the BW system (e.g. another user, process, ...) does not have currently access to the data e.g. like maintain data. In this case the BW sets a lock so that the current user gets exclusively access to the table.
    Check the table if there are any locks on it. Call transaction SU53 and check your table for any locks.
    Check this thread, perhaps you will find some more information there:
    https://forums.sdn.sap.com/click.jspa?searchID=3180428&messageID=1088573
    Hope this helps.
    Regards,
    Marco

  • What assembly is the class Microsoft.Office.Server.Search.Query.Pipeline.Processing.OpenSearchReaderProducer in?

    Hi All,
    I work with Result Source in SP 2013 which is configured to use OpenSearch protocol. When I create KeywordQuery and execute the query with SearchExecutor the below error is thrown and log at ULS
    Microsoft.Office.Server.Search.Query.Pipeline.Processing.OpenSearchReaderProducer : Unable to complete OpenSearch communication. System.NullReferenceException: Object reference not set to an instance of an object.     at Microsoft.Office.Server.Search.Query.Pipeline.Processing.OpenSearchReaderProducer.ReadAccountAuthCredentials(AuthenticationInformation
    authInfo, String& username, String& password)
    This code does work on certain farm setting, but for a particular setting like
    + Search Admin, Crawler, Content Processing, Analytics Processing is on 1 server
    + Query Processing, Index Partition is on 1 server
    I've tried to find the assembly which has class OpenSearchReaderProducer to decompile and see what could causing null exception but I cannot find that assembly, does anyone know where it is or could suggest a better solution for above issue?
    Appreciate all the comments
    Thank you
    Steven

    Hi Steven,
    According to your description, my understanding is that you got an error when you tried to use Result Source in SharePoint 2013.
    You can set it to anonymous search, then check whether it works.
    Here is a similar post for you to take a look at:
    http://social.technet.microsoft.com/Forums/en-US/26fe7715-e4b3-404a-bcb7-6f6f3ff1ea62/opensearch-search-has-encountered-a-problem-that-prevents-results-from-being-returned?forum=sharepointsearch
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • WinRM cannot process the request. The following error occured while using Kerberos authentication: The network path was not found.

    I have two forests with a transitive on-way trust between them: PROD -> TEST (test trusts PROD). I had previously had kerberos authentication working with winrm from PROD to machines in TEST. I have verified the trust is healthy, I also verified users
    in TEST can use WINRM with kerberos just fine. Users from PROD cannot connect via kerberos to machines in TEST with winrm.
    I have verified the service has registered the appropriate SPNs. I ran dcdiag against all my PROD and TEST domain controllers and didn't find anything that would prevent kerberos from happening. I even tried disabling the firewall entirely on my TEST dcs
    but that didn't gain me anything.
    I've enabled kerberos logging but only see the expected errors such as it couldn't find a PROD SPN for the machine, which it shouldn't from what I understand, it should go to the TEST domain and find the SPN from there.
    I'm really out of next steps before I call PSS and hope someone here has run into this and could provide me some next steps.
    PowerShell Error:
    Connecting to remote server failed with the following error message : WinRM cannot process the request. The following error occured while using Kerberos authentication: The network path was not found.  
     Possible causes are:
      -The user name or password specified are invalid.
      -Kerberos is used when no authentication method and no user name are specified.
      -Kerberos accepts domain user names, but not local user names.
      -The Service Principal Name (SPN) for the remote computer name and port does not exist.
      -The client and remote computers are in different domains and there is no trust between the two domains.
     After checking for the above issues, try the following:
      -Check the Event Viewer for events related to authentication.
      -Change the authentication method; add the destination computer to the WinRM TrustedHosts configuration setting or use HTTPS transport.
     Note that computers in the TrustedHosts list might not be authenticated.
       -For more information about WinRM configuration, run the following command: winrm help config. For more information, see the about_Remote_Troubleshooting Help topic.
        + CategoryInfo          : OpenError: (:) [], PSRemotingTransportException
        + FullyQualifiedErrorId : PSSessionStateBroken
    winrs Error:
    Winrs error:
    WinRM cannot process the request. The following error occured while using Kerberos authentication: The network path was not found.  
     Possible causes are:
      -The user name or password specified are invalid.
      -Kerberos is used when no authentication method and no user name are specified.
      -Kerberos accepts domain user names, but not local user names.
      -The Service Principal Name (SPN) for the remote computer name and port does not exist.
      -The client and remote computers are in different domains and there is no trust between the two domains.
     After checking for the above issues, try the following:
      -Check the Event Viewer for events related to authentication.
      -Change the authentication method; add the destination computer to the WinRM TrustedHosts configuration setting or use HTTPS transport.
     Note that computers in the TrustedHosts list might not be authenticated.
       -For more information about WinRM configuration, run the following command: winrm help config.

    Hi Adam,
    I'm a little unclear about which SPNs you were looking for, in which case could you confirm you were checking that on the computer object belonging to the actual destination host it has the following SPNs registered?
    WSMAN/<NetBIOS name>
    WSMAN/<FQDN>
    If you were actually trying to use WinRM to connect to the remote forest's domain controllers, then what you said makes sense, but I was caught between assuming this was the case or you meant another member server in that remote forest.
    Also, from the client trying to connect to this remote server, are you able to telnet to port 5985? (If you've used something other than the default, try that port)
    If you can't, then you've got something else like a firewall (be that the Windows firewall on the destination or a hardware firewall somewhere in between) blocking you at the port level, or the listener on the remote box just isn't working as expected. I
    just replied to your other winrm post with steps for checking the latter, so I won't repeat myself here.
    If you can telnet to it and the SPNs exist, then you might be up against something called selective authentication which has to do with how the trust was defined. You can have a read of
    this to learn a bit more about selective trusts and whether or not it's affecting you.
    Cheers,
    Lain

  • Mount-DiskImage in a remote session exeception- Cannot process Cmdlet Definition XML for the following file:

    Hi everybody,
    I have a strange problem with Mount-DiskImage command.
    Environment: Windows server 2012 without any updates.
    All scripts signed as it was in Hanselman's blogpost
    http://www.hanselman.com/blog/SigningPowerShellScripts.aspx
    First script(script1) executing on one machine (server1), then copy another script(script2) to the remote server(server2) and run script2 in a PS-Session. Both are signed. Certificates are located on both servers.
    In a script I tried to
     Import-Module Storage
     $mountVolume = Mount-DiskImage -ImagePath $ImageSourcePath -PassThru
    where ImageSourcePath is a networkpath to iso image.
    But getting exception.
    Exception Text:
    Cannot process Cmdlet Definition XML for the following file:
    C:\Windows\system32\WindowsPowerShell\v1.0\Modules\Storage\Disk.cdxml. At line:138 char:17
    +                 $__cmdletization_objectModelWrapper = Microsoft.PowerShell.Utili ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Executable script code found in signature block.
    At line:139 char:17
    +                 $__cmdletization_objectModelWrapper.Initialize($PSCmdlet, $scrip ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Executable script code found in signature block.
    At line:143 char:21
    When I look into the C:\Windows\system32\WindowsPowerShell\v1.0\Modules\Storage\Disk.cdxml I didn't get what's happend, because in line 138- was xml comment.
    Any ideas?

    Hi,
    I suggest referring to the following links:
    http://blogs.msdn.com/b/san/archive/2012/09/21/iso-mounting-scenarios.aspx
    http://blogs.technet.com/b/heyscriptingguy/archive/2012/10/15/oct-15-blog.aspx
    Best Regards,
    Vincent Wu
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Query cannot be parsed within the Builder ORA-00900: invalid SQL statement

    Why am I getting the error message "Query cannot be parsed within the Builder. If you believe your query is syntactically correct, check the ''generic columns'' checkbox below the region source to proceed without parsing. ORA-00900: invalid SQL statement"
    If I run the query in sqlplus it comes back with "no rows selected" which is what I want.
    The function is valid and the user has privileges to run it.
    Is there something I can do about it?
    If I only have any field instead of the function the error goes away.
    Can someone explain what is happening? I'm using 2.0.
    select
    F_TOTAL_AMOUNT_PAID('fees',a.acct_fee_id,0) "Fee Paid"
    from fee_component a, fee b, license c
    where a.acctfee_id = b.acctfee_id
    and b.license_id = c.license_id
    and b.fee_status = 'U'
    and c.client_id = :P301_CLIENT_ID
    Thanks I really appreciate any help I can get.

    Does your parsing schema have direct granted privileges to execute the function or privileges via a role? If it is through a role, you need to directly grant execute on the function to your parsing schema.
    Mike

  • Query Cannot be Parsed Within Builder

    Hi,
    I'm trying to parse different Oracle database connections so users can do a search by database. I am setting this up in the HTML DB and have set up the appropriate Item which is P"(_HUB and within this I have set up the List Of Values.
    However, I get the following error:
    Query cannot be parsed within the Builder. If you believe your query is syntactically correct, check the ''generic columns'' checkbox below the region source to proceed without parsing. The query can not be parsed, the cursor is not yet open or a function returning a SQL query returned without a value.
    declare
    v_sql varchar2(4000);
    pshub varchar(15) := 'P29_HUB';
    begin
    v_sql := 'SELECT CLIENTACC.CLIENTID, CLIENTACC.ACCOUNT, CLIENTACC.ACCOUNTDESC, CLIENTACC.BACKOFFACCOUNT from CLIENTACC@'||pshub||'';
    end;
    Can someone please advise.
    Cheers.

    As I see in the query(v_sql) , you missed the quotes ;
    Try this now :
    declare
    v_sql varchar2(4000);
    pshub varchar(15) := 'P29_HUB';
    begin
    v_sql := 'SELECT CLIENTACC.CLIENTID, CLIENTACC.ACCOUNT, CLIENTACC.ACCOUNTDESC, CLIENTACC.BACKOFFACCOUNT from CLIENTACC@''||pshub||'' ';
    end;

  • The Financial Accounting program cannot process the document.

    THIS PROBLEM IS COMING AFTER THE BILING AND THE ACCOUNTING DATA IS NOT CREATED FOR THIS PROBLEM
    CAN ANY ONE SOLVE THIS PROBLEM
    GURUS PLEASE HELP
    No account is specified in item 0000001005
    Message no. F5670
    Diagnosis
    No account was specified for account type "S" in item "0000001005" of the FI/CO document.
    System Response
    The Financial Accounting program cannot process the document.
    Procedure
    A system error has probably occurred in the application you called up. Check the data transferred to item "0000001005" of the FI/CO document.
    WITH REGARDS
    SUBRAT

    Hi,
    I think this is due to problem in acount  determination.
    Please check VKOA
    Best Regards
    Ashish Jain

  • Cannot process INBOX email

    Hi All.
    We have setup the IC WebClient Agent Inbox through the WS14000164 workflow, and we can see the email in the IC Inbox.
    However, when we click in the link in the column 'Main Category', the following error is shown: "Cannot process INBOX email; profile uses email with Agent Inbox the email provider"
    Somebody knows the reason of the error?
    Thanks in advance!

    Hello Guys,
    I am a solution manager consultant configuring ERMS for a customer.
    I am facing the same error when i click in the link in the column 'Main Category'
    "Cannot process INBOX e-mail; use e-mail profile with Agent Inbox as e-mail provider" .
    Could you please help me fix this as there is no resolution provided on this.
    Awaiting your response.
    Cheers,
    Ritesh Mam

  • Cannot process expression LAF.StylesheetUrl

    I am getting below error when accessing Standard PPM contents using Webdynpro for ABAP iview from Portal. System Alias is defined properly.
    Portal Version: NW 7.31 SP09
    #2.#2014 04 14 09:54:29:815#0-600#Error#com.sap.portal.prt.runtime##EP-PIN- PRT#tc~epbc~prtc~api#C0000A0B024E19FD000000030176009A#595464950000000004#sap.com/com.sap.portal.runtime.system.hooks#com.sap.portal.prt.runtime#BPate
    l#565##DC0A0FB0C3E711E3A07E0000237E12F6#10140ad2c3ed11e39b520000237e12f6#10140ad2c3ed11e39b520000237e12f6#0#Thread[HTTP Worker [@1635624791],5,Dedicated_Appl ication_Thread]#Plain## 09:54_14/04/14_0042_595464950
    [EXCEPTION]
    com.sapportals.portal.appintegrator.ApplicationIntegratorException: Unable to parse template 'sap-cssurl=<LAF.StylesheetUrl[URL_ENCODE]>&<LessThemeParameter[IF_false PROCESS_RECURSIVE]>&sap-cssversion=<LAF.Version[URL_ENCODE]>&<TrayInformation[IF_false PROCESS_RECURSIVE]>'; the problem occured at position 11. Cannot process expression <LAF.StylesheetUrl>
    Caused by: com.sapportals.portal.appintegrator.template_processor.TemplateParserException: Unable to parse template 'sap-cssurl=<LAF.StylesheetUrl[URL_ENCODE]>&<LessThemeParameter[IF_false PROCESS_RECURSIVE]>&sap-cssversion=<LAF.Version[URL_ENCODE]>&<TrayInformation[IF_false PROCESS_RECURSIVE]>'; the problem occured at position 11. Cannot process expression <LAF.StylesheetUrl>
    Caused by: java.lang.NullPointerException: while trying to invoke the method com.sapportals.portal.prt.service.laf.IThemePartInfo.getThemeType() of a null object returned from java.util.Map.get(java.lang.Object)
    Bhavin

    Hi Uday / Ricardo,
    There is no problem with the System Objects / JCo s / SSO / Roles .i have tested these and it shows connection is OK.
    moreover in the log it has not mentioned any system object or system name.
    Shankha : The last option is SAP but they are taking time to respond.
    what do you suggest regarding the below statements
    Unable to parse template
    Cannot process expression <LAF.StylesheetUrl>
    Thanks,
    Sridar

  • Adobe error: firefox cannot process content of type text/html

    I have designed a PDF form designed in Livecycle designer. The form has a submit button which invokes a servlet. The servlet receives the request and send a response in "text/html UTF-8". If have no browser or IE open when submitting the form, I receive a response that the form has been either successfully submitted or not. However, if I have Firefox open when Submitting, I get an Adobe Reader dialog box that says "An error occurred during the submit process. Cannot process content of type text/html utf-8".
    When I look in the database, the form is successfully submitted. How do I make the adobe pop up to disappear and print the confirmation.

    where you able to fix the problem?
    Viral

  • Query cannot be parsed....

    I am completing the Day application express and I am having a basic problem in Modifying the Department report (p38 and 39 of the PDF documentation).
    We're supposed to change the sql code by the following:
    SELECT d.DEPARTMENT_ID,
    d.DEPARTMENT_NAME,
    (select count(*)from oehr_employees where department_id = d.department_id)
    "Number of Employees",
    substr(e.first_name,1,1)||'.'||e.last_name "Manager Name",
    c.COUNTRY_NAME "Location"
    FROM OEHR_DEPARTMENTS d,
    OEHR_EMPLOYEES e,
    OEHR_LOCATIONS l,
    OEHR_COUNTRIES c
    WHERE d.LOCATION_ID=l.LOCATION_ID
    AND l.COUNTRY_ID=c.COUNTRY_ID
    AND d.DEPARTMENT_ID=e.department_id
    AND d.manager_id=e.employee_id
    AND instr(upper(d.department_name),upper(nvl(:P2_REPORT_
    SEARCH,d.department_name)))>0
    When I apply changes I have the following message:
    Query cannot be parsed, please check the syntax of your query. (ORA-00909: invalid number of arguments)
    Any idea ?
    Thanks in advance for your help.

    Hi,
    It looks like there is a new line in wrong place:
    SELECT d.DEPARTMENT_ID,
    d.DEPARTMENT_NAME,
    (select count(*)from oehr_employees where department_id = d.department_id)
    "Number of Employees",
    substr(e.first_name,1,1)||'.'||e.last_name "Manager Name",
    c.COUNTRY_NAME "Location"
    FROM OEHR_DEPARTMENTS d,
    OEHR_EMPLOYEES e,
    OEHR_LOCATIONS l,
    OEHR_COUNTRIES c
    WHERE d.LOCATION_ID=l.LOCATION_ID
    AND l.COUNTRY_ID=c.COUNTRY_ID
    AND d.DEPARTMENT_ID=e.department_id
    AND d.manager_id=e.employee_id
    AND instr(upper(d.department_name),upper(nvl(:P2_REPORT_  --- <-- !!!
    SEARCH,d.department_name)))>0it should be:
    SELECT d.DEPARTMENT_ID,
    d.DEPARTMENT_NAME,
    (select count(*)from oehr_employees where department_id = d.department_id)
    "Number of Employees",
    substr(e.first_name,1,1)||'.'||e.last_name "Manager Name",
    c.COUNTRY_NAME "Location"
    FROM OEHR_DEPARTMENTS d,
    OEHR_EMPLOYEES e,
    OEHR_LOCATIONS l,
    OEHR_COUNTRIES c
    WHERE d.LOCATION_ID=l.LOCATION_ID
    AND l.COUNTRY_ID=c.COUNTRY_ID
    AND d.DEPARTMENT_ID=e.department_id
    AND d.manager_id=e.employee_id
    AND instr(upper(d.department_name),upper(nvl(:P2_REPORT_SEARCH,d.department_name)))>0Lev
    Edited by: le on Jul 2, 2010 10:14 AM

  • Users cannot process dimensions

    Hi everybody,
    We are working on SAP BPC NW version 7.0, SP05 and we cannot process dimensions, unless we use a specific user (the only one that appears at UJA_SVR_DEFAULT table). If we try to process a dimension with another user, the following message appears: Unexpected error in application server
    What do we have to change in order a user created at BPC Admin can process dimensions?
    Any idea out there?
    Thanks a lot in advance for your support,
    Albert Mas

    Hi Nilanjan,
    We have created users with the following roles:
    TEAMS -
    > ADMIN
    TASK PROFILES -
    > FULL_TSK
    where FULL_TSK has enabled AccessContentLib,WebAdmin,AdminJournal,Application,Appset,Business Rules, VreateJournal,DefineSecurity,Dimension, Execute, GeneralAdmin,LiveReport,Lockings,ManageAudit,ManageContentLib,ManageDistributor,CreateWebpage,ManageTemplate, Misc, PostJournals,PrimaryAdmin,PublishOffline,ReviewJournals,SetWorkStatus,SubmitData, TeamLeadAdmin,UnpostJournals,eAnalyze,Update to company folder, ManageLiveReport,ManageComments,AddComment,AuditReport,CommentReport,WorkStatusReport,SecurityReport
    MEMBER ACCESS PROFILES --> AdminMbrAccPrf, FULL_MBR
    As there is no protected dimension for the application, the table at the second step when you modify each Member Access Profile, is empty.
    Any suggestion?
    Thanks in advance,
    Albert Mas

  • Eternal "Query being processed"

    Hi all!
    I try to monitorize the Communication Channel status in the RTW then i put CC name -> Use filter -> select the CC,  popout a typical message "Query being processed" and nothing happens..
    Please help!

    Hi,
    If you need to see the log information you can check the following PI logs:
    1) defaultTrace.trc
    2) applications.log
    3) xi.log
    Also, its a worth reading - http://help.sap.com/saphelp_nw70/helpdata/en/44/2a1a8620323f0ee10000000a114a6b/frameset.htm
    Hope this helps.
    Regards,
    Neetesh

  • Adapter PLAINHTTP cannot process message packages

    Hi,
    I'm receiving 10 lines in one message from ERP and then PI splits them to individual messages. When PI tries to send messages using plain HTTP, I got error saying "Adapter PLAINHTTP cannot process message packages".
    Message packaging is not on and SXI_MONITOR shows messages in separate payloads.
    br,
    Tapio

    This is my assumption.
    Multiple messages that result from mapping are sent as one bulk message (grouped together) in the Integration engine. The  messages are really split into  individual mesges only in the adapter engine. Since HTTP adapter live in Integration Engine and you use HTTP as receiver, you get this error.
    Refer the conclusion portion of the link for further explanation.
    /people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible

Maybe you are looking for

  • XML File Tags Validation Using Oracle.

    Dear Forum Members, I have a doubt regarding XML File Tags Validation. First I will explain My Requirement. 1. I have to generate an XML File in a Predefined Format. 2. User will add some data in the elements, or he may copy the same elements and cha

  • Java.rmi.MarshalException when getting a Connection from DataSource

    Hi, folks! Whenever I try to get a Connection from a DataSource, I´ve got the following Exception: "java.rmi.MarshalException: CORBA MARSHAL 0 Maybe; nested exception is:      org.omg.CORBA.MARSHAL: vmcid: 0x0 minor code: 0 completed: Maybe CORBA MAR

  • Question about FlyNet Web service generator

    I downloaded the 30 day free trial of Xcelsius Engage Server so I could check out the FlyNet product.  Can you not just take the compiled asmx and supporting files and drop them to a .Net Web server?  When I do this my Web service returns this error

  • Reformat for Mac OS X 10.6.7 reinstall?

    My 27" iMac (2.66 GHz Quad Core Intel i5) has been acting increasingly flaky over the course of the past two weeks. Problems have included the hard drive refusing to mount & a bout of frozen/quivering menus. Previously rare application crashes have b

  • Help with Primary/Subreport and Shared Variables

    I've been trying in vain to get this to work. Main Rpt: In GH1 I've got shipping address information. In GH2 I've got a linked subreport where I have shipping addendum information. Goal...I want to get two fields from subreport to show up in shiping