Not able to link the cloned business object in change document

Hi Experts,
I cloned standard business object FIPP.  When I give the cloned busniess object in change document linkage, I am getting the error message Business object type ZFI_CREDIT has status modeled. Linkage not possible. Please let me know the proceedue to make the linkage.
Thanks in advance.
Regards,
Viven

In SWO1 you have a possibility to change the status of your custom business object into implemented.

Similar Messages

  • Not able to select the other schema objects mrtadata

    Hi,
    My function returns the matadata of a table (xml format) in the current schema but unable return output of another schema objects. I have the privileges of export full database, import full database and select_catalog_role also.
    It doesn't throw any error just throws empty xml.
    my code is...
    CREATE OR REPLACE FUNCTION TUNER.F_DBEG3(V_Schema VARCHAR2, V_Table VARCHAR2)
    RETURN XMLTYPE
    AS
    Handle NUMBER; --handle returned by OPEN
    V_First_Part XMLTYPE;
    V_Next_Part XMLTYPE;
    V_Output_Total XMLTYPE;
    V_Cnt NUMBER := 0;
    BEGIN
    DBMS_OUTPUT.PUT_LINE('START THE PROGM');
    Handle := DBMS_METADATA.OPEN('DATABASE_EXPORT');
    DBMS_OUTPUT.PUT_LINE('Open the handle');
    DBMS_METADATA.SET_COUNT(HANDLE, 1000);
    DBMS_METADATA.set_filter (Handle, 'INCLUDE_PATH_EXPR', '=''TABLE''');
    DBMS_METADATA.SET_FILTER(Handle,'NAME', V_Schema,'SCHEMA');
    DBMS_METADATA.SET_FILTER(Handle,'NAME', V_Table,'TABLE');
    DBMS_OUTPUT.PUT_LINE('Filter the required objects');
    LOOP
    DBMS_OUTPUT.PUT_LINE('Start the loop');
    DECLARE
    no_mvlog exception;
    pragma exception_init( no_mvlog, -31608 );
    BEGIN
    V_First_Part := DBMS_METADATA.FETCH_XML(Handle);
    EXCEPTION
    WHEN no_mvlog THEN
    EXIT;
    DBMS_OUTPUT.PUT_LINE ('No mv log');
    END;
    IF V_First_Part IS NOT NULL THEN
    DBMS_OUTPUT.PUT_LINE('First Count is '|| v_cnt);
    DBMS_OUTPUT.PUT_LINE('Into the process ');
    else
    DBMS_OUTPUT.PUT_LINE('Exit the loop ');
    exit;
    end if;
    IF V_Cnt = 0 THEN
    V_Output_Total := V_First_Part;
    DBMS_OUTPUT.PUT_LINE('track the metadata in xml form ');
    ELSE
    IF V_Cnt is not null and V_Cnt > 0 then
    SELECT EXTRACT(V_First_Part, '/ROWSET/ROW') INTO V_Next_Part FROM DUAL;
    SELECT APPENDCHILDXML(V_Output_Total,'/ROWSET',V_Next_Part) INTO V_Output_Total FROM DUAL;
    DBMS_OUTPUT.PUT_LINE('combining the child xml''s ');
    END IF;
    END IF;
    V_Cnt := V_Cnt +1;
    DBMS_OUTPUT.PUT_LINE(' Last Count is '|| v_cnt);
    END LOOP;
    DBMS_OUTPUT.PUT_LINE('converted into xml');
    return v_output_TOTAL;
    DBMS_METADATA.CLOSE(Handle);
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    RAISE_APPLICATION_ERROR (
    -20001,
    'Please check! ' || V_Table || ' not an object'
    WHEN OTHERS
    THEN
    DECLARE
    SQL_ERROR NUMBER := SQLCODE;
    SQL_ERRMESS VARCHAR2 (250) := SUBSTR (SQLERRM, 1, 200);
    BEGIN
    DBMS_OUTPUT.PUT_LINE (SQL_ERROR || 'Message : ' || sql_errmess);
    END;
    END;
    but when i use like below i got o/p.
    SELECT DBMS_METADATA.GET_XML('TABLE','ACT_RAP_T','EMACH') FROM DUAL;
    Please tell me where iam wrong.
    regards,
    Madhavi.

    Can you let me know is this problem for the components which are in containers only..
    Yes, as Charles said, the problem is for grouping/ungrouping in containers.  If you find otherwise, please let us know.
    <br>
    This problem you will be looking for next iteration, so is it going to be Service Pack or some Hot Fix..
    Is it possible for us to know the issues which will be looked for the next iteration so that we can know what are the issues current version has so that we have the good idea..
    Correct, it will be for Fix Pack 1 (size between a Service Pack and a Hot Fix).
    We don't have a list of issues.  I don't believe it's procedure to disseminate such information.  Usually we give the information on an individual issue basis.  For instance, this issue is slated for FP1.
    <br>
    Javier

  • Not able to bulid the reports in BIapps ETL changes need to be done r not?........

    hello every one,
    We are using the BIapps  service analytics and which my end-user   want the reports need TAT(Turn around time) based reports taken by the user to close a particular SR in dashboard as well as also want the fallow up calls details for the particular SR and if once again the SR is raised on same issue which he want to show in separate  report.
    The data base we r using  is Siebel crm.If we need to change/modify in  reports  weather  we need to change the informatica mapping  for the particular fields r not.
    Requirments:
    Wanted separate report which shows TAT(Turn around time) for particular SR closed timings.
    Wanted separate report which show the fallow up calls for the particular SR
    Wanted separate report stating that if the same SR has been raised with in a week time or as per the SLA(Service level agreement ) given by company which the user want to see in a separate report.
    Regards,
    Srikanth

    Hi ,
    This is happening because you have check the KEY field against the column which is getting populated by a sequence .
    Uncheck that option , also make sure that the UPDATE filed is also uncheck for that particular column .
    As per the query pasted by you , I think STATUS_NAME should be marked as KEY .
    Thanks,
    Sutirtha

  • Not able to get the pagebutton bar bean object in the extended controller

    Hi All,
    I am not able to get the button bean object in my page. But, am not able to get the handle of buttonbar itself. any idea?
    Page Structure is:
    PageLayout - not having controller
    ----buttonbar
    ---button1
    ---submitbutton2
    ----regiion1(stack layout)-controller assigned(seededCO)
    I am extending the seededCO and I am trying to get the handle of button1 bean with the following code.
    OAPageButtonBarBean pbb=(OAPageButtonBarBean)webBean.findIndexedChildRecursive("buttonBar");
    if(pbb!=null)
    System.out.println("pbb"+pbb);
    bb= (OAButtonBean)pbb.findIndexedChildRecursive("button1");
    }

    Hi,
    Try like this,
    import oracle.apps.fnd.framework.webui.beans.nav.OAPageButtonBarBean;
    import oracle.apps.fnd.framework.webui.beans.nav.OAButtonBean;
    OAPageButtonBarBean pBar =
    (OAPageButtonBarBean)pageContext.getPageLayoutBean().getPageButtons();
    OAButtonBean ctButton =
    (OAButtonBean)pBar.findIndexedChildRecursive("YourRequiredButtonName");
    Thanks,
    With regards,
    Kali.
    OSSi.

  • Not able to connect the application.

    Hi DBA's
    PLease help me to resolve this issue, I am not able to connect the application.
    Actually i changed apps user before becuase of some reasons, now i changed as old to APPLSYS,APPS,APPLSYSPUB by following note.160337.1
    Now i am not able to open the application it is saying invalid username and password before it load the application.
    Kindly help me..
    Best Regards

    Hi Sawwan,
    After giving bellow commands, it was given error that invalid applsys user name provided.
    FNDCPASS apps/apps 0 Y system/clone SYSTEM APPLSYSPUB APPS
    Application Object Library: Version : 11.5.0 - Development
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    module:
    Current system time is 21-JAN-2009 17:01:30
    APP-FND-02700: Invalid APPLSYS user name provided.
    Concurrent request completed
    Current system time is 21-JAN-2009 17:01:30
    Best Regards,

  • I am not able to see the installed BI content object in the DWB

    Hi ,
    I am not able to see the installed BI content object in the DWB
    and the BI server is new one, this is the First BI content info object I am installing.
    for example I have selected 0Account BI content info object for installation
    I followed the below steps for installation.
    1 Drag and drop of 0Account info object in right side window.
    2.Grouping option selected as only necessary objects.
    3.collection mode selected as manual collection then executed using execuiton button.
    4.selected the install all below option.
    5.finally installed the object with install in background option.
    job got finished successfully.
    please let me know if I did any thing wrong and please post valuable suggestions.
    Regards.
    Srinivas

    HI
    If yor installing first time you have to select info area and object catalogs also else it will go and stored in unassigned nodes. whatever your doing the option for installing the business content everything is same, but in right hand side panesl select the info ares etc.
    regards,
    Chandra.

  • Remote Object - not able to get the returned value from java method

         Hi ,
    I am developing one sample flex aplication that connects to the java code and displays the returned value from the
    java method in flex client. Here I am able to invoke the java method but not able to collect the returned value.
    lastResult is giving null .  I am able to see the sysout messages in server console.
    I am using flex 3.2 and blazeds server  and java 1.5
    Here is the code what I have written.
    <?xml version="1.0" encoding="utf-8"?><mx:WindowedApplication  xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" backgroundColor="#FFFFFF" initialize="initApp()">
     <mx:Script><![CDATA[
    import mx.controls.Alert; 
    import mx.binding.utils.ChangeWatcher; 
    import mx.rpc.events.ResultEvent; 
    import mx.messaging.*; 
    import mx.messaging.channels.* 
    public function initApp():void { 
         var cs:ChannelSet = new ChannelSet(); 
         var customChannel:Channel = new AMFChannel("my-amf", "http://localhost:8400/blazeds/messagebroker/amf");     cs.addChannel(customChannel);
         remoteObj.channelSet = cs;
    public function writeToConsole():void {      remoteObj.writeToConsole(
    "hello from Flash client");
          var returnedVal:String = remoteObj.setName().lastResult;     Alert.show(returnedVal);
    //[Bindable] 
    // private var returnedVal:String; 
    ]]>
    </mx:Script>
    <mx:RemoteObject id="remoteObj" destination="sro" /> 
    <mx:Form width="437" height="281">
     <mx:FormItem>  
    </mx:FormItem>  
    <mx:Button label="Write To Server Console" click="writeToConsole()"/>
     </mx:Form>
     </mx:WindowedApplication>
    Java code
    public  
         public SimpleRemoteObject(){  
              super();     }
      class SimpleRemoteObject { 
         public void writeToConsole(String msg) {          System.out.println("SimpleRemoteObject.write: " + msg);     }
         public String setName(){          System.
    out.println("Name changed in Java"); 
              return "Name changed in Java";
    And I have configured destination in  remote-config.xml
    <destination id="sro">
       <properties>    
        <source>SimpleRemoteObject</source>
        <scope>application</scope>
       </properties>
      </destination>
    Please help me .

    You are not able to get the returned value because if you see the Remote object help you will realise you have to use result="resultfn()" and fault = "faultfn()"
    In this you define what you wish to do.
    More importantly in the remote object you need to define which method you wish to call using the method class like this
    <mx:RemoteObject id="remoteObj" destination="sro" result="r1" fault="f1"  >
         <Method name="javaMethodName" result="r2" fault="f2"/>
    <mx:RemoteObject>
    r2 is the function where you get the result back from java and can use it to send the alert.

  • HT1918 why i am not able to see the none option in the payment link?

    why i am not able to see the none option in the payment link?

    Did you create a new account using an email address not used with Apple before?
    Maybe your county does not allow a None.
    I am in the US and created a None account using those instructions.

  • I am not able to see the Business area in Discoverer desktop

    Hi,
    r
    I am new to Discoverer
    I have created a business area in EUL with user name and password as dewip/dewip in Discoverer administrator and now when I am logging in to Discoverer Desktop with the same user name and password to create workbook I am able to log in but I am not able to find the Business area in the Discoverer desktop.
    After creating the business area do we need to do anything ( We don't even have save option to save also).
    In Discoverer admin -> tools-> privilages I checked to see the privilages for this user ,but I could not see this user name(dewip) only.
    Please help me ,its urgent.
    Thanks,
    gsr

    Hi gsr
    If you are working on Desktop and you change the default EUL but it doesn't stick this means that you don't have Admin rights over your machine.
    In order to make these setting stick you need to have permission to update the system registry.
    If you really cannot be given these rights then I suggest you ask you system admin to change the registry setting for you on your machine so that it reflects the correct EUL. You will find it here:
    1. From the Start button, use Run | regedit
    2. Open your registry to display HKEY_CURRENT_USER | Software | Oracle | Discoverer 10
    3. Expand the folder called Database
    4. Inside here you will see one set of settings that begin with AEUL and another with UEL. The format is like this:
    AEUL_username_database and UEUL_username_database
    5. You should see the name of the default EUL in the column called Data
    6. Right-click on the setting you want to change and from the pop-up select Modify
    7. Type the name of the EUL that Desktop should default to for that user in the database, making sure you type it in UPPERCASE
    8. Click the OK button
    9. Close the registry
    When you now connect to Discoverer Desktop you should be in the correct EUL.
    Note: this is only required if you don't have admin rights on your PC. If you do have admin rights then Discoverer will set this for itself.
    By the way, if you or anyone reading this is unsure about manually editing your registry you should back it up first. Here are the steps:
    To backup your registry, follow this workflow:
    1. From your PC, click Start | Run
    2. In the Run dialog box, type "regedit" and press the Enter key
    3. The registry will now be displayed
    4. From the registry menu bar, select Registry | Export Registry File
    5. When the Export Registry File dialog box opens, give a name to the file you want the registry to be saved as
    6. In Export Range, check "All" or "Selected Branch" - Selected Branch will export the current folder, so if you happen to have already navigated down tp the appropriate Discoverer Administrator folder you will be able to back it up
    7. Click the Save button
    8. Close the registry editor
    To restore your registry, follow this workflow:
    1. From your PC, click Start | Run
    2. In the Run dialog box, type "regedit" and press the Enter key
    3. The registry will now be displayed
    4. From the registry menu bar, select Registry | Import Registry File
    5. Navigate to the folder in which your registry is saved and locate the file
    6. Click the Open button - the registry will be restored
    7. Close the registry editor
    Best wishes
    Michael

  • Not able to edit the lov of an object in a universe

    Hi,
    I am not able to edit the lov of an object in a universe.
    The universe(XI3) is based on stored procedure but it also contains tables from database.
    The object points to the table which is not a stored procedure, any idea why we are not able to edit its lovs.
    Thanks
    Gaurav

    Hi,
    Check required object properties for the option Edit LOVs is checked or not.
    Cheers,
    Suresh Aluri.
    Edited by: Suresh Babu Aluri on Jan 13, 2010 6:14 PM

  • While i am creating my business rule i am not able to connect the planning

    while i am creating my business rule i am not able to connect the planning application and database?I dont know what is the reason?

    Make sure you log into the planning application before logging into EAS.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Not able to see the Adapters@Integration Directory!!

    Hi,
    I have created Data types,Messages Types, Message Interface in Integration Repository.
    I have created a scenario in Directory and assigned Business systems too(I'm doing file to file scenario) and while trying to create Communication channels i'm unable to see the adapters under Parameters Tab.
    <b> Its not showing any Adapters in ADAPTER TYPE option and also
    Transport Protocol and
    Message Protocol are blank.</b>
    What could be the reason??
    Please guide me in order to complete my scenario.
    Thanks in Advance.
    LNM

    hi madduri,
    check these links....
    Not able to see the adapter types in ID
    Adapter Engine not found in ID
    <b>check the last post here.... u will get ur answer !!!</b>
    Adapter Type not found
    Do these steps
    1) Download XI7_0_SAP_BASIS_7.00_10_00.tpz which is available in a zipped format from the SAP Service Market Place.
    2) Unzip the contents and copy the file XI7_0_SAP_BASIS_7.00_10_00.tpz (if you are using PI 7.0 or else download the file for your XI version) to
    /usr/sap/<SAPSID>/SYS/global/xi/repository_server/import/
    3) Goto Repository (Design)
    4) Choose -> Tools -> Import Design Objects
    regards
    BILL
    **mark the thread  answered when u got ur answer

  • Not able to see the tree on the jspx page after running

    Hi All,
    This is something strange.I am dragging the VO on the page fragment from the data control as adf tree. And I am using the panel collection as component for adf tree.
    After running the jspx when I am moving to the fragment I am not able to see the tree.
    However when I am running the AM it is working properly for the view objects and view link used to populate the tree.
    Can anybody put some thoughts on this.
    Thanx
    Kanika

    Thnx for your replies..
    I am dropping taskflow as region . I am not using the switcher component.
    On left side of the page the tree is visible now. but the taskflow is not refreshing on the click of the tree node based on the value of the node.
    Please advice how to accompolish this now??

  • Not able to see the crystal reports XI version in the IE 7 and IE 8

    Hi Team,
    I am using web based application developed in VB,ASP,SQL SERVER,Crystal Reports(XI). I am able to see the Crystal Reports in IE 6. But i am not able to see the reports in IE 7 and IE 8. While clicking on the reports button it is showing the  red X image top left cornor.
    I am using CrystalActiveX viewer11 version for viewing the reports.
    In IE 6,if the client using fiirst time for vieiwing the reports,it will ask the Activexviewer control prompt and says ok,it will display the reports.
    Thanks and Regards
    Eshwar

    Thanks your advise.But we are using following crystal reports (XI) version and we don't have CRXI with R1 and R2.
    CurrentVersion:11.0.0.895 ( CR Developer and Product Type:Full)
    Crystal Reportviewer11 configured in the IIS which is version (5.0). and configured the virtual folder to C:\Program Files\Common Files\Business Objects\3.0\crystalreportviewers11\.
    Our web application code also configured in the IIS at same level.
    When the user wants to see the reports through the application,it will ask the Plugin of Crystal Report Viewer and user will download this plugin and it will save in the IE plug ins.It will ask only first time viewing the reports for the next onwards it will not ask or prompt of the Activex control.
    So please suggest me, is there any upgrade version of this Crystal Reportviewer11 needs to be installed or any browser setting need to be configured for IE 7 and IE 8.
    waiting for your reply.
    Regards
    Eshwar

  • Not able to view the WEBINAR presentations

    Hi,
    I'm not able to view the e-learning presentations@ https://www.sdn.sap.com/irj/scn/xi-elearning.
    Only links that ends with WEBINAR replay or presentation are not able to viewed.
    I have  installed webEX player, still I'm not able to read the links.
    could anyone help on this issue.
    Thanks,
    Gupta.

    Hi Gupta,
    I have checked the same link, and clicked on first link
    Business Level Modeling for Business Process Experts  and I am able to view the e-class session. Just check you have allowed Pop-up. As the webinar reply is opening in a new Pop-up window.
    Else, Post you question in [Suggestion and Comments|SCN Support; forum.
    Sachin

Maybe you are looking for

  • I lost my iPhone and when I'm trying to find it with the location, they say that it is "out of service". What should I do?

    Hello people! As I mentionned in my question, I have lost my iPhone I'm feeling very dumb, it is the second time that this happens to me and I really need your help! I don't even know what happened, but when I arrived home after school, I didn't find

  • Companionlink Google for Calendar - OR - ANY Wireless Sync Software

    I've been hacking at a way to wirelessly sync my BBerry Bold 9650 with Outlook 2007 and Google.  Since the BBerry solution offers a good email sync, there is no problem there.  Once you install Companionlink Google for BBerry it is clear that unless

  • How to identify which videos

    I took a dozen or so short clips of an event. I know which three I want to combine and edit. But I can't figure out how to identify which they are in imovie in order to put those clips in my project. It shows them all as consecutive clips or frames,

  • Re: SIS SD Reporting

    Hi all, In our Business we wanted the standard SD reports turned on. Hence in t-code OMO1 i activated the standard structures. However I have a question regaring the period split & the updating options present. Period split: Day week month Posting pe

  • Sharing violation error after closing file

    I am creating a text file using the "Write to Spreadsheet File" vi.  After creating the file, I cannot change the name, or open the file in XL because I get a "sharing violation" error.  Apparently Labview has not released the file even after closing