Help-Task not found - Please check the Task Type, Name and Location are cor

HI all,
i have upgraded my owb from version 11gr1 to 11gr2. the installation is complete and all my mappings and objects are imported successfully.
i was able to execute the mappings using the sql code:
@/oracle/product/11.2.0/owb/rtp/sql/sqlplus_exec_template.sql
by logging into sqlplus as the user in whose schema mappings are deployed.
hOwever, suddenly i am getting the error since sometime back - not sure what might have happened or what might have gone wrong. can someone please help me understand what might be wrong - how to decode this?
Here is my error:
@/oracle/product/11.2.0/owb/rtp/sql/sqlplus_exec_template.sql
Role set.
Enter value for 1: WSODS
Call completed.
Enter value for 2: ODS_SCHEMA
Enter value for 3: PLSQLMAP
Enter value for 4: MAPPING_1
Enter value for 6: ","
Enter value for 5: ","
Stage 1: Decoding Parameters
|  location_name=ODS_SCHEMA
|  task_type=PLSQLMAP
|  task_name=MAPPING_1
Stage 2: Opening Task
begin
ERROR at line 1:
ORA-20001: Task not found - Please check the Task Type, Name and Location are
correct.
ORA-06512: at "OWBSYS.WB_RT_API_EXEC", line 759
ORA-06512: at "OWBSYS.WB_RT_SCRIPT_UTIL", line 910
ORA-06512: at line 2When i execute this: i get the result as follows:
SELECT warehouse_object_id, store_id, object_type_id, object_type_name, object_name FROM owb$wb_rt_warehouse_objects
where object_name = 'MAPPING_1';
WAREHOUSE_OBJECT_ID     STORE_ID                OBJECT_TYPE_ID          OBJECT_TYPE_NAME                                                 OBJECT_NAME                                                     
15947                   15325                   769                     PLSQLMap                                                         MAPPING_1                                                       
1 rows selectedEdited by: Chaitanya on Mar 5, 2012 3:33 AM

Hi Chaitanya,
Did you get any resolution for this error? I'm facing the same error while trying to execute OWB mapping through this command.
Any help would be much appreciated. Thanks.
Regards,
Jagari

