Security in FR Reports removed when re-importing

We needed to make some changed to all FR Reports (100+) so in Workspaces Explorer we chose to:
1) Export the entire FR folder(including subfolders) by clicking File\Export
2) Make the changes (updated the Related Content link) to the *.des files
3) Import thru workspace by clicking File\Import
However, when we do this the original Reports will be overwritten, but then we loose the Security we assigned on the Reports. Where can we export the Security assigned on the Reports AND Folders for FR so that we do not have to reassign security?
Appreciate the assistance!
Robert

If you are on version 9.3.1 there isn't a way. And we had the same heartburn. And in some instances the apply permissions to children didn't always work. this feature is very flaky
JTS

Similar Messages

  • Security rule whether be checked when journal import

    Hi All,
    Thanks for your attention, I have got an issue about security rule.
    When I used gl_interface to import journals into EBS system, I think the security rules will not be checked, it only check cross-validation, but I found sometimes security rule is checked for some responsibilities when journal import, why this happened, and is there any profile or setup to control it?
    Thanks for your help.
    Best Regards
    Spark

    Hi Spark,
    It looks like Journal Import doesn't check for Security rules, but it checks for cross validation rules upon dynamic insertion. Sorry for the misled earlier. You can check the metalink note, Journal Import - FAQ [ID 107059.1]. Here are the comments for the note,
    A04. Does the Journal Import process check for Cross-Validation or Security
    Rules violations?
    Journal Import does not check security rules. Transactions that come
    from Oracle subledgers (AR, AP, etc.) already have the CCID (Code
    Combination ID) in the GL_INTERFACE table. These have been validated
    in the feeder system.
    You can also populate the accounting segments directly into the
    gl_interface table and let Journal Import populate the
    code_combination_id. If dynamic insertion is enabled, and this is a
    new combination, then the import program will check for cross
    validation rule violations.
    Thanks,
    Kiran

  • What do I do if my F-Secure security product is partially removed when upgrading to Windows 10?

    QuestionWhat do I do if my F-Secure security product does not work after upgrading to Windows 10?
    AnswerOnce you have completed your Windows 10 upgrade, you may experience the following with your F-Secure security product:
    Your F-Secure security product does not start up.
    On your computer, you can't find the F-Secure security product icon in the system tray at the bottom of the screen.
    Your F-Secure security product does not show up in the list of installed apps and features in Settings > Systems > Apps & features.
    If this happens, it means that the Windows 10 upgrade has unfortunately removed some of the F-Secure security software components, and the product fails to start up as it should.
    To get your F-Secure security product working normally again, the F-Secure security product needs to be removed from your computer, and the product reinstalled. To do this:
    Download and run the Uninstallation Tool for Windows. You can download the tool here. The instructions for the Uninstallation Tool for Windows are here.  
    Reinstall the F-Secure security product on your computer. You can download the product from the F-Secure website or from your My SAFE account, depending on your subscription.

    Thanks but the tool only works if you have one working windows installation and it's designed for mult-boot systems.  I don't have a multi-boot system and when the Windows 10 upgrade fails there is no active working Windows install to turn to. The partition gets corrupted and has a "RAW" status until you run chkdsk with gets it back to "NTFS" status but it won't boot.  My only two options at this point is to restore back to an image backup or install Windows 7 all over again. I'm just going to give up on this HP laptop, to me it's just not compatible with running this upgrade, so unless someone else has any other ideas this attempt to upgrade is over. Thanks again

  • When I import midi on an older version of itunes, how do I remove the background crackling after the midi to mp3 conversion?

    When I import a midi file to itunes (older version as this feature is missing from newer versions) I get a lot of crackling in the background when I convert it.  My midi files don't do that on their own and when I don't convert the file in Itunes, it sounds clear.  How do I get it to sound like the standard playback or if that's not possible, how do I get it to sound clearer?

    Do a web search for "revert iTunes".  There are many web sites with detailed instructions.  It is a complicated process and I do not think it can be achieved with Time Machine alone.  Time Machine can act as a source for your old library file but the rest involves going into protected files and folders of the system and removing various components.  Oh, the version to which you want to revert also has to be one of the few still available for download.  I don't, for example, think you can download a copy of iTunes 12.0  It would have to be 11.4 and you would have to have a backup copy of your library file from back when you used that version.

  • Cell editor removed when table resized

    I'm using Java 1.5.0_06 in my application. I have a JFrame which contains a JTable. I use FormLayout (which is like GridBagLayout). When the frame resizes, the table resizes too.
    When I enter edit mode in a cell of the table and resize the frame (and the table), the cell exits edit mode. The editor of the cell is removed when the table is resized which causes the value that I had entered in the cell to be lost.
    Is there a way to stop cell editing when the frame is resized instead of the cell just exiting edit mode.
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.table.DefaultTableModel;
    import com.jgoodies.forms.factories.FormFactory;
    import com.jgoodies.forms.layout.CellConstraints;
    import com.jgoodies.forms.layout.ColumnSpec;
    import com.jgoodies.forms.layout.FormLayout;
    import com.jgoodies.forms.layout.RowSpec;
    public class ResizableTableTest extends JFrame {
         final JScrollPane _scrollPane;
         public static void main(String[] args) {
              ResizableTableTest frame = new ResizableTableTest();          
                frame.addWindowListener(new WindowAdapter() {
                     public void windowClosing(WindowEvent e) {
                          System.exit(0);
                frame.setSize(451, 340);
                frame.setVisible(true);
         public ResizableTableTest() {
              super();
              getContentPane().setLayout(new FormLayout(
                   new ColumnSpec[] {
                        new ColumnSpec("default:grow(1.0)"),
                        FormFactory.RELATED_GAP_COLSPEC,
                        FormFactory.DEFAULT_COLSPEC},
                   new RowSpec[] {
                        new RowSpec("default:grow(1.0)"),
                        FormFactory.RELATED_GAP_ROWSPEC,
                        FormFactory.DEFAULT_ROWSPEC,
                        FormFactory.RELATED_GAP_ROWSPEC,
                        FormFactory.DEFAULT_ROWSPEC,
                        FormFactory.RELATED_GAP_ROWSPEC,
                        FormFactory.DEFAULT_ROWSPEC,
                        FormFactory.RELATED_GAP_ROWSPEC,
                        FormFactory.DEFAULT_ROWSPEC}));
              _scrollPane = new JScrollPane();
              getContentPane().add(_scrollPane, new CellConstraints(1, 1, CellConstraints.FILL, CellConstraints.FILL));
              addTableToScrollPane();
         private void addTableToScrollPane() {
               JTable table = new JTable();
             DefaultTableModel model = (DefaultTableModel)table.getModel();
             table.setRowSelectionAllowed(false);
             table.setCellSelectionEnabled(true);
             //Add some columns
             model.addColumn("column A");
             model.addColumn("column B");
             model.addRow(new Object[]{"item1", "apple"});
             model.addRow(new Object[]{"item2", "banana"});
             model.addRow(new Object[]{"item3", "carrot"});
             model.addRow(new Object[]{"item1", "grape"});        
             _scrollPane.setViewportView(table);          
    }thanks,

    I would assume that on the resize of the table the
    editing cancelled event is being fired...
    You could try overriding the method in the JTable and
    when it gets fired, fire the editing stopped method
    instead... not sure whether that will work thoughI tried that, but it didn't help. On searching for this problem, I saw a bug report on this very problem.
    Here's info on a related bug in java:
    Cell editing does not complete when JTable loses focus
    Lost newly entered data in the cell when resizing column width
    And here's an interesting article:
    Why Editable Table Cells Are Evil
    Message was edited by:
    petes1234

  • I see there is no way to change the security questions i set up when I first purchased my ipod touch. Software takes you in circles with no help

    I see there is no way to change the security questions i set up when I first purchased my ipod touch. All the answers I get do not work. Can't by another device until I get around this issue.

    Reset Security Questions
    Frequently asked questions about Apple ID
    Manage My Apple ID
    Or you can email iTunes Support at iTunes Store Support.
    If all else fails:
      1. Go to: Apple Express Lane;
      2. Under Product Categories choose iTunes;
      3. Then choose iTunes Store;
      4. Then choose Account Management;
      5. Now choose iTunes Store Security and answer the bullet questions, then click
          Continue;
      6. Sign in with your Apple ID and press Continue;
      7. Under Contact Options fill out the information and advise iTunes that you would
          like your security/challenge questions reset;
      8. Click Send/Continue.
    You should get a response within 24 hours by email.
    In the event you are unsuccessful then contact AppleCare - Contacting Apple for support and service.
    Another user had success doing the following:
    I got some help from an apple assistant on the phone. It is kind of round about way to get in.
    Here is what he said to do and it is working for me...
      a. on the device that is asking you for the security questions go to "settings", > "store" >
          tap the Apple ID and choose view"Apple ID" and sign in.
      b. Tap on payment information and add a credit/debit card of your preference then select
          "done", in the upper right corner
      c. sign out and back into iTunes on the device by going to "settings"> "store" > tap the
          Apple ID and choose "sign-out" > Tap "sign -in" > "use existing Apple ID" and you
          should be asked to verify your security code for the credit /debit card and NOT the
          security questions.
      d. At this time you can remove the card by going back in to edit the payment info and
          selecting "none" as the card type then saving the changes by selecting "done". You
          should now be able to use your iTunes store credit without answering the security
          questions.
    It's working for me ...I just have to put in my 3 digit security pin from the credit card I am using.
    Good Luck friends!

  • Report fails when run in Workspace, but it works in  reporting studio

    Hi all,
    I have a bqy file which runs fine in the design studio client (v9.3) however when I import it into the Workspace and try and run it i get the following error :
    An Interactive Reporting Service error has occurred.-SQL API: [SQLFetchScroll], SQL RETURN: [-1], SQL STATE: [HY010], SQL NATIVE ERROR: [0], SQL MESSAGE: [[DataDirect][ODBC lib] Function sequence error]
    (2001)
    The query was built from importing the SQL as below:
    DECLARE @Fig1 int
    DECLARE @i int
    DECLARE skuCursor CURSOR FOR
    Select r.QtyReceived / b.qty as Figure1
    from ReceiptDetail r
    inner join BillofMaterial b on b.SKU = r.Lottable03
    where r.DateReceived > getdate() - 14
    create table #TEMPIG (Test char(2),Median1 int)
    OPEN skuCursor
    FETCH NEXT FROM skuCursor INTO @Fig1
    set @i = 0
    WHILE @@FETCH_STATUS = 0
    BEGIN
    while @i < @Fig1
    begin
    insert into #TempIG (Test,Median1) values ('MV',@Fig1)
    --print @Fig1
    set @i = @i + 1
    end
    set @i = 0
    FETCH NEXT FROM skuCursor INTO @Fig1
    END
    CLOSE skuCursor
    DEALLOCATE skuCursor
    --select cast(Median1 as Int) from #TEMPIG
    --order by 1 asc
    select
    AVG(Median1) as MedianVal
    from
    select Median1,
    ROW_NUMBER() over (partition by Test order by Median1 ASC) as MedRank,
    COUNT(*) over (partition by Test) as MedCount
    from
    #TEMPIG
    ) x
    where
    x.MedRank in (x.MedCount/2+1, (x.MedCount+1)/2)
    drop table #TEMPIG
    Could anyone explain what is wrong and how to put it right.
    Many Thanks in advance.
    Ian.

    Hi,
    OCEs the same? Yes
    Client drivers the same? Yes
    DAS connection information set up same as desktop connection information Yes
    The server which workspace runs is on Linux, but the reporting studio client runs on windows desktops, this is the only difference i know off.
    I have chopped and changed things whilst testing this report and it appears that the fault relates to the Cursor and the navigation (Fetch) through the records.
    This is starting to drive me around the bend.
    Please do come back to me if you have any ideas.
    Many thanks in advance.
    Ian.

  • Alv show in report but when see in spool (after run background job) there i

    my program have some error when i run result alv show in report but when see in spool (after run background job) there is no data, (other program can see result in spool)
    Please help
    here is some example of my program
    ********************************declare internal table*****************************
    internal table output for BDC
    data : begin of t_output occurs 0,
    bukrs type anla-bukrs,
    anln1 type anla-anln1,
    anln2 type anla-anln2,
    zugdt type anla-zugdt,
    result(70) type c,
    end of t_output.
    *****get data from loop********************************
      loop at t_anla.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
             EXPORTING
                  INPUT  = t_anla-anln1
             IMPORTING
                  OUTPUT = t_anla-anln1.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
             EXPORTING
                  INPUT  = t_anla-anln2
             IMPORTING
                  OUTPUT = t_anla-anln2.
    check record is correct or not
        select single bukrs anln1 anln2 zugdt
        into w_output
        from anla
        where bukrs = t_anla-bukrs and
        anln1 = t_anla-anln1 and
        anln2 = t_anla-anln2
       zugdt = '00000000'
    if record is correct
        if sy-subrc = 0 and w_output-zugdt = '00000000'.
          w_output-bukrs = t_anla-bukrs.
          w_output-anln1 = t_anla-anln1.
          w_output-anln2 = t_anla-anln2.
          w_output-result = 'Yes : this asset can delete'.
          append w_output to t_output.
    if record is not correct
        elseif sy-subrc = 0 and w_output-zugdt <> '00000000'.
    there is error record  this asset have value already
          v_have_error = 'X'.
          w_output-bukrs = t_anla-bukrs.
          w_output-anln1 = t_anla-anln1.
          w_output-anln2 = t_anla-anln2.
          w_output-result = 'Error : this asset have value already'.
          append w_output to t_output.
        else.
    there is error record this asset donot exist in table anla
          v_have_error = 'X'.
          w_output-bukrs = t_anla-bukrs.
          w_output-anln1 = t_anla-anln1.
          w_output-anln2 = t_anla-anln2.
          w_output-result = 'Error : this asset doest not exist'.
          append w_output to t_output.
        endif.
    *end of check record is correct or not
        clear w_output.
      endloop.
    ******************************show data in ALV***************************************************
    show data from file in ALV
      perform display_report_ALV.
    *&      Form  display_report_ALV
    form display_report_ALV.
      DATA: LT_FIELD_CAT TYPE SLIS_T_FIELDCAT_ALV,
          LT_EVENTS TYPE SLIS_T_EVENT,
          LV_REPID LIKE SY-REPID.
      PERFORM ALV_DEFINE_FIELD_CAT USING LT_FIELD_CAT.
      PERFORM ALV_HEADER_BUILD USING T_LIST_TOP_OF_PAGE[].
      PERFORM ALV_EVENTTAB_BUILD USING LT_EVENTS[].
      LV_REPID = SY-REPID.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                I_CALLBACK_PROGRAM = LV_REPID
                IT_FIELDCAT        = LT_FIELD_CAT
                I_SAVE             = 'A'
                IT_EVENTS          = LT_EVENTS[]
           TABLES
                T_OUTTAB           = t_output
           EXCEPTIONS
                PROGRAM_ERROR      = 1
                OTHERS             = 2.
      IF SY-SUBRC NE 0.
        WRITE: / 'Return Code : ', SY-SUBRC,
          'from FUNCTION REUSE_ALV_GRID_DISPLAY'.
      ENDIF.
    endform.
    *&      Form  alv_define_field_cat
          text
         -->P_LT_FIELD_CAT  text
    FORM ALV_DEFINE_FIELD_CAT USING  TB_FCAT TYPE SLIS_T_FIELDCAT_ALV.
      DATA: WA_FIELDCAT LIKE LINE OF TB_FCAT,
        LV_COL_POS TYPE I.
      DEFINE FIELD_CAT.
        CLEAR WA_FIELDCAT.
        ADD 1 TO LV_COL_POS.
        WA_FIELDCAT-FIELDNAME = &1.
        WA_FIELDCAT-REF_TABNAME = &2.
        WA_FIELDCAT-COL_POS = LV_COL_POS.
        WA_FIELDCAT-KEY = &3.
        WA_FIELDCAT-NO_OUT = &4.
        WA_FIELDCAT-REF_FIELDNAME = &5.
        WA_FIELDCAT-DDICTXT = 'M'.
        IF NOT &6 IS INITIAL.
          WA_FIELDCAT-SELTEXT_L = &6.
          WA_FIELDCAT-SELTEXT_M = &6.
          WA_FIELDCAT-SELTEXT_S = &6.
        ENDIF.
        WA_FIELDCAT-DO_SUM = &7.
        WA_FIELDCAT-OUTPUTLEN = &8.
        APPEND WA_FIELDCAT TO TB_FCAT.
      END-OF-DEFINITION.
      FIELD_CAT  'BUKRS'  'ANLA'     'X' '' 'BUKRS' 'Company Code' '' ''.
      FIELD_CAT  'ANLN1'  'ANLA'     'X' '' 'ANLN1' 'Asset Number' '' ''.
      FIELD_CAT  'ANLN2'  'ANLA'     'X' '' 'ANLN2' 'Asset Sub Number' '' ''.
    FIELD_CAT  'ATEXT'   'T5EAE'     'X' '' 'ATEXT' 'Result' '' ''.
      FIELD_CAT  'RESULT'  ''     'X' '' 'RESULT' 'RESULT' '' ''.
    ENDFORM.                    " alv_define_field_cat

    Hi,
    Check this code..
    FORM display_report_alv.
      DATA: lt_field_cat TYPE slis_t_fieldcat_alv,
      lt_events TYPE slis_t_event,
      lv_repid LIKE sy-repid.
      PERFORM alv_define_field_cat USING lt_field_cat.
      PERFORM alv_header_build USING t_list_top_of_page[].
      PERFORM alv_eventtab_build USING lt_events[].
      lv_repid = sy-repid.
      IF sy-batch EQ 'X'.  ----> " System Field for Backgroud..if Background use list display
        CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
          EXPORTING
            i_callback_program = lv_repid
            it_fieldcat        = lt_field_cat
            i_save             = 'A'
            it_events          = lt_events[]
          TABLES
            t_outtab           = t_output
          EXCEPTIONS
            program_error      = 1
            OTHERS             = 2.
      ELSE.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            i_callback_program = lv_repid
            it_fieldcat        = lt_field_cat
            i_save             = 'A'
            it_events          = lt_events[]
          TABLES
            t_outtab           = t_output
          EXCEPTIONS
            program_error      = 1
            OTHERS             = 2.
      ENDIF.
      IF sy-subrc NE 0.
        WRITE: / 'Return Code : ', sy-subrc,
        'from FUNCTION REUSE_ALV_GRID_DISPLAY'.
      ENDIF.
    ENDFORM.                    "display_report_ALV

  • When I import a CD, itunes quits

    I finally got itunes to work yesterday after not opening for awhile. i imported Cd's just yesterday and it worked fine.
    Itunes is perfectly fine except, when I import a CD, it comes up with a message saying "Itunes has encountered a problem and needs to close" and there are two buttons saying send error report and dont send (i have windows XP). I restared my computer a couple of times and the same message keeps reappearing.
      Windows XP  

    I hate to say it but you will probably need to uninstall and reinstall. Download the newest version and install that version. Hope this helps.

  • Upon running Norton Security Suite Diagnostic Report on my HP Pavilion dv6 Notebook PC on a Windows 7 Home Premium platform, it shows 2 (hidden) devices not working: Antilog32, and AODDriver4.1--Code 24.

    On the General tab for device status it says: "This device is not present, is not working properly, or does not have all its drivers installed. (Code 24)" The only option available when I click
    on properties of both devices is Start. When I click on Start for Antilog32, this message shows: "The system encountered the following error when it attempted to start the service: The system cannot find the file specified." For AODDriver4.1, the
    message when you click Start on Driver tab is: "The system encountered the following error when it attempted to start the service: The system cannot find the path specified." I do not know how to proceed or
    how to fix this, or where to find a solution. Please help!

    Hello pds48478480,
    Do you mean you got the error code 24 in Norton Security Suite Diagnostic Report?
    Please share us a screenshot for better analyzation.
    Please take a look at the following thread about the AODDriver4.3.
    http://answers.microsoft.com/en-us/windows/forum/windows8_1-performance/the-aoddriver43-service-failed-to-start-due-to-the/cb6b7f03-922b-4b82-972f-e92ef9919964
    AODDriver 4.3 is used by AMD OverDrive which tune parameters to help system stability, optimize performance, and control cooling/acoustic characteristics.
    With the issue description it seems the driver and the service is either stopped or not working correctly.
    Refer to the link below and install the latest version of AMD OverDrive.
    http://www.amd.com/en-us/markets/game/downloads/overdrive
    Please note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Html tags removed when #COLUMN_HEADER# is used in column template

    Hi all,
    I'm using APEX 4.0.2, theme 2 Builder Blue.
    I am trying to add html tags to dynamically generated column headings of a dynamic SQL Report.
    When using a standard report template, the headings contain the html tags. However when I want to use one of the vertical lay-outs all html tags are removed. After some research I found out that when the substitution string #COLUMN_HEADER# is used within the column headings part of the template, the html tags are being preserved. They are removed however when the #COLUMN_HEADER# substitution string is used in the column templates part of the template.
    This is easily testable by using for instance "return htf.bold ('COL01')" as dynamic column header.
    Is this a bug or am I overlooking something? Is there another solution maybe to preserve html tags in the column heading?
    Cheers, Erik

    webdynpro appears to use XHTML instead of HTML so the syntax is a bit more limitted and more picky.
    this link explains the difference between the two syntaxes:
    http://reference.sitepoint.com/html/html-xhtml-syntax
    you can test your tags in this validator tool
    http://validator.w3.org
    solved?  have a good week, and holidays.

  • HT1399 When I import a CD to itunes, it splits the album in to multiple entries. I have changed the info on some but others just will not merge. Is there an easy way to do this and can I stop them from splitting in future? Thanks

    When I import a CD to itunes, it splits the album in to multiple entries. I have changed the info on some but others just will not merge. Is there an easy way to do this and can I stop them from splitting in future? Thanks

    Okay this is what fixed my problem. Some kind of error/glitch occured half-way through importing that third cd that prevented further imports from any other cd. Once I completely removed the half-imported cd album from my library I could further import cd's without any problems.

  • On my Macbookpro computer when I import a photo to LR, the photos import two stops overexposed. I have not done anything to set up the import process. Freshly installed LR from CC

    I just downloaded LR 5.7 on my new MacBookPro computer. I did not set up any presets or anything at all, for that matter. When I import a photo, it changes in exposure automatically. Two stops overexposed!! I never had that issue with my other LR programs on Dell.
    any advice?

    Generally I would not use Facebook for sharing any photos, it compresses the photos substantially, and when you have shadows and dark colours you get visible "bands" where there should be subtle gradients, ie at sunsets and sunrises.
    It sounds like you are using two methods to upload to Facebook:
    1. Sharing from within Aperture, which basically syncs Facebook with your Aperture album, so any changes made at either end gets synced, hence the deletions from Albums, although the original file should still be in your library, just removed rom the album. It is like a playlist in iTunes.
    2. Exporting pics and uploading to Facebook from the browser.
    I am not sure how method 1 gets compressed, but I know that uploading hi-res jpegs to Facebook using method 2 results in poor quality images.
    I wouldn't even bother comparing option 1 or 2, and they will both be poor images once you view them on Facebook, as opposed to viewing uploaded images on proper image sharing / hosting sites.
    Your problem is not with Aperture, it is using Facebook for showing your work.
    If you export pics form Aperture at high res jpegs or TIFFs your images will be fine.
    If you insist to use Facebook as your way to share your work, then your workflow should be this:
    1. Right click images you want to share.
    2. Select Export version.
    3. Export as 100% size and ensure the export settings are set at 100% quality.
    4. Upload this pic into Facebook.
    This will get you the best image size and resolution on Facebook.
    See how you go.

  • Different Audio Tracks when you import DVD VOB Files

    I imported some vob files from a dvd and it only gives me the first audio track in premiere but i need the 2nd audio track. How do i tell premiere i only want the 2nd track?

    function(){return A.apply(null,[this].concat($A(arguments)))}
    Colin Brougham wrote:
    ... would like to know for the future how to resolve this issue.
    If there is no way to get the 2nd audio track then i would consider that to be a bug that hopefully Adobe can fix in next patch.
    Ideally when you import a vob fileset premiere should automatically drop all the audio tracks into the timeline, not just the first one.
    Don't use a DVD, plain and simple. The fact that we can edit this stuff at all is just a handy shortcut that works most of the time. I suspect that, given the nature of the material and the far greater precedence for native editing of professional camera sources, this is about as good as its going to get. You can certainly report it as a bug (which its not) or request it as a feature, but I sincerely doubt that this would be given a great deal of priority.
    I'm not saying this just to be a jerky naysayer: the fact is that there is limited time and resources that go into development of each point release and each full version, and the things that benefit the most people have the greater likelihood of being fixed or included. I'd be surprised if even 1% of Premiere users needed this functionality. Believe me--I've wanted dozens of things that I know won't ever make it into the program, simply because they won't benefit many people. But make a feature request and see what happens...
    wow??  what a terrible, mean, and unnecessary negative response?  "jerky naysayer" ??  never heard that term, but it sounds accurate.
    Thats like walking up to someone and saying "i dont mean to be cruel, but your fat and ugly"
    anyways, not sure what your point is, other than you have a crystal ball that tells you less than 1% of the premiere users in the world ever need to grab a b-roll from a dvd and i think i could find plenty of people who would disagree with you. I have been doing digital video editing for 20 years and been using premiere for about 15 years now i think since it first came out. I work at a tv station with lots of other video editors and we have all needed to pull a clips off dvd's many times in our lives. Im sorry that i dont have an XDCAM HD video tape of the first moon launch to capture, so for now i have to grab a clip from a dvd.
    Thanks for your attempted "help" but i'd rather you not hiijack my thread by negating my questions and requests. My company has purchased probably over a million dollars in adobe software licenses over the years and there is nothing wrong with my opinions and requests.
    thanks

  • Report Painter - KE30 - Export/Import

    Hi,
    I have a group of 'Z' report's in KE30 but i can't transport them, because they where made in QAS system and when i generate the transport order it becomes "local", so i can't transport the form that i want to PRV.
    Is there any possibility to make a Export (QAS) / Import (PRV) of the form???
    Thx in advance.
    Cumprs.

    Hi Rui,
    u will have to export-import in the folowing order:
    -Any new variables (GS17 - Export ,GS18 - Import )
    -new sets (GS07 - Export ,GS08 - Import )
    -new report (GR37 - Export ,GR38 - Import )
    -new report group (GR57 - Export , GR58 - Import )
    -new library (GR27 - Export , GR28 - Import )
    I hope this sovles ur query.
    Points pls if useful
    Regards,
    Kiran

Maybe you are looking for

  • Flex 2 beta 3 compiler confused by syntactic error

    Hi, The Flex Builder 2 beta 3 compiler seems to get confused by a specific syntactic mistake I've made in my code. It is not making a "proper" syntax error report. It's instead throwing a nasty "An internal build error has occurred. Please check the

  • Converting windows jpg to mac jpg

    I have a number of jpgs that I saved on a thumb drive when I was using a Windows machine. Now, I'm exclusively Mac, and my computers won't read these jpgs. Is there a way to get a Mac to open up these files or am I out of luck?

  • Fotos for Mac, sync to iCloud incomplete

    I do have 8,500 photos in my Fotos (Mac App) library. 5,000 of them were already synced to my iCloud account. Now it stops syncing. if i look at the options, it says "uploading 20" but nothing happens. My iCloud drive has enough free space, so it sho

  • Same user with different access rights depending on internet or intranet

    Hi gurus, I'm faced with the following situation. Users are able to access our portal (EP7.0) via Intranet as well as via Internet. But via Internet the users shouldn't be able to access security critical content (sitting in an internet cafe and chec

  • How to deal with a property file and EJB

    Hello, I'm quite new to the EJB technology. My problem is, how to handle a property file? Let's say I have a custom 'property.xml' (that holds some application specific constants) somewhere in my EJB jar or in a related jar (so it is in the classapth