Hi friends i have problem on display of quantity for every year on each mon

i have problem in decalring the fields .i.e quantity to every month from jan to dec in row wise and in column it should be under particular year.i have written the code but i have some doubt where i am unable to offset particular month.please give me solution where i am wrong.
report zexample1.
Tables: s997.
Types: dat(2) type p,
       sal(6) type p decimals 2,
       sal1(6) type p .
selection-screen begin of block b1 with frame title text-001.
select-options: werks for s997-werks,
                matnr for s997-matnr,
                mvgr1 for s997-mvgr1,
                mvgr2 for s997-mvgr2,
                mvgr3 for s997-mvgr3,
                vkorg for s997-vkorg,
                vtweg for s997-vtweg,
                kunag for s997-pkunag.
selection-screen end of block b1.
selection-screen begin of block b2 with frame title text-002.
select-options: spmon for s997-spmon obligatory.
selection-screen end of block b2.
*selection-screen begin of block b3 with frame title text-003.
*parameters: day radiobutton group rg1,
           cust radiobutton group rg1,
           mat radiobutton group rg1.
*selection-screen end of block b3.
data: begin of sales occurs 0,
      spmon type s997-spmon,
      werks type s997-werks,
      mvgr1 type s997-mvgr1,
      mvgr2 type s997-mvgr2,
      mvgr3 type s997-mvgr3,
      vkorg type s997-vkorg,
      vtweg type s997-vtweg,
      pkunag type s997-pkunag,
       UMMENGE type s997-UMMENGE,
      matnr type s997-matnr,
      end of sales.
data: begin of sales_cust occurs 0,
      pkunag type s997-pkunag,
      spmon type s997-spmon,
      werks type s997-werks,
      mvgr1 type s997-mvgr1,
      mvgr2 type s997-mvgr2,
      mvgr3 type s997-mvgr3,
      vkorg type s997-vkorg,
      vtweg type s997-vtweg,
      end of sales_cust.
data: begin of sales_mat occurs 0,
      matnr type s997-matnr,
      pkunag type s997-pkunag,
      sptag type s997-sptag,
      werks type s997-werks,
      mvgr1 type s997-mvgr1,
      mvgr2 type s997-mvgr2,
      mvgr3 type s997-mvgr3,
      vkorg type s997-vkorg,
      vtweg type s997-vtweg,
      UMMENGE type s997-UMMENGE,
      end of sales_mat.
data: begin of sales_mat1 occurs 0,
      mvgr1 type s997-mvgr1,
      matnr type s997-matnr,
      pkunag type s997-pkunag,
      maktx type makt-maktx,
      jan type sal1,
      feb type sal1,
      mar type sal1,
      apr type sal1,
      may type sal1,
      jun type sal1,
      jul type sal1,
      aug type sal1,
      sep type sal1,
      oct type sal1,
      nov type sal1,
      dec type sal1,
      end of sales_mat1.
data: begin of sales1 occurs 0,
      spmon type dat,
      jan type sal,
      feb type sal,
      mar type sal,
      apr type sal,
      may type sal,
      jun type sal,
      jul type sal,
      aug type sal,
      sep type sal,
      oct type sal,
      nov type sal,
      dec type sal,
      end of sales1.
data: begin of sales_cust1 occurs 0,
      pkunag type s997-pkunag,
      name1 type kna1-name1,
      jan type sal,
      feb type sal,
      mar type sal,
      apr type sal,
      may type sal,
      jun type sal,
      jul type sal,
      aug type sal,
      sep type sal,
      oct type sal,
      nov type sal,
      dec type sal,
      end of sales_cust1.
data: begin of sales3 occurs 0,
      sptag type dat,
      jan type sal,
      feb type sal,
      mar type sal,
      apr type sal,
      may type sal,
      jun type sal,
      jul type sal,
      aug type sal,
      sep type sal,
      oct type sal,
      nov type sal,
      dec type sal,
      end of sales3.
data: begin of sales2 occurs 0,
      spmon type dat,
      end of sales2.