Similar Messages

  • Error 15401: Windows NT user or group not found. Check the name again

    when adding a windows login on SQL SERVER 2008 R2 below error is throwing
    Windows NT user or group 'domain\user' not found. Check the name again.
    I have gone through the link
    http://support.microsoft.com/kb/324321/en-us &
    http://support.microsoft.com/kb/2770837
    collation setting of the instance is not case sensitive.

    Hi DevXYZ,
    Have you checked the other possible reasons for this issue?
    The login does not exist
    Verify that the Windows login still exists in the domain. Your network administrator may have removed the Windows login for specific reasons, and you may not be able to grant that login access
    to the SQL Server.
    Verify that you are spelling the domain and login name correctly and that you are using the following format:
    Domain\User
    If the login exists, and it is correct, and you still receive the error, continue with the following sections in this article.
    Duplicate security identifiers
    In a Windows domain, unique Security Identifiers (SIDs) are automatically assigned to Windows logins in the domain. When you add a Windows login as a SQL Server login, the SID is stored in a system table in SQL Server. If you try to add a new login which has
    the same SID as an existing SQL Server login, the 15401 error occurs.
    Authentication failure
    You might receive error 15401 when the domain controller for the domain where the login resides (the same or a different domain) is not available for some reason. 
    If the login is in a different domain than the SQL Server, verify that the correct trusts exist between the domains.
    Verify that the domain controller of the login is accessible by using the
    ping command from the computer that is running SQL Server. Check both the IP address and the name of the domain controller.
    After you tried all the possible methods list above, you still receive the same error, please check the error log as Dean Savović mentioned above and share us the detailed error message here
    as we can analysis further.
    Thanks
    Candy Zhou

  • How to get the document type, name and revision from the search page cv04n

    Hello,
    After performing cv04n and getting a list of documents satisfying the search criteria, how can I then get the document type, name and revision of the selected document using ABAP?
    Thanks

    HI,
    IN table DRAW... u have Document type, Version and document number.
    In Table DRAT also u get Document Type, Version, Number and Description of Doucment.
    Regards
    SAB

  • The data types varchar and varchar are incompatible in the subtract operator

    Hi ;
    I want to fetch values  6,903,00  format ,my query is ;
    SELECT CONVERT(varchar(50), CONVERT(money,SUM(DEBIT)),1) AS DEBIT ,CONVERT(varchar(50), CONVERT(money,SUM(CREDIT)),1),AS
    CREDIT CONVERT(varchar(50), CONVERT(money,SUM(DEBIT)),1) - CONVERT(varchar(50), CONVERT(money,SUM(CREDIT)),1) AS BALANCE
    FROM TABLE
    it was get error :  The data types varchar and varchar are incompatible in the subtract operator.
    I want to Show result ;
    DEBIT         -          CREDIT            -    BALANCE
    6,903,00              4,387.24             2,515.76
    Thanks in advance

    You have to do the subtraction with the MONEY data type (prior to covert-ing).
    Starting with SQL Server 2012, you can use the FORMAT command:
    https://msdn.microsoft.com/en-us/library/hh213505.aspx
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Database Design
    New Book / Kindle: Beginner Database Design & SQL Programming Using Microsoft SQL Server 2014
    We have to use SQL 2005 due to licensing issue .

  • Please check the below Cursor Procedure and correct that code Please

    Hai Every One.
    Please check the below code I have two issues in that code
    1. Invalid cursor
    2. Record must be enter
    Please correct this code and send me pls its urgent.I cont understand where i done mistake
    PROCEDURE fetch_detail_PROC IS
    cursor c1 is select * from quota_mast where quota_mast.divn=:quota_mast.divn and quota_mast.QUOT_tyPE=:quota_mast.QUOT_tyPE and quota_mast.INQNO=:quota_mast.INQNO;
    cursor c6 is select * from quota_det
    where quota_det.divn=:quota_mast.divn AND quota_det.QUOT_TYPE=:quota_mast.QUOT_tyPE and quota_det.enq_num=:quota_mast.INQNO
    ORDER BY quota_det.quot_no;
    --cursor c5 is select * from acc_mst where cdp=:quota_mast.ccdp and divn=:quota_mast.divn;
    --vn acc_mst%rowtype;
    i quota_mast%rowtype;
    detail1 quota_det%rowtype;
    BEGIN
         GO_BLOCK('quota_mast');
    for i in c1 LOOP
              :quota_mast.INQNO:=i.INQNO;
                        :quota_mast.DIVN:=i.DIVN;
                   :quota_mast.QUOT_NO:=i.QUOT_NO;
                        :quota_mast.quot_type:=i.quot_type;
                        :quota_mast.CCDP:=i.CCDP;
                        select nm into :QUOTA_MAST.PARTY_NAME from acc_mst where acc_mst.DIVN=:QUOTA_MAST.DIVN AND acc_mst.cdp=:ccdp;
                        :quota_mast.pak_for:=i.pack_for_PER;
                        :quota_mast.exc_duty:=i.exc_duty_PER;
                        :quota_mast.vat:=i.vat_PER;
                        :quota_mast.cst:=i.cst_PER;
                        :quota_mast.wct:=i.wct_PER;
                        :quota_mast.ser_tax:=i.ser_tax_PER;
                        :quota_mast.insu:=i.insu_PER;
                        :quota_mast.tot_tax:=i.tot_tax;
                        :quota_mast.tot_val:=i.tot_val;
                   :quota_mast.value:=i.value;
                                  next_record;
    end loop;
         first_record;
    GO_BLOCK('quota_det');
                   for detail1 in c6
              loop
                        :quota_det.quot_no:=detail1.quot_no;
              :quota_det.ENQ_NUM:=detail1.enq_num;
              :quota_det.item_code:=detail1.item_code;
              SELECT ITNM into :NM FROM itm_MST WHERE DIVN=:quota_mast.DIVN AND iCDP=:ITEM_CODE;
              :quota_det.price:=detail1.price;
              :quota_det.qty:=detail1.qty;
              :quota_det.DISC_PER:=detail1.DISC_PER;
                   next_record;
    END LOOP;
         first_record;
    close c6;
    --close c1;
    exception
    when others then
    message(sqlerrm);
    message(' ');
    END;
    Thank you..

    Oracle Forms is closely tied to the database meaning you can base your data blocks on your tables and Forms will handle fetching the data. I agree with Christian, your tables lend themselves to using a master - detail configuration and if you need to filter your block then you can use the Data Block WHERE Clause property.
    Please correct this code and send me pls its urgent.As to the urgency of your request, the forum is a community of "Volunteers." Enough said.
    Regarding your code, I see a several potential problems.
    First, how are your QUOTA_MAST and QUOTA_DET blocks synchronized? Are you using a block relationship? Are you using a combination of triggers to synchonize the QUOTA_DET block when you user navigates to a different record in the QUOTA_MAST block?
    Second, your Procedure name is "Fetch_Detail_Proc" but you are also fetching Master data as well. What is the purpose of your procedure and where do you call this procedure?
    Third, you're using SELECT * in your cursor queries. You should always explicitly name each column. What happens when your table changes and you need to search your code for a column that was dropped?
    Fourth, your cursor queries are referencing the same data blocks you are fetching data to populate. This gives the impression that you already have data in your block. This doesn't make sense - could you explain what you are trying to accomplish?
    Fifth, with respects to your code, the "Invalid Cursor" error (is this really the error you're getting?) is most likely caused by your explicit call to close the C1 cursor. As Andreas stated, when using a CURSOR FOR LOOP, the cursor is automatically opened, fetched and closed using this construct. There is no need to explicitly close the cursor, in fact - doing so will result in an invalid cursor error.
    As to the "Record must be entered" error, is sounds like you have required items in your block or your QUOTA_MAST block is not synchronized with your QUOTA_DET block, so when you attempt to navigate to a different block or record within your the same block the navigation cursor can't move because you haven't entered data that is required.
    Please tell us what you are attempting to do with this code so we can tell you if you are using the correct method.
    Craig...

  • Please check the LIVE CHAT Record and return my money back.

    This is the situation.
    My 2-year contract ended on 1-15-2015, and I ordered a new device iphone 6 plus (64G) on 1-13-2015 and selected Edge plan (I line, 1GB data, unlimited call and message from 1-15-2015, totally price $80/ month). I had a live chat with a lady and a man, and also confirmed it with call. 
    Now I found that the bill became $183 !!!  6GB data is stead of 1GB. The stupid thing is that I paid the same amount ($183) last month as I thought first month charged more because of handing fee.... Now this month It also 183. So I contact with LIVE chat person and ask them to check the LIVE CHAT record to compensate the losses. They told me that they can't enter the record and can't make this remedy. 
    So, why do I need take resposible for this mistake? Why do I need pay $200 more? Why can't your guys see the record and find the evidences? Actually I only use 20% data of 1GB, why you HELP me order 6GB? 
    Solved!
    Go to Solution.

    Welcome to the forums.  You're talking to other users here.  Further, your talking to users of Verizon's fixed location residential services including FiOS, DSL and telephone.  Your issue is with Verizon Wireless.  Visit their web site for support options.
    http://www.verizonwireless.com/
    Good Luck.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.

  • Hi.  I down load all of my pictures to iPhoto.  I was removing some even folders to make room, but DID NOT delete any of the ones I needed (and there are a lot of photos as I am a photographer just starting out).  All of my photos are gone.  ALL of them.

         Can anyone help me.  All of my photos from iPhoto are gone.  There are three weddings that I photographed and may other sessions (I am a brand new photographer and this is going to kill my business).  I am so sick to my stomach.  I was deleting some even files due to the fact that the start up disk was almost full but DID NOT delete everything.  I finished what I was doing and then went to dinner.  I came home to do more editing and EVERYTHING is gone.  EVERYTHING, but the iphoto program was still there.  Is there any chance that these pictures could still be somewhere on the hard drive?
    Thank you,
    Kari

    Did you use the finder to delete any photos that are in iPhoto?
    If so you have trashed your library - you choices are to put it back EXACTLY like it was, restore your backup or start over (right click on the iPhoto library and show package contents, drag the masters folder to the desktop, create a new library and start importing
    NEVER make any changes of any sort to the structure or content of the iPhoto library - ONLY use iPhoto to manage yoru photos
    LN

  • ITunes 8 not running?  Check your Task Manager and it probably is!!!

    Click CtrlAltDelete and check to see if iTunes8 is running. Whats that all about?

    Got the same problem. When I click the itunes icon,the hour glass shows for about 20sec, then does off and nothing. I have checked the task manager and it does not show its running. When I come to log off the computer, I get the little window to wait or end the itunes application. I have uninstalled and reinstalled a zillon times and it still will not run. Can anyone help please?

  • To download an App the 3 security questions are required. But at the end, apple is not able to complete the task and gives an error message. No more downloads are possible. What can I do?

    to download an App the 3 security questions are required. But at the end, apple is not able to complete the task and gives an error message. No more downloads are possible. What can I do?

    Very Important, how much Free Space is on your Hard Drive first of all? Click on the Macintosh HD on the Desktop, then do a Get Info on it.
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    Do they launch OK while in Safe Mode?

  • No Disks that meet the citeria in the Solaris installer documentation found. Please check the system or try another installation option #

    I'm tring to install this on an IBM netfinity 5100 server which has ultra 160 scsi drives.I get this message
    "No Disks that meet the citeria in the Solaris installer documentation found. Please check the system or try another installation option #"
    Please help me. I new to UNIX and SOLARIS.Thanks!
    VC

    You are probably using the INSTALL CD that comes with Solaris x86.
    Don't use it but use the Software CD 1/1 to boot and install the system instead. The INSTALL CD is supposed to be used on a completely blank system (no other OS's) although even there I think Software CD 1/1 does the job.
    Also, if you are new to Solaris I advice you to get the FAQ (you can find it on e.g. http://www.science.uva.nl/pub/solaris/solaris2- it should be really helpfull during the first few weeks/months on Solaris

  • I just purchased a Canon 7D Mark II, new DellXPS and the Lightroom 5.2.  The Lighthouse is not openinging the 7DMark II but does open the older 7D that I imported.  I checked the Abode update page and do not see one for the 7D Mark II.  Please say it is t

    I just purchased a Canon 7D Mark II, new DellXPS and the Lightroom 5.2.  The Lighthouse is not openinging the 7DMark II but does open the older 7D that I imported.  I checked the Abode update page and do not see one for the 7D Mark II.  Please say it is there - if not when.  I am "on hold till its done.  Thanks.

    Update to the current release, which is Lightroom 5.7.1. You can do this from the Lightroom help menu and choosing updates.

  • The project could not be created,please check the webroot folder(it may overlap with an existing project)

    Error msg: "The project could not be created, please check
    the webroot folder (it may overlap with an existing project)." This
    occurs in the CF/Flex Application Wizard Pproject Information
    Window on a Flex3 application. I checked to make sure that there
    were no overlapping applications and the message still persists.
    There are old threads on this from Flex 2 but the problem still
    exists in newly released Flex 3. Please help!

    I can't help you with this, but you are not alone. A friend
    of mine has exactly the same problem

  • Task not found at path: /Developer/usr/bin/gdb

    My xcode works fine but debugging does not and this is the error i get whenever the debugger starts in xcode.
    Task not found at path: /Developer/usr/bin/gdb
    Looking in that path gdb is truly missing. find /Developer/ -name "gdb*" -type f -print comes up with;
    /Developer//usr/libexec/gdb/gdb-i386-apple-darwin
    /Developer//usr/libexec/gdb/gdb-powerpc-apple-darwin
    ..so ln -s /Developer/usr/libexec/gdb/gdb-i386-apple-darwin /Developer/usr/bin/gdb makes the debugger work again.
    I couldn't find this exact error on google and i tried searching this forum here on discussions too.
    I would like to know why this happened, i'm suspecting the upgrade to snow leopard, and if my solution is correct or if it might break something in the future?
    I did reinstall xcode after i upgraded to snow leopard, with the latest xcode version at the time of the upgrade, for what it's worth.

    Moved Thread:
    http://discussions.apple.com/thread.jspa?threadID=2478061&tstart=0

  • Task Not being launched though the work Items are retrieved

    Hello All ,
    I had a query
    While confiiguring the UWL - to open the Tasks in UWL  through Web Dynpro  launcher . Since I am  little confused about how  to link my Travel application iview to the clicking on tasks .Though I had already handled the action through Web Dynpro Launcher in the XML Configuration but I guess there is property called as"DefaultIview" if that needs to be set to some value ., but still I am not able to see the tasks in Web Dynpro application.
    Also since the travel consists of 3-4 Development component , I am not really sure if I had to name the Web Dynpro Application according to the task IDs that need to activated in UWL. . Since currently I am pointing it to the parent application of Parent Component.
    Please guide ...
    Regards

    Thanks for the info .......Here is the confusions I had
    EP Version :6.0.14.0.0.Enterprise_Portal_Support_Release
    The Wizard which you are mentioning is not available here . even I am surprised considering the
    version as said .
    When I go to systemAdmin> system Config> UWL-Administration ..
    Steps I followed :
    1. I registered the System Alias under the Web Flow connector / And also the Alert Connector .
    (Though I not really sure If I need AlertConnector in place )
    2. The Reregister button is not there .
    3. The typical configuration wizard which comes "Register Item types " which leads us to select the
    TaskID from drop down is not there instead only mechanism here is XML File display and upload .
    3. I tool the XML file like uwl.webflow.<ALIAS>  and replace the relevant Tasks IDs in there with my
    Task IDs .
    Now here is one confusion I am facing -- I had 3 task IDs . The another XML which i  used had lots
    of tasks ID , Did I had to add my Tasks Id under the XMl label tag and upload it as all  together as
    different XML like uwl.webflow.travel.<ALIAS> . Which method would be better and right ?
    4. Now if I see XML which I am using as template uwl.webflow.SAP_R3_Financials , I could find
    two types of tags  
    One like :
    <ItemTypes>
        <ItemType name="uwl.task.webflow.TS00008267.SAP_R3_Financials"
    connector="WebFlowConnector" defaultView="webflowView" defaultAction="launchWebDynPro"
    executionMode="pessimistic">
          <ItemTypeCriteria systemId="SAP_R3_Financials" externalType="TS00008267"
    connector="WebFlowConnector"/>
          <Actions>
            <Action name="launchWebDynPro" groupAction="" handler="SAPWebDynproLauncher"
    returnToDetailViewAllowed="yes" launchInNewWindow="no">
              <Properties>
                <Property name="WebDynproApplication" value="LeaveRequestApprover"/>
                <Property name="WebDynproDeployableObject" value="com.sap.xss.hr.lea.appl"/>
                <Property name="display_order_priority" value="5"/>
              </Properties>
              <Descriptions default=""/>
            </Action>
          </Actions>
        </ItemType>
    second Tag : Marked by Decision
    <ItemType name="uwl.task.webflow.DECISION.TS00300025.SAP_R3_Financials"
    connector="WebFlowConnector" defaultView="webflowView" defaultAction="viewDetail"
    executionMode="pessimistic">
          <ItemTypeCriteria systemId="SAP_R3_Financials" externalType="TS00300025"
    connector="WebFlowConnector"/>
        </ItemType>
    That means do I had to identify among my Task IDs that which one of the Task is decision based  .
    5 .While doing the same if we can see the First Tag though talks of "Properties" where we can pass our "WDP application and WDDeployable Object " . Second tag does not talk of the same so how to make sure that the relevant task under second tag like the Decision Based Task will be handled by WDP .
    6. The WDP application and WD Depoyable Object for all the Tasks should be same or diff v?
    Since travel is consisted of Several DCs like ess~tra / tra/tre , tra/tri ....
    and though TRA is main DC and other are child DCs but then do we point our all tasks to main appication (  2 in case : allmytrips and myalerts ) .
    Also if we can find a property in the First Tag " defaultView="webflowView" .. where should our iview or WDP application should point in XML .

  • Admin tool could not load the essbase driver.Please check the configuration

    Hi All,
    I have obiee11g installed machine and want to connect that machine with essbase.
    For that I have installed Essbase Client [11.1.2.1] by downloading the following files,
    *1>Oracle Hyperion Enterprise Performance Management System Installer Fusion Edition Release 11.1.2.0.0 for Microsoft Windows (32-bit)*
    *2>Hyperion Enterprise Performance Management System Foundation Services Release 11.1.2.0 for Microsoft Windows (32-bit) Part 1 of 4*
    *3>Oracle Essbase Clients Release 11.1.2.0.0 for Microsoft Windows (32-bit)*
    After that I manually added the ESSBASEPATH and ARBORPATH as Environment Variables (USER).
    And also I manually added the essbasepath in bi-init.cmd file.
    Finally I tried to connect essbase with BI through BI Admin Tool, I get the following Error
    "*Admin tool could not load the essbase driver.Please check the configuration*."
    kindly guide me to overcome this issue.
    Thanks and Regards
    sai
    Edited by: 923924 on Apr 24, 2012 5:20 AM

    Until you perform the configuration on the AD server, the following message will appear:
    Error: Could not start the SSO service. Please check the configuration.
    So configure the AD server so that the error message will not appear again.

Maybe you are looking for

  • Printing Problem with HP 5650

    HI, My printer work well so far, until my wife try to print a document while the printer was not connected to the power line. Since printer refuse to print, jobs go to queue...uninstall printer software but laptop does not allow me to either add, edi

  • Installation problem - JDK 6 on Ubuntu 9.04

    Hello, I'm an old programmer (60+!) but new to Unix/Java/OE. I've bought 'Teach yourself Java 6 in 21 days', which recommends using the Java Development Kit for initial learning. Following the instructions on the Sun site, I downloaded the file 'jdk-

  • Performance issue with Oracle data source

    Hi all, I've a rather strange problem that I'm stuck on need some assistance on. I have a rules file which drags data in via an SQL data source thats an Oracle server. If I cut/paste the 3 sections of "select" "from" and "where" into SQL-Developer an

  • Ms-6183 won't boot after storm

    Following a recent thunderstorm, my ms-6183 system no longer boots.  After powering on, I get the normal single beep, fans, hard drives, etc start up, but screen stays blank (no signal message).  There is no HDD activity, and it won't boot from flopp

  • AIR 3.6 and MXML Applications ?

    My goal here is to compile an mxml application in FB 4.7 in order to have retina quality display. In order to do so, I followed the instructions to overlay the air sdk in FB 4.7 with the new air 3.6 sdk (AIR 3.6 SDK with ActionScript Compiler 2.0). I