Cannot drop the table because it does not exist in the system catalog. Transaction context in use by another session

Hi Every one,
An error has occurred during report processing. (rsProcessingAborted)
Get Online Help
Query execution failed for data set 'NonFinTran'. (rsErrorExecutingCommand)
Get Online Help
Cannot drop the table '#NonFinTran', because it does not exist in the system catalog. Cannot drop the table '#MultipleNonFinTran',
because it does not exist in the system catalog. Transaction context in use by another session.
NOTE: NonFinTran &
MultipleNonFinTran are
the Temp table in my storedPoc.
Please any help me to solve this issue. 
Thanks & Regards,
Anil Kumar
Anil Kumar

Hi Harsh,
 Below is my Stored Proc
SELECT @ServerName=datasource from master.dbo.sysservers WHERE catalog='Voyager'    
 SELECT @ServerName3=datasource from master.dbo.sysservers WHERE catalog='AuditLog'    
 SELECT @ServerName2=datasource from master.dbo.sysservers WHERE catalog='Portal'    
 IF @ServerName IS NOT NULL SET @ServerName='[' + @ServerName + '].' ELSE SET @ServerName=''    
 IF @ServerName3 IS NOT NULL SET @ServerName3='[' + @ServerName3 + '].' ELSE SET @ServerName3=''    
 IF @ServerName2 IS NOT NULL SET @ServerName2='[' + @ServerName2 + '].' ELSE SET @ServerName2=''    
 IF Exists(Select * From tempdb.dbo.SysObjects Where Name Like '#NonFinTran%')     
  DROP TABLE #NonFinTran    
 IF Exists(Select * From tempdb.dbo.SysObjects Where Name Like '#MultipleNonFinTran%')     
  DROP TABLE #MultipleNonFinTran    
 CREATE TABLE #NonFinTran (FirstName VARCHAR(40), TaxId VARCHAR(40), TrxID VARCHAR(40), Status VARCHAR(255), Field1 VARCHAR(255), Field2 VARCHAR(255),    
   Field3 VARCHAR(255), Field4 VARCHAR(255), Field5 VARCHAR(255), Field6 VARCHAR(255), DateTime DATETIME,     
   BranchID CHAR(3), BankID CHAR(1), FromAccountID VARCHAR(255), FromAccountType VARCHAR(255))    
 CREATE TABLE #MultipleNonFinTran (FirstName VARCHAR(40), TaxId VARCHAR(40), TrxID VARCHAR(40), Status VARCHAR(255), Field1 VARCHAR(255), Field2 VARCHAR(255),    
   Field3 VARCHAR(255), Field4 VARCHAR(255), Field5 VARCHAR(255), Field6 VARCHAR(255), DateTime DATETIME,     
   BranchID CHAR(3), BankID CHAR(1), FromAccountID VARCHAR(255), FromAccountType VARCHAR(255))     