data: flag type p,
      jan type sal,
      feb type sal,
      mar type sal,
      apr type sal,
      may type sal,
      jun type sal,
      jul type sal,
      aug type sal,
      sep type sal,
      oct type sal,
      nov type sal,
      dec type sal,
      jan1 type sal1,
      feb1 type sal1,
      mar1 type sal1,
      apr1 type sal1,
      may1 type sal1,
      jun1 type sal1,
      jul1 type sal1,
      aug1 type sal1,
      sep1 type sal1,
      oct1 type sal1,
      nov1 type sal1,
      dec1 type sal1,
      jan2 type sal1,
      feb2 type sal1,
      mar2 type sal1,
      apr2 type sal1,
      may2 type sal1,
      jun2 type sal1,
      jul2 type sal1,
      aug2 type sal1,
      sep2 type sal1,
      oct2 type sal1,
      nov2 type sal1,
      dec2 type sal1,
      mvgr type s997-mvgr1.
start-of-selection.
select * from s997 into corresponding fields of table sales where werks
in werks and matnr in matnr and mvgr1 in mvgr1 and mvgr2 in mvgr2 and
mvgr3 in mvgr3 and vkorg in vkorg and vtweg in vtweg and pkunag in kunag
and spmon in spmon.
sort sales by spmon+4(2).
skip  .
if spmon+5(2) = '03'.
loop at sales.
at end of spmon+4(2).
move sales-spmon+4(2) to sales2-spmon.
append sales2.
endat.
endloop.
sort sales2 by spmon.
loop at sales1.
at new spmon.
move sales2-spmon to sales1-spmon.
append sales1.
endat.
endloop.
sort sales1 by spmon.
loop at sales1.
loop at sales where spmon+4(2) = sales1-spmon.
case sales-spmon+4(2).
when '01'.
sales1-jan = sales1-jan + sales-ummenge.
when '02'.
sales1-feb = sales1-feb + sales-ummenge.
when '03'.
sales1-mar = sales1-mar + sales-ummenge.
when '04'.
sales1-apr = sales1-apr + sales-ummenge.
when '05'.
sales1-may = sales1-may + sales-ummenge.
when '06'.
sales1-jun = sales1-jun + sales-ummenge.
when '07'.
sales1-jul = sales1-jul + sales-ummenge.
when '08'.
sales1-aug = sales1-aug + sales-ummenge.
when '09'.
sales1-sep = sales1-sep + sales-ummenge.
when '10'.
sales1-oct = sales1-oct + sales-ummenge.
when '11'.
sales1-nov = sales1-nov + sales-ummenge.
when '12'.
sales1-dec = sales1-dec + sales-ummenge.
endcase.
endloop.
*sales1-jan = sales1-jan / 100000.
*sales1-feb = sales1-feb / 100000.
*sales1-mar = sales1-mar / 100000.
*sales1-apr = sales1-apr / 100000.
*sales1-may = sales1-may / 100000.
*sales1-jun = sales1-jun / 100000.
*sales1-jul = sales1-jul / 100000.
*sales1-aug = sales1-aug / 100000.
*sales1-sep = sales1-sep / 100000.
*sales1-oct = sales1-oct / 100000.
*sales1-nov = sales1-nov / 100000.
*sales1-dec = sales1-dec / 100000.
modify sales1.
clear sales1.
endloop.
loop at sales1.
*sales1-jan = sales1-jan + jan.
*sales1-feb = sales1-feb +  feb.
*sales1-mar = sales1-mar +  mar.
*sales1-apr = sales1-apr +  apr.
*sales1-may = sales1-may +  may.
*sales1-jun = sales1-jun +  jun.
*sales1-jul = sales1-jul +  jul.
*sales1-aug = sales1-aug +  aug.
*sales1-sep = sales1-sep +  sep.
*sales1-oct = sales1-oct +  oct.
*sales1-nov = sales1-nov +  nov.
*sales1-dec = sales1-dec +  dec.
*at end of spmon.
jan = sales1-jan.
feb = sales1-feb.
mar = sales1-mar.
apr = sales1-apr.
may = sales1-may.
jun = sales1-jun.
jul = sales1-jul.
aug = sales1-aug.
sep = sales1-sep.
oct = sales1-oct.
nov = sales1-nov.
dec = sales1-dec.
*endat.
endloop.
endif.
write:/ 'From : ',spmon-low.
write: '   To : ', spmon-high.
write:/ sy-uline(162).
write: / 'Months'  COLOR 3,  16 'Quantity' COLOR 4.
format color 6 intensified off.
write:/ sy-uline, 'january',11 sy-vline,12 jan , sy-vline,
              / 'february',11 sy-vline, 12 feb,  sy-vline,
             /'march',11 sy-vline, 12 mar,sy-vline,
            / 'april',11 sy-vline, 12 apr, sy-vline,
           / 'may',11 sy-vline, 12 may, sy-vline,
          / 'june', 11 sy-vline,12 jun, sy-vline,
         / 'july' ,11 sy-vline, 12 jul,sy-vline,
        / 'august' ,11 sy-vline, 12 aug,sy-vline,
       / 'september',11 sy-vline, 12  sep,sy-vline,
      / 'october',11 sy-vline, 12   oct, sy-vline,
     /'november',11 sy-vline, 12 nov, sy-vline,
    / 'december',11 sy-vline, 12  dec, sy-vline.
