Rewrite or optimize  the *Get Objec* instruction in an *OM* report

Hi All
I'm facing an optimization issue in a report OM and i would like to rewrite or optimize the code below.. I want to reduce the duration and i'm trying to write a new version without the PCH logical database .  Will it be possible to reduce it without the PCH? How can i do it?
Thanks to all!
Infotypes                                                           *
infotypes: 1000,                       "Object
           1001,                       "Relationships
           9149,                       "Site
           1013,                       "Employee Group/Subgroup
           1008,                       "Acct. Assignment Features
           1005,                       "Planned Conpensation
           9107,                       "Org. Unit Type
           1007,                       "Vacancy
           0001,                       "Organisational Assignment
           0002,                       "Personal Data
           9101,                       "For Functional Area
           9108.                       "Org. Unit Ref      HR1K901124AJK
start-of-selection.
get objec.
end-of-selection.

What is an ageing report? What are the data sources used to develop an aging report
Aging refers to values in different time period ranges. Example, the customer (credit) aging report can look like this.
customer (credit)  for current period, 0 to 30 days, 30 to 90 days, 90 to 120 days. This is the way aging is classified.
What data sources does one use to get Balance sheet and P&L accounts tables and fields.
For P&L information, you may use 0FI_GL_6 datasource (or 0FI_GL_10 if you use ERP 5.0 version). This datasource reads the same information used in R/3 transaction f.01 (table glt0).
What are the tasks a BW consultant normally performs when he is involved in an end to end implementation project or a full life cycle project?
Requirement gathering, blueprint creation, development etc
Refer to posts on Sap Methodology  and Sap lifecyle
What do you mean when you say worked on BW statistics to optimize the performance of Info Cubes. What are aggregates why do you need them?
Please check these links
http://help.sap.com/saphelp_nw04/helpdata/en/8c/131e3b9f10b904e10000000a114084/frameset.htm
http://help.sap.com/saphelp_nw04/helpdata/en/f0/3c8c3bc6b84239e10000000a114084/plain.htm
What are the design documents does one prepare, please give an example.
Design document is basically a document to say  how the design is to be developed for a particular solution ex: FI it says what is the data fow and what are the data targets  to be used and how data shld be stored  for providing the client a solution they need.
Is cube a data target?
Yes cube is a data target.
Hope this Helps
Anand Raj

