How i can create new Integration Componet?

Hi,
I created a Business Component(Ex: Sample Business Component) and i try to add this Business Component as Integration Component to Integration Object but this Business Component is not displayed in the Integration Components list. I was followed below process to create Integration Object.
File --> New Object --> EAI --> Integration Component. I select the following characteristics for the new Integration Object
Project : Sample Project
Business Service : EAI Siebel Wizard
Source Object : Account
Source Root : Account
Unique Name : Sample Integration Object
Integration Components : Account (Parent Integration Component) but here it won't show my Business Component (i.e Sample Business Component)
Plz tell me the reason.
Thanks & Regards

Hi,
Have you activated the IC in the last dialog box of the wizard. Expand the root Account and see if you were able to see your sample BC. If you found that check the box and it will be available in the IC.
Regards,
Joseph

Similar Messages

  • How I can create new XQuery functions in AQSB?

    Hi,
    I need create XQuery functions in AQSB to use them in proxy services. Is that posible?
    Thanks for your help!!! :-)

    Hi,
    Have you activated the IC in the last dialog box of the wizard. Expand the root Account and see if you were able to see your sample BC. If you found that check the box and it will be available in the IC.
    Regards,
    Joseph

  • In how many ways we can create new document and how to implements this ways?

    I found that we can create new document by 3 ways
    1)by using session object of application ,document list as follow
    InterfacePtr<IApplication> firstdoc(GetExecutionContextSession()->QueryApplication());
              InterfacePtr<IDocumentList> docList(firstdoc->QueryDocumentList());
      docList->NewDoc(25089,IDataBase::ProtectionLevel.kProtectSave, nil);
    but in this case i am not getting how to use newdoc method i.e which parameter we have to pass(not even clear from API reference )
    2)by using command
    InterfacePtr<IApplication> firstdoc(GetExecutionContextSession()->QueryApplication());
              InterfacePtr<IDocumentList> docList(firstdoc->QueryDocumentList());
      InterfacePtr<ICommand> new1(CmdUtils::CreateCommand(kNewDocCmdBoss));
              UIDList asd(docList);
              new1->SetItemList(asd);
              CmdUtils::ProcessCommand(new1);
    3)bu using some util or facade interface
    Utils<IDocumentCommands>()->New( . . .)
    in this case also  i am not geeting how to use new method 
    I try all this method but none of them working .i knew i am doing some mistake  in all these method so please correct me where i am wrong .
    Main problem is in the first parameter of newdoc method i.e what is class id how to use them 

    1. add to your project "SDKLayoutHelper.cpp", "SDKLayoutHelper.h"
    2. #include "SDKLayoutHelper.h"
    insert code:
    do{
             SDKLayoutHelper helper;
             UIDRef docRef = helper.CreateDocument();
             if (UIDRef::gNull == docRef)
                 break;
             helper.OpenLayoutWindow(docRef);
        }while(kFalse);
    Regards!

  • Does anyone know how I can create "facing pages" in new Pages? I could do it in Pages 09, but can't find the option in new Pages.

    Does anyone know how I can create "facing pages" in new Pages? I could do it in Pages 09 but can't find the option in new Pages. I have documents created in Pages 09 and want to do some further work on them, but am now using new pages.

    There were 100+ features that didn't make it into the "new & improved, rewritten from the ground up” Pages 5. Some have returned with the updates & there are some new features that are worthwhile, but there are still 90+ features missing. Leave feedback for the Pages team using the link in the Pages menu and review & rate the new versions in the Mac App Store.
    If you previously had iWork '09, those apps are still in your Applications folder in a folder named iWork '09. You can continue to use them to get things done.

  • Please i try to create a new account put i don't have visa how i can create?

    please i try to create a new account put i don't have visa how i can create ?

    Creating an iTunes Store account without credit card - Support - Apple

  • I am looking for a spreadsheet app that I can create new spreadsheets. So far nothing looks promising, any suggestions or do I have to go to windows?

    I am looking for a spreadsheet app that I can create new spreadsheets. So far nothing looks promising, any suggestions or do I have to go to windows?

    Hi Tx Tar Heel,
    I've been using Office2HD: https://itunes.apple.com/us/app/office2-hd/id364361728?mt=8
    Its cheaper than Numbers and it also works for Word and PowerPoint files too. I like the Dropbox integration. I can start on my Office docs (Word, Excel, PowerPoint) in the office and then edit those files with Office2HD when I'm out of the office. Files saves right back to Dropbox so that when I get back to the office the files are already updated. Not bad for a $7.99 app!
    Hope this helps!
    ~Joe

  • How do you create new maps in Mail on iPad?

    How do you create new maps in Mail on iPad?
    In the iPad-manual they mention you can put messages in other mailboxes or maps (to free up the Inbox).
    But they don't mention how to create such maps.
    In the app itself I can't find a way to do it.
    thanks for all replies
    Kamiel

    Maybe you are confused by the fact I used the word 'maps' instead of 'folders' (my natural Ianguage is Dutch).
    For your question about the manual: on page 59 in the 'iPad 2 user guide' under 'organizing Email' they say you can move messages to a different mailbox or folder.

  • How do I create new folders in my mail?

    How do I create new folders to divide and save my mail into catergories?

    Hi Tina
    Two ways to do this:
    1 in Mail, go the tool bar at the top of the screen, select Mailbox, then select New Mailbox in the menu.
    2 in Mail, go the lefthand column, and at the bottom left you should see a plus sign and a cogwheel icon. Click on the plus sign and a new, untitled, mailbox will appear in the column above. Name this as you like.
    You can "nest" mailboxes inside other mailboxes (eg inside a box I called "personal" I have individual mailboxes for each of my family and friends).
    Then simply drag messages from your inbox to the appropriate mailbox in the lefthand column when you want to archive them.
    Hope this helps!

  • How do we create new folders?

    Hi folks,
    Just got a new Playbook and, contradicting all the bad press about it, it is actually very good. The question I have is: how do we create new folders? The only I can see are the "All", "Favorites", "Media" and "Games. Also, how do we sort by name the icons on the desktop? Thanks J. Rola

    Hi download Air browser from the App World. IT let's you make new folders, save documents and organize things efficiently. I just came across it last week by accident. Good luck.

  • How I can append new node in existing  XML file

    I've just begun learning DOM XML , so I'm currently at a very beginner level.
    I have an existing XML file that I would like to add an additional node to before saving it to another variable.
    how I can append new node in this file.
    now this code is overwrite new data over old data
    The code looks like this:
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import javax.xml.transform.Result;
    import javax.xml.transform.Source;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.TransformerFactoryConfigurationError;
    import javax.xml.transform.dom.DOMSource;
    import javax.xml.transform.stream.StreamResult;
    import org.w3c.dom.Attr;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    public class VerbXMLWriter
        static String EVerb3;
        static String englishTranslate3;
        public void VerbXMLWriter(String EVerb, String englishTranslate )
             EVerb3 = EVerb;
             englishTranslate3=englishTranslate;
        File xmlFile = new File("VerbDB.xml");
        DocumentBuilderFactory factory =  DocumentBuilderFactory.newInstance();
        try
         DocumentBuilder builder = factory.newDocumentBuilder();
         Document document = builder.newDocument();
        Element root = document.createElement("Verb");
         document.appendChild(root);
         Element verb = document.createElement(EVerb3);
         verb.setAttribute("EnglishTranslate",englishTranslate3);
         root.appendChild(verb);
         Source xmlSource = new DOMSource( document );
         Result result = new StreamResult( new FileOutputStream(xmlFile) );
        TransformerFactory transformerFactory = TransformerFactory.newInstance();
        Transformer transformer =
        transformerFactory.newTransformer();
        transformer.setOutputProperty( "indent", "yes" );
         transformer.transform( xmlSource, result );
      catch(TransformerFactoryConfigurationError factoryError )
        factoryError.printStackTrace();
       catch (ParserConfigurationException pc)
           pc.printStackTrace();
       catch (IOException io)
          io.printStackTrace();
       catch(Exception excep )
           excep.printStackTrace();
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <Verb>
    <Play EnglishTranslate="playing" />
    </Verb>Edited by: itb402 on Mar 9, 2008 6:05 AM

    in your code you are already appending new nodes to the root node. so what exactly is your problem? The following steps are usually taken for appending a new node:
    1. Read the XML document
    2. Build a DOM tree
    3. Navigate to the node under which you want to insert the new node
    4. Create a new node.
    5. Insert the new node to the node selected in point #3.
    ~Debopam

  • How do I create new photo albums in iphone? why isn't it organized like in the iPad?

    How do I create new photo albums in iphone? why isn't it organized like in the iPad?

    You can't create new albums on the iPad either. The user interface looks different, but the functionality is essentially the same.
    The route is to create new albums on the desktop, and then sync via iTunes.

  • How do I create new catagories?

    I just bouhgt a nano. How do I create new catagories for my songs? It seems to just have a few for me, and classical isn't 0ne of them...TY!!!!

    The iPods "categories" is managed inside of iTunes. Chances are you are looking at the default smart playlists that are inside of itunes.
    You can create new playlists/smart playlists by opening itunes and clicking the "+" button in the bottom left hand corner of the screen from there you want to add your music to it.
    ALSO you can click on a song or groups of songs (shift and select in the column) and right click on them and select "Get Info" and change the information there so that it has the category you are looking for.
    Hope this helps!
    GL!

  • How do you create new faces album in photos OS X?

    How do you create new faces album in photos OS X?

    Right-click on any IMAGE anywhere, then follow the Get Info instructions.
    You can also do it on the Faces screen. At the bottom of that screen you should see a Suggested Faces bar. Double-click on one of the unnamed faces and add the person's name. If it's a new face, it will be added to face circles collection.

  • How i can create client copy

    how i can create client copy .
         pls tell me step by step procedure to create client.
             and client copy.

    For client copy login to source client with t-code scc4 and create the new client. Provide the details for new clients.
    Create the new logical client for new client.
    check for the the profile parameter
    login/no_automatic_user_sapstar = 0
    login to destination client with sap* and p/w as pass.
    run t-code sccl for local client copy with sap_all.
    Kindly provide the points if issue solve.
    Regards,
    Rohit mehta

  • How do I create new folders in mail on IPad and IPhone for saving emails?

    How do I create new folders in mail on IPad and IPhone for saving emails?

    You can't do it on the iPad you would need to do it on your computer and the folder will be seen by your account on the iPad and iPhone only if they are IMAP and Exchange accounts. POP accounts are not supported for folders. 

Maybe you are looking for