format color off intensified on.
*write:/ sales1-jan , / sales1-feb,
*/ sales1-mar, / sales1-apr, / sales1-may,
/ sales1-jun, / sales1-jul,/ ,sales1-aug,
/ sales1-sep, / sales1-oct, /
sales1-nov,/ sales1-dec.
sort sales by spmon+4(2).
if spmon+5(2) = '04'.
loop at sales.
at end of spmon+4(2).
move sales-spmon+4(2) to sales2-spmon.
append sales2.
endat.
endloop.
sort sales2 by spmon.
loop at sales1.
at new spmon.
move sales2-spmon to sales1-spmon.
append sales1.
endat.
endloop.
sort sales1 by spmon.
loop at sales1.
loop at sales where spmon+4(2) = sales1-spmon.
case sales-spmon+4(2).
when '01'.
sales1-jan = sales1-jan + sales-ummenge.
when '02'.
sales1-feb = sales1-feb + sales-ummenge.
when '03'.
sales1-mar = sales1-mar + sales-ummenge.
when '04'.
sales1-apr = sales1-apr + sales-ummenge.
when '05'.
sales1-may = sales1-may + sales-ummenge.
when '06'.
sales1-jun = sales1-jun + sales-ummenge.
when '07'.
sales1-jul = sales1-jul + sales-ummenge.
when '08'.
sales1-aug = sales1-aug + sales-ummenge.
when '09'.
sales1-sep = sales1-sep + sales-ummenge.
when '10'.
sales1-oct = sales1-oct + sales-ummenge.
when '11'.
sales1-nov = sales1-nov + sales-ummenge.
when '12'.
sales1-dec = sales1-dec + sales-ummenge.
endcase.
endloop.
modify sales1.
clear sales1.
endloop.
loop at sales1.
jan = sales1-jan.
feb = sales1-feb.
mar = sales1-mar.
apr = sales1-apr.
may = sales1-may.
jun = sales1-jun.
jul = sales1-jul.
aug = sales1-aug.
sep = sales1-sep.
oct = sales1-oct.
nov = sales1-nov.
dec = sales1-dec.
endloop.
endif.
*append sales1.
*clear sales1.
format color 6 intensified off.
write:       / sy-uline,22 jan , sy-vline,
              /20 sy-vline, 22 feb,  sy-vline,
             /20 sy-vline, 22 mar,sy-vline,
            /20 sy-vline, 22 apr, sy-vline,
           /20 sy-vline, 22 may, sy-vline,
          /20 sy-vline,22 jun, sy-vline,
         /20 sy-vline, 22 jul,sy-vline,
        /20 sy-vline, 22 aug,sy-vline,
       /20 sy-vline, 22  sep,sy-vline,
      /20 sy-vline, 22   oct, sy-vline,
     /20 sy-vline, 22 nov, sy-vline,
    /20 sy-vline, 22  dec, sy-vline.
format color off intensified on.
*write:/ sy-uline(162).

hi,
i don't read your long coding - but i think you can improve your coding with that internal table:
data: begin of itab occurs 12,
year type bseg-gjahr,
month type bkpf-monat,
qty type bseg-menge,
end of itab.
A.