Similar Messages

  • OPtimize or rewrite *Get Obejc* instruction

    Hi All
    I'm facing an optimization issue in a report OM and i would like to rewrite or optimize the code below.. I want to reduce the duration and i'm trying to write a new version without the PCH logical database .  Will it be possible to reduce it without the PCH? How can i do it?
    Thanks to all!
    Infotypes                                                           *
    infotypes: 1000,                       "Object
               1001,                       "Relationships
               9149,                       "Site
               1013,                       "Employee Group/Subgroup
               1008,                       "Acct. Assignment Features
               1005,                       "Planned Conpensation
               9107,                       "Org. Unit Type
               1007,                       "Vacancy
               0001,                       "Organisational Assignment
               0002,                       "Personal Data
               9101,                       "For Functional Area
               9108.                       "Org. Unit Ref      HR1K901124AJK
    start-of-selection.
    get objec.
    end-of-selection.

    Feels like I was just at the wrong place and the wrong time, at some unpredictable intersection of circumstances …
    Ignoring the message didn't help, just left me without any .pdf output. I felt the need for results, so I started from File > New (as detailed in another post) and finally managed to migrate my content into a doc file that didn't throw any errors. On the way there, I came across "Separation out of range" and "Inconsistent colour definition", which I overcame with MIF and file-by-file comparison.
    Arnis, you'd already helped me with the Creator vs real Distiller configuration
    Error7103, if I hit this annoyance again I'll experiment with printer settings and routes.
    N

  • How to customize the selection screen of Get Objec

    hi all,
    I'm developing a program for sap hr.
    I use the 'Get objec' to creat the selection screen.
    and I wanna limit the date selection.
    The defaut display is the 'Period'  of radio-button group.
    and I want only the single field 'Date' for input insead of a period with starting and ending dates (manuelly we need click on a button to switch to 'Date' input).
    How can I switch automatically  to the 'date' when I initilize my program?
    Thanks a lot for your help
    Yimin

    Hi,
    This is possible through program attributes.
    goto attributes, click on 'HR Report category'
    now make sure that, 'Master Data (Infotype)' is changed accordingly your requirement.
    I think it is helpfull to you.
    Regards
    Sai

  • Get OBJEC  hide screen and transfer data

    Hi experts!
    How can i hide this kind of selection screen when i call
    "get objec"
    and how can i transfer my data manually to the selection range of   get objec.
    eg. i want to use the "get objec" function to collect the data for three objectid.
    i could loop and call  get objec  3 times and set the PCHOBJID-LOW  value before,  but there must be a way to do this with a range.
    can someone help me
    greets, thomas

    Dear Abhishek,  can you explain the step..in this step screen is comming but custom fields value is not coming and also likp table is not updated
    Correct AnswerRe: Update and transfer data via BADI LE_SHP_TAB_CUST_HEAD
    Abhisek Biswas Jan 21, 2009 7:28 AM (in response to Stephen Keam)
    Hi Stephen,
    You can do it by using PBO and PAI modules of the screen that you created. But you have to transfer the data from subscreen to the BADI method TRANSFER_DATA_FROM_SUBSCREEN and aslo from method TRANSFER_DATA_TO_SUBSCREEN to the subscreen. This will update the screen field data to LIKP.
    You can aceive this by two ways.
    1) You can use EXPORT in method TRANSFER_DATA_TO_SUBSCREEN and then IMPORT the value in the screen PBO. And You can EXPORT data from screen PAI and IMPORT data in method TRANSFER_DATA_FROM_SUBSCREEN.
    2) Anither way to do it is by using Function modules and Function Group instead of EXPORT/IMPORT.
    Create a Function group. In the global data define a structure/Work Area of type LIKP.
    DATA w_likp TYPE likp.
    Then create two Function modules, one to export data and another to import data.
    Let us assume that the export FM takes in IS_LIKP as input and the import FM outputs the value of LIKP into ES_LIKP.
    Then pass the value is_likp to the export FM in the BADI method TRANSFER_DATA_TO_SUBSCREEN and in the screen PAI pass the LIKP data to the export FM.
    In the export Function module write the following code:
    MOVE is_likp TO w_likp
    Then in the Import FM write the following code:
    MOVE w_likp TO es_likp.
    The import FM is called from method TRANSFER_DATA_FROM_SUBSCREEN and from screen PBO.
    This will solve your problem.
    Regards,
    Abhisek.
    Alert Moderator
    Like (0)
    Reply

  • Why do I get "The exception Privileged instruction (0xc0000096) occured in the application" error message when exiting LabVIEW 6.1?

    I have created a vi that uses the LV-GPIB and database connectivity vis. The program runs fine and it ends execution by running the "Close Database Connection.vi".
    After closing out my front panel windows and exiting LabVIEW 6.1, I get an error dialog box that reads the message "The exception Privileged instruction (0xc0000096) occured in the application". What does this error mean and how do I resolve it?
    Thanks,
    Taf

    Hi Taf,
    Given the broad scope of your application, it may be best to try and isolate the problem down by taking out parts of your application and simplifying it down as much as possible until you can get a consistent version that throws this exception. I would first try to take out either the GPIB or database connectivity portions of the application to narrow down our problem. This error generally occurs when accessing DLLs and external applications, so I wouldn't be surprised if it's the GPIB or database. Let's try to see exactly which one it is and then we can dig deeper into that part of the code. Thanks for your cooperation!
    Jeremy L.
    National Instruments
    Jeremy L.
    National Instruments

  • Adobe Acrobat Pro XI 11.0.06 when I reduce file size or try to optimize, I get this error: The document could not be saved. A number is out of range. I do the exact same thing every month and it works. I did it a few days ago and it worked. I receated the

    Adobe Acrobat Pro XI 11.0.06 when I reduce file size or try to optimize, I get this error: The document could not be saved. A number is out of range. I do the exact same thing every month and it works. I did it a few days ago and it worked. I receated the pdf, I renamed it. tried to do it before I imported more pages. no go. the 16 mg pdf will normally reduce to 5 or 6

    Hi,
    Are you facing the issue with any pdf file?
    Please try updating Acrobat to 11.0.7 and check.
    You might also want to repair Acrobat and see.
    Regards,
    Rave

  • I just bought my IPhone and am also getting the the Service Apple Mobile Device failed to start. Verify that you have sufficient privileges to start system services.  This is after following the uninstall/reinstall instruction.  This needs to be fixed!!!

    I just bought my IPhone and am also getting the the Service Apple Mobile Device failed to start. Verify that you have sufficient privileges to start system services.  This is after following the uninstall/reinstall instruction.  I am due to travel in 2 days and am very upset about this. This needs to be fixed!!!

    http://support.apple.com/kb/TS1567
    Log in to the Windows with "administrative rights".

  • How can I get my instructional text to display when I open the pdf?

    I have some fields which I have set up which have help/instructions for completing the information required.  This is a questionnaire.  When I save it as a pdf, the instsructional text does not display.  I would really appreciate if someone can tell me how to fix this.

    Thanks for taking the time to respond to my query.  The text does not display when I hover my mouse over it.
    cheers    Deborah Frow
          From: Ajlan huda <[email protected]>
    To: Deborah Frow <[email protected]>
    Sent: Monday, 12 January 2015, 5:24
    Subject: Reply marked as helpful on How can I get my instructional text to display when I open the pdf?
    |
    How can I get my instructional text to display when I open the pdf?
    Ajlan huda marked SumitV's reply on How can I get my instructional text to display when I open the pdf? as helpful. View the full replyMarked as helpful:Hi Pacific Immigration, In Adobe Acrobat/ Adobe Reader there is no “?” shown for help, but if you mouse over the field for 1-2 seconds the Help text is shown.
    Following How can I get my instructional text to display when I open the pdf? in these streams: Inbox
    |

  • I'm finding Ios7 exceeding frustrating having to spend hours reinstalling and looking for last data. For example I cannot delete photos I have synced, applications are missing. Where can I get clear instructions to fix the mess?

    Where can I get clear instructions to clean up a mess that Ios7 has made of my data and info on my iPad. I can't delete photos, apps are missing, it's crazy and so frustrating. I have spent hours on this.

    How did the photos get onto your iPad ? If they were synced from a computer then they can't be deleted directly in the iPad's Photos app - instead they are deleted by not including them in your next photo sync from your computer's iTunes.
    For your apps, as long as they are still in your country's store then you should be able to redownload them via the Purchased tab in the App Store app on your iPad, and via the Purchased link under Quicklinks on the right-hand side of the iTunes store home page on your computer's iTunes. If you had backed up to your computer's iTunes before starting the update then you could redownload them to your computer's iTunes and then retry restoring to your backup and see if that copies the apps and their content back (the actual apps aren't included in a backup, just their content/settings, so for a restore to work fully you need to have the relevant apps in the Apps part of your library).

  • My password is no longer working.. I did NOT change it. I requested that it be re-rest and it would email me the steps to re-set. I've done this several times... I dont get the email w/ instructions.. Ive checked spam folder also.. please help

    my password is no longer working.. I did NOT change it. I requested that it be re-rest and it would email me the steps to re-set. I've done this several times... I dont get the email w/ instructions.. Ive checked spam folder also.. please help

    You can send iTunes an email about your password and they can reset it on their end and email you the temp password. When they reset the password they usually make it something generic like Apple06.11
    You can email them here: http://www.apple.com/support/itunes/contact.html?form=el&topic=Express%20Lane%20 inquiry
    If they don't get back to you, you can also call AppleCare: 1-800-275-2273 and see if they are able to reset.
    Hope that helps.

  • Why am I being billed for equipment that never worked from the get go, and that your representatives admitted never connected to the computer on your end?

    In September my husband and I were planning a cross country move and we thought that having a Jet Pack to go on line with while we were traveling would be a good idea. When we ordered it we told the representative that we did not need it until the 1st of Oct. as that was when we would be leaving. It arrived on our door on Sept 9th with the instructions to be sure and activate it within 2 weeks or we would lose the line. On the 19th we called in the activation and everything appeared fine. We hit the road on the 1st and Nothing, Na-Da, Zip, Zilch .... The equipment never worked from the get go! We called Verizon from the road on the 4th of Oct. to find out what was going on and the representative told us that the problem was with the computer on Verizon's end. We shut the equipment off for the rest of our trip and called for a refund on the 13th of Oct. We spoke to a representative named Juan, who again confirmed that it was Verizon's computer that had been the problem,  and we were assured that all fee's associated with the Jet Pack would be waived as the equipment never worked in the 1st place. He told us all we needed to do was return the broken equipment and that he would send us a return label. We received the return label and sent the equipment back on the 22nd of Oct. On our next bill no credits of any kind had been applied? We promptly picked up the phone and called Verizon again, on Oct 31st,  to find out what was going on? This time we spoke to Lou Ann. After about an hour and a half she finally managed to remove the fee's, or so we thought, and we hung up satisfied. On 11/5 our Nov. bill arrived again with no credits of any kind. We thought maybe the billing cycle hadn't had time to catch up with our most recent conversation so we called just to verify. This time we spoke to Moncheria. She did not understand what had happened and had to reenter the same refund that Lou Ann had earlier. Again another hour and a half on the phone. Today,11/28, we received our most recent bill and again no credits of any kind??? We picked up the phone and called again. This time we explained to Christian, (the above story), and she put us on the phone with her supervisor Carson. Carson proceeded to tell us that ALL of the previous representatives we had spoken to were wrong and that since we had not returned the equipment within 14 days of receiving it that we were beyond the limits of the refund policy, (which means we would have had to return it before we left on our trip), and the best she could do was offer us coupons for the future to offset THEIR mistake! No thank you I will keep my cash in my pocket!
    1st of all we ordered it for the 1st of Oct. not for 9th of Sept.
    Secondly we were told to be sure and activate it within 14 days or we would lose the line, never any mention of a refund time limit. (Who buys stuff anticipating an immediate refund?)
    And 3d THE EQUIPMENT NEVER WORKED IN THE 1ST PLACE!!
    Now Verizon is asking for $343.34 in fee's for something that never worked in the 1st place!! This is ridiculous and those fee's are defiantly under dispute! The way I see it trying to hold me to a contract that Verizon breached by sending out faulty equipment is just wrong! 

    Your issue has been escalated to a Verizon agent. Please go to your profile page for the forum, and look in the middle, right at the top where you will find an area titled "My Support Cases".  You can reach your profile page by clicking on your name beside your post, or at the top left of this page underneath the title of the board.
    Under “My Support Cases” you will find a link to the private board where you and the agent may exchange information.  This should be checked on a frequent basis  as the agent may be waiting for information from you before they can proceed with any actions. Please keep all correspondence regarding your issue in the private support portal.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer that solved your issue as the accepted solution.

  • TS1398 Got the dreaded no wifi on my wife's iPhone 4S. Wifi greyed out and no luck with the reset network instructions. Why isn't Apple addressing this issue? We are a family of Apple product users, 2 ipads, an ipad mini, 4 iPhones but one isn't working!

    Got the dreaded no wifi on my wife's iPhone 4S. Wifi greyed out and no luck with the reset network instructions. Why isn't Apple addressing this issue? We are a family of Apple product users, 2 ipads, an ipad mini, 4 iPhones but one isn't working! Issue began whenwe upgraded the operating system.....
    Come on Apple.....get this issue sorted out!

    Just out of warranty. This is a software issue. everything was ok until the software update. Apple just need to sort it out.

  • How to optimize the performance of crystal report?

    Hi,
    -I have to design a crystal report with best possible optimization. Optimization is main concern since report will run against 1-2 million data set. Though I am using parameter to fetch only the required data, required data can go till 1 million records.
    -Based on the input passed by the user I have to group the data in report. And for each selected parameter the Detail section I am printing is different. For example:-If user selects store then detail section is different and if user select Host then detail section will be different.
    -Report can be grouped by Time Field also. So to full fill this requirement I would have to create a sub report since other parameters are of string type and can be used in one formula to get parameter based grouping in report. However If I try to return Time filed from the same formula I get the errors the "Return type should be of String typeu201D. This forces me to create sub report for Time based grouping. If user selects Time Field to be grouped on, all the information in the main report gets suppressed and only the sub report gets printed.
    If user select store, Host and User in parameter to be grouped on, sub report gets suppressed.
    Now with the above mentioned points I tried to optimize the report in following way.
    -Printing 1 million records in the report does not make sense; hence we wanted to show the summary of all the records in chart section but wanted to print just 5000 records in detailed section. Suppressing detailed section after 5000 records does not help much since suppressing just saves the time in printing and does not limit the number of records to be fetched from the DB.I have a subreport also so it fetches the data 2 times from the DB hence makes the performance of the report worse.
    To solve this problem I used command object and put the charts in the subreport and detail in main report.
    In main report's Command Object I limited the number to records to be fetched from the DB to 5000 using rownum<5000 but in subreport's Command Object I did not set any limit in the query but I am doing all my aggregation in SQL which means do summary operation in DB and get only summarized data from DB.
    -To solve section problem I am using Template object (new feature added in CR 2008).In which I am returning the field based on the "Group By" parameter selected by user.
    -For time Field I have created two sub reports, one for chart and other one for details in the same way described in point one(Printing 1 million recordsu2026u2026).
    After implementing these points my crystal reports performance improved drastically. The report that was taking 24 minute to come back now taking only 2 minutes.
    However I want my report to come back with one minute. It returns if I remove the sub reports for Time Based Grouping but I can not do so.
    My questions here are,
    -Can I stop Subreport from fetching the data from DB if itu2019s suppressed?
    -I believe using Conditional Template Object is a better option rather than having multiple detailed sections to print the data for a selected Group. However any suggestion here to improve the performance will be appreciable.
    -since crystal report does not provide any option to limit the number of records to be fetched from DB, I am forced to use command object with rownum in where condition.
        Please let me know about other option(s) to get this done...If there is any.
    I am using Crystal report 2008.And we have developed our application the use JRC to export crystal report in PDF.
    Regards,
    Amrita
    Edited by: Amrita Singh on May 12, 2009 11:36 AM

    1) I have to design a crystal report with best possible optimization. Optimization is main concern since report will run against 1-2 million data set. Though I am using parameter to fetch only the required data, required data can go till 1 million records.
    2) Based on the input passed by the user I have to group the data in report. And for each selected parameter the Detail section I am printing is different. For example:-If user selects store then detail section is different and if user select Host then detail section will be different.
    3) Report can be grouped by Time Field also. So to full fill this requirement I would have to create a sub report since other parameters are of string type and can be used in one formula to get parameter based grouping in report. However If I try to return Time filed from the same formula I get the errors the "Return type should be of String typeu201D. This forces me to create sub report for Time based grouping. If user selects Time Field to be grouped on, all the information in the main report gets suppressed and only the sub report gets printed.
    If user select store, Host and User in parameter to be grouped on, sub report gets suppressed.
    Now with the above mentioned points I tried to optimize the report in following way.
    1) Printing 1 million records in the report does not make sense; hence we wanted to show the summary of all the records in chart section but wanted to print just 5000 records in detailed section. Suppressing detailed section after 5000 records does not help much since suppressing just saves the time in printing and does not limit the number of records to be fetched from the DB.I have a subreport also so it fetches the data 2 times from the DB hence makes the performance of the report worse.
    To solve this problem I used command object and put the charts in the subreport and detail in main report.
    In main report's Command Object I limited the number to records to be fetched from the DB to 5000 using rownum<5000 but in subreport's Command Object I did not set any limit in the query but I am doing all my aggregation in SQL which means do summary operation in DB and get only summarized data from DB.
    2)To solve section problem I am using Template object (new feature added in CR 2008).In which I am returning the field based on the "Group By" parameter selected by user.
    Edited by: Amrita Singh on May 12, 2009 12:26 PM

  • Javac: The exception Privileged instruction, why?

    Hi,
    I apologize for posting this question twice, I'm brand new to this forum. My question is both relatedto installation and compiling (I must have done a bad installation?).
    Here is my problem:
    I just installed jdk1.1.6 on my computer.
    The examples work fine but I can't compile.
    I get 2 different errors:
    1) When I try the 1.1 example:
    D:\dev\jdk1.1.6\demo\demo\Animator\1.1>d:\dev\jdk1.1.6\bin\javac animator.java
    =>
    The exception Privileged instruction.
    (0x0000096) occured in the application at location 0x00010104
    Click Ok to terminate, Cancel to debug.
    The debug doesn't help...
    2)When I try the 1.0.2 example:
    D:\dev\jdk1.1.6\demo\demo\Animator\1.0.2>d:\dev\jdk1.1.6\bin\javac *.java
    =>
    java.lang.NullPointerException
    at java.util.Hashtable.put(Compiled Code)
    at java.util.zip.ZipFile.readCEN(Compiled Code)
    at java.util.zip.ZipFile.<init>(ZipFile.java:61)
    at java.util.zip.ZipFile.<init>(ZipFile.java:71)
    at sun.tools.java.ClassPath.<init>(Compiled Code)
    at sun.tools.javac.Main.compile(Compiled Code)
    at sun.tools.javac.Main.main(Main.java:473)
    Here is the config of my computer:
    System Information report written at: 12/05/2001 11:06:23 AM
    [System Summary]
    Item Value
    OS Name Microsoft Windows 2000 Advanced Server
    Version 5.0.2195 Service Pack 2 Build 2195
    OS Manufacturer Microsoft Corporation
    System Manufacturer IBM
    System Model 684940U
    System Type X86-based PC
    Processor x86 Family 15 Model 0 Stepping 10 GenuineIntel ~1796 Mhz
    BIOS Version 09/27/01
    Windows Directory C:\WINNT
    System Directory C:\WINNT\System32
    Boot Device \Device\Harddisk0\Partition1
    Locale United States
    Time Zone Pacific Standard Time
    Total Physical Memory 261,424 KB
    Available Physical Memory 32,368 KB
    Total Virtual Memory 893,364 KB
    Available Virtual Memory 387,436 KB
    Page File Space 631,940 KB
    Page File C:\pagefile.sys
    Please help !
    Thanks :-)
    Catherine
    [email protected]

    I am also getting same error can you please help me in this matter.
    java.lang.NullPointerException
    at java.util.Hashtable.put(Compiled Code)
    at java.util.zip.ZipFile.readCEN(Compiled Code)
    at java.util.zip.ZipFile.<init>(ZipFile.java:61)
    at java.util.zip.ZipFile.<init>(ZipFile.java:71)
    at sun.tools.java.ClassPath.<init>(Compiled Code)
    at sun.tools.javac.Main.compile(Compiled Code)
    at sun.tools.javac.Main.main(Main.java:465)

  • The exception Privileged instruction.

    Hello,
    I builded a dll which communicates with TDC card. But when I call dll from labview. It gives me the error
    The exception Privileged instruction.
    (0xc0000096) occured in the application at location 0x02e6121c.
    I have installed giveio driver.
    I am not getting where am I geeting wrong. Can somebody help me out.
    Regards,
    Maithili

    Maithili,
    It very much sounds like the error is in the DLL that you built. I assume that you have tested it outside of LabVIEW?
    Do you know exactly where the error is happening? You should set a breakpoint on the Call Library Function node and if the error happens before then, then the error is in LabVIEW. If the error happens during the Call Library Function, then the error is in the DLL itself. From there, you can print information from your DLL as you go to see where the crash is happening or use the information in the "Using External Code in LabVIEW" manual that is on your PC in the manuals directory under your LabVIEW directory.
    With no files (and no hardware to test if I had), I cannot offer any more advice. If you can do a little more digging or post a
    more detailed explaination of your issue, then the community can take another look.
    Randy Hoskin
    Applications Engineer
    National Instruments
    http://ww.ni.com/ask

