Having trouble with query

I am trying to query for a report to list aircraft by manufacturer, model name, aircraft number, destinations flown, miler per charter and the total revenue per charter, as well as total amount of revenue generated and total number of mile flown for each aircraft. This is what I have so far, I keep getting stumped when I try to sum I get error that certain lines is not single-group group function.
-----DATA
3 tables:
Aircraft {PK} ac_number
{FK} mod_code
ac_ttaf
ac_ttel
ac_tter
Model {PK} mod_code
mod_manufacturer
mod_name
mod_seats
mod_chg_mile
Charter {PK} char_trip
char_date
{FK2} ac_number
char_destination
char_hours_flown
char_hours_wait
char_fuel_gallons
char_oil_qts
FK1} cus_code
---code written so far--
--program Unit 5 Q4 Reprot of Aircraft By Renvue                         
--author Barbara Forget                                                  
--date February 24.2008                                                  
--purpose to list aircraft by revenue, model, manufacturer and number    
SELECT m.mod_manufacturer "MANUFACTURER",
m.mod_name "A/C NAME",
a.ac_number "A/C #",
c.destination "AIRPORT",
c.char_distance "TOTALMILEAGE"
FROM hartmar.model m,
hartmar.aircraft a,
hartmar.charter c
WHERE m.mod_code = a.mod_code (+)
AND a.ac_number = c.ac_number (+)
ORDER BY m.mod_name
Can someone give me a little input as to how to accomplish this, I get the report as such
MANUFACTURER A/C NAME A/C # AIR TOTALMILEAGE
Piper Axtec 1484P BNA 352
Piper Axtec 1484P STL 508
Piper Axtec 1484P TYS 644
Piper Axtec 1484P STL 472
Piper Axtec 1484P STL 508
Piper Axtec 1484P TYS 644
Piper Axtec 1484P BNA 352
Piper Axtec 1484P STL 472
Piper Axtec 1484P STL 508
Cessna Citation Mustang 1234C
Cessna Citation Sovereign 2345C
MANUFACTURER A/C NAME A/C # AIR TOTALMILEAGE
Beechcraft KingAir 2289L GNV 1645
Beechcraft KingAir 2289L ATL 1023
Beechcraft KingAir 2289L GNV 1645
Beechcraft KingAir 2289L GNV 1574
Beechcraft KingAir 2289L ATL 936
Beechcraft KingAir 2289L ATL 936
Beechcraft KingAir 2289L GNV 1574
Beechcraft KingAir 2289L ATL 1023
Beechcraft KingAir 2289L GNV 1574
Beechcraft KingAir 2289L GNV 1574
Piper Navajo Chieftain 2278V GNV 1574
MANUFACTURER A/C NAME A/C # AIR TOTALMILEAGE
Piper Navajo Chieftain 4278Y TYS 644
Piper Navajo Chieftain 2278V BNA 320
Piper Navajo Chieftain 4278Y GNV 1574
Piper Navajo Chieftain 4278Y GNV 1574
Piper Navajo Chieftain 4278Y STL 472
Piper Navajo Chieftain 2278V GNV 1574
Piper Navajo Chieftain 2278V BNA 320
Piper Navajo Chieftain 4278Y ATL 998
Piper Navajo Chieftain 4278Y TYS 644
Piper Navajo Chieftain 2278V MOB 884
Piper Navajo Chieftain 4278Y TYS 646
MANUFACTURER A/C NAME A/C # AIR TOTALMILEAGE
Piper Navajo Chieftain 4278Y ATL 936
Piper Navajo Chieftain 2278V MQY 312
Piper Navajo Chieftain 2278V MQY 312
Piper Navajo Chieftain 4278Y ATL 936
Piper Navajo Chieftain 4278Y TYS 646
Piper Navajo Chieftain 2278V MOB 884
Piper Navajo Chieftain 4278Y ATL 998
Piper Navajo Chieftain 4278Y STL 472
Piper Navajo Chieftain 4278Y ATL 998
Piper Navajo Chieftain 4278Y GNV 1574
Piper Navajo Chieftain 2278V BNA 320
MANUFACTURER A/C NAME A/C # AIR TOTALMILEAGE
Piper Navajo Chieftain 4278Y TYS 644
Piper Navajo Chieftain 4278Y ATL 936
Piper Navajo Chieftain 4278Y TYS 646
47 rows selected.
but, I need each a/c to be listed once with charter number total miles flown and total revenue generated.
Any suggestions?