Similar Messages

  • I have problem with adobe bridge cs6. Every time I open it Bridge tells me to Purge Cache. I have CS

    I have problem with adobe bridge cs6. Every time I open it Bridge tells me to Purge Cache. I have CS6 on two computers and it works fine on one of them. I have tried to reinstall it without succeeding to fix the problem. Does anyone have the same problem and a solution to it?
    "Bridge encountered a problem and is unable to read the cache. Please try purging the central cache in Cache Preferences to correct the situation."

    You must have a Mac.  Try this.
    Quit Bridge, from user library (NOT system and root library) preferences folder find and delete the com.adobe.bridge5.plist file manual. Do this also in same user library caches folder (Caches/Adobe/Bridge CS6) and inhere find and the folder called 'cache' and drag it to the trash.
    restart Bridge holding down option key and choose reset preferences, then try again.

  • TS1702 hello, i have problem to open the need for speed2

    hello, i have problem to open the need for speed2

    There is no "Add-on" that I'm aware that will allow you to EDIT .pdf files for FREE. Editing .pdf is using a Paid Feature in pdf programs (Adobe Acrobat ProX & FoxIT PDF.)
    [http:// https://addons.mozilla.org/en-US/firefox/addon/pdfescape-extension/ PDFEscape] is "Add-on" in a sense, but it actually just opens the .pdf file on PDFEscape.com

  • I dont have an insurance on my iphone , but i heard from my friends that the apple store cover my phone for an year, is that true?

    i dont have an insurance on my iphone , but i heard from my friends that the apple store cover my phone for an year, is that true?

    The iPhone comes with a 1 year warranty.
    This covers defects but not accidental damage.
    Apple - Legal - Hardware Warranties

  • I have purchased the Acrobat pro subscription for 1 year and have followed the steps to install it. But when i go to start it, It crashes and it does this every time! I have restarted my mac pro and also restarted in safe mode but it just doesn't work! PL

    I have purchased the Acrobat pro subscription for 1 year and have followed the steps to install it. But when i go to start it, It crashes and it does this every time! I have restarted my mac pro and also restarted in safe mode but it just doesn't work! PLEASE HELP!!

    Hi jim1287,po
    Check for the latest updates. Installing latest updates should resolve this problem.
    Also, try to ran disk repair using safe mode in Mac, for instructions please visit: http://support.apple.com/kb/PH14204
    Try enabling root user profile on mac and try to check. OS X Mavericks: Enable and disable the root user
    Regards,
    Ajlan Huda.

  • Display a label for every other category on a graph

    I have a line graph created in Illustrator with years on the horizontal axis (1998, 1999, 2000, 2001, 2002, etc.). There is data for each year that will be plotted on the line, however I would only like to display every other year (1998, 2000, 2002, 2004, 2006, etc.). Is there a way to show every other year on the horizontal axis.

    I can't leave the years out because there is data for those years. In Excel, there is an option to 1 display a label for every category, 2 to display a label for every other category, 3 to display a label for every third category. How do you do it in Illustrator. My table looks something like this but begins in 1980.
    "2001"
    52
    "2002"
    56
    "2003"
    81
    "2004"
    84
    "2005"
    91
    "2006"
    97
    "2007"
    102
    "2008"
    103
    "2009"
    104
    "2010"
    110
    "2011"
    106

  • I have used Firefox on my computer for several years. Today, after upgrading to the new version, I was not able to open Firefox. I have tried several times uninstalling and re-downloading Firefox. It still will not open! What is wrong?

    I have used Firefox on my computer for several years. Today, after upgrading to the new version, I was not able to open Firefox. I have tried several times uninstalling and re-downloading Firefox. It still will not open! Is the new version not compatible with Windows Vista?

    I hope that link points to mozilla.com or mozilla.org
    You will have to close firefox.exe with the Windows Task Manager from the "Processes" tab of the WTM since you don't have a widow to close.
    The best way to close Firefox is through File > Exit, for those who stuck with the "Firefox" button click on the Firefox button then Exit. It is not perfect but it is a lot better than just closing the window with the "X" in the upper right corner

  • My iPhone 6 order was canceled without my permission and without reason or explanation. I have had a verizon cell phone for 13 years and have gotten your cable/internet/phone when i moved out on my own because i had been so happy with the experience i had

    I have had a verizon cell phone for 13 years and have gotten your cable/internet/phone when i moved out on my own because i had been so happy with the experience i had with the cell phone service. i ordered my new iPhone 6 on October 6th along with my husband. i was told by the sales associate at the vierzon store where i placed the order that it would ship a week before halloween. instead of a shipping confirmation, i received an email a week before halloween letting me know that my order had been placed on 10/24/14. i thought this was weird, but figured i could weight another week or two, no big deal. my husband got his phone in the mail yesterday. still no sign of mine. then this morning i got an email letting me know that my order was cancelled and if id like to place another order for a phone, then i can go back to the store and do so. why would i want to go through another month of this??? verzon lost my order. i never canceled it and i am beyond annoyed. i am looking to switch my entire house to another provider. this is ridiculous.

    i did not get any reasons or explanations. the email just stated that my order was canceled and that it won't be posted to my credit card (i have more than enough to cover the cost, so that is not the issue). also my husbands phone was paid for from the same card moments before me. my balance is always paid automatically and on time. so that couldn't be the reason either. that's what so frustrating is because they didn't explain what happened. this is what the email read exactly:
    "This email is to confirm that your order has been cancelled; you have not been billed for this merchandise.
    If you would like to place a new order, you may do so by visiting your local retail store or going online to www.verizonwireless.com.
    Business customers should refer back to their local Verizon Wireless Sales Representative if you have any questions or would like to place a new order.
    Thank you, and we look forward to your business in the future.
    Verizon Wireless"
    it almost feels like its saying that i canceled it and that this was to confirm that i did. but i didn't cancel anything.

  • Hello,  My old email address which I have used as my apple id for 10 years is being made redundant. I have changed the email address to a new gmail one and this is my new apple id. But my iMac has not recognised this. It keeps saying it wants the pa

    Hello,
    My old emails address which I have used as my apple id for 10 years is being made redundant. I have changed the email address to a new gmail one and this is my new apple id. But my iMac has not recognised this. It keeps saying it wants the password for my old email address. I have seen some advice on these forums which suggest signing out of iCloud and then back in again. But when I start doing this it asks me if i want all the photos deleted that have not been downloaded onto the mac.
    I have had an iCloud account for quite sometime and I'm afraid of losing everything in my cloud if i sign out and sign in with a new id.
    Is this fear realistic?
    I know I can change back to my old email, sign out and then sign in wight he new one...
    Please help!

    This did not work for me.  My old email account for iCloud still pops up on my screen every time I open my macbook.  I've deleted it, reset it, every thing I can think of and it still shows up.  I think six months of this is more than enough time to wait.
    RDG

  • My company have purchased one I Creative cloud for one years. But now, always my company want to buy also anthers n°3 Photoshop application from use always in our office below our comfy. Can we have a privilege cost for the company or we need to buy this

    My company have purchased one I Creative cloud for one years (It's the first time for us) Of course we have pay this product with a price of company but there are new clients adobe. But now, always my company want to buy also anthers n°3 Photoshop application from use always in our office below our account already created. Can we have a privilege cost forecast for company or we need to buy this product as if it is the first time and pay the maximum price for one years?
    Thanks

    Cloud License allows 2 activations http://www.adobe.com/legal/licenses-terms.html
    -Install on a 2nd computer http://forums.adobe.com/thread/1452292?tstart=0
    -Windows or Mac does not matter... 2 on the same operating system, or 1 on each
    -Both subscriptions MAY be in use at the same time https://forums.adobe.com/thread/1683787

  • Hello. So I have used my iPod touch 4g for 2 years now and need to change the battery. My question is: will I lose everything I have on my iPod like my music,pictures and apps if I change the battery on my iPod touch 4g?

    hello. So I have used my iPod touch 4g for 2 years now and need to change the battery. My question is: will I lose everything I have on my iPod like my music,pictures and apps if I change the battery on my iPod touch 4g?
    Thanks for answer

    If you go to Apple, they will not replace your battery, but exchange your iPod for a refurbished iPod of the same model with a new battery.  Therefore you will lose everything that is not backed up.  If you change it yourself or have a third party change it, you will most likely not lose anything (but still best to make a backup as lllaass suggested).

  • I have done my de authorisation limit for the year, and need to use it again, how do it?\

    i have done my de authorisation limit for the year, and need to use it again, how do i?

    Contact itunes support and ask if they will allow this

  • Why do i have to enter my apple id for every purchase

    Why do I have to enter my apple id for every purchase in the app store. I thought the new ios would remember it every time.

    It only "remembers" such for 15 minutes after the first purchase. This is done for security reasons. It is app updates that no longer require a password.

  • I have subscribed to Adobe Export PDF for one year and paid the fee per my credit card.  I just received an sms to inform me of the amount of R230.61 was deducted today by Adobe Systems Software. I did not request to renew for another year.

    I have subscribed to Adobe Export PDF for one year and paid the fee per my credit card.  I just received an sms to inform me of the amount of R230.61 was deducted today by Adobe Systems Software.  If you have charged for another year, please cancel that service and refund me as I did not request renewal for another year.  I don't find this service very useful as documents converted to Word is not really usable when trying to do changes and amendments to the document. 
    Please confirm.
    Regards
    Esther Grove
    082-334-6786
    Email: [email protected]@

    Hi,
    I have cancelled your Export PDF subscription for the order no.AD001162465AP..
    Your refund no.is 66181102.
    You will get the refund in 7 business days.
    Regards,
    Florence

  • For all you who have problems here is the fix for your phone.

    Most of you on here don't understand that 3.x or if you have jailbreak your pass software and set it up from back up you are going to have problems. That can be from drop calls to not having the phone working right.
    The 4.0 software has been rewritten completed for the new and old phones. So if you were on 3.x and update to 4.0 then you are bring in a bugs into 4.0. You have to set up as NEW PHONE not from back up. This clean your phone with a fresh software then you add your stuff from your computer. Then you have to go to general and go and reset your network settings. That reset your carrier account with the new 4.0. That because the new 4.0 is now looking to find the tower which has the less people on the tower not which tower is close to you. This way you get a better service and sound of it.
    If you still have problems all of you with your iPhone 4 then it a hardware problem. You have to go to the Apple store and replace the phone. Apple will be happy to replace the phone. If not you have 30 days to get your full refund from Apple.
    That is it. Nothing hard about it. It's a software problem of a hardware problem. BTW my new iPhone 4 is much better in sound and not having any drop calls than my old 3GS. If you have problems with drop calls is because you are in area which has a week tower which is so busy and can't keep up with the system. That a ATT problem which ATT is working hard to fix it but it can't get the equipment from their supplies fast enough to fix the problem with the network.
    I hope this answer your problems on here.

    I know this sounds like a bit of Voodoo, but it's worth a try. If you've upgraded to the new iPhone 4 and have restored your old software, you may see what appears to be a signal drop-off. Let's stay away from the whole iPhone 4 "death grip" controversy; that aside, no matter what you do, you're not seeing as many bars or getting reception that's as good as what you had with your older iPhone.
    Here's something to try. On your iPhone preferences, navigate to "General," and then scroll down to the bottom where it says "Reset." Tap that, and then tap "Reset Network Settings." You'll get a warning, and the phone will reset to factory defaults. You'll likely lose some Wi-Fi passwords, but you may also find that your cellular reception gets a lot better.
    I have two friends who tried this, and they went from one or two bars to four or five at the same locations. This is the same trick they are doing at the Genius Bar, and my research shows that it can help in many (but not all) cases. We've talked about this fix before, but we have a lot of new readers, and some old ones, who may have missed it. There are also some discussions about this on the Apple support board. If you have seen a drop-off in reception, it's certainly worth a try. If it doesn't work, we're sorry. If it does, well, the price is right for the fix. Let us know in the comments if it helped, or sadly, if it didn't.

Maybe you are looking for

  • How to link Inv payments in Gl to Inv distribution in GL

    How to link Inv payments in Gl to Inv distribution in GL?

  • Datagrid with comboBox headerRenderer question

    Hi All, I have a comboBox as header renderer in my datagrid. How can I fire a function that it is in my main form (where the datagrid is) when I change the selected item in the comboBox? Thanks Johnny

  • Do I really need to change my router?

    I havea D-link gigbit router I've been using happliy for some time. It's also configured properly for VPN connections, which was tricky. Why must I change to the slower speed router that Verizon sent me? Or can I safely ignore the broadcast voicemail

  • Jump directly to search-result details if only one (1) hit

    I have a report where the user can limit the number of records shown via a couple of text fields. (do a search so to speak) In the report the user can click a link and see details for the given record. My customer would like the users to be taken dir

  • Still images are getting brighter?

    I have still images, plus some vid clips, that I am putting into a project. I have made my adjustments in Bridge/Photoshop CS3 as far as resizing and adjusting the brightness and tones. After I import them into Premiere Pro, and place them on the tim