Maybe you are looking for

  • New development - selection screen

    Hi gurus, we are introducing a new functionality via devolopment transaction Z, and we need to enter a selection screen prior to the results, just to enter a kind of filter for fields such us: 1. Purchasing document creation date. 2. Document type. 3

  • I bought a movie on a different device after just changing the Apple ID on it and now I can't download it on my other device

    I Didn't have my iPad with me so I use another iPad and changed the Apple ID on it so I could look at and buy the movie I wanted and watch it later on my own iPad.  When I went to download it it wasn't in my videos but it was in my purchased.  So whe

  • MSI GT70 20C WIN 8.1 UPGRADE ISSUES!!!!

    Hello everyone  A bit of a quagmire here.  I have a new MSI GT70 20C.  It is an awesome gaming machine to say the least.  I decided to choose the best of two evils and decided to upgrade to WIN 8.1..... Here is the issue: 1:Uninstalled the old Killer

  • Exporting 16x9 Without Black Letterbox

    Hi everyone-- I would like to export a 16x9 video as a quicktime without the black letterbox. Is there anyway to do this? All exports I have tried export the video in a 4x3 frame with black letterboxing. Thanks!

  • I am deperately trying to change the background color dynamically ?

    Hello everybody, i am actually working on a portfolio website. I want the background color change each time we click on a button on the navigation bar. My problem is that when you click on a button it changes the background from the start (white back