INSERT #NonFinTran    
 EXEC('SELECT FirstName, TaxID,     
  TrxID, Status, TrxField1, TrxField2, TrxField3, TrxField4, TrxField5, TrxField6, DateTime, '''', '''', '''', ''''    
 FROM ' + @ServerName3 + 'AuditLog.dbo.CCAuditLogEntryView AS Audit, ' + @ServerName + 'Voyager.dbo.CCUser AS CCUser    
 WHERE CCUser.UserID = Audit.UserID     
  AND Audit.Succeeded = 1     
  AND Audit.TrxID IN (''ChangeBillPayDefaultAccountEdit'',''ChangeExpiryUserPassword'',''ChangePasswordEdit'',    
   ''ChangeUserPassword'',''ManageAddressMaint'',''ManageContactMaint'',''ManageSecretQuestionAnswerEdit'',    
   ''ManageTransLimitMaint'',''OtherBankAccountMaintAdd'',''OtherBankAccountMaintDelete'',''OtherBankAccountMaintEdit'',    
   ''WithinAmBankAccountMaintAdd'',''WithinAmBankAccountMaintDelete'',''WithinAmBankAccountMaintEdit'',    
   ''SetAccountMaskPreferenceAudit'',''ChangeLoginIdAudit'')     
  AND DATEDIFF(DAY, CONVERT(DATETIME, CONVERT(VARCHAR(10), ''' + @StartDate + '''), 103), Audit.DateTime) >= 0     
  AND DATEDIFF(DAY, CONVERT(DATETIME, CONVERT(VARCHAR(10), ''' + @EndDate + '''), 103), Audit.DateTime) <= 0 ')    
 INSERT #MultipleNonFinTran    
 EXEC('SELECT DISTINCT FirstName, TaxID,     
  TrxID, Status, TrxField1, TrxField2, TrxField3, TrxField4, TrxField5, TrxField6, Audit.DateTime as AuditDateTime,    
(SELECT DISTINCT SUBSTRING(A.BranchCode,3,3)  FROM ' + @ServerName + 'AuditLog.dbo.CCAuditLogEntryView X INNER JOIN ' + @ServerName + 'Voyager.dbo.CCuser U
ON X.UserId = U.UserId INNER JOIN ' + @ServerName + 'Voyager.dbo.AMHZ_CustomerProfile P ON P.EnrolId = U.TAXID 
INNER JOIN ' + @ServerName + 'Voyager.dbo.AMHZ_AccountListing A ON A.CIFNO = P.CIFNO
WHERE X.UserId = Audit.UserId AND A.AccountNo = SUBSTRING(Audit.TrxField1,11,16) AND P.CIFNO = A.CIFNO
AND (SUBSTRING(A.BranchCode,3,3) <> NULL OR SUBSTRING(A.BranchCode,3,3) <> '''')
AND CHARINDEX(''AccountID='', Audit.TrxField1, 1) > 0),
  SUBSTRING(TrxField1,14,1), CASE WHEN CHARINDEX(''AccountID='', TrxField1, 1) > 0 THEN     
  SUBSTRING(TrxField1,11,16) ELSE '''' END, CASE WHEN CHARINDEX(''AccountType='', TrxField2, 1) > 0 THEN SUBSTRING(TrxField2,13,3) ELSE '''' END    
 FROM ' + @ServerName3 + 'AuditLog.dbo.CCAuditLogEntryView AS Audit, ' + @ServerName + 'Voyager.dbo.CCUser AS CCUser    
 WHERE CCUser.UserID = Audit.UserID     
  AND Audit.Succeeded = 1     
  AND Audit.TrxID IN (''SetAccountAttributesAudit'',''SetAccountFriendlyNameAudit'',    
  ''AccountProfileMaintULDelete'',''AccountProfileMaintLHAAdd'',''AccountProfileMaintLSCAdd'')
  AND DATEDIFF(DAY, CONVERT(DATETIME, CONVERT(VARCHAR(10), ''' + @StartDate + '''), 103), Audit.DateTime) >= 0     
  AND DATEDIFF(DAY, CONVERT(DATETIME, CONVERT(VARCHAR(10), ''' + @EndDate + '''), 103), Audit.DateTime) <= 0 ')  
  SET @stmt = '    
 SELECT * FROM    
 SELECT BranchName,
 CASE WHEN SUBSTRING(FromAccountID,1,6) IN (''519901'',''559409'')  THEN ''DC''  
ELSE       
 CASE FromAccountType WHEN ''01'' THEN ''SA '' WHEN ''02'' THEN ''CA '' WHEN ''03'' THEN ''FD ''     
    WHEN ''SA'' THEN ''SA '' WHEN ''CA'' THEN ''CA '' WHEN ''FD'' THEN ''FD '' ELSE FromAccountType + '' ''    
 END 
 END +     
case when Len(FromAccountID) =16 Then  
   CASE FromAccountType WHEN ''VC'' THEN   
   SUBSTRING(FromAccountID,1,6)+''******''+SUBSTRING(FromAccountID,13,4)      
WHEN ''MC'' THEN SUBSTRING(FromAccountID,1,6)+''******''+SUBSTRING(FromAccountID,13,4)  END  
     when Len(FromAccountID) =15 Then 
CASE FromAccountType WHEN ''VC'' THEN   
   SUBSTRING(FromAccountID,1,6)+''******''+SUBSTRING(FromAccountID,13,3)      
WHEN ''MC'' THEN SUBSTRING(FromAccountID,1,6)+''******''+SUBSTRING(FromAccountID,13,3)  END  
     ELSE FromAccountID   
ENd  
 AS FromAcctNo,    
 CASE TrxId  
 WHEN ''AccountProfileMaintLHAAdd'' THEN ''Link Account/Card''    
 WHEN ''AccountProfileMaintLSCAdd'' THEN ''Link Account/Card''    
 WHEN ''APMFamilyFirstAdd'' THEN ''Link Family First Account''    
 WHEN ''AccountProfileMaintULDelete'' THEN ''Unlink Account/Card''    
 WHEN ''BalInqFD'' THEN CASE  WHEN Field3 IN (''APMLink=SUCCESS'') THEN ''APMLink Success'' ELSE ''Fixed Deposit Balance Inquiry'' END  
 WHEN ''BalInqCASA'' THEN CASE  WHEN Field3 IN (''APMLink=SUCCESS'') THEN ''APMLink Success'' ELSE
     CASE WHEN FromAccountType IN (''SA'',''01'') THEN ''Savings Account Balance Inquiry'' 
    ELSE ''Current Account Balance Inquiry'' 
   END 
  END    
 WHEN ''StopCheck'' THEN ''Stop Cheque Request''    
 WHEN ''CheckReorder'' THEN ''Order Your Cheque''    
 WHEN ''CheckInquiry'' THEN ''Cheque Inquiry''    
 WHEN ''TransHistFD'' THEN ''Fixed Deposit Transaction History''    
 WHEN ''TransHistCASA'' THEN    
  CASE WHEN FromAccountType IN (''SA'',''01'') THEN ''Savings Account Transaction History'' ELSE ''Current Account Transaction History'' END    
 WHEN ''StmtInqCC'' THEN    
  CASE WHEN FromAccountType IN (''DR'',''03'') THEN ''Debit Card Statement Inquiry'' ELSE ''Credit Card Statement Inquiry'' END    
 WHEN ''StmtInqDA'' THEN    
  CASE WHEN FromAccountType IN (''SA'',''01'') THEN ''Savings Account Statement Inquiry'' ELSE ''Current Account Statement Inquiry'' END    
 WHEN ''StmtReq'' THEN ''Printed Statement Request''    
 WHEN ''StmtInqIAMSTAR'' THEN ''E-AMSTAR Statement Inquiry''    
 WHEN ''Repayment/Transfer Inquiry'' THEN ''Repayment/Transfer Inquiry''    
 WHEN ''Account Inquiry'' THEN ''Account Inquiry''    
 WHEN ''Payment Inquiry'' THEN ''Payment Inquiry''    
 END AS TransType,    
 FirstName AS CustomerName,    
 TaxId, CONVERT(VARCHAR, DateTime, 103) AS Date, CONVERT(VARCHAR, DateTime, 108) AS Time    
 FROM #NonFinTran, ' + @ServerName3 + 'Portal.dbo.TB_Branch AS TB_Branch    
 WHERE     
 BranchId = TB_Branch.BranchCode     
 AND (TB_Branch.InstCode IN (''00001'', ''00003'',''001'',''002''))    
 AND (FromAccountType IN (''SA'', ''CA'', ''FD'', ''01'', ''02'', ''03'')))'    
EXEC (@stmt)
IF Exists(Select * From tempdb.dbo.SysObjects Where Name Like '#NonFinTran%')     
 DROP TABLE #NonFinTran    
 IF Exists(Select * From tempdb.dbo.SysObjects Where Name Like '#MultipleNonFinTran%')     
  DROP TABLE #MultipleNonFinTran    
Anil Kumar

Similar Messages

  • Table /xyz/abc does not exist in the database

    Hi experienced developers,
    I created two transparent tables in customer name space in development system, transport to quality together with program using the tables, everything fine, no errors, no warnings.
    Then transported to production. No errors, no warnings. Detailed protocol shows tables have been activated, no errors or warnings.
    First try to use the program gives a dump.
    line 1191:
    ""/xyz/abc" is not defined in the ABAP Dictionary as a table, p"
    "rojection view, or database view."
    Double-click on the table in program code gives a popup information message
    Table/xyz/abc does not exist in the
    database
    After acknowleding the popup, the usual dictionary entry is shown, table is active. Utilities -> database object -> Display leads to an empty screen
    Fields of /xyz/abc  
    Fld name Position Data Type Length Decimals Not null Default
      Indexes for /xyz/abcI
    Utilities -> runtime object -> Display shows  the table name followed by message
    There is no active runtime object for ...
    prededed by big icon exclamation mark.
    We created a new transport with exactly the same result.
    Basis people have no idea.
    The only thing special (but OK I think) is that the tables have key fields only.
    Database is Oracle 11.2.0.2.0, SAP ECC 6.0
    SAP_ABA     701     0008     SAPKA70108     Cross-Application Component
    SAP_BASIS     701     0008     SAPKB70108     SAP Basis Component
    PI_BASIS     701     0008     SAPK-70108INPIBASIS     Basis Plug-In
    ST-PI     2008_1_700     0005     SAPKITLRD5     SAP Solution Tools Plug-In
    SAP_BS_FND     701     0009     SAPK-70109INSAPBSFND     SAP Business Suite Foundation
    SAP_BW     701     0008     SAPKW70108     SAP Business Warehouse
    SAP_AP     700     0022     SAPKNA7022     SAP Application Platform
    WEBCUIF     700     0009     SAPK-70009INWEBCUIF     SAP WEBCUIF 700
    Yes I know, this is a DDIC forum question but I hope for more (experienced) readers here.
    Thank you all for any hint leading to a solution.
    Best regards
    Clemens Li

    Hi,
    thank you for the comments although it does not help.
    Here is the excerpt from productive system  import protocol (original table names replaced as customer requirement)
    *** Activate objects at level 1
    Too low cost (2.100) for parallel processing. Minimum: 6.000
    * Synchronous execution, no parallel processing *
    Activate table /xyz/abcd1
    Table /xyz/abcd1 was activated successfully
    Activate table /xyz/abcd2
    Table /xyz/abcd2 was activated successfully
    Synchronous processing: 4 sec., 2 objects, 2.100 costs
          Object Activation
    End phase  001 ***********************************************************
    Start phase 002 **********************************************************
          Statistics on Activated and Deleted Objects
    Number of objects to be activated............:  2
    Objects not activated........................:  0
    Activated objects with errors in dependencies:  0
    Objects activated with warning...............:  0
    Successfully activated objects...............:  2
    Number of objects to be deleted..............:  0
    Objects not successfully deleted.............:  0
    Successfully deleted objects.................:  0
    Tables/views with DROP/CREATE................:  0
    No. of them marked for DROP/CREATE: 0
    Not marked for DROP/CREATE: 0
    Number of nametabs to be deleted.............:  0
    Successfully deleted nametabs................:  0
    Nametabs that were not successfully deleted..:  0
          Statistics on Activated and Deleted Objects
    End phase  002 ***********************************************************
    =========================================================================
    Mass Activation
    =========================================================================
    Process..................: ENNIPROD_10
    Return code..............: 0
    Phase 001..................: 00:00:04 (Object Activation)
    Phase 002..................: < 1 sec. (Statistics on Activated and ...)
    Program runtime..........: 00:00:05
    Date, time...............: 08.03.2012, 16:30:43
    Program end==============================================================
    ABAP Dictionary: Activation
    End date and time : 20120308163043
    Ended with return code:  ===> 0 <===
    Actually, I don' understand it.
    Regards,
    Clemens

  • ORA-00942: the table or view does not exist

    Hello!!!!
    I have tree simple mappings each one with only one dimention and sometimes external or normal tables. One of them is ok but I can´t deploy the others.
    In Controle Center I have this messege: the table or view does not exist.
    I genereted both queries and run in SQL navigator with the same message.
    I realized that I can set the schema properties for external tables but I couldn´t do the same for Dimension (or I don´t know where I can do this).
    I believe that I have to set this propertie for dimension to have my mapping running ok, but I realized that the only one mapping that is ok does not have this propertie set.
    Where is the problem?!!?!?!?
    I validated these mapping and they have warnnings about column length, no errors.
    In the previous OWB version I used to set this propertie, but in 10.2 I don´t know if is realy necessary.

    Try to open the package body with a tool like TOAD and try to compile it. When you use TOAD the process stops where the error is. Then you know which table or view doesn't exist for the OWB. If the table or view does exist then it is almost certainly a missing privilege that prevents you from succesfully deploying your mapping. If the table or view does not exist then you've got to deploy the underlying (bound) table.
    Regards,
    Jörg

  • The e-mail account does not exist at the organization

    Hi, I have a user account that people receive the following message from:
    The e-mail account does not exist at the organization this message was sent to. Check the e-mail address, or contact the recipient directly to find out the correct address.
    <mailserverishere #5.1.1>"
    I'ved looked and this particular case could be a quirky one.
    The details are:
    User account A is the account that Exchange thinks doesn't exist.
    User account B is her boss.
    A copy of user B's email is sent to A. (done through Delivery Options)
    Senders sometime receive an email back saying user A's address doesn't exist.
    (which really confuses them because they sent the email to B)
    This is the only time the bounce message appears.
    I've removed the forward and added it again. Still the problem.
    Any clues?

    You need to verify old delegates in UserB's mailbox by going to Tools -> Options -> Delegates. Remove old UserA and re-add it.
    This is because of option “Delegates receives copy of meeting-related mails sent to me” is ticked with old UserA id in Delegates.
    If you can't see any delegates then you have another option to delete delegates rule with MFCMapi.
    - Open UserB's Mailbox with MFCMapi where UserB's outlook profile configured in online mode (not Cache mode)
    - Double click the Mailbox of userB to open.
    - Expand Root Container -> Top of the information store -> Inbox folder
    - Right-click the "Inbox" folder, and then click "Display Rules Table".
    - You can see all rules configured in mailbox. 
    - Delete the Delegate Rule with "PR_RULE_PROVIDER" column property shows "Schedule+EMS Interface". (this is the same option which you can set with GUI Delegation "Delegates receives copy of meeting-related mails sent to me" but stale copy is still in mailbox.)
    THANK YOU! Amit Tank

  • REP-52005: The specified key userlogin does not exist in the key map file.

    Hi,
    I am using oracle 11g report server. I am getting the error of REP-52005: The specified key userlogin does not exist in the key map file.
    I updated the user_string in cgicmd.dat file. My cgicmd.dat file content is below
    ; OracleAS Reports Services                       ;
    ; CGICMD.DAT                                      ;
    ; Example CGICMD.DAT Mapping file                 ;
    ; Syntax: 
    ;      KEY : VALUE
    ; Where:
    ; KEY - the first argument of the rwservlet URL request (case sensitive).
    ; VALUE - command line parameters and/or special parameters.
    ; Keys can be referenced in the following ways:
    ;    1. Parameter on command line to the reports servlet
    ;          e.g. http://machine/servlet/rwservlet?KEY
    ;    2. Parameter on command line to a reports jsp
    ;          e.g. http://machine/mydir/myreport.jsp?KEY
    ;    3. Within a reports jsp - in the rw:report custom tag
    ;          e.g. <rw:report parameters="KEY">
    ; In addition to the Reports Server command line parameters, VALUE can include special parameters
    ; represented as "%X", where X identifies the parameter. Currently recognized special
    ; parameters:
    ;  %0 - %9 - 0..9 arguments from original rwservlet URL request. Note that %0 refers to the key itself.
    ;  %* - entire contents (all arguments) of original rwservlet URL request.
    ;  %D - request users to input database userid everytime they run the report.
    ;  %P - request for report parameter form in HTML format. It generates the PARAMFORM=HTML
    ;       construction on the first submission of the URL and PARAMFORM=NO upon parameter form submission.
    ; CGICMD.DAT Usage Notes
    ;   1. Multiple keys in this file MUST be separated by an EXTRA empty line.
    ;   2. Extra spaces are ignored. Multi-line entries allowed.
    ;   3. Lines starting with ";" character are treated as a comments.
    ;   4. Comments within a key or key value are NOT allowed.
    ;   5. NLS language support is provided and can be used (encoding should match the one
    ;      used in HTML request - no language conversion of any kind is attempted.
    ;   6. For %P special parameter, HTML format is by default mapped to the HTMLTABLE format in this release.
    ;      The HTML format in the future may be mapped to the HTMLCSS format.
    ;;;;;;;;;;;; Example Key Entries
    ;  Example 1:  Run a simple breakb report and output to HTML
    orqa: report=breakb.rdf destype=cache desformat=html server=repserver
    ; Example 2: prompt for userid the first time, then use database userid stored in the cookie subsequently.
    report_defaultid: report=breakb.rdf destype=cache desformat=html server=repserver
    ; Example 3: use %D to require user authentication every time
    report_secure: report=breakb.rdf destype=cache desformat=html server=repserver1 %D
    ; Example 4:  Take all arguments from URL and send it to the reports server
    run: %*
    ; Example 5:  Run breakb report with HTML parameter form.
    breakbparam : report=breakb.rdf destype=cache desformat=html server=repserver userid=scott/tiger@mydb %P
    ; Example 6: take all URL arguments, and also generate a HTML parameter form  
    runp: %* %P
    ; Example 7: Run an Express Report. Replace <MYHOST> with the name of the machine running the Express server. The
    ; builder on-line help explains the rest of the parameters (the /sl, st etc. etc.)
    express: report=my_expr_rep express_server="server=ncacn_ip_tcp:<MYHOST>/sl=1/st=1/ct=0/sv=1/" desformat=htmlcss userid=scott/tiger@mydb destype=cache server=repserver
    ;;;;;;;;;;;; Keys for Reports Demos
    ; Using default/in-process server.
    ; JSPs
    ;charthyperlink_ias: userid="scott/tiger@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=%DBHOSTNAME%)(PORT=%DBPORT%))(CONNECT_DATA=(SID=%DBSID%)))" %*
    ;charthyperlink_ids: userid=scott/tiger@ %*
    ;barcodeweb:         userid=oe
    ;parmformjsp:        userid=oe
    ;tutorial:           userid=oe
    ; Paper Reports
    ;xmldata:            userid=oe report=inventory_report.rdf destype=cache p_filelocation="http://%HOSTNAME%:%OC4JPORT%/reports/examples/xml_pds/scripts/" desformat=pdf
    ;barcodepaper:       userid=oe report=shippingmanifest.rdf destype=cache desformat=pdf
    ;distributionpaper:  userid=oe report=inventory_report_dist.rdf distribute=yes destination=exampledistribution.xml
    ;pdfenhancements:    userid=oe report=utf8test.rdf destype=cache desformat=pdf
    userlogin : userid=SYMFINBTOTEST@fin10r21 %*
    As in the above file i have added a key as userlogin at the end of the file. But the reports server does not take the key that i have given. I followed the same steps provided in oracle docs. I used "showmap" to check the cgicmd file that is used by the reports
    http://aspirevm8-17.aspiresys.com:9002/reports/rwservlet/showmap?server=bluQubeReportsAtLocalEnv&destype&userid=SYMFINBT…
    It shows me the content of the cgicmd.dat file and it also shows my updations. But in the "Parsed Map File Entries" it does not show my key value pair
    Parsed Map File Entries
    Return to Top
    Key Name
    Value
    runp
    %* %P
    breakbparam
    report=breakb.rdf destype=cache desformat=html server=repserver userid=scott@mydb %P
    report_defaultid
    report=breakb.rdf destype=cache desformat=html server=repserver
    run
    report_secure
    report=breakb.rdf destype=cache desformat=html server=repserver %D
    express
    report=my_expr_rep express_server="server=ncacn_ip_tcp:<MYHOST>/sl=1/st=1/ct=0/sv=1/" desformat=htmlcss userid=scott@mydb destype=cache server=repserver
    orqa
    report=breakb.rdf destype=cache desformat=html server=repserver
    Please help me to to make the key being populated here and being used by the reports server.
    Thanks,
    Priya

    uncomment #KEYPMAPFILE=CGICMD.DAT. remove the #
    then for development set
    reloadkeymap=yes (same file - rwservlet.properties).
    Now it should reload everytime. (otherwise for every change u need to restart oc4j_bi_forms)
    (For * production* may be you want to set reloadkeymap=no once all testing is done)
    see cgicmd.dat for many examples of using keymap file
    [ All Docs for all versions ]
    http://otn.oracle.com/documentation/reports.html
    [ Publishing reports to web - 10G ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [ Building reports - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [ Forms Reports Integration whitepaper 9i/10g ]
    9i - http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    10g - http://www.oracle.com/technology/products/forms/pdf/10g/frm10gsrw10g.pdf
    http://www.oracle.com/technology/products/forms/techlisting10g.html
    ---------------------------------------------------------------------------------

  • REP-52005: The specified key rep_drill does not exist in the key map file.

    Hi
    I am using Forms and reports version 11.1.1.4.0
    Weblogic 10.3
    I wanted to create a drilldown report
    I have modified the cgicmd.dat file in the below location
    C:\ORACLE\Middleware\user_projects\domains\CL2DOMAIN\config\fmwconfig\servers\WLS_REPORTS\applications\reports_11.1.1.2.0\configuration\cgicmd.dat
    by adding the below line to the end
    rep_drill: userid=JOE/JOE123@JOEDB server=rep_wls_reports_dsv-002_2inst desformat=pdf destype=cache paramform=no %*
    restarted the reports server
    In CUSTOMERS.RDF I have placed a link on the customer field using the below code
    SRW.SET_HYPERLINK_ATTRS('TARGET="_new"');
    SRW.SET_HYPERLINK('http://192.168.1.1:9002/reports/rwservlet?rep_drill+report='||'CUSTOMERS.rep+P_CUCODE='||CHR(39)||:CS_CUSTOMER||CHR(39));
    There are so many parameters passing to the report JOBS.RDF
    When I run the report and click on the link it gives me an error
    "REP-52005: The specified key rep_drill does not exist in the key map file."
    When I replace the rep_drill in the link with
    userid=JOE/JOE123@JOEDB+server=rep_wls_reports_dsv-002_2inst+desformat=pdf+destype=cache+paramform=no
    the report work perfect
    Can somebody help me please

    I said
    REPORTS_URL value:
    http://appserver4.rockefeller.edu:7777/reports/rwservlet?report=
    It looks like you did the following:
    REPORTS_URL value:
    http://appserver4.rockefeller.edu:7777/reports/rwservlet?report=test.rdf
    Try removing the test.rdf.
    Anton
    p.s. If you want some detailed help with integrating Apex and Reports, you can contact me offline here: http://concept2completion.net/c2/f?p=9876:20

  • 11gR2- REP-52005: The specified key userlogin does not exist in the key map file.

    hi,
    i am getting this error "REP-52005: The specified key userlogin does not exist in the key map file." when running report using url
    http://myserver.com/reports/rwservlet?userlogin&report_server&report=myreport.jsp....
    i have added the key mapping entry in cgicmd.dat file with the name userlogin
    as
    userlogin: userid=scott/tiger@devdb %*
    report_server: server=cluster_reports %*
    but still this error,

    uncomment #KEYPMAPFILE=CGICMD.DAT. remove the #
    then for development set
    reloadkeymap=yes (same file - rwservlet.properties).
    Now it should reload everytime. (otherwise for every change u need to restart oc4j_bi_forms)
    (For * production* may be you want to set reloadkeymap=no once all testing is done)
    see cgicmd.dat for many examples of using keymap file
    [ All Docs for all versions ]
    http://otn.oracle.com/documentation/reports.html
    [ Publishing reports to web - 10G ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [ Building reports - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [ Forms Reports Integration whitepaper 9i/10g ]
    9i - http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    10g - http://www.oracle.com/technology/products/forms/pdf/10g/frm10gsrw10g.pdf
    http://www.oracle.com/technology/products/forms/techlisting10g.html
    ---------------------------------------------------------------------------------

  • REP-52005: The specified key replabel does not exist in the key map file.

    Hi,
    I am using oracle 11g report server. I am getting the error of REP-52005: The specified key replabel does not exist in the key map file.
    I updated the user_string in cgicmd.dat file but of no use. Plese kindly help me on the same.

    uncomment #KEYPMAPFILE=CGICMD.DAT. remove the #
    then for development set
    reloadkeymap=yes (same file - rwservlet.properties).
    Now it should reload everytime. (otherwise for every change u need to restart oc4j_bi_forms)
    (For * production* may be you want to set reloadkeymap=no once all testing is done)
    see cgicmd.dat for many examples of using keymap file
    [ All Docs for all versions ]
    http://otn.oracle.com/documentation/reports.html
    [ Publishing reports to web - 10G ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [ Building reports - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [ Forms Reports Integration whitepaper 9i/10g ]
    9i - http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    10g - http://www.oracle.com/technology/products/forms/pdf/10g/frm10gsrw10g.pdf
    http://www.oracle.com/technology/products/forms/techlisting10g.html
    ---------------------------------------------------------------------------------

  • Error in CMC : The 0 plug-in does not exist in the CMS (FWM 02017)

    Hello,
    We have just installed a BO4 environment and migrated our legacy XIR2 environment (users, groups, universe, reports....).
    I want now to modify some user/group securities on a folder. When I press the Assign Security button, the following error is displayed : The 0 plug-in does not exist in the CMS (FWM 02017)
    Does anybody know about this problem ?
    Thank you.

    Hello,
    It was good practice to redo the security when migrating from XIR2 to XI3.1.
    So if you migrate from XIR2 to BI4, I think it might be a good idea to do it also.
    Try first to see if you have the same issue by recreating a new group.
    If it works fine, then you should use this new one.
    Regards,
    Philippe

  • Erorr  " The Web template "0ANALYZER" does not exist in the master system "

    Hi
    i am trying to run query from Query designer and execute in Web .i am trying to execute this in query designer. i am getting below error.
    "The Web template "0ANALYZER" does not exist in the master system "
    i activated all templates but not able to execute any report in web
    i am able to execute same report in webaplication but not thru query desinger... do i need to setup anything.?
    please do help me

    For clarification:
    If following happens:
    > you are launching the query with URL like:
    http://<server>:<port>/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?QUERY=<your query name>
    > then you get the error message "The Web template "0ANALYZER" does not exist in the master system"
    --> then you should check the settings for default templates in SPRO. Please mention that the default Web Template for query execution (BEx Web Analyzer) is called 0ANALYSIS_PATTERN.
    --> also check the 0ANALYZER Web Template in SE38 / Program: RS_TEMPLATE_MAINTAIN_70 -> then check if the template is active.
    When you problem is other nature you have to describe it in detail.
    Regards, Karol

  • ORA-0094 Table or view does not exists in the target modul

    Hi all,
    I have created a source module and on target modul. I try to make mapping between 2 tables, using Joiner. I will get the message: VLD-1012: attribute in inoutgrp1 does not match with the repository attribute. That is the first problm.
    But looking in the table, which i get from mapping, will get the above message.
    Which privileges must the source schem give to the target schem to be able to look at the table.

    I have granted the tables from sourec schm to target schema, but i got the same problem.
    If i loggin als target user i can select all he table from source user, but as target user cannot see tha tables whcih i will used from source schma.
    I there any other problem, which i dont know about it. The laocation is lso properly defined.
    Thanks

  • "The file you selected does not exist" when the file definitely exists?

    Hi all,
    Using Contribute CS3 against Contribute Publishing Server--
    I have the site uploaded and set up within Contribute and
    CPS. But I am experiencing consistent &quot;The selected file
    does not exist&quot; errors whenever I try to open most
    documents within the site. I click the &quot;Choose&quot;
    button, navigate to a file -- I can see its contents in the
    &quot;Preview&quot; box within the Choose dialog -- and
    when I click &quot;OK&quot;, I get that file does not exist
    error.
    This is happening with most but not all files in my site
    tree. Trying to find a common denominator, it certainly does seem
    that files which trigger this error are all templated files.
    Non-templated files open fine.
    Contribute is configured to talk to the server (IIS) via
    WebDAV.. Am trying to get the sysadmins to enable FTP to see if
    this behavior also shows up then, but have not been able to get
    this done yet.
    Thanks all :-)
    Reuben

    Would I have been better off posting this in the General
    Discussion section? Could the moderators move it if so,
    please?

  • Cannot find the object % because it does not exist or you do not have permissions

    I'm executing a SQL 2008 sproc from an Access Data Project, using ADO. The sproc truncates and then fills a table in the SQL database, which is then used as the recordsource in an Access report.
    This works fine for all users except one. I assumed it was a problem with that user's privileges, but when I connected to the database thru SSMS using his login, I was able to excecute the sproc successfully. I even explicitly granted that SELECT, UPDATE
    and DELETE to that user but it stills throws the error when executed from Access.
    Any suggestions?
    Darrell H Burns

    TRUNCATE TABLE requires ALTER permission on the table. You could say that TRUNCATE TABLE is half of DROP TABLE. The pages are deallocated, but the metadata is retained.
    Rather that granting users extra rights, a better solution is to sign the procedure with a certificate, create a user from the certificate grant that user ALTER on table. In this way, you package the permission with the procedure. (The user for the certificate
    is special kind of user that cannot log in.)
    I have a longer article on my web site that describes this technique in detail:
    http://www.sommarskog.se/grantperm.html
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Table ZCHECKPICK does not exist in the database

    Hi!
       I have a table "ZCHECKPICK" no "MANDT - Client".
       Then I inserted a field "MANDT - Client"  and executed SE14 to "Active and adjust database".
        The table is now "does not exist in the database" but the struture is ok.
      What do i do to get the table in DataBase again?
    <Priority normalized in subject line>
    Edited by: Vinod Kumar on Sep 13, 2011 9:32 AM

    Dear Clayton,
    you can try a few things
    1) generate/activate the table prior to call SE14.
    2) after confirming that the table is well generated, go to SE14 and choose "Delete Database Table"
    3) then, still on SE14, click on "Activate and Adjust database"
    [http://imageshack.us/photo/my-images/607/20110913010743.jpg/]
    That should fix it.
    Kind Regards
    /Ricardo Quintas

  • My ipad now is telling me the recipient was rejected by the server because it does not allow relaying

    I have been getting a message That my ipad cannot send the message because the recipent was rejected by the server because it does not allow relaying...But when my friend uses his account on my ipad he has no problem sending messages...i am aol and he is hotmail   Please help

    Try going into Settings > Mail, Contacts, Calendars > select the account > account name , tap on SMTP (under the 'Outgoing Mail Server' heading) and then tap on your Primary Server and try entering your email account and password and see if it then works

Maybe you are looking for

  • What causes a stack overflow with this code?

    VerifyError: Error #1023: Stack overflow occurred. //======================================================================================== ================================================= //     stop audio or video function //====================

  • Itunes doesn't see my iphone 5

    Just got a new phone, but when I plug it into my MacBook Pro iTunes doesn't see it as a device. iPhoto launches, so it is not invisible. It's just iTunes that won't wake up. Help!

  • Problem with define operation

    I have wsdl file (simple part of it here) <message name="otnAsyncServiceRequestMessage"> <part name="peiSessionID" type="xsd:string"> </message> <message name="otnAsyncServiceResultMessage"> <part name="payload" type="xsd:string"/> </message> <portTy

  • Valuated stock in 0IC_C03

    Hi, i am using standard cube 0IC_C3 to get quantity( and value (0VALSTCKVAL) of materials/plant, the quantity is correct but the value is not. i am using MB5B in R/3 side to compare. can you help, Thanks

  • Can photoshop elements 7 run on windows 8.1 ?

    I cannot install because it asks for a version of Internet explorer which I seem to have. Has any one had success? Regards DJK