How to view lifecycle for component usage

Greetings-
I have declared use of one component to another in the diagram view.  I initially set the lifecycle to "CreateOnDemand" using the "New Component Usage" wizard but now I'd like to change this to "Manual".  However, I don't see the lifecycle when I view the properties of the referenced Component in the diagram view.  How do I find/change this?

Hi,
In WebDynproExplorer expand the "UsedComponents" node under your component .
Double click on the usedComponent and you can change the lifecycle property.
Regards, Anilkumar

Similar Messages

  • Using only 1 view from a component ( usage )

    hi experts..
    I have a component C1 with 7 views...
    I have another componet C2 in ehich i want to use only 1 view of the component C1 rather than the entire component...
    How can i do that...
    jagruti

    Hi again.
    can u make it more simpler sascha..
    In the component controlelr of C1 create en event
    (mark as interface).
    Steps below r not clear.....
    Then in the actíon handler method of C1 fire this
    event.
    The action handler method assigned to the back button in the view you want to use in C2. Here you can use the wizzard to fire the event in the component controller. There should be a fire_... method in the component controller now.
    In the controller of view in C2 which contains the
    ViewUiContainerElement create an event handler method
    for the event of C1. In this handler you fire an
    outbound of the view which navigates to another view
    in C2.
    this is described in the above mention thread. In C2 you created a viuew with the ViewUiContainerElement which embedds the view with the back button of C1.
    Go to the attrib utes tab of this view and add the usage of C1 here.
    Then go to the methods tab of this view and create a method handleBackEvent and choose event handler. In the event columen make a F4 and select the event of the component usage C1. Hit enter.
    Create an outbound plug in this view which should be use to navigate to the view in C2 you want. Then go to the event handler method just created and fire the outbound plug.
    Do not forget to connect the outbound to the inbound of the view you want to navigate to.
    sorry for bugging u..
    No prob.
    jagruti..
    Cheers,
    Sascha
    Message was edited by:
            Sascha Dingeldey

  • Costing variant , how to config rounding for component quants ?

    Hello everyone ,
    i am new to CO-PC
    my user want to change rounding for component quants.
    Current setting is u2018Round up with Nondimensional units of Measureu2019.
    This affects too high loss in standard product cost due to rounding up.
    For instance, 24 pieces of product are packed in one shipping carton.
    Based on standard cost calculation per 100 pieces,
    shipping carton usage is computed as roundup of (100/24) which is 5 pieces.
    Once in the actual production,  production lot size is 10,000 pcs.
    Target shipping carton usage would be automatically calculated as (5*24,000/100) = 1,200 pcs
    whereas in the reality, 1,000 shipping carton should be used (24,000/24).
    As a result, material usage variance is shown too high due to rounding up.
    you can see detail in below website (there is only picture in website)
    [http://picturepush.com/public/4467052]
    thank you in advance.

    Hi
    I dont think this behaviour can be changed....
    There is a workaround though, in acordance with SAP recommendations
    Increase your costing lot size to 10,000 or 1000 or as much as reasonably possible... Also, increase your Price Unit and keep it same as Costing Lot Size....
    For Existing Material Masters: Go to T code MM17 and change MARC-LOSGR (Costing Lot Size) and MBEW-PEINH (Price Unit)....You can change in mass mode
    For New Material Masters:  Using BADI MATERIAL_REFERENCE, you can default the costing lot size and price unit as 10000 or 1000 as desired
    Regards
    Ajay M

  • I want weblog or tutorial for component usage in abap web dynpro

    Hi team,
    I want to know how component usage works in abap web dynpro.so can you please help me with providing a tutorial and step by step to use component in it.
    Thanks,
    Mainak

    Hi Mainak.
    In https://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/webcontent/uuid/fed073e5-0901-0010-4eb4-c9882aac7b11">tutorial [original link is broken] [original link is broken]
    Hope this helps.
    Cheers,
    Sascha

  • How to view the items call usage in online bill?

    How do I view the items call usage in my latest or previous on line bill.
    I only can view them in Recent Usage currently. But I can't view detailed call in previous bill online.

    Log into your account at BT.com.
    Select the relevent account.
    Click on billing.
    Click on the bill you want to view.
    Click on usage charges.
    Click on the type of calls you want to view or click on total.
    and there you have it.
    Click next at the bottom of the page to view more calls if there is more than one page full.
    You can also download the usage as csv file to open in excel.
    Hope that helps.

  • How to view data for MD05 before current date

    Hi SAP Gurus!
    We need to check what we entered for the past weeks forecasts. We currently use MD05 to view that.
    Right now, we are currently in week 47 now and would like to view data for weeks 40-46. For some reason SAP is only giving us week 47 onwards. Is there another report that can give us these values?
    Hope to hear from you soon!
    Thanks in advance!
    PJ

    Dear,
    You can get this report by using below FM
    MD04 Details - MD_STOCK_REQUIREMENTS_LIST_API
    MD05 Details - BAPI_MATERIAL_MRP_LIST
    or you may pls execute transaction MD73.
    Pls select option "3 :History Planned ind reqmnts " in the display options and execute the report.
    Regards,
    R.Brahmankar

  • How to view Outlook for Mac .olm file?

    I am getting rid of MacBook Pro (OS X 10.9.3) where I used Outlook for Mac.
    I exported mail, contacts, calendar, tasks, and notes into an .olm file.
    How can I view this .olm file on my new Mac Air (OS X 10.9.3) where I have no Widows applications?
    I am not keen on importing this .olm data into for instance Apple Mail. I just want to be able to view/search the file for contacts or emails.

    Hello
    I don't have Outlook 2011 but only guess here.
    Generally speaking, AppleScript's "whose" filter is very limited and does not support list containment test. So perhaps you'd have to resort to something like the following script, which actually scans the events for test.
    tell application "Microsoft Outlook"
        my events_with_categories({category "Conference"})
    end tell
    on events_with_categories(cats)
            list cats : list of categories to be matched
            return list : list of calendar events whose categories contain every item of cats
        script o
            property ee : {}
            property cc : {}
            tell application "Microsoft Outlook"
                set ee to calendar events
                repeat with e in my ee
                    set e to e's contents
                    set cc to e's categories
                    set _match to true
                    repeat with c in cats
                        set c to c's contents
                        if c is not in my cc then
                            set _match to false
                            exit repeat
                        end if
                    end repeat
                    if _match then set end of my ee to e
                end repeat
                return my ee's contents
            end tell
        end script
        tell o to run
    end events_with_categories
    Notes.
    * Script is not tested.
    * IF this works but is too slow, we may try to speed it up by retrieving categories of events (list of lists) in one statement, by which we can dramatically reduce the total number of Apple Events to send.
    Good luck,
    H

  • How to view iPad data plan usage history?

    Is there a way to view AT&T's Data Plan usage by month?
    All that I can find is what is available on the iPad Settings in Cellular plan. I don't find a web site login or any other way to see what I've used each month.
    Thanks for any info.

  • How to view payload for Successful instances in ESB console ?

    I have a situation where I need to view the payload data for successful esb instances. Only for FAULTED/ERRORED
    instances, the payload browser is available.
    Can I change any parameters/settings to enable this for successful service calls?
    First, Will it be persisted in database? IF Yes, i could at-least browse the particular table to locate a particular request !
    Please share your experiences on this. Awaiting interesting ideas from you...
    -Vignesh

    @User: 805993      
    Thank you very much for sharing the tip. I don't know how to use the ESBLoggingInterceptor.
    I will read more using it and share the details here so that it will benefit others.
    Thank you.
    Vignesh.

  • How to view metrics for JVM on the database side

    I am using lob in a stored procedure. I understand that this uses the JVM.
    I would like to know how to easily view the JVM metrics.
    Thanks,
    Charles Li

    I am running a stored procedure that uses getXML. I would like to know how much memory its using up. I was told to increase the java pool, but it did not help with large query of getXML. What should I monitor for getXML?
    Thanks.

  • How to view SQL for a materialized view in SQL Developer (Oracle 11g R2)

    Good Morning,
    I am new to SQL Developer 3.1.07 and just installed it on a Windows 7 PC yesterday.
    There's a materialized view for which I need to view (and eventually update) the SQL. The mat'lized view is in another schema, but my Oracle user does have access to the schema and to this particular mat'lized view. My user also has SELECT, INSERT, UPDATE, DELETE, DEBUG, and ALTER permissions. When I select (click on) the matl'ized view in the object tree on the left, a multi-tab window opens with information in the Columns, Indexes, Grants, Dependencies and Details tabs, but the SQL pane is blank. I don't know if there's some other GRANT that I need in Oracle, or if there's something else I need to do in SQL Developer to see the matl'ized view SQL.
    Thanks
    Bob Gardner
    [email protected]

    1007420 wrote:
    There's a materialized view for which I need to view (and eventually update) the SQL. The mat'lized view is in another schema, but my Oracle user does have access to the schema and to this particular mat'lized view. My user also has SELECT, INSERT, UPDATE, DELETE, DEBUG, and ALTER permissions. When I select (click on) the matl'ized view in the object tree on the left, a multi-tab window opens with information in the Columns, Indexes, Grants, Dependencies and Details tabs, but the SQL pane is blank. I don't know if there's some other GRANT that I need in Oracle, or if there's something else I need to do in SQL Developer to see the matl'ized view SQL.SQL*Developer can be tricky regarding what it shows for other schemas. I'm not sure what privileges you might need besides the one you listed except RESOURCE on the MV, or maybe CREATE ANY MATERIALIZED VIEW.
    Can you use DBMS_METADATA.GET_DDL to get the data you want (may/may not work due to privileges)?

  • Passing select options for component usage

    Hi,
       I have a working component that has a selection screen with three select options on.
    I want to use this component from a new component (as a drill down from an ALV list in the new component).
    Anyone know of a sample in SAP or a blog anywhere that provides a sample of how to do this?
    Cheers,
    Ross

    Hi,
    you can refer http://help.sap.com/saphelp_nw70ehp1/helpdata/en/a7/1d8b412bb5b35fe10000000a1550b0/frameset.htm
    and http://www.****************/Tutorials/WebDynproABAP/Reusability/demo.htm
    Thanks,
    Chandra

  • How to view limits for a given process

    In linux, I can do the following:
    ps -ef | grep <some process> <some user> 4847 1864 0 Oct 13 ? 28:45 <some program>
    Then I can find out what limits are applied by viewing the following file:
    cat /proc/4847/limits
    Is there a way to do the same in Solaris 10?

    Hi,
    the command you're looking for is 'plimit', of course, you need to have enough permission on the target process; please check the relevant man page:
    Synopsis - man pages section 1: User Commands
    HTH,
    marco
    P.S.: if that answers your question, please mark the thread as 'answered' ;-)

  • How to see stats for filespace usage?

    Hi.
    Bit of a newb to grid.
    Suppose we have a partiion, its called /data. I would like to see how this directory has been growing the last 3 months.
    Today I found a way to see how much space has been available on that directory. It gives us a good idea of how much space has been, well, available for the past x amount of months.
    But I would like to see how that partition has been growing. I would like to forcast that in the next 3 months it will grow by this much, based on how it has grown over the last 3 months.
    Does this make sense? Does anyone know how I can work on this?
    Many thanks!
    DA

    Thanks again. This is a production environment and I am loath to go anywhere near a script that might slow them down.
    I am dealing with this: I need to make recoemmendation on how much more space we will need to allocate to the given filesystem for the next year so I need to be looking at trends...I think (thanks to a colleague) that I may have cracked it:
    looking at specific mountpoint (over 8 months, or a year or whatever)
    High Value = 24
    Last known value = 9
    So in this time perid the mopunt point has dropped 15%. Lets say this was in a year, so we check out the size of the /data mountpoint which is 20G. So this way we can recommend that we should increase it by 30% (15 for last year and 15 for the next year all things remaining equal which yes i know they never do but hey).
    So 30% of 20G is, erm, over 6 but less than 7G to recommend that we increase the disk space by.
    Does this make sense?
    DA

  • How to view buffer for updates

    Hi,
    Once I have updated the planning buffer, how would I review this to see if the update has worked? Is the planning buffer comprised of tables? Please advise.
    Thanks,
    RT

    Hello RT,
    the planning buffer is in memory and can't be viewed directly. Save the data and you see the results in transaction LISTCUBE or a query.
    Regards,
    Marc
    SAP NetWeaver RIG

