Ticking down to the lower level if thats empty in ALV

location     level
aaa          1
(aaa)          2
ccc          3
(aaa)          3
bbb          2
(bbb)          3
ddd          3
my requirement is
the value of the field in location should tickle down to the next immmediate lower level if the lower level is empty.as i have explained it with brackets.the number of levels are not known(can be 3 or 10).as anyone came across this before.if someone has any algorithm or solution to this please kindly forward it to me.
one solution that i though was creating a variable dynamically with that of the level, but creating a variable dynamically is not possible it seems in ABAP...
so kindly people out there help me if u can....
thanks heaps in advance

It depends Upon the level of data u have ? but u can do it thru SAP.
So first thing what i do is
get the data for A ,B,C .
if itab_a[] is not initail.
perform display_alv.
elseif.
perform display_alv "with itab_b.
endif.
Regards
Prabhu

Similar Messages

  • How to test the low level duration time ?

    see attached vi, i want to test the low level duration time, how to do that ? thanks for help !
    Attachments:
    time test.vi ‏68 KB

    Hi ateprojec…,
    your vi is not executable for me! To measure the time you can use the "Tick Count (ms)" function.
    [edit] ok, i think it´s not the time you want. Can you explain a little bit about what you mean? [/edit]
    Hope it helps.
    Mike
    Message Edited by MikeS81 on 06-17-2008 09:13 AM
    Attachments:
    Unbenannt1.PNG ‏8 KB

  • Repeating the values for the lower levels

    Hi friends,
    I have an issue regarding OBIEE using the cubes as database?
    We have a value set at the year level as 50 for the one fact in the cubes.
    when i go to the lower level (i.e.,) month level for that fact i am getting no results...
    But i need to get that 50 value for all the months as a constant values......Is there any work around for this ?
    Please post ur valued answers...
    Thx

    Fact you are saying might be the account/measures dimension member in the essbase and is imported to obiee.
    You can write a dynamic calc formula in the essbase level to store the constant values for all the periods.

  • Double-clicking on a Analytic chart element to drill down to the next level Performance Point Service

    Hi,
    How to Drill Down the Analytic Chart on Double Click on the chart bar in SharePoint Performance Point Service.
    Double-clicking on a Analytic chart element to drill down to the next level Performance Point Service.
    I have connected with Cube. I am working in SharePoint 2010.
    Thanks & Regards
    Poomani Sankaran

    It has to do with the order you enter the fields in the Business Model from Physical model! It must be the opposite way than the one you want them to be show. In your case, you must first delete both fields from your business model, then drag tham in with first the "name" field and then the "code" field.
    It did work for me!

  • ITunes scroll triangle up/down (in the lower right corner)

    moves only one line at a time if the mouse button is held down. The same functionality in other programs (Mail, Safari, NeoOffice) will continue to scroll until the mouse button has been released.
    Is this a bug or do you know a way to reverse this?

    The button only appears if there are Airplay speakers available, if it's not there then your computer isn't detecting any speakers. How are your speakers set up? Are they Airplay enabled speakers, or are they connected to something like an Airport Express or an Apple TV?

  • Is there an ability to adjust the IOPS level/range that a storage disk can provide?

    O/S - CentOS 6.5
    VM type: Extra-small, 768MB RAM
    I have an extra 20GB storage disk that was provisioned for a VM to function as a DBDATA disk. Spot testing I can tell this additional storage disk performs much better than the boot disk/drive (~2000 IOPS versus 120 IOPS) where my O/S is installed.
    I searched around the portal and dashboard site, but I could not find a dial or slider switch where I could set set/tweak the IOPS settings for the attached storage drive.
    Questions
    1) Does anyone know if a configurable IOPS setting is available in the portal/dashboard area somewhere?
    2) As mentioned, this "additional" storage drive can perform much better than the boot disk (~2000 IOPS compared to ~120 IOPS), is there a reference for what the maximum IOPS are that these storage drives can deliver?

    Hi John,
    >>1) Does anyone know if a configurable IOPS setting is available in the portal/dashboard area somewhere?
    >>2) As mentioned, this "additional" storage drive can perform much better than the boot disk (~2000 IOPS compared to ~120 IOPS), is there a reference for what the maximum IOPS are that these storage drives can deliver?
    You could set IOPS on your VM. About this issue, I recommend you watch this video form channel 9 (http://channel9.msdn.com/Events/TechEd/NorthAmerica/2013/MDC-B345#fbid=).
    You could see the [ 44:40 ]
    Storage Quality of Service ( QoS ) .
    Enables consistent SLA delivery
    Dynamically configurable while VM is running
    Set Maximum IOPS Threshold for Overactive / Disruptive VMs
    Set Minimum IOPS Alert Threshold
    Learn more in
    Windows Server 2012 Hyper-V Storage Performance ( MDC-B345 )
    Hope this helps. 
    Regards,
    Will
    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.

  • Aims to allow user to input a PO (or a range of PO) and in turn present a tree structure output screen to user. By clicking on each level of the tree, the lower level data can be seen.

    START-OF-SELECTION.
      PERFORM get_ekes.
      PERFORM get_vepo.
      PERFORM get_vekp.
      PERFORM build_tree.
    END-OF-SELECTION.
      PERFORM display_tree.
    *&      Form  get_vepo
    *       text
    FORM get_vepo.
      SELECT venum
             vbeln
        FROM vepo INTO TABLE i_vepo
        FOR ALL ENTRIES IN i_ekes
        WHERE vbeln EQ i_ekes-vbeln.
    ENDFORM.                    "get_vepo
    *&      Form  get_vekp
    *       text
    FORM get_vekp.
      SELECT venum
             exidv2
        FROM vekp INTO TABLE i_vekp
        FOR ALL ENTRIES IN i_vepo
        WHERE venum EQ i_vepo-venum.
    ENDFORM.                    "get_vekp
    *&      Form  get_ekes
    *       text
    FORM get_ekes.
      SELECT ebeln
             vbeln
             vbelp
             xblnr
        FROM ekes INTO TABLE i_ekes
        WHERE ebeln IN s_ebeln.
    ENDFORM.                    "get_ekes
    *&      Form
    *       text
    *&      Form  build_tree
    *       text
    FORM build_tree.
      CLEAR : i_node, f_node.
      f_node-type = 'T'.
      f_node-name = 'Purchase Order'(002).
      f_node-tlevel = '01'.
      f_node-nlength = '25'.
      f_node-color = '5'.
      f_node-text1 = 'Purchase Document'.
      f_node-tlength1 = '20'.
      f_node-tcolor1 = '5'.
      f_node-text2 = 'Item Number'.
      f_node-tlength2 = '20'.
      f_node-tcolor2 = '5'.
      f_node-text3 = 'External Document'.
      f_node-tlength3 = '25'.
      f_node-tcolor3 = '5'.
      APPEND f_node TO i_node.
      CLEAR f_node.
      LOOP AT i_ekes INTO f_ekes.
        f_node-type = 'P'.
        f_node-tlevel = '02'.
        f_node-text1 = f_ekes-ebeln.
        f_node-tlength1 = '20'.
        f_node-tcolor1 = '3'.
        f_node-text2 = f_ekes-vbeln.
        f_node-tlength2 = '20'.
        f_node-tcolor2 = '3'.
        f_node-text3 = f_ekes-vbelp.
        f_node-tlength3 = '20'.
        f_node-tcolor3 = '3'.
        f_node-text4 = f_ekes-xblnr.
        f_node-tlength4 = '20'.
        f_node-tcolor4 = '3'.
        APPEND f_node TO i_node.
        CLEAR f_node.
        LOOP AT i_vepo INTO f_vepo WHERE vbeln EQ f_ekes-vbeln.
          f_node-type = 'P'.
          f_node-tlevel = '03'.
          f_node-text = f_vepo-vbeln.
          f_node-tlength = '20'.
          f_node-tcolor = '4'.
          f_node-text6 = f_vepo-venum.
          f_node-tlength6 = '20'.
          f_node-tcolor6 = '4'.
          APPEND f_node TO i_node.
          CLEAR f_node.
        ENDLOOP.
        LOOP AT i_vekp INTO f_vekp WHERE venum EQ f_vekp-venum.
          f_node-type = 'P'.
          f_node-tlevel = '04'.
          f_node-text = f_vekp-venum.
          f_node-tlength = '20'.
          f_node-tcolor = '5'.
          f_node-text6 = f_vekp-exidv2.
          f_node-tlength6 = '20'.
          f_node-tcolor6 = '5'.
          APPEND f_node TO i_node.
          CLEAR f_node.
        ENDLOOP.
      ENDLOOP.
    ENDFORM.                    "build_tree
    *&      Form  display_tree
    *       text
    FORM display_tree.
      CALL FUNCTION 'RS_TREE_CONSTRUCT'
        TABLES
          nodetab            = i_node
        EXCEPTIONS
          tree_failure       = 1
          id_not_found       = 2
          wrong_relationship = 3
          OTHERS             = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      CALL FUNCTION 'RS_TREE_LIST_DISPLAY'
        EXPORTING
          callback_program = sy-repid.
    ENDFORM.                    "display_tree
                        this is the code i developed but there is a problem in drop down.

    hi vineesh ,
    this is the full code
    TABLES : ekes, vepo, vekp.
    TYPES : BEGIN OF ivekp,
            venum TYPE vekp-venum,
            exidv2 TYPE vekp-exidv2,
      END OF ivekp,
      BEGIN OF ivepo,
        vbeln TYPE vepo-vbeln,
        venum TYPE vepo-venum,
        END OF ivepo,
        BEGIN OF iekes,
          ebeln TYPE ekes-ebeln,
          vbeln TYPE ekes-vbeln,
          vbelp TYPE ekes-vbelp,
          xblnr TYPE ekes-xblnr,
          END OF iekes.
    DATA : i_node TYPE TABLE OF snodetext,
           i_vekp TYPE TABLE OF ivekp,
           i_vepo TYPE TABLE OF ivepo,
           i_ekes TYPE TABLE OF iekes.
    DATA : f_node TYPE snodetext,
           f_vekp TYPE ivekp,
           f_vepo TYPE ivepo,
           f_ekes TYPE iekes.
    SELECT-OPTIONS :s_ebeln FOR ekes-ebeln.
    START-OF-SELECTION.
      PERFORM get_ekes.
      PERFORM get_vepo.
      PERFORM get_vekp.
      PERFORM build_tree.
    END-OF-SELECTION.
      PERFORM display_tree.
    *&      Form  get_vepo
    *       text
    FORM get_vepo.
      SELECT venum
             vbeln
        FROM vepo INTO TABLE i_vepo
        FOR ALL ENTRIES IN i_ekes
        WHERE vbeln EQ i_ekes-vbeln.
    ENDFORM.                    "get_vepo
    *&      Form  get_vekp
    *       text
    FORM get_vekp.
      SELECT venum
             exidv2
        FROM vekp INTO TABLE i_vekp
        FOR ALL ENTRIES IN i_vepo
        WHERE venum EQ i_vepo-venum.
    ENDFORM.                    "get_vekp
    *&      Form  get_ekes
    *       text
    FORM get_ekes.
      SELECT ebeln
             vbeln
             vbelp
             xblnr
        FROM ekes INTO TABLE i_ekes
        WHERE ebeln IN s_ebeln.
    ENDFORM.                    "get_ekes
    *&      Form
    *       text
    *&      Form  build_tree
    *       text
    FORM build_tree.
      CLEAR : i_node, f_node.
      f_node-type = 'T'.
      f_node-name = 'Purchase Order'(002).
      f_node-tlevel = '01'.
      f_node-nlength = '25'.
      f_node-color = '5'.
      f_node-text1 = 'Purchase Document'.
      f_node-tlength1 = '20'.
      f_node-tcolor1 = '5'.
      f_node-text2 = 'Item Number'.
      f_node-tlength2 = '20'.
      f_node-tcolor2 = '5'.
      f_node-text3 = 'External Document'.
      f_node-tlength3 = '25'.
      f_node-tcolor3 = '5'.
      APPEND f_node TO i_node.
      CLEAR f_node.
      LOOP AT i_ekes INTO f_ekes.
        f_node-type = 'P'.
        f_node-tlevel = '02'.
        f_node-text1 = f_ekes-ebeln.
        f_node-tlength1 = '20'.
        f_node-tcolor1 = '3'.
        f_node-text2 = f_ekes-vbeln.
        f_node-tlength2 = '20'.
        f_node-tcolor2 = '3'.
        f_node-text3 = f_ekes-vbelp.
        f_node-tlength3 = '20'.
        f_node-tcolor3 = '3'.
        f_node-text4 = f_ekes-xblnr.
        f_node-tlength4 = '20'.
        f_node-tcolor4 = '3'.
        APPEND f_node TO i_node.
        CLEAR f_node.
        LOOP AT i_vepo INTO f_vepo WHERE vbeln EQ f_ekes-vbeln.
          f_node-type = 'P'.
          f_node-tlevel = '03'.
          f_node-text = f_vepo-vbeln.
          f_node-tlength = '20'.
          f_node-tcolor = '4'.
          f_node-text6 = f_vepo-venum.
          f_node-tlength6 = '20'.
          f_node-tcolor6 = '4'.
          APPEND f_node TO i_node.
          CLEAR f_node.
        ENDLOOP.
        LOOP AT i_vekp INTO f_vekp WHERE venum EQ f_vekp-venum.
          f_node-type = 'P'.
          f_node-tlevel = '04'.
          f_node-text = f_vekp-venum.
          f_node-tlength = '20'.
          f_node-tcolor = '5'.
          f_node-text6 = f_vekp-exidv2.
          f_node-tlength6 = '20'.
          f_node-tcolor6 = '5'.
          APPEND f_node TO i_node.
          CLEAR f_node.
        ENDLOOP.
      ENDLOOP.
    ENDFORM.                    "build_tree
    *&      Form  display_tree
    *       text
    FORM display_tree.
      CALL FUNCTION 'RS_TREE_CONSTRUCT'
        TABLES
          nodetab            = i_node
        EXCEPTIONS
          tree_failure       = 1
          id_not_found       = 2
          wrong_relationship = 3
          OTHERS             = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      CALL FUNCTION 'RS_TREE_LIST_DISPLAY'
        EXPORTING
          callback_program = sy-repid.
    ENDFORM.                    "display_tree

  • How we get the lower level employee under particular level employee

    Hi ,
    i have query like
    select lpad(' ', 3*level) || empno, level
    from
    scott.emp
    start with
    mgr is null
    connect by
    prior empno=mgr
    output:-
    LPAD('',3*LEVEL)||EMPNO     LEVEL
    7839     1
    7566     2
    7788     3
    7876     4
    7902     3
    7369     4
    7698     2
    7499     3
    7521     3
    7654     3
    7844     3
    7900     3
    7782     2
    7934     3
    i want to get all hierarchy under particular employee id i entered during runtime. eg. if i entered 7566     then it should display the following output.
    7566     2
    7788     3
    7876     4
    7902     3
    7369     4
    is it possible , please suggest.
    thanks
    kam

    Hello,
    How about trying like this?
    SELECT LPAD(' ', 3*LEVEL) || empno, LEVEL
    FROM scott.emp
    START WITH empno=7566 -- Or any value from where you want to start
    CONNECT BY PRIOR empno=mgr -Ammad

  • What is the bar level icon that appears in upper left corner of my Safari screen?  Sometimes is green, sometimes grey - looks like a volume level icon.  Started showing up about 3 weeks ago.

    This icon appears (then promptly disappears) in the upper left hand corner of my Safari screen every time I go to a different web site.  Does anyone know what it is and why it suddenly started to appear about 3 weeks ago?
    thanks!  JL

    OK folks...thanks to Bee (thank you!) I can post a screen shot of the icon I'm referring to....
    Fantastic!  There it is...in all it's glory....look up in the corner, it's a bird, it's a plane...it's...??????
    Anyone who has info regarding this icon is more than welcome to share!   
    Thanks again Bee 
    JL

  • Schedule line on BOM lower level items

    Hi Team,
    I have maintained a manual over ride for Schedule line category on a lower level item of a BOM. In sales order when I try to change the schedule line cat manually I am not able to. In fact the entire line is greyed out.
    The quantities on the main item are confirmed. can you please advise
    Thanks
    Sunny

    We are adding the unit of measure to the pricing access sequence.  If I enter a product that explodes into a lower level item from the bill of material you can only enter the unif of measure on the high level material  and it doesn't copy down to the lower level item and I want them to match.
    Thanks,
    Michelle

  • Why don't lower level classes recognize symbols used in the .fla file?

    I'm trying to reorganize my code. I have a Paradox.as file, which is linked to a Paradox.fla file.  When I referenced symbols placed on the timeline in my Paradox.as file, my animation code works.  Then I decided to move the code lower down into the hierarchy.  In my Paradox.as file, I create new instances of the Character class.  The following is the folder hierarchy for the related files.  * denotes a folder, and tab denotes its contents:
    *Paradox 1-3
         Paradox.fla
         *code
              Paradox.as
              * Player
                   Character.as
    The symbol "player" is a Character type symbol on the Paradox.fla timeline, as are several other symbols.  Everything works just fine if I'm referencing these symbols in Paradox.as.  However, when I moved the code to Character.as (changing former references to Character type symbols in Paradox.as to "this" in Character.as), none of the symbols on the timeline are recognized any longer.  This is true of both Character type symbols and other types of symbols placed on the timeline.  Why?  Does Paradox.as recognize the symbols only because it is linked to Paradox.fla as the Document Class?  I even exported the Character symbol to Character.as...

    Oh.  Yeah.  The .as file linked to the .fla file works just fine.  What I was saying in my original post was, even though that part worked fine, when I transferred to a lower level class that was not linked to the .fla file but was instantiated in the .as file that was linked to the .fla file, I couldn't access anything on the stage directly.  What I ended up doing was passing the references to the lower level class.
    I can't find the checkbox where it says "Automatically declare stage instances", but fortunately for me it's enabled.  When calling a MovieClip that's on the stage, I only have to use its name in the .as file that's linked to the .fla file.

  • Collective Planned orders Scheduling for lower level orders with reference to the Superior order

    Hi All,
    Collective planned order scheduling.
    I have been trying to reschedule the superior planned order and i was expecting the lower level planned orders to reschedule based on the superior planned order.
    My problem is
    when i try to reschedule the superior planned order the system is not rescheduling the lower level planned orders.
    For example if i change the basic finish date of superior planned order as 30/09/2014 and reschedule the planned order it is only scheduling the header planned order and the lower level planned order is not scheduling.
    Could some one tell me why this is not happenning at planned order level.
    As the rescheduling of collective order will work at production order level but for some reason it is not happening at planned order level(as there is no option available to do so).
    Please give your thoughts on this asap.
    Mahee.

    Hello Mahee
    Please observe that your system is working as designed. Planned orders are scheduled independently, even when they are part of a network/collective order. Note 152319 explains the planned order scheduling in detail and it provides the following information:
    * No scheduling of overall networks is executed although a directly manufactured component is assigned.
    Note that no scheduling of the overall network is executed for planned orders. For the components requirements dates are determined. In order to cover them, planned orders are created in the next MRP run. Since the requirements are not managed using the exact time, the results of the planned order scheduling and of a scheduling of the overall network of the converted collective order can differ.
    BR
    Caetano

  • DAQ Assistant: How Can I Control this at the lowest Level?

    DAQ Assistant:
    I have the PCI slot version of this which I use to generate specific signatures. However I would like to get down to the very low level of this block to see what makes it tick if only to add some other features such as have it dynamically change high and low times after "N" number of pluses/bursts.
    At the current state I can't seem to get any further than the GUI that I work with right now. I can give you a VI upon request however this VI is included with labview from what I understand I have version 8.2. If anyone wants a copy of the vi which contains the DAQ Assistant block I will be more than happy to include.
    DAQ Assistant Location: Right click on the block diagram of a VI --> Measurement I/O --> NI-DAQmx --> DAQ Assist (This is an icon in itself)
    I see the read,write nodes however I have played and tried to see what they do but I have had no such luck. If anyone can point me in the right direction I would be grateful.
    Thank You.
    Solved!
    Go to Solution.

    You've got a couple of misconceptions about the DAQ Assistant. First, there is no such thing as a pci version. There are some slight differences between versions of the DAQmx driver. Second, the DAQ Assistant is a code generator. When you start it up, it will create custom code for the type of task you want (digital i/o, analaog i/o, etc.) so the VI you eventually have on the block diagram is not included in any version of LabVIEW.
    Once you have configured the assistant, you can right click on it and select 'Open Front Panel' this will convert the assistant task to a normal subVI that you can opne and view the block diagram. You can also right click and select 'Create DAQmx Code'. This will place the low level DAQmx functions on your block diagram. You could also skip the whole assistant and just start with the low level DAQmx functions in the first place. There is help associated with each and you have all of the shipping examples to look at. There is also the Getting Started with NI-DAQmx page.

  • Can't find the horizontal Level Envelope

    I'm making a CD with a bunch of my songs; on some of them, the wave form is skinny, because their volume is lower, and I want to even them up so that the listener isn't turning the volume up and down from song to song.
    I found instructions to do this by adjusting the level of the skinny (i.e. quieter) regions. It says "Move the pointer over the horizontal Level Envelope that you want to adjust. The pointer changes to the level envelope tool and a help tag displays the original and adjusted values." However, I can't see the line, and my pointer does NOT change to a level envelope tool. What do I need to change so that both these things appear?
    Also, if there's an easier way to achieve my goal, that would be great (I tried normalizing the tracks, but that didn't help).
    Thanks!!

    You don't see the line which ends with a ◊ at each end, like this?
    !http://web.me.com/johnalcock/filechute/waveburnerlevel.png!
    Also, if there's an easier way to achieve my goal, that would be great (I tried normalizing the tracks, but that didn't help).
    Adjusting the overall level probably won't get you too far - you can have a song, with a couple of loud peaks, that will appear to be much quieter than an intentionally softer song with controlled peaks. Normalizing won't help.
    The key here is that you want to increase the perceived volume (levels), which has nothing to do with the peak levels. 0 dBFS cannot be exceeded - it's the absolute maximum. So to get your tracks louder, you need to increase your apparent volume, often referred to as the average RMS level.
    A good way to try this is to open your mix in a fresh Logic project (I prefer doing it there instead of WaveBurner, but whatever you prefer). You could try first applying a compressor, threshold set so that any peaks are controlled. You can use a compressor or a multiband compressor, but be careful; the latter can really mess up your mix unless you're careful and practice a lot.
    Next, insert the Adaptive Limiter. Find the peak in your song, and set the left (Input Margin) side of AdLimiter so that you get close, but never go over 0 dB. on the right, set AdLimiter's output to -0.3 dB and crank the gain control to taste. At the bottom of AdLimiter's window, click the disclosure triangle, and set Mode to "NoOver.' You will change the character of the sound doing this; it's up to you if you like it or not, but you can definitely get your track loud.
    There are lots of threads here and in the Logic forums about this. Try searching on AdLimiter, compression and mastering.

  • Battery Low Level Warning

    From what I've read, I have been having the same battery problems as most of you here. So after getting a replacement battery from an Apple Store, Im wanting to get the most out of my new one.
    Here's the thing, so somewhere in the middle of my battery failing and my computer randomly shutting down, the low level warning prompt, turned off. Where do turn the warning prompt to "yes" instead of "no"? I can't seem to find it, other than knowing its off when looking under the Power section in System Profiler.
    Thanks for the help. This forum is amazing.

    Thanks for the response. But I still have another question. Why, if the prompt is automatic, then does it read as "NO" in the power section of System Profiler. I have the new battery in and it JUST got to 100%. Im thinking about calibrating it right now. Would you suggest that being a good idea or not? I know how to calibrate it, but I dont know when the best time to start it first.
    Thanks again.

Maybe you are looking for

  • How can I get the background music from iMovie trailer, "Romance"to be used in another imovie?

    Is there any way to download the background music from the  iMovie trailer template "Romance" to be used in another iMovie of greater length than that of a trailer?

  • Alternate Payee is printing on 1099 Forms, Need head vendor to print

    We applied the applicable OSSnotes for 1099 for the year 2010.  Everything is working fine as expected, except one issue.  When we execute the report S_P00_07000134, the report alternate payee is being printed on the Account Number field of the actua

  • How to hide the window/canvas which is placed on the form?

    Hi, We have a bussiness requirement to hide the canvas/window which is present in the standard form. The standard form already contains the Window/canvas,we want to hide it without disturbing its functionality so that it is not seen on the form when

  • AWR REPORT AT SCHEMA LEVEL

    Hello, Can anybody guide me how to generate an AWR (automatic workload repository) report at schema level? Actually I have created one user name xyz and imported some 1000 objects (tables, views etc) . I have little doubt here , when we create one us

  • Imac superdrive dead

    imac 10.8.2 Mountain Lion superdrive will not accept DVDs;  just takes them in whirls them around and 15 seconds later spits them out.  Any fixes or is it down to the Apple store and take a holiday for 5 days?