How to make Hierarchy view  fixed in marketing plan .

Hi Gurus,
I have a requirement to make the Hierarchy view  as fixed ie To remove the toggel functionality .
Component MPL_MAIN .
for which
I removed the toggel button and make the view visible all the times .
I have removed the button by commenting the code .
but I am not sure how can I make the view always visible ?
I can understand that i have to use the same code as the toggel event 'ONTOGGLEHIERARCHY'is using ,
but where should I be putting that code so that it takes the  Hierarchy view at the time of initial loading .
Thanks ,
Naval Bhatt.

Hi Naval,
you can try putting this into the "DO_PREPARE_OUTPUT" Method of the Overview-View.
Regards
Dennis

Similar Messages

  • How to make Scroll viewer zoom disable

    how to make Scroll viewer zoom disable in windows store app

    Hi Imtiyazk,
    Thanks for sharing the solution, should help others have the same issue.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to make frieght charges fixed irrespective of the qty

    hello sap gurus
    how to make frieght charges fixed irrespective of the qty
    my client

    Hi Deepak,
    This is not possible in the standard.
    Condition types (with calculation type 'B' "Fixed amount", FRB1 for example) are always posted dependent on the quantity in SAP standard functionality.
    The calculation is made as follows:
    FRB1 (Fixed amount) = (Condition amount * GR Quantity) / PO Quantity
    The problem here is that it is unclear how the posting logic should work especially if you have partial goods receipts or return deliveries.
    For example, if you order 10 pieces with 10 GRs of 1 piece each:
    should the system now post this condition with the full amount with every GR?
    Should it post it only with the first GR?
    And how should it be when you create a document to cancel a GR?
    So the system always posts with regards to the quantity.
    Best regards,
    Esther.

  • How to make new item show in ASCP Plan workbench.

    Item ATT.BVL3AHY is a new item without any demand. At item master, it is set as Planned so it is collected by ASCP. The item can be found in msc.msc_system_items with Plan_id -1. Plan id -1 corresponds to Collection. Planner needs to manuallty add planned order for this item at ASCP workbench of plan WIRELINE (PLAN_ID 3002) as attached but as the item cannot be found in WIRELINE plan, planner cannot add it. Please let me know how to make this item show in WIRELINE Plan workbench.

    Run this query:
    select mrp_planning_code from msc_system_items where item_name like '<Item_Name>' and organization_id = <Org id> and plan_id = -1
    If this returns 7 you dont need to run any collections.
    If this returns other than 7 then,
    create a simulation set under Item Attributes Mass Maintenance and then update the attribute MRP Planning method for this item to MRP/MPP Planning. Assign Simulation set to plan name and then rerun the plan. It should work.
    If you are still facing an issue, then raise an SR with Oracle.

  • How to make Help view well on both laptops and desktops

    Hi -- I'm trying to learn RoboHelp 7 and just created my first WebHelp project. I want to show it to a friend, but don't have a server I can publish it to, so I copied all the files onto my flash drive and put it on my laptop. It all works fine, which is a relief -- however, the custom colors are way off, and some of the screenshots are now too big, so the user would have to scroll (which can be annoying). I created it on my desktop and have been looking at it on a larger monitor (1680x1050), but the laptop is old (1024x768). The thing is, a lot of people might have to view it on 800x600.
    I couldn't find any information in RH's Help about how I should have set it up so that it views well on different systems. I'm hoping someone could please advise me as to what I should have done, and if there's anything I can do now to fix it, or point me to some information. I used Arial 10 pt for the text, and now it looks 12 pt. Should I have made it 8 pt? Is there a rule for how large an image should be to be viewed on a laptop and a desktop?
    One last thing, it's too large to put on a CD, so is does anyone know how to make this into an executable?
    Thanks in advance for any help you can give!
    Daryl

    Hi Daryl
    I use an eBook compiler to convert WebHelp to an executable file. You might investigate eBook compilers for that bit. However, I'm not sure how that would help you since a compiler will do little more than to take a swarm of WebHelp files and store them in a wrapper to create a single file. Generally you will end up with something that although it exists as a single file, is larger than what is inside.
    Are you SURE it's too big for CD? CD will hold 650 megs (700 if you buy the extended types).
    On the screen size issue WebHelp itself should adapt fine. Probably it's the images you are concerned with. And the general rule of thumb is to capture images at a reasonable size to begin with. Never EVER just insert a big ole image into RoboHelp and grab the sizing handle to make it smaller. It will still consume a larger amount of space and the quality will suffer badly. So the best approach is to copy the image at a reasonable size to begin with. Something that may fit nicely in the Topic Pane area as it is presented in the space provided by the lowest common denominator. In your case I believe you said that many are still at 800x600.
    Your 10 point text will still be 10 points at a smaller resolution. It will just look a bit different.
    Hopefully this helps... Rick
    Click here for Adobe Authorized Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • How to make materialized view fast refresh parallel

    We have Oracle 11.2.0.1 on Redhat 5.2. We use a dozen of fast refresh materialized views in our application.
    From time to time MV refresh takes longer time than the refresh interval.
    One of way to improve performance of MV refresh is to make the refresh parallel, e.g. http://www.dba-oracle.com/t_materialized_views_refreshing_performance.htm
    - Use parallel DML - Oracle author Michael Armstrong Smith notes "I've done parallel materialized view refreshing
    on tables recently and improved the load times considerably. Rather than having one load which took 2 hours,
    I run 4 parallel loads, one for each partition. The length of time for the whole process is now determined by
    how long the biggest partition takes to load. In my case, this is 40 minutes, with two 30 minute loads and one
    20 minute load.  Overall I am saving 1 hour 20 minutes. I can now add further partitions and do the same thing.
    My only limitation is the parallel loads because I don't have unlimited processing power.
    {code} My master tables are not partitioned, but think parallel will still better than non-parallel.
    Now the question, how to make refresh parallel. According to the paragraph cited above, Use parallel DML appears doing the job. Can someone  confirm that.
    We use {code}
    alter materialied view MV_OFFENSE parallel REFRESH FAST start with sysdate next sysdate+ 1/24;
    {code}to schedule refresh. Does the parallel clause here parallels query the MV or refresh the MV?
    Any other way to make MV refresh parallel?
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Doc http://download.oracle.com/docs/cd/E11882_01/server.112/e16579/refresh.htm#i1006319 says:
    >
    In a data warehousing environment, assuming that the materialized view has a parallel clause, the following sequence of steps is recommended:
    1.
    Bulk load into the fact table
    2.
    Enable parallel DML
    3.
    An ALTER SESSION ENABLE PARALLEL DML statement
    4.
    Refresh the materialized view

  • Please Suggest, How to make this view efficient ?

    Hi there,
    Could you please suggest me,how to make the following VIEW (QUERY) efficient regarding performance point of view.
    CREATE OR REPLACE VIEW XXX_TRX_TO_NUM_V
    (ROW_NUM, ORIG_TRX_NUM, TRX_NUMBER, TRX_DATE, PURCHASE_ORDER,INTERFACE_HEADER_ATTRIBUTE6, INTERFACE_HEADER_ATTRIBUTE1, INTERFACE_HEADER_ATTRIBUTE5, BILL_TO_CONTACT_ID, REMIT_TO_ADDRESS_ID, BILL_TO_CUSTOMER_ID, BILL_TO_SITE_USE_ID, ORG_ID)
    AS
    Select rownum row_num,trx_number orig_trx_num,to_number(a.trx_number) trx_number,a.trx_date,a.purchase_order,a.interface_header_attribute1
    ,a.interface_header_attribute6,a.interface_header_attribute5,a.bill_to_contact_id
    ,a.remit_to_address_id,a.bill_to_customer_id,a.bill_to_site_use_id,a.org_id
    from ra_customer_trx_all a
    where a.trx_number is not null
    and a.trx_number not in
    (select trx_number
    from
    (select rownum,/*+ ALL_ROWS ,16 */ r.trx_number,ltrim(rtrim(translate(/*+ ALL_ROWS ,16 */ r.TRX_number,'0123456789',' '), ' ' ), ' ' ) tx
    from ra_customer_trx_all r)
    where tx is not null)
    order by trx_number
    Thanks in Advance !
    Shahzad

    I think you have the hints in the wrong place - as far as I was aware, the hint had to come straight after the SELECT/UPDATE/INSERT/DELETE key word - but I could be wrong as I've never really tried it elsewhere. Also, unless the optimiser mode for your database is set to FIRST_ROWS or RULE (god help you!:), ALL_ROWS is the default behaviour.
    Basically what you are trying to say is bring me back all ra_customer_trx_all rows that have purely numeric trx_numbers right?
    Why, if you need to be able to represent trx_number as a number, do you have non-numeric data in there???? That's a bit dodgy isn't it?
    Anyway, what about:
    CREATE TABLE dt_test_num (id varchar2(10))
    insert
    into
         dt_test_num
    select
         chr(47 + rownum)
    from
         all_tables
    where
         rownum <= 20
    select
         to_number(id),
         id
    from
         dt_test_num
    where
         translate(id,'0123456789',' ') IS NULL
    update
         dt_test_num
    set
         id=id||chr(67-rownum)
    select
    FROM
         dt_test_num
    select
         to_number(id),
         id
    from
         dt_test_num
    where
         translate(id,'0123456789',' ') IS NULL
    /Also, you are selecting rownum and aliasing it. Why? rownum will be assigned before the sort.
    HTH
    David
    Message was edited by:
    david_tyler
    Hello
    Slight correction to the where clause. Art first I thought you didn't need the trim on there, but that was just down to the number sequence in translate...
    SQL> select nvl(translate('1A','1234567890',''),'NULL') from dual
      2  /
    NVL(
    NULL
    SQL> select nvl(translate('1A','1234567890',' '),'NULL') from dual
      2  /
    NV
    A
    SQL> select nvl(translate('1','1234567890',' '),'NULL') from dual
      2  /
    N
    SQL> select nvl(translate('2','1234567890',' '),'NULL') from dual
      2  /
    NVL(
    NULL
    SQL> select nvl(translate('2','0123456789',' '),'NULL') from dual
      2  /
    NVL(
    NULL
    SQL> select nvl(translate('1','0123456789',' '),'NULL') from dual
      2  /
    NVL(
    NULL
    SQL> select nvl(translate('0','0123456789',' '),'NULL') from dual
      2  /
    N
    SQL> select nvl(TRIM(translate('0','0123456789',' ')),'NULL') from dual
      2  /
    NVL(
    NULL
    SQL> select nvl(TRIM(translate('1','0123456789',' ')),'NULL') from dual
      2  /
    NVL(
    NULLTranslate still confuses me :-(

  • How to make a view created using enhancement framework as Interface View

    Dear Experts.
    I Created A  new View and window  by using Enhancement Framework for a standard webdynpro comp. Now i want to use the same window as a  UIBB in FPM , since in window properties interface view check box is unchecked it's not allowing me to use a UIBB in FPM.
    Kindly answer for the following.
    1) Is there any way to make a view a interface ( whcih is by default in nature but while creating from Enhancement framework behaivng Strangly).
    2) If there is no way then how to use enhanced (additional View Created  in Standard WDA comp) further like in FPM ( UIBB ).
    thanks in Advance.
    Best Regards,
    Kranthikumar Palle

    >
    kranthi9121 wrote:
    > Dear Experts.
    >
    > I Created A  new View and window  by using Enhancement Framework for a standard webdynpro comp. Now i want to use the same window as a  UIBB in FPM , since in window properties interface view check box is unchecked it's not allowing me to use a UIBB in FPM.
    >
    > Kindly answer for the following.
    >
    > 1) Is there any way to make a view a interface ( whcih is by default in nature but while creating from Enhancement framework behaivng Strangly).
    >
    > 2) If there is no way then how to use enhanced (additional View Created  in Standard WDA comp) further like in FPM ( UIBB ).
    >
    >
    > thanks in Advance.
    >
    > Best Regards,
    > Kranthikumar Palle
    Hi,
    Please see [https://cw.sdn.sap.com/cw/docs/DOC-21546|https://cw.sdn.sap.com/cw/docs/DOC-21546]
    windows created through enhancement are local to component and hence they are not visible outside.
    You need to find other way to provide your interface view to UIBB.

  • How to make list view the default in finder?

    Is there a way to make "List view" be the default view for all folders opened?
    I know that with a window open, you can hit CMD-1, 2, 3 or 4 for icon, list, column, or cover view, but I want "list view" to be the default.
    I know that in some windows I can set the list view the way I want it and then close the folder, knowing the next time it opens, it will remember it, but that doesn't seem to work for encrypted sparse-bundle drives. They ALWAYS come up in icon view, regardless of the previous view it was in.
    So hopefully, setting the overall default will help me solve this problem.
    TIA for any advice/tips!
    Steve

    I could swear that I've done this before, in exactly this way, and it worked fine on my internal HD, but not on my encrypted sparse-bundles. But now it's working.
    Sorry to have created chaff in the group. I should have tried again just before I posted....
    Steve

  • How to make a perspective fixed???

    hi,
    i am trying to make my perspective fixed using the setfixed="true" method in Eclipse but its not working for me.i m using eclipse 3.1 version. is their any other method of making a perspective fixed.plz reply soon.

    Not sure why you decided to ask this question in a Sun forum, much less in a "Java Event Handling" forum. This seems to be some issue regarding layout in SWT, which is the toolkit eclipse uses. Your chances of getting an answer will improve if you post this in an SWT forum. I know there is one on javaranch.

  • Eclipse - how to make a perspective fixed???

    hi,
    i am trying to make my perspective fixed using the setfixed="true" method in Eclipse but its not working for me.i m using eclipse 3.1 version. is their any other method of making a perspective fixed.plz reply soon.

    Not sure why you decided to ask this question in a Sun forum, much less in a "Java Event Handling" forum. This seems to be some issue regarding layout in SWT, which is the toolkit eclipse uses. Your chances of getting an answer will improve if you post this in an SWT forum. I know there is one on javaranch.

  • How to make user view available in an workitem form

    Hi,
    How to get hold of the user view in an workitem form ?
    I want to display some of the user information in the workitem form for which I require the user view.
    Thanks.
    - mangb

    If you have a userview in the workflow, you should be able to access it in the manual action (Workitem form).
    Just make sure the form base-context is taken into consideration while referencing the workflow variables (userview in your case).
    Adi.

  • How to make the view larger.

    The older I get the smaller the text on the screen becomes. How can I view Mail in a larger format similar to what I'm able to do in say Safari for instance?
    Thank you.

    Thank you for the quick response.
    Your suggestion was quite useful although the page following the mouse is a bit vertigo-inducing. If there is no other way then I think I should make a suggestion to Apple to give Mail that same functionality available in Safari 4.

  • How to make tree view in Crystal Reports

    Hi,
    We are using Crystal Reports XI R2.
    In ASP.Net, we are using tree view and same that we need display in Crystal Reports for reporting purpose.
    We have thee levels of records.
    I know the way making group by and sub group by to show in hierarchy level.
    How to achieve exact tree view in Crystal Reports as in ASP.Net
    Please give me some suggestions.
    Thanks and regards,
    Manjunath N. Jogin

    Create the report first.

  • How to make column view default?

    This has been bugging me for a long time, but it's such a little thing that I've never bothered to investigate before.
    I am about to give my old G4 Powerbook to my father who is still using OS9, so the change to OSX will be quite an adjustment for him. He has always had trouble dealing with folders and the hierarchy so when I set the machine up for him, I want things to be as consistent as possible and I think that using column view in Finder windows will help him to see where exactly his documents are stored.
    Here is where the problem lies. Whenever I create a new folder and open it's window, I am presented with icon view even though I have "Open new windows in column view" selected in my finder prefs.
    How the heck do I get all windows to always open in column view?? This seems so basic I'm embarrassed to even be asking the question!
    Thanks in advance
    Marion

    I tried the above, and it worked in Leopard but not in Tiger. In fact in Leopard it doesn't have to be the root HD - if you open any folder, set its view the way you want and then close it, that sets up a "global" view style. All subsequently opened folders will have that same global view unless you override it, which you can do for an individual folder by checking the "Always open in XXX view" box in the View Options for that particular folder.
    I don't think there is a way to set up such a "global default" view directly in Tiger. I think that the general Finder preference for "Open new windows in column view" doesn't mean "all" windows - it means just the "new" window that is generated by command-N (or Finder>File menu>New Finder Window).
    I found an interesting post that describes using Automator in Tiger to go through every existing folder in the home directory, setting each folder's window to column view - see:
    *10.4- Change all Finder folders to identical views - Mac OS X Hints*
    http://www.macosxhints.com/article.php?story=20050502101913508
    I don't know how well this works or how long it takes.

Maybe you are looking for