Here's what I could fathom:
test@ORA10G>
test@ORA10G> with model as (
  2    select 1 as mod_code, 'Cessna' as mod_manufacturer, 'Citation Mustang' as mod_name, 0.1 as mod_chg_mile from dual union all
  3    select 2,'Piper',     'Axtec',             0.2 from dual union all
  4    select 3,'Piper',     'Navajo Chieftain',  0.3 from dual union all
  5    select 4,'Beechcraft','KingAir',           0.1 from dual union all
  6    select 5,'Cessna',    'Citation Sovereign',0.5 from dual),
  7  aircraft as (
  8    select '1234C' as ac_number, 1 as mod_code from dual union all
  9    select '1484P', 2 from dual union all
10    select '2278V', 3 from dual union all
11    select '2289L', 4 from dual union all
12    select '2345C', 5 from dual union all
13    select '4278Y', 3 from dual),
14  charter as (
15    select 1 as char_trip, '1234C' as ac_number, null as destination, null as char_distance from dual union all
16    select 2, '1484P', 'BNA', 10     from dual union all
17    select 3, '1484P', 'STL', 10     from dual union all
18    select 4, '1484P', 'STL', 20     from dual union all
19    select 5, '1484P', 'TYS', 100    from dual union all
20    select 6, '2278V', 'BNA', 20     from dual union all
21    select 7, '2278V', 'GNV', 30     from dual union all
22    select 8, '2278V', 'MOB', 40     from dual union all
23    select 9, '2278V', 'MQY', 50     from dual union all
24    select 10, '2289L', 'ATL', 10    from dual union all
25    select 11, '2289L', 'ATL', 20    from dual union all
26    select 12, '2289L', 'GNV', 15    from dual union all
27    select 13, '2289L', 'GNV', 25    from dual union all
28    select 14, '2345C',  null, null  from dual union all
29 select 15, '4278Y', 'ATL', 10 from dual union all
30 select 16, '4278Y', 'ATL', 25 from dual union all
31    select 17, '4278Y', 'GNV', 35    from dual union all
32    select 18, '4278Y', 'STL', 20    from dual union all
33    select 19, '4278Y', 'TYS', 40    from dual union all
34    select 20, '4278Y', 'TYS', 50    from dual)
35  --
36  SELECT
37    m.mod_manufacturer as manufacturer,
38    m.mod_name as ac_name,
39    a.ac_number as ac_num,
40    c.destination as airport,
41    sum(c.char_distance) as total_mileage,
42    to_char(sum(c.char_distance*m.mod_chg_mile*0.035),'$99,990.99') as trip_charge
43  FROM
44    model m,
45    aircraft a,
46    charter c
47  WHERE m.mod_code = a.mod_code(+)
48  AND a.ac_number = c.ac_number(+)
49  GROUP BY m.mod_manufacturer,
50           m.mod_name,
51           a.ac_number,
52           c.destination;
MANUFACTUR AC_NAME            AC_NU AIR TOTAL_MILEAGE TRIP_CHARGE
Piper      Axtec              1484P BNA            10       $0.07
Piper      Navajo Chieftain   2278V BNA            20       $0.21
Piper      Navajo Chieftain   2278V MQY            50       $0.53
Piper      Navajo Chieftain   4278Y TYS            90       $0.95
Piper      Navajo Chieftain   4278Y GNV            35       $0.37
Cessna     Citation Mustang   1234C
Piper      Navajo Chieftain   2278V MOB            40       $0.42
Piper      Axtec              1484P STL            30       $0.21
Piper      Axtec              1484P TYS           100       $0.70
Piper      Navajo Chieftain   4278Y STL            20       $0.21
Piper      Navajo Chieftain   2278V GNV            30       $0.32
Beechcraft KingAir            2289L ATL            30       $0.11
Cessna     Citation Sovereign 2345C
Beechcraft KingAir            2289L GNV            40       $0.14
Piper Navajo Chieftain 4278Y ATL 35 $0.37
15 rows selected.
test@ORA10G>
test@ORA10G>Notes:
(1) Lines 29 and 30 (in bold) show that '4278Y', which corresponds to mod_code = 3 i.e. "Piper Navajo Chieftain", flew to ATL twice traveling 10 and 20 miles respectively.
(2) The last line of the resultset (in bold) shows the total miles for "Piper Navajo Chieftain" i.e. 35 miles.
The trip charge, consequently, is 35 miles * 0.3 * 0.035 = 0.3675
where 0.3 is the mod_chg_mile for "Piper Navajo Chieftain".
(3) Note the change in the columns that constitute the GROUP BY clause. What it does is - for every combination of:
    (i)    m.mod_manufacturer
    (ii)   m.mod_name
    (iii)  a.ac_number
    (iv)   c.destinationit sums up the c.char_distance and multiplies it with the product of m.mod_chg_mile and 0.035.
