About application component

hello everyone:
   When I execute the rsa6 and see the logs.The system display the title of message:Application component 0CRM_SALES of DataSource 0CRM_SALES_ACT_1 does not exist.and other message as follow:
Diagnosis
You tried to assign a DataSource to the application component 0CRM_SALES. This application component is, however, not entered in the RODSAPPL table as an application component.
System response
The DataSource is saved, but is not visible in BW under the node NODESNOTCONNECTED.
Procedure
You do not have the option yet to transfer the application component hierarchy from the Content.
You transfer the hierarchy with Business Content.
I do the hierachy also can not deal the question.pls give me some help
Regards&Thanks!
Zagory

Hi,
Go to transaction SBIW and under
> Business Content Datasources, execute the following
Transfer Application Component Hierarchy
It will transfer the application components hierarchy, should resolve the problem
Cheers
Anurag
....don't forget to assign points if it helps.

Similar Messages

  • Allocation of Info sources to Application Component Hierarchy

    Hi Friends,
    I have to allocate Info sources zo other nodes of application component hierarchy as they are allocated now.
    Is there a way to do this benath 'Drag and Drop' in RSA1 ?
    Or can someone tell me the name of the table where this relation is stored ?
    Thanks and regards
    Joe

    Hi,
    U just drag and drop the required ISs to the rquired application component hierarchy. I have no idea about the Table where it maintains the relation between the ISs and the application componet hierarchies.
    Hope this helps u....
    Regards
    Ramakrishna Kamurthy

  • HELP!! Application Component Export Failing!

    We're running 3.0.9 on Sun Solaris 5.8.
    There is an application component (Form On Table) that will not export.
    The oddest part is, while on a Windows platform (win2k, running IE 5.5, 6.0, NS4.5, 4.7 and 6), the form fails to completely display when attempting to edit the form. Several Javascript errors are present. Then the form is locked, and has to be manually unlocked through the portal.
    Under win2k, the application component will not export, either. I'll just get a "Unable to Display Page" error.
    Here's the weird part. Sitting at another Sun Solaris 5.8 box across the country, running Netscape, the form is editable. BUT, the form will NOT export. The export runs for awile, then an error returns "This document contains no data".
    Hence, no export.
    Since we're trying to migrate to the customer's hardware, this is presenting a VERY big problem.
    I would way, way rather export/import the form than create from scratch due to the large amounts of data field formatting (there's like 150 fields), large amounts of Javascript and PL/SQL in the form.
    So, any help in exporting this form would be GREATLY appreciated.
    Sorry for the length, but trying to be as descriptive as possible.
    Thanks,
    Ryan Stefani
    [email protected]

    Thanks Arun.
    We'll work on that.
    BUT, for some good news, the export from the Sun 5.8 box DOES work... I was watching the processes, and as soon as the rather large export starts, there's an Oracle process that soon ramps up to like 95% cpu usage. The web browser times out, but the process keeps going. About 2-3 minutes later, the process ends on its own.
    So, I exported a LOV just to get the SQL file number, and tried to get the export with one number less, and BINGO! A working export.
    We were also unable to export entire applications, and doing it that way works as well...just wait for the process to end, and bingo!
    Anyway, hope this helps someone else, and we'll look into that patch, too.
    Thanks alot,
    Ryan Stefani

  • To find application component of Program

    Hi all
    which table has the application component of the program name...
    i found one way that
    I/P                               Table              output
    obj_name                    TADIR     DEVCLASS
    (program name) 
    DEVCLASS                 TDEVC       COMPONENT
    FCTR_ID
    (TDEVC-COMPONENT)  DF14L     PS_POSID(Appl.Comp Name)
    I don't know whether it's correct way......
    Kindly suggest me about finding Application component name of the program name.
    Thanks In Advance.

    Dear Joe,
    I would appreciate if you could the procedure you were following. Were you trying to find it using a table entry?
    There are two ways I know depending on weather you know the package of the program. Application Component of a program is generally defined in the Package of that particular program.
    > One is from the Attribute of the Program
    >>Go to --> Attribute --> Package(Double Click) --> Application Component.
    > Second one is if you know the package.
    >> Open se21 --> Enter Package name --> you will get the "Application Component" in the Attribute tab.
    Best Regards,
    Rajesh
    Please reward points if found helpful.

  • Questions about application server architecture

    Hello guys,
    I have few questions about application server architecture�
    I have a task to build a server application which will do the following: Clients (special java clients) will connect to it and send some data for further processing on server side. Chunks of data will be relatively small but they will take a lot of time for processing (it is ok that it will be quite slow).
    Also server will run some sort of �database� where all clients� working data will be stored. So, in case a client loses its data he/she is always able to download it from the server.
    For me it seems, like server will consist of the following components:
    1. �Reception�. This part will be responsible for all client-communication procedures.
    2. �Data storage�. This part will simply store all clients� data and provide some API interface for clients through �reception� to manage it (add/get/delete and so on).
    3. �Processor�. Some sort of dummy-sophisticated module. It will take some input data from �data storage� when it receives order for this and process it. �Processor� will have two states: �busy� which means �processor� processing some data and �available� which means �processor� ready to process new data.
    4. �Manager�. This part will always check �data storage� for new data and �processor� for availability. When �processor� and new data are available �manager� will make an order for �processor� to take new data from �data storage� and process it.
    So, my question is the following: Which technology and approaches I should use to realize my plan?
    I think that I can make �reception� as a Session Bean, but I don�t know yet, what are the best for the rest, for example �manager� and �processor�. I was thinking about writing my own application server (and I can do it), but I would like to learn j2ee technologies, so I think it is a perfect chance for me (I read a lot about j2ee before I wrote this post, but all examples have only �account�-�bill�-�money transfer� I think it is quite far away from reality or I am doing something wrong ;-)!
    p.s. I am thinking about using JBoss as an Application Server. I tested it and wrote some tests. They work and run fast enough, so I like it. Moreover it has module architecture.
    Please, give me some advises and tips!
    Thank you in advance!

    1. �Reception�. This part will be responsible for all
    client-communication procedures.Session bean with remote interface.
    2. �Data storage�. This part will simply store all
    clients� data and provide some API interface for
    clients through �reception� to manage it
    (add/get/delete and so on).Session bean that will use entity beans or hibernate to work with persistant data.
    3. �Processor�. Some sort of dummy-sophisticated
    module.Use a message driven bean. Make Reception to enqueue a message when new data is available for processing. Processor will process the data and store the resut in database using Data Storage session bean.
    4. �Manager�. This part will always check �data
    storage� for new data and �processor� for
    availability. When �processor� and new data are
    available �manager� will make an order for
    �processor� to take new data from �data storage� and
    process it.It's redundand component, because application server will manage messages and processors.

  • JSP application component issue

    I have an existing documentation repository, accessible through java classes. I'd like to use the portal content management features (folders, shared editorial/publication rights) to manage these documents. Can JSPs (created as application components for the content area) take advantage of my existing java classes. Am I permitted to create the sort of application links of the type allowed in the pl/sql application components? Note: this is not a question about web providers, but JSP item in content area.. Thanks for any advice.
    GReg

    Hi Markus,
    This issue iam facing in ECC side. Unless untill i transport this application component hierarchy all my application components in ECC QA will be under a not defined nodes.
    So please suggest me the approach to resolve this issue.
    Regards,
    Prabhakar.

  • What is Application component & SCA import?

    In reference to adapter development, what is meant by application component and SCA import?
    thanks
    regards
    fariha

    In Adapter development ,refer the link
    http://help.sap.com/saphelp_nw70/helpdata/en/cb/f4bc3d42f46c33e10000000a11405a/frameset.htm
    In the procedure for obtaining a connection it says
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Procedure
    Obtaining a Connection
    To look up a ConnectionFactory, include the following code in the source of the <u>application component</u>
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Is it the same  application component as in the link
    http://help.sap.com/saphelp_nw70/helpdata/en/bc/e1a340fa432b54e10000000a1550b0/frameset.htm
    if yes then where i have to insert the  code , i.e where is that source about which it is talking?

  • Error: No valid application component hierarchy exists in RSA5

    Hi Gurus,
    We have recently installed SAP R/3 for BW. when i get in to RSA5 i am getting error message "no valid application component hierarchy exists" .  Do i need to do any settings here. When click enter later on, i can see all the data sources under new_hier_root.
    And under new_hier_root i have unassinged notes
    New_Hier_root -> unassigned notes -> application components.
    Thanks in Advance,
    Jameel

    Jameel,
    first we need to transfer application hierarchy.
    try this one SBIW>Business Content DS>Transfer Application Component Hierarchy or RSA9.
    Hope this help.
    Regards,
    Nagesh Ganisetti.

  • SAP R/3 application component issue

    Hi all,
    My issue: SAP R/3 application component hierarchy node in RSA6 got saved in $TMP package as local object. When iam transporting the request from Dev to QA this hierarchy is not getting transported and all the application components in ECC QA are assigned under not defined node as individual node.
    Not only this when i replicate the data sources in BI side in QA these data sources are replicated but come under unassigned nodes because of the missing main node.
    So can any body help me in removing this main node from the $TMP folder and save this in a transpotable package to transport that to QA ECC and the same to replicate in BI.
    Regards,
    Prabhakar.

    Hi Markus,
    This issue iam facing in ECC side. Unless untill i transport this application component hierarchy all my application components in ECC QA will be under a not defined nodes.
    So please suggest me the approach to resolve this issue.
    Regards,
    Prabhakar.

  • How do I grant non-logged in user access to application component?

    I want to make the customization page for a report available on
    our portal available to users without them having to log on to
    our portal. I thought I set up the access rights to the
    application component correctly, but the link takes them to the
    login screen instead of the customization page. Can anyone give
    me an idea of what I may have set wrong?

    Hi Greggor,
    You say they are still logged in after a restart?? if you open task manager and look under users are the session aside yours listed?
    Thanks,
    Adam

  • Can not create an Application Component on SAP R/3 system

    I have a source as SAP R/3 ( ECC 6.0 ) and Target as SAP BW 7.0
    a)Log on to SAP BW 7.0 and used  the “ID3CLNT400”  source system ,  by using  Modeling --
    > Source System  --  choose “Customizing Extractors”  from the context menu of the source system “ID3CLNT400”
    In the transaction  SBIW  on the SAP Source system , choose  the Business Information Warehouse -- > Post Processing of DataSources
    &#61550;     > Edit DataSources and Application Component Hierarchies.
    Choose the “IMG Activity “ Here , I am getting one warning.
    "NO Valid Application Component Exists"
    When I hit the continue button .
    Here when I create an Application Component and “SAVE”  the changes, I am getting the following error.
    Package "Z_Train" doesnt exists. Chose "Display Object " or "Cancel"
    Because of this , I couldn’t creat an Application component and also couldnot load any thing on the SAP BW side. Also , I am no way connected to the "Z_TRAIN" Package

    can u pls tell me how u solved it
    I am working on  Production system  when I go to rsa5 it displaying the msg
    No valid application component hierarchy exists
    Message no. R8053
    Diagnosis
    Currently no application component hierarchy ("APCO_MERGED", database table RODSAPPL and RODSAPPLT) exists in the system. This is required in BW so that the DataSources can be displayed correctly in the source system tree.
    Procedure
    Copy the application component hierarchy from the Content using transaction RSA9.
    In development system I went to RSA9 & transferred the application componet then its asks or pkg name I have given the pkg  name also before use the datasrcs , I have transported the same thing to production before transporting the datasrcs but in production the application component herarachy did not get transported I think that why its giving the msg No valid application component hierarchy exists but my datasrcs got transported ,pls suggest me what has to be done
    Should I import the same request in to production again
    Or shall I run rsa9 again & transfer the application component hierarchy again & transport it to production id I do this will already transported datarscs have any effect in production

  • Application component does not exist in source system

    hello all,
    I was check the datasources in RSA5 but i cant see any application component hierarchy ...
    all i can see is unassigned nodes...and all the datasources are under these 'unassigned nodes'
    Could anybody tell me why its like this and what we can do to fix it...
    Thanks,
    Kani

    Run RSA9 to transfer it, and then you should see it in RSA5.

  • Change_connection does not update entire info about application

    The procedure change_connection does not update the entire info of the about application window. When I change my connection the connect string in the about application window still shows the old connection string.
    I added the line g_connect_string := get_application_property(CONNECT_STRING);
    to the procedure change_connection between the lines
    -- Reset user preference settings for new user connection
    qms$user_prefs.init;
    and the lines:
    -- The menu must be replaced because the new user might have other security privileges
    Now the connect string will change in the about window.

    Mark,
    This has been implemented in Headstart PATCH6530_for_6i and PATCH6530_for_9i.
    Regards,
    Marcel

  • Listing logical database for a given application component

    hi
    which function module will return the logical database for a given application component from the SAP hierarchy.
    Example:
    Input- application component- LO
    output- MSM, etc.,
    Thank you.
    your time and answers will be compensated with points.

    Why dont you use two selects to get the required information#
    TAble <b>APADEVC</b>
    Here you will get the link from Application Component to Package
    Application Class - Packet
    Package           - Devclass
    Then if you go into Table <b>TADIR</b>
    and give the following input
    PGMID = R3TR
    OBJECT = LDBA
    DEVCLASS = package name
    you will get all the Logical Databases for that Application Component.
    Here obj_name will be the Name of the LDB's
    Message was edited by:
            Dominic Pappaly

  • How to create application component in SAP R/3

    Hi gurus,
                 I have created one custom defined master data in SAP R/3.I need to replicate it in BW.So I need to create one application component by own.is it possible to create custom application component instead of assigning it to SAP R/3 application component?.
    Thanks & Regards,
    Bharath

    To my knowledge you cannot create an application component of your own. Assign it to an existing appropriate app component.

Maybe you are looking for

  • Running multiple copies of an App on one NetWeaver server

    Hi there,    (V12 with ERP/ECC transactions) We are setting up our landscapes/environments for development, beta testing, final QA and production.  I am wondering if we can combine development and beta testing on the same system.  The obvious concern

  • Less than 3 yr old iMac, Intel duo core powering out for no apparent reason

    I'm fairly new to Apple and have had no problems with my iMac until recently. I upgraded to Leopard when it came out and it's been smooth sailing until now. Recently, whether I'm doing mail, talking on Skype, working with photos in iPhoto, out of the

  • 10.4.6 Airport Problem

    I did the 10.4.6 update and have had problems with wireless. Every time I wake my laptop, I have to go to the Airport Icon in at top of the screen and reselect my network. It won't hold it. I went to Internet Connect and reselected "Join Specific Net

  • Error While Saving Journal

    Hi experts, I've opened journal template and have entered the journal entries.  But when I try to save those entries it is giving an error message "Save Journal: an Error occurred".  I'm not able to diagnose the reason, can any of you help me to come

  • Printing Spreadsheet

    Would someone please tell me how I can print the grid lines and row numbers in a simple spreadsheet? I'm totally new to Numbers and a bit lost. Thanks.