No Mpeg2 on export list in CS6

Mpeg2 does not seem to be listed on the export list in my purchased Premiere CS6. What happened?

Missing Presets/Activation http://forums.adobe.com/thread/1050730?tstart=0 may help

Similar Messages

  • Submit and return exporting list to memory is not working in background

    Hi gurus,
    i am using submit statement and exporting list to memory. it works fine in foreground and i am able to get the output. but in case of background , it is not exporting the list.PLease help me on this.
    Thanks and regards,
    Rajeshwar

    Hello Rajeshwar,
    This is a duplicate thread. You have a thread with the same question.
    [list_to_memory is not working in background;
    Jayant Sahu

  • Will SUBMIT report EXPORTING LIST TO MEMORY work, when Run in Background?

    You can use SUBMIT <report> EXPORTING LIST TO MEMORY, and then Call the FM LIST_FROM_MEMORY to get the Data.
    This works fine, when the Program is Run in Foreground. My question is, will it work when I Run the Program in Background? i.e. When I Run the Program in Background, will the SUBMIT Statement, Export the List to Memory? Because only then the FM LIST_FROM_MEMORY will get the Data.
    Any alternate solution to meet the same requirement will be appreciated.

    It works for me... my spool output looked like:
    11.01.2008          JC: Calling program - test list to memory                  1                                                                               
    ZLOCAL_JC_SDN_CALLING_PROGRAM                started at 12:54:29                        
    ZLOCAL_JC_SDN_CALLING_PROGRAM                call complete 12:54:30                     
    ZLOCAL_JC_SDN_CALLING_PROGRAM                started at 12:54:30                                                                               
    11.01.2008           JC: Called program - testing list to memory                                                                               
    ZLOCAL_JC_SDN_CALLED_PROGRAM                 was called at: 12:54:29                    
    for the following code:
    report zlocal_jc_sdn_calling_program.
    parameters:
      p_start(1)            type c.
    start-of-selection.
      perform testcase.
    *&      Form  testcase
    form testcase.
      data:
       lt_list              type table of abaplist.
      write: / sy-repid, 'started at', sy-uzeit.
      submit zlocal_jc_sdn_called_program
        exporting list to memory
        and return.
      write: / sy-repid, 'call complete', sy-uzeit.
      call function 'LIST_FROM_MEMORY'
        tables
          listobject = lt_list.
      write: / sy-repid, 'started at', sy-uzeit.
      call function 'WRITE_LIST'
        tables
          listobject = lt_list.
    endform.                    "testcase
    and
    report zlocal_jc_sdn_called_program.
    start-of-selection.
      write: / sy-repid, 'was called at:', sy-uzeit.

  • Submit  ALV report in Background & exporting list to memory and return

    Dear all,
    I created one Z program (ZPROGRAM2). 
    Here i use SUBMIT ZPRORAM1_ALV exporting list to memory and return.
    call function 'LIST_FROM_MEMORY'.
    call function 'TABLE_COMPRESS' .
    ZPRORAM1_ALV output i send mail.
    This all are working in foreground.
    If i schedule ZPROGRAM2 in background. that SUBMIT ZPRORAM1_ALV statement not working.
    Please give me the Solution.
    Thanks,
    Durai.V

    It is because of the ALV output that you are using. Check the condition sy-batch = 'X' (background processing) and then display a classical report. It will work then.
    Thanks,
    Jayant

  • Submit program exporting list to memory and return in background

    Dear Experts,
    I am using the following code in one of my program to get opening and closing stock of a material.
    SUBMIT RM07MLBD
             WITH MATNR IN LOC_R_MATNR
             WITH WERKS IN LOC_R_WERKS
             WITH DATUM IN LOC_R_DATE
             WITH PA_SUMFL = WL_X
             AND RETURN
             EXPORTING LIST TO MEMORY.
    The program is working fine when executed in foreground. however when executed in background the job is cancelled. I tried to debug in background through SM50 and found that the program is terminated(No short dump but debug screen is closed and i dont see this program running in SM50) when the above code is executed.
    I found in the forum that when an ALV report is submitted in background it does not work. In my case the standard program is producing an ALV list (not ALV grid though).
    How would i avoid this situation because the program i am submitting is a standard program.
    What is the best solution to avoid from background jobs being cancelled when the above code is executed. Is there an alternate way that i can use to submit the program  and get data.
    Thanks in advance.
    Rajesh.

    Hi Rajesh,
    Just excute your standard program with the same input in back ground mode and check
    out put is coming or not .
    If output is not coming search by sy-batch and make the break points there and Ideantify
    the problem.
    When you execute the standard program  in back ground mode If the output is come it should in your Zreport also.
    I tried in my system in background mode also the output is coming for me.
    Thnx,
    Sam.

  • Why won't Acrobat X Pro honor the margin (art box) from PDF's exported from InDesign CS6?

    Why won't Acrobat X Pro honor the margin (art box) from PDF's exported from InDesign CS6?
    When I export a PDF from InDesign CS6 with specific margins, Acrobat does not recognize the Art box. (I have PitStop Pro 11 for page box view)

    Thanks Steve,
    We are exporting PDF's as you indicate. I see the same thing. The boxes are all the size of the original InDesign document. The PDF art box should be predicated by the margins in InDesign. When we had CS3, this worked great. Now, it seems that there is a disconnect between the two Adobe products honoring the page box size. I have contacted the Adobe techs via chat, and they had no clue what I was referring to. I find it mystifying that Acrobat can not interpret the art box set in InDesign as margins.

  • Exporting list of tables to text files?

    Anyone have solution for exporting list of SQL tables to text files?
    My goal is to have a flexible/dynamic way to export sql tables to text files that is executed via a sql job. I plan on having a configuration table that has sqltablename, fieldstoexclude (maybe fieldstoinclude - not decided), path, filename, includeheader,
    delimiter. So the SSIS package will query the configuration table and that will be the loop. One text file for each configuraton.tablename row.
    Does anyone have an already built solution that they can share? I have seen some with vb script and am not opposed, but would like to have a strictly SSIS package that uses SQL queries for the solution.

    Try using this as your query (Remember to set the database you want to use first:
    DECLARE @tableBuilder TABLE (dSQL VARCHAR(MAX))
    DECLARE @tableString VARCHAR(100), @newTableString VARCHAR(100), @columnString VARCHAR(MAX), @dSQL VARCHAR(MAX) = ''
    DECLARE tableBuilder CURSOR FOR
    SELECT
    'CREATE TABLE '+d.name+'.'+t.name ,
    c.name + ' ' +
    CASE
    WHEN st.NAME IN ('float','image','text','uniqueidentifier','date','time','datetime2','datetimeoffset','tinyint','smallint','int','smalldatetime','real','money','datetime','smallmoney','bigint','bit','hierarchyid','timestamp','xml','geometry','geography','sql_variant','sysname') THEN st.name
    WHEN st.name IN ('decimal','numeric') THEN st.name + '(' + CONVERT(VARCHAR,c.precision) + ',' + CONVERT(VARCHAR,c.scale) + ')'
    WHEN st.name IN ('nvarchar','nchar','char','varbinary','varchar','binary','ntext') THEN st.name + '(' + CONVERT(VARCHAR,c.max_length) +')'
    END + ','+ char(13)+CHAR(10)
    FROM sys.tables t
    LEFT OUTER JOIN sys.extended_properties ep
    ON t.object_id = ep.major_ID
    AND ep.name = 'microsoft_database_tools_support'
    INNER JOIN sys.columns c
    ON t.object_id = c.object_id
    INNER JOIN sys.systypes st
    ON c.system_type_id = st.xtype
    INNER JOIN sys.databases d
    ON DB_ID() = d.database_id
    WHERE ep.name IS NULL AND is_ms_shipped = 0
    ORDER BY t.name, c.column_id
    OPEN tableBuilder
    FETCH tableBuilder INTO @tableString, @columnString
    WHILE @@FETCH_STATUS <> -1
    BEGIN
    IF @tableString <> @newTableString
    BEGIN
    SET @dSQL = @newTableString + char(13)+CHAR(10) + ' (' + char(13)+CHAR(10) +LEFT(@dSQL,LEN(@dSQL)-3) + char(13)+CHAR(10) + ' )'
    INSERT INTO @tableBuilder ( dSQL ) VALUES (@dSQL)
    SET @dSQL = ''
    END
    SET @dSQL = @dSQL + ' ' + @columnString
    SET @newTableString = @tableString
    FETCH tableBuilder INTO @tableString, @columnString
    END
    CLOSE tableBuilder
    DEALLOCATE tableBuilder
    SELECT * FROM @tableBuilder
    Export the results of that as you like.

  • Need help in Exporting list to memory and return in background

    Hello Experts,
    I have a program which reads data from mc.9 by exporting list to memory.When I run it in foreground its working fine . However if I schedule it as a  background program it is unable to get list from memory.
    Any help will be appreciable.
    Thank you

    Hi jayaram,
    I tried to do as you said. Its creating spool request and status to completed (sm37 instead of sm36 bcoz i don't hv authorization in production server). Now I didn't see any errors in job log. But data coming to ztable is as usual ( all are ZEROS).
    Hey when i tried doing it as below
      SUBMIT RMCB0300 WITH SL_WERKS-LOW = P_WERKS
                      WITH SL_LGORT = 'W001'
                      WITH SL_SPMON-LOW = P_FPERIOD
                      WITH SLV_NO = 'MC.9N'
                      WITH SL_SPMON-HIGH = P_FPERIOD EXPORTING LIST TO MEMORY AND RETURN .
      CALL FUNCTION 'LIST_FROM_MEMORY'
        TABLES
          LISTOBJECT = LISTOBJECT
        EXCEPTIONS
          NOT_FOUND  = 4
          OTHERS     = 8.
      IF SY-SUBRC <> 0.
        if SY-SUBRC = 4.
          message 'not_found' type 'i'.
        ELSEIF SY-SUBRC = 8.
          message 'others' type 'a'.
        endif.
      ENDIF.
    I found that my job with completed status but with in job log i found error of type I means that the error is with notfound type in exceptions.
    Hey sorry for the postings may be due to some issues Im unable to see what i have replied in postings that's why im posting repeatedly..
    Edited by: Praveen Pathuri on Apr 23, 2009 7:30 AM
    Edited by: Praveen Pathuri on Apr 23, 2009 7:55 AM

  • Exporting list to excel..order changes?

    hello. thanks for the time and effort.
    i'm a SharePoint 2013 noob. so forgive the simple question.  we moved a team site from SharePoint 2010 to SharePoint 2013 and now a user is complaining that when they export to excel the list they see in IE the order gets changed around when it is exported
    to Excel. They said it worked in SP 2010 where the list they saw on the team site was exported in the same order to Excel.  It's an odd question that I wouldn't know where to start to look.  Thanks again.
    Also i did see that it cannot be exported when you open the site in Chrome due to ActiveX controls. 

    Hi,
    According to your post, my understanding is that you wanted to  exporting list to excel. However, the orders were changed.
    I recommend to create a page and add a Data View Web part using SPD on the page and then use SharePoint list as a Data source and add all items into the web part.
    Then from Data view web part exported data to excel.
    In addition, I recommend to modify view to remove the content type column.
    Here are two similar blogs for your reference:
    Question sequence is disordered when we export a survey list to excel
    SharePoint 2010 Export to Excel 2010 Fails to Export All Fields in Some Views
    The list cannot be exported when you open the site in Chrome due to ActiveX controls.
    An ActiveX control is used in SharePoint 2013 to validate if you have Excel installed or not.  You can try it out with Chrome on Windows -- it will fail.  
    Take a look at these ActiveX controls in use with SharePoint 2013:
    Plan browser support in SharePoint 2013
    More information:
    Chrome - Limitations with SharePoint 2013
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • How to move users between OU's from an exported list

    Hey Guys
    New to Powershell
    We are going to move large number of users from one OU to another.. For that I am using
    get-aduser -filter * -searchbase "OU=ou1,DC=domain" | move-adobject -targetpath "OU=ou2,DC=domain"
    As a backout plan we want to reverse that.. so what I am thinking is to right click on the OU1 and export list as txt. So we have all users in a tab/csv format with username.. How can I then write a one liner / script to search for all the users in the list
    in AD (or in specific OU2 in AD) and then move them to another OU (or OU1 as above example)?
    Or if there is a better quicker method please let me know.
    Cheers

    Hi,
    Here's something to start with:
    $targetOU = 'OU=Test 2,DC=domain,DC=com'
    Get-ADUser -Filter * -SearchBase 'OU=Test 1,DC=domain,DC=com' | ForEach {
    $props = @{
    Name = $_.Name
    Username = $_.SamAccountName
    OriginalOU = ($_.DistinguishedName -split ',OU=' -split ',')[1]
    NewOU = ''
    Status = ''
    try {
    Move-ADObject -Identity $_.DistinguishedName -TargetPath $targetOU -ErrorAction Stop
    $props.NewOU = ($targetOU -split ',' -replace 'OU=','')[0]
    $props.Status = 'Success'
    } catch {
    $props.Status = 'FAILED'
    New-Object PsObject -Property $props
    } | Sort Name | Select Name,Username,OriginalOU,NewOU,Status | Export-Csv .\userMoveDetails.csv -NoTypeInformation
    Don't retire TechNet! -
    (Don't give up yet - 12,950+ strong and growing)
    Sorry new to coding.. but this looks awefully complicated for my situation.. Won't the code which I have said simple move users from one container to another existing one? Just need to know how to do the reverse if needed .. OU2 will already have users..
    so need to differentiate and was thinking the right click on OU1 and export list.
    Thanks

  • Export list object to XXL

    All,
    I have a user that we gave a new laptop to and the spreadsheet button in t-code KSB1 will no longer let him export list object to XXL.  He is on GUI 7.10 and Office 2003.  I have checked the settings for Marcos in Excel and set them to allow all macros along with Visual Basic.  What setting am I missing?
    Thanks,
    Sean

    Hi Sean,
    You could also try the following:
    1. run TCode SA38
    2. run ABAP-Programm SALV_BS_ADMIN_MAINTAIN
    3. mark Detail-Selektion
    4. put a client and user
    5. run
    6. mark a row for the user
    7. delete with F7-key (or button)
    Then again the choice would have to appear for the XXL Format when exporting to Excel.
    Regards,
    ScriptMan

  • Export list object to xxl in sap

    Dear Team
    when downloading to spread sheet , i unknowingly pressed the "Always use selected format". Now i am getting the pop up for export list object to xxl. i want it to deactivated and and want the "option of select format"
    please help me.
    Regards
    Hamsa Jananee

    Hi Hamsa Jananee
    You do following:
    Re: "Always Use Selected Format" check box in line items report
    and
    Re: Export to excel popup after SP upgrade
    Hope it helps.
    Thanks and Regards,

  • White line appears on jpeg export in indesign CS6? How to get rid of the same?

    White line appears on jpeg export in indesign CS6? How to get rid of the same?

    Please find attached actual jpeg and the screen shot of settings at which the jpeg is exported.

  • "EXPORTING LIST TO MEMORY"  doesn't work

    Hi experts!
    In my program I need to update a vew deliveries using transaction VT04 and get from log numbers of updated deliveries. My code is:
    SUBMIT RV56TRGN USING SELECTION-SET 'VAN SALE/VT04'
    EXPORTING LIST TO MEMORY AND RETURN.
    CALL FUNCTION 'LIST_FROM_MEMORY'
    TABLES
    listobject = list_tab
    EXCEPTIONS
    not_found = 1
    OTHERS = 2.
    I get error:
    "Set screen is not allowed in subscreens"
    But when I run code:
    SUBMIT RV56TRGN USING SELECTION-SET 'VAN SALE/VT04' AND RETURN.
    It runs OK.
    Where may be the problem?

    test

  • Unable to modify Namespace on Exported Lists when moving to QC / Production

    I've created several lists and infopath based on external content types (SQL Server) and was able to export / import the ECTs to QC server environment - with no issues.
    However, any and all attempts to migrate my lists and forms that use the ECTs - results in a failure because i cannot change the development URL (namespace) to a QC / Production URL.
    It's frustrating that "migration" or "deployment" doesn't have support for modifying the actual URL used by created Lists/Forms "built in".
    My first thought was "Content Deployment", but I was told that doesn't work with ECTs...
    Any help would be appreciated.
    - Dan

    Hi,
    According to your post, my understanding is that you wanted to
    migrate several lists and forms based on external content types to QC server environment.
    I recommend that you can export the external content types to
    an XML file which are saved with a .bdcm file extension first
    by using the SharePoint Designer 2010 or using the Business Data Connectivity Service Application in Central Administration.
    Then, you can find <Entity Namespace> in the XML file and you can modify the URL to your
    QC server environment URL and migrate the external lists to your product environment.
    In addition, you can try to save the site containing the External List and forms as a template. This template will appear as a WSP file in the Site Collection gallery.
    And, you can save the WSP file out of the gallery, and open the WSP file in Visual Studio 2010 using the import WSP project.
    Then, you can make a new WSP file and move the External lists to your product environment by deploy them with a feature.
    For more information, you can refer to:
    http://camerondwyer.wordpress.com/2012/08/08/how-to-export-sharepoint-2010-external-content-types-bdc-metadata-models-to-xml-file/
    http://gadekarsatish.blogspot.com/2013/10/import-export-list-in-sharepoint-using.html
    http://jimecox.wordpress.com/2011/01/11/deploying-an-external-list-to-new-siteinstance-via-feature/
    Here are some similar threads for your reference:
    http://social.technet.microsoft.com/forums/sharepoint/en-US/2f5ddeef-011f-4827-8c22-67c8c85e93c6/moving-a-site-w-external-lists-bcs-to-another-environmentserver
    http://social.msdn.microsoft.com/Forums/en-US/6ecd1a7d-5a1f-4fbd-8360-1432ccbb07a1/moving-external-list-bcs-infopath-forms-to-another-sharepoint-instance?forum=sharepointdevelopmentprevious
    Best Regards,
    Linda Li
    TechNet Community Support

Maybe you are looking for

  • Locking access to serial ports

    I have two instruments on serial ports, and two independant VIs to control them. One VI may be running, or both, at any one time. The VIs may be running under LabView, or executables. I would like some simple and elegant way of ensuring that when I r

  • Wireless Connection after 10.4.8 Update

    I want to try and update again to 10.4.8. Has the wireless connection issue been resolved yet? The problem I was having before was when my mac went into sleep mode or I would reboot the wireless connection would be dropped. I tried just about everyth

  • OSS Note for MIGO "Update terminate (SAPSQL_ARRAY_INSERT_DUPREC)"

    Dear all I am facing problem during MIGO GR reference Others, MVT 561. Upon clicing Button: Save, I face 2 types of errors intermittently 1. Material document is saved and generated but when comes to displayed, it will say "Document 4900496xxx does n

  • How to transfer library when old computer gone and old iPod gone

    I recently got a new iPod Nano (lost the old one). I transferred some songs from my library to the iPod but not all the ones I want now.  Then my old laptop died completely--no access to library. I can SEE the old songs on iTunes. How do I transfer t

  • [Spry Effects] Dynamic Width

    Hi, I have a question about the blind Effect, the effect works superb but there is one little problem, the div block i use it on is of an dynamic width, this means if the site is resized to an smaller resolution the div moves with it. If i use the bl