(4) Also note that you can use aggregate functions (sum, in this case) more than once in the SELECT <column_list> part of the query. You need to include the rest of the columns (the 4 above) in the GROUP BY clause.
Hope that helps.
cheers,
pratz

Similar Messages

  • Trouble with query on Reports

    Hi,
    I am having trouble with a query which results from a join of 4 tables, of which, one table is shortened by grouping it along one column.
    for example
    A join B join C join (D grouped by D.S)
    In MS Access I had used a separate query to represent this and done a join with the remaining tables to generate my report.
    Any one has any idea about how this can be done using just one query, or any way I can store the sub-result elsewhere like in Access.
    Thanks!

    Not usre this is a reports issue, but:
    I think you are trying to select from tables and queries in one.
    IN your SQL statement try
    SELECT data,etc
    FROM
    A,
    B,
    C
    , (select distinct S from D) Q_D
    where
    A join B join C join Q_D
    Note that I don't think you can use sub queries like this in Access

  • Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hello Sue,
    I have an iPad 3, iPad Mini and iPhone 5S and they are all sluggish on capitalisation using shift keys. I hope that Apple will solve the problem because it is driving me crazy.
    I find using a Microsoft Surface and Windows 8 phone, which I also have, work as well as all the ios devices before the ios 7 upgrade.
    It has something to do with the length of time that you need to hold the shift key down. The shift key needs to be held longer than the letter key for the capitalisation to work. For some reason, this is a major change in the way we have learnt to touch type on computers. I am having to relearn how to type!
    Michael

  • I'm having trouble with something that redirects Google search results when I use Firefox on my PC. It's called the 'going on earth' virus. Do you have a fix that could rectify the vulnerability in your software?

    I'm having trouble with a virus or something which affects Google search results when I use Firefox on my PC ...
    When I search a topic gives me pages of links as normal, but when I click on a link, the page is hijacked to a site called 'www.goingonearth.com' ...
    I've done a separate search and found that other users are affected, but there doesn't seem to be a clear-cut solution ... (Norton, McAfee and Kaspersky don't seem to be able to detect/fix it).
    I'd like to continue using the Firefox/Google combination (nb: the hijack virus also affects IE but not Safari) - do you have a patch/fix that could rectify the vulnerability in your software?
    thanks

    ''' "... vulnerability in your software?" ''' <br />
    And it affects IE, too? Ya probably picked up some malware and you blame it on Firefox.
    Install, update, and run these programs in this order. They are listed in order of efficacy.<br />'''''(Not all programs detect the same Malware, so you may need to run them all to solve your problem.)''''' <br />These programs are all free for personal use, but some have limited functionality in the "free mode" - but those are features you really don't need to find and remove the problem that you have.<br />
    ''Note: If your Malware infection is bad enough and you are mis-directed to URL's other than what is posted, you may have to use a different PC to download these programs and use a USB stick to transfer them to the afflicted PC.''
    Malwarebytes' Anti-Malware - [http://www.malwarebytes.org/mbam.php] <br />
    SuperAntispyware - [http://www.superantispyware.com/] <br />
    AdAware - [http://www.lavasoftusa.com/software/adaware/] <br />
    Spybot Search & Destroy - [http://www.safer-networking.org/en/index.html] <br />
    Windows Defender: Home Page - [http://www.microsoft.com/windows/products/winfamily/defender/default.mspx]<br />
    Also, if you have a search engine re-direct problem, see this:<br />
    http://deletemalware.blogspot.com/2010/02/remove-google-redirect-virus.html
    If these don't find it or can't clear it, post in one of these forums for specialized malware removal help: <br />
    [http://www.spywarewarrior.com/index.php] <br />
    [http://forum.aumha.org/] <br />
    [http://www.spywareinfoforum.com/] <br />
    [http://bleepingcomputer.com]

  • TS3274 my ipad is having trouble with my music... i had recently gotten a new one when i signed into my icloud the music that i had on the original one was not there.... some songs were in fact there but not clickable ( it was there only gray)..anyone kno

    my ipad is having trouble with my music... i had recently gotten a new one when i signed into my icloud the music that i had on the orignal one was not there.... some songs were in fact there but not clickable ( it was there only gray)... i was looking for help on how to get the music on the ipad

    my ipad is having trouble with my music... i had recently gotten a new one when i signed into my icloud the music that i had on the orignal one was not there.... some songs were in fact there but not clickable ( it was there only gray)... i was looking for help on how to get the music on the ipad

  • I am having trouble with my Mac Mini's ethernet connection.   Defining a new network interface shows no ethernet adaptor.  Reloading SL from DVD repaired.  But SL update lost ethernet again.  Will Lion Fix?

    I am having trouble with my mac mini ethernet.  It had been working for weeks after an update to SL 10.6.8.
    Once it went out and i repaired it by defining a new connection from System Preferences ->Network->(left panel service, +).
    But yesterday, after a power up.  my ethernet was not working again. I tried this old trick to repair it, but the interface choices
    listed for '+' a new service did not include Ethernet any more.  And the Utilities->System Profiler->Ethernet Cards shows
    no ethernet available.
    As a last ditch effort i reloaded my original SL from DVD.  (I think it was version 10.6.4 but i could be mistaken on the version).
    The ethernet worked!  But KeyNote wasn't going to work because apparently the version i purchased depends on 10.6.8.
    So I upgraded again to SL 10.6.8 (Plus some other updates like AirPort which i don't use).
    Now the Ethernet is not working again.  I see the same symptoms as before with the Ethernet seeming not installed.
    Is this a problem seen by others?
    Would going to Lion fix the problem?
    Could AirPort actually be the culprit and not SL?
    If i stay with my original SL, would i need to repurchase a version of KeyNote for the older version of SL?

    Have you reset the SMC?
    Shut down the computer.
    Unplug the computer's power cord.
    Wait fifteen seconds.
    Attach the computer's power cord.
    Wait five seconds, then press the power button to turn on the computer.
    While you're at it, resetting the PRAM won't hurt anything and 'might' help is SMC reset didn't work (PRAM does some port control):
    Shut down the computer.
    Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    Something else you might try .... you don't say how you're updating to 10.6.8, however, if you're using Software Update, you might try downloading the 10.6.8 combo update, which contains all updates to 10.6. Sometimes, Software Update doesn't work quite right, and installing the combo update fixes that. Download the update from Apple's download site at http://support.apple.com/downloads/ , using Disk Utility repair permissions, apply the combo update, then repair permissions again.

  • I am having trouble with some of my links having images. For example, Foxfire has a picture that looks like a small world. The links in question are blank.

    I am having trouble with my links/websites having images attached to them. The place where the image should be is blank. For example, AARP has an A for its image. My storage website has a blank broken box where the image should be. I forgot I had trouble and had to reset Foxfire, this problem occurred after that reset.

    cor-el,
    Mixed content normally gives the world globe image, unless you are using a theme that uses a broken padlock instead. Maybe the gray triangle means invalid? I came across that in a few themes (what is invalid was not made clear), but those were not using triangle shapes to indicate that.
    I came across that mention in one of the pages you posted:
    * https://support.mozilla.org/kb/Site+Identity+Button
    I cannot attach a screenshot because I have not seen a triangle of any kind in my address bar.

  • I have an Ipod Touch (4th Gen) and I am having troubles with my downloads from purchasing music from the Ipod. On my downloads icon in the Itunes Store (on Ipod) there is a symbol of how many songs I still have waiting to download, but they wont download.

    I have been having troubles with this for months and am extremly tired of not being able to download my songs. I bought these songs off of Itunes as well, so I really hope i can retrieve them. I do not know where to find a personal apple support person yet, does anyone know where to find one on the website?

    See these previous discussions:
    Waiting applications: Apple Support Communities
    Downloading apps stuck on waiting...: Apple Support Communities

  • I am having trouble with iMessage being activated. It has worked up until yesterday and now won't activate and is saying no address in the send and receive section. My number is there but not ticked. Any suggestions on how to fix this?

    I am having trouble with iMessage being activated. It has worked up until yesterday and now won't activate and is saying no address in the send and receive section. My number is there but not ticked. Any suggestions on how to fix this? I have shut down my phone, but still no luck!

    iMessage and FaceTime went down yesterday for some people. Mine is still down. My iMessage is saying the same thing about being activated. Sounds like you are still down too. Ignore the status page that says everything is fine - it lies.

  • I am having trouble with app updates on my iOS 5 iPhone never getting beyond the "waiting" state.

    I am having trouble with app updates on my iOS 5 iPhone never getting beyond the "waiting" state. I have tried signing out/in of my account, rebooting and removing/re-installing the apps.  This started shortly after going to iOS 5 but I am not certain if that is related.  All updates that I try now are stuck in "waiting".  I also tried removing the apps and then installing via iTunes desktop sync with no improvement.  The only thing that I have not tried so far is a restore to a prior iPhone backup.  I have not been able to find anything to indciate what the updates on waiting on.  There is plenty of space on the iPhone (16gb available).  Any suggestions on what to try next? 

    Hello there, Missy.
    First thing I would recommend is to check your downloads queue to make sure there is not an interrupted download per the following Knowledge Base article:
    iTunes: How to resume interrupted iTunes Store downloads
    http://support.apple.com/kb/HT1725
    If your download was interrupted using your iPhone, iPad, or iPod touch
    1. From the Home screen, tap the iTunes app.
    2. For iPhone or iPod touch, tap More > Downloads. For iPad, tap Downloads.
    3. Enter your account name and password if prompted.
    4. Tap the blue download arrow to resume.
    If you can't complete the download on your iOS device, you can download it in iTunes on your Mac or PC and then sync it to your iOS device. You can also transfer purchases from your iPhone, iPad, or iPod to a computer.
    For Apps, you can also try tapping on the application icon to resume the download, as outline in this featured discussion:
    App updates won't download on my...: Apple Support Communities
    https://discussions.apple.com/thread/4111336
    Try tapping the App, so that it changes to Paused instead of Waiting, then tap it again to resume the install.
    Make sure you don't have any paused downloads in other apps either, like the App Store or iTunes Store.
    If that doesn't do it, try resetting or restoring the iPhone.
    via whatheck
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • In mail, I am having trouble with my cursor.  It doesn't "land" where I think I'm putting it.  It usually "lands" somewhere below where I "click" it to be.

    In Mail, I am having trouble with my cursor.  When making revisions to what I have already typed, the cursor doesn't "land" where I "click" it to be.  It seems to land somewhere below the spot I click on. It seems to have a mind of its own. 

    Cool handyandy42!
    I'm happy I could be helpful, with solving your problem!
    Also, I notice that you have marked your question as answered, but have not utilized the Helpful or Solved options. That may be intentional, but, if you are not aware of the benefits, of using that function, here is some information.
    When you mark the appropriate posts as Helpful (5 pts) 2 available, or Solved (10 pts) 1 available, you are Thanking the contributors, by awarding them points.
    In threads with multiple replies, it also alerts other readers, to which answers may have been helpful, or solved the issue.
    This info, and more, can be viewed by clicking on
    ? Help & Terms of Use, located under your login name, on all "Discussions" pages.
    Specifically What are question answers?.
    ali b

  • I am an iPad novice and whilst I have managed to set up my personal email, I have having trouble with my business email in that I can receive emails, but am unable to send and the message says 'this email address has been rejected by server'

    I am an iPad novice and whilst I have managed to set up my hotmail account on the iPad - I ham having trouble with my business email (I can receive emails, but cannot send and it says' email rejected by server'

    That sounds like a settings issue to me. Check with your IT depatment to make sure you have it configured properly.

  • I down loaded ios7 and now I'm having trouble with my audio on Skype, does anyone knows how to fix it? Please help!

    WWith the new ios7, I became frustrated in using my iPad3..I'm using Skype as my main communications with my love ones back home,now it seems that ios7 doesn't help me a lot for I'm having trouble with my audio communication coz my family can't hear anything from me.. My skype doesn't have any options or settings that I can check with to see if I can fix it...I need help...please if any of u knows how to fix it..I would greatly appreciate it...

    You can try removing app then reinstalling. If that doesn't work
    Try a Restart. 
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider. Press and hold the Sleep/Wake button until the Apple logo appears.
     Resetting your settings
    You can also try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your device settings again.... All of the settings in the settings app will have to be re-entered. You won't lose any data, but it takes time to enter all of the settings again.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears. Apple recommends this only if you are unable to restart it.
    Or if this doesn't work and nobody else on the blog doesn't have a better idea you can contact Apple. 
    Here is a link to their contacts with most of the information below. 
    http://www.apple.com/contact/

  • I have been having trouble with my iphone 4 for the past day . i tried to update it to 7.0.4 then the screen went blank and it keeps telling me to connect to itunes . I have connected it to 2 computers , using different cords

    I have been having trouble with my iphone 4 for the past day . i tried to update it to 7.0.4 then the screen went blank and it keeps telling me to connect to itunes . I have connected it to 2 computers , using different cords and it doesnt recognize it . It says it is in recovery mode and i need to restore . after clicking restore it says that my iphone cannot be restored . I am very frustrated because i have been online searching for solutions all day and nothing seems to work . As soon as i turn on my phone it goes to the apple logo for about 2 seconds then the connect to itunes screen . SOMEBODY PLEASE HELP ! my phone is my life and i need it back on .

    Connect the device to iTunes and restore from the most current backup.
    If the issue continues, restore as new.

  • After upgrading to Mavericks, I am having trouble with TimeMachine backups.

    After upgrading to Mavericks, I am having trouble with TimeMachine backups. As the backups get close to completion, it suddenly increasing the amount of data being backed up. My 400GB data takes up about 700GB on the backup drive.
    Tried reformatting the backup disk and had the same result.

    After upgrading to Mavericks, I am having trouble with TimeMachine backups. As the backups get close to completion, it suddenly increasing the amount of data being backed up. My 400GB data takes up about 700GB on the backup drive.
    Tried reformatting the backup disk and had the same result.

Maybe you are looking for

  • Need to click twise to come previous page in firfox 2.0 in my web site why that???

    My web site need to support FF version 2.0 we have a issue with the back button where for each page visited, it adds an additional history item(in to back button history list), what would be the cause of this this issue does not occure in the later v

  • When will iTunes Match be a supported part of the IOS8 Family Share?

    Hello, I was originally happy with the new Family Share capabilities of IOS8.  However, happiness turned to disappointment when I discovered that iTunes Match content CANNOT be shared amongst family members unless they are using the App Store ID wher

  • How to find latest Revison of material in table?

    We managed our material change with CO & revision. Now I have requirement to prepare one report for material, in that report I ned latest rev & CO assigned to material. Where can I find latest rev of materials in table. I know we can use table AEOI,

  • Tree View

    I have a "big" problem with tree view. I have a code that it fires when the node has been selected, and it fires correctly if i select the nodein level 1. But if i select the child node for this node the trigger When-Tree-Node-Selected not fires. Why

  • Re: about BDC

    Hi ..    by using BDC how to upload flat file(legacy system) to sap System..in BDC which method is mainly using in real time..can you please send me some FAQs for me about Reports,smart forms,BDC,LSMW,ALV(ABAP List viewer),sap scripts,Module pool.a