Maybe you are looking for

  • Wide report, no printer

    Crystal Reports XI Hi, I want to create a wide report for export to Excel. I don't want to print a paper copy. How can I specify a wide "page"? If I select a printer I am limited by paper size that it supports (I've got an A3 printer but even landsca

  • Regarding FM SO_NEW_DOCUMENT_ATT_SEND_API1

    Hi all, Currently i am using the following code. But still mails are not going to receipient. Can anybody suggest me what is going wrong with code.   DATA:    tab_lines TYPE i,    docdata LIKE sodocchgi1                            ,    objpack LIKE s

  • Execution timing LV4

    Hi I am having problems with execution timing of my main vi. Details: Win2000 Labview 4.01 The problem lies in the execution of a for loop and the use of a AI multipoint vi for obtaining 2 waveforms. The analog input and the first structure within th

  • Planned Order of type PE

    Dear all, There are materials for which the REM is activated & work scheduling view is also maintained. When we create a Planned Order , order is created with PE type. When we set the conversion indicator manually in Planned Order , it is not getting

  • ESS: DropDown diappears after fraction of seconds

    Hi Experts, We are facing a strange issue in ESS. Our client is using EP 5.0 and internet explorer version 6.0. In few of the ESS applications when users click on the dropdown button, the dropdown list appears for a fraction of second and then disapp