Offer Multiple choice for movies playing in one location (Newbie)

Hi,
I'm definitely a Flash C3 newbie (newbie for all of flash!).
I've been able to figure out how to embed a flash movie in my web
page, but now I need to offer the user a choice of which movie to
play - and then start that movie in one location... this must be
CSS compliant and HTML STRICT... I think I need to address this
through Flash, as I can't figure out how to do it via HTML or
CSS... Help me, please.

The steps are correct but you've left out the one that adjusts the 2 through 9 movies position as compared to the others.
The first video would hold a position of 0,0 (upper left). When you add the second video you need to adjust its "offset" to position it next to but not overlapping the first. Since your videos are 100X75 you would set the offset of the second track too 100,0 (100 pixels to the right of the original and 0 pixels different in height). The third would be 200,0 offset.
On the second row your first file would be 0,75 (75 pixels below the upper video). The second file on the second row would be offset 100,75 and the third would be 200,75.
The third row would be 0,150 followed by 100,150 and 200,150.
You could add a slight "border" between each video and give it a color by using the bgcolor="your color" (standard html color codes) and adding that space by adjusting the offset plus your border width in pixels. Hollywood Squares style of video.
http://homepage.mac.com/kkirkster/03war/ one of my older files that uses multiple track video playback of a QuickTime file. The "TV" set is a track and the video that plays "inside" it is another. The still image movies are also separate tracks and QuickTime .mov files can hold up to 99 tracks.

Similar Messages

  • Multiple choices for User's Profile& Preferences System Code for GSM ?

      Hello,
    I’m LauraJ and I have a question regarding users being able to see in GSM the item codes for specifications entered by other business units users.
    When this user is making a generic search in GSM for the common specifications shared by multiple facilities, on the search page he/she is seeing only the system code from its facility; the codes entered by sister facilities users for the same specification are visible only if he/she opens the spec.
    I tried to change this into User’s Profile& Preferences System Code for GSM but I can choose only one option. How can I select multiple choices for System code?
    thanks in advance!

    In GSM and SCRM, you can only select one preferred System Code. But you can create an Enhancement Request for use to allow multiple.

  • Menu Button in ALV toolbar (multiple choices for a button)

    Hi abapers,
    I would like to have a button with multiple choices in the toolbar;
    at the moment I have created a menu button with just one function.
    Here is my code:
    CLASS lcl_event_receiver (Definition)
    CLASS lcl_event_receiver DEFINITION.
      PUBLIC SECTION.
        METHODS:
        handle_toolbar
            FOR EVENT toolbar OF cl_gui_alv_grid
                IMPORTING e_object e_interactive.
    ENDCLASS.                    "lcl_event_receiver DEFINITION
    CLASS lcl_event_receiver (Implementation)
    CLASS lcl_event_receiver IMPLEMENTATION.
      METHOD handle_toolbar.
        DATA: ls_toolbar  TYPE stb_button.
    *Separator
        CLEAR ls_toolbar.
        MOVE 3 TO ls_toolbar-butn_type.
        APPEND ls_toolbar TO e_object->mt_toolbar.
    *Button
        CLEAR ls_toolbar.
        MOVE 1 TO ls_toolbar-butn_type.
        MOVE 'EDIT' TO ls_toolbar-function.
        MOVE icon_change TO ls_toolbar-icon.
        MOVE ' Modifica'(l02) TO ls_toolbar-text.
        MOVE ' ' TO ls_toolbar-disabled.
        MOVE 'Modifica' TO ls_toolbar-quickinfo.
        APPEND ls_toolbar TO e_object->mt_toolbar.
      ENDMETHOD.                    "handle_toolbar
    ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION

    hi,
    check this code and reward me if it helps you..
    TYPE-POOLS : slis,icon.
    *Structure declaration for tcodes
    TYPES : BEGIN OF ty_table,
            tcode TYPE tcode,
            pgmna TYPE progname,
            END OF ty_table.
    *Structure for tocde text
    TYPES : BEGIN OF ty_itext,
            tcode TYPE tcode,
            ttext TYPE ttext_stct,
            sprsl TYPE sprsl,
            END OF ty_itext.
    *Structure for output display
    TYPES : BEGIN OF ty_output,
            tcode TYPE tcode,
            pgmna TYPE progname,
            ttext TYPE ttext_stct,
           END OF ty_output.
    *internal table and work area declarations
    DATA : it_table TYPE STANDARD TABLE OF ty_table INITIAL SIZE 0,
           it_output TYPE STANDARD TABLE OF ty_output INITIAL SIZE 0,
           it_ittext TYPE STANDARD TABLE OF ty_itext INITIAL SIZE 0,
           wa_table TYPE ty_table,
           wa_output TYPE ty_output,
           wa_ittext TYPE ty_itext.
    *Class definition for ALV toolbar
    CLASS:      lcl_alv_toolbar   DEFINITION DEFERRED.
    *Declaration for toolbar buttons
    DATA : ty_toolbar TYPE stb_button.
    Data declarations for ALV
    DATA: c_ccont TYPE REF TO cl_gui_custom_container,   "Custom container object
          c_alvgd         TYPE REF TO cl_gui_alv_grid,   "ALV grid object
          it_fcat            TYPE lvc_t_fcat,            "Field catalogue
          it_layout          TYPE lvc_s_layo,            "Layout
          c_alv_toolbar    TYPE REF TO lcl_alv_toolbar,           "Alv toolbar
          c_alv_toolbarmanager TYPE REF TO cl_alv_grid_toolbar_manager.  "Toolbar manager
    *Initialization event
    INITIALIZATION.
    *Start of selection event
    START-OF-SELECTION.
    *Subroutine to get values from tstc table
      PERFORM fetch_data.
    *subroutine for alv display
      PERFORM alv_output.
          CLASS lcl_alv_toolbar DEFINITION
          ALV event handler
    CLASS lcl_alv_toolbar DEFINITION.
      PUBLIC SECTION.
    *Constructor
        METHODS: constructor
                   IMPORTING
                     io_alv_grid TYPE REF TO cl_gui_alv_grid,
    *Event for toolbar
        on_toolbar
           FOR EVENT toolbar
           OF  cl_gui_alv_grid
           IMPORTING
             e_object.
    ENDCLASS.                    "lcl_alv_toolbar DEFINITION
          CLASS lcl_alv_toolbar IMPLEMENTATION
          ALV event handler
    CLASS lcl_alv_toolbar IMPLEMENTATION.
      METHOD constructor.
      Create ALV toolbar manager instance
        CREATE OBJECT c_alv_toolbarmanager
          EXPORTING
            io_alv_grid      = io_alv_grid.
       ENDMETHOD.                    "constructor
      METHOD on_toolbar.
      Add customized toolbar buttons.
      variable for Toolbar Button
          ty_toolbar-icon      =  icon_generate.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button1'.
          APPEND ty_toolbar TO e_object->mt_toolbar.
          ty_toolbar-icon      =  icon_voice_output.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button2'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
         ty_toolbar-icon      =  icon_phone.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button3'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
         ty_toolbar-icon      =  icon_mail.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button4'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
       ty_toolbar-icon      =  icon_voice_input.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button5'.
         APPEND ty_toolbar TO e_object->mt_toolbar.
      Call reorganize method of toolbar manager to
      display the toolbar
         CALL METHOD c_alv_toolbarmanager->reorganize
          EXPORTING
            io_alv_toolbar = e_object.
       ENDMETHOD.                    "on_toolbar
    ENDCLASS.                    "lcl_alv_toolbar IMPLEMENTATION
    *&      Form  fetch_data
          text
    -->  p1        text
    <--  p2        text
    FORM fetch_data .
    Select the tcodes upto 200 rows from TSTC
       SELECT   tcode
               pgmna
               FROM tstc
               INTO CORRESPONDING FIELDS OF TABLE it_table
               UP TO 200 ROWS
               WHERE dypno NE '0000'.
    *Select the tcode textx
       IF it_table[] IS NOT INITIAL.
         SELECT ttext
               tcode
               sprsl
               FROM tstct
               INTO CORRESPONDING FIELDS OF TABLE it_ittext
               FOR ALL ENTRIES IN it_table
               WHERE tcode = it_table-tcode
               AND sprsl = 'E'.
       ENDIF.
    Apppending the data to the internal table of ALV output
       LOOP AT it_table INTO wa_table.
        wa_output-tcode = wa_table-tcode.
        wa_output-pgmna = wa_table-pgmna.
       For texts
        READ TABLE it_ittext INTO wa_ittext WITH KEY tcode = wa_table-tcode.
        wa_output-ttext = wa_ittext-ttext.
         APPEND wa_output TO it_output.
        CLEAR wa_output.
       ENDLOOP.
       ENDFORM.                    " fetch_data
    *&      Form  alv_output
          text
    -->  p1        text
    <--  p2        text
    FORM alv_output .
    *Calling the ALV
      CALL SCREEN 0600.
      ENDFORM.                    " alv_output
    Calling the ALV screen with custom container
    On this statement double click  it takes you to the screen painter SE51.Enter the attributes
    *Create a Custom container and name it CC_CONT and OK code as OK_CODE.
    *Save check and Activate the screen painter.
    Now a normal screen with number 600 is created which holds the ALV grid. PBO of the actual screen , Here we can give a title and *customized menus
    *&      Module  STATUS_0600  OUTPUT
          text
    MODULE status_0600 OUTPUT.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0600  OUTPUT
    calling the PBO module ALV_GRID.
    *&      Module  ALV_GRID  OUTPUT
          text
    MODULE alv_grid OUTPUT.
    *create object for custom container
      CREATE OBJECT c_ccont
           EXPORTING
              container_name = 'CC_CONT'.
    *create object of alv grid
      CREATE OBJECT c_alvgd
          EXPORTING
              i_parent = c_ccont.
    create ALV event handler
      CREATE OBJECT c_alv_toolbar
        EXPORTING
          io_alv_grid = c_alvgd.
    Register event handler
      SET HANDLER c_alv_toolbar->on_toolbar FOR c_alvgd.
    Fieldcatalogue for ALV
       PERFORM alv_build_fieldcat.
    ALV attributes FOR LAYOUT
      PERFORM alv_report_layout.
       CHECK NOT c_alvgd IS INITIAL.
    Call ALV GRID
       CALL METHOD c_alvgd->set_table_for_first_display
        EXPORTING
          is_layout                     = it_layout
        CHANGING
          it_outtab                     = it_output
          it_fieldcatalog               = it_fcat
        EXCEPTIONS
          invalid_parameter_combination = 1
          program_error                 = 2
          too_many_lines                = 3
          OTHERS                        = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDMODULE.                 " ALV_GRID  OUTPUT
    *&      Form  alv_build_fieldcat
          text
         <--P_IT_FCAT  text
    FORM alv_build_fieldcat.
       DATA lv_fldcat TYPE lvc_s_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '1'.
      lv_fldcat-fieldname = 'TCODE'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 8.
      lv_fldcat-scrtext_m = 'TCODE'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
       lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '2'.
      lv_fldcat-fieldname = 'PGMNA'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 15.
      lv_fldcat-scrtext_m = 'PROGNAME'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '3'.
      lv_fldcat-fieldname = 'TTEXT'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 60.
      lv_fldcat-scrtext_m = 'Description'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
    ENDFORM.                    " alv_build_fieldcat
    *&      Form  alv_report_layout
          text
         <--P_IT_LAYOUT  text
    FORM alv_report_layout.
       it_layout-cwidth_opt = 'X'.
       it_layout-zebra = 'X'.
    ENDFORM.                    " alv_report_layout
    PAI module of the screen created. In case we use an interactive ALV or
    *for additional functionalities we can create OK codes
    *and based on the user command we can do the coding.
    *&      Module  USER_COMMAND_0600  INPUT
          text
    MODULE user_command_0600 INPUT.
    ENDMODULE.                 " USER_COMMAND_0600  INPUT
    thanks,
    gupta

  • Multiple plans for my SQL- Which one is following?-11gr2

    11gr2, windows-64-bit
    I have one sql_id part of 3rd part application, need to tune it. When I tried to get its execution plan im seeing multiple plan_plan values. That means, multiple plans for
    same sql_id
    How could we know that which plan my sql_id is following.?
    SQL> set lines 300
    SQL> set pages 50
    SQL> select * from TABLE(dbms_xplan.display_awr('5z1r29wc6514q'));
    PLAN_TABLE_OUTPUT
    SQL_ID 5z1r29wc6514q
    SELECT INVOICE_ID,min(CHARGE_DATE),MAX(CHARGE_DATE),
    sum(TOTAL_EXCL_VAT),sum(case when instr(LEVEL2,:"SYS_B_0")>:"SYS_B_1"
    then SUM_QUANTITY else :"SYS_B_2" end) as KB from
    RATOR_CDR.INVOICE_DETAIL_LINE I  INNER JOIN SUBSCRIPTION S ON S.ID =
    I.SUBSCRIPTION_ID  inner join SERVICE S1 on S1.SUBSCRIPTION_ID=S.ID
    WHERE INVOICE_ID in (SELECT id from  RATOR.INVOICE WHERE
    invoice_number is  null) and  S1.PHONE_NUMBER=:1   and LEVEL1=:2  group
    by  INVOICE_ID
    Plan hash value: 216300602
    | Id  | Operation                            | Name                  | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |
    |   0 | SELECT STATEMENT                     |                       |       |       |  1350 (100)|       |          |       |
    |   1 |  HASH GROUP BY                       |                       |   333 | 40293 |  1350   (1)| 00:00:17 |       |       |
    |   2 |   HASH JOIN                          |                       |   333 | 40293 |  1348   (1)| 00:00:17 |       |       |
    |   3 |    NESTED LOOPS                      |                       |       |       |            |       |          |       |
    |   4 |     NESTED LOOPS                     |                       |  1638 |   161K|   866   (0)| 00:00:11 |       |       |
    |   5 |      NESTED LOOPS                    |                       |     1 |    34 |     2   (0)| 00:00:01 |       |       |
    |   6 |       TABLE ACCESS BY INDEX ROWID    | SERVICE               |     1 |    23 |     2   (0)| 00:00:01 |       |       |
    |   7 |        INDEX RANGE SCAN              | SERVICE__PHONE_NUMBER |     1 |       |     1   (0)| 00:00:01 |       |       |
    |   8 |       INDEX UNIQUE SCAN              | SUBSCRIPTION__ID_PK   |     1 |    11 |     0   (0)|       |          |       |
    |   9 |      PARTITION RANGE ALL             |                       |  1684 |       |    46   (0)| 00:00:01 |     1 |    17 |
    |  10 |       INDEX RANGE SCAN               | IDL_SUB_ID            |  1684 |       |    46   (0)| 00:00:01 |     1 |    17 |
    |  11 |     TABLE ACCESS BY LOCAL INDEX ROWID| INVOICE_DETAIL_LINE   |  1581 |   103K|   864   (0)| 00:00:11 |     1 |     1 |
    |  12 |    TABLE ACCESS FULL                 | INVOICE               |  6048 |   118K|   481   (1)| 00:00:06 |       |       |
    SQL_ID 5z1r29wc6514q
    SELECT INVOICE_ID,min(CHARGE_DATE),MAX(CHARGE_DATE),
    sum(TOTAL_EXCL_VAT),sum(case when instr(LEVEL2,:"SYS_B_0")>:"SYS_B_1"
    then SUM_QUANTITY else :"SYS_B_2" end) as KB from
    RATOR_CDR.INVOICE_DETAIL_LINE I  INNER JOIN SUBSCRIPTION S ON S.ID =
    I.SUBSCRIPTION_ID  inner join SERVICE S1 on S1.SUBSCRIPTION_ID=S.ID
    WHERE INVOICE_ID in (SELECT id from  RATOR.INVOICE WHERE
    invoice_number is  null) and  S1.PHONE_NUMBER=:1   and LEVEL1=:2  group
    by  INVOICE_ID
    Plan hash value: 1282779260
    | Id  | Operation                            | Name                  | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |
    PLAN_TABLE_OUTPUT
    |   0 | SELECT STATEMENT                     |                       |       |       |  1392 (100)|       |          |       |
    |   1 |  HASH GROUP BY                       |                       |   325 | 39000 |  1392   (1)| 00:00:17 |       |       |
    |   2 |   HASH JOIN                          |                       |   325 | 39000 |  1391   (1)| 00:00:17 |       |       |
    |   3 |    TABLE ACCESS FULL                 | INVOICE               |  5972 |   116K|   550   (1)| 00:00:07 |       |       |
    |   4 |    NESTED LOOPS                      |                       |       |       |            |       |          |       |
    |   5 |     NESTED LOOPS                     |                       |  1794 |   175K|   840   (0)| 00:00:11 |       |       |
    |   6 |      NESTED LOOPS                    |                       |     1 |    34 |     2   (0)| 00:00:01 |       |       |
    |   7 |       TABLE ACCESS BY INDEX ROWID    | SERVICE               |     1 |    23 |     2   (0)| 00:00:01 |       |       |
    |   8 |        INDEX RANGE SCAN              | SERVICE__PHONE_NUMBER |     1 |       |     1   (0)| 00:00:01 |       |       |
    |   9 |       INDEX UNIQUE SCAN              | SUBSCRIPTION__ID_PK   |     1 |    11 |     0   (0)|       |          |       |
    |  10 |      PARTITION RANGE ALL             |                       |  1836 |       |    48   (0)| 00:00:01 |     1 |    18 |
    |  11 |       INDEX RANGE SCAN               | IDL_SUB_ID            |  1836 |       |    48   (0)| 00:00:01 |     1 |    18 |
    |  12 |     TABLE ACCESS BY LOCAL INDEX ROWID| INVOICE_DETAIL_LINE   |  1722 |   110K|   838   (0)| 00:00:11 |     1 |     1 |
    ------------------------------------------------------------------------------------------------------------------------------also, Any suggestions to tune this query
    Thanks

    Harry wrote:
    11gr2, windows-64-bit
    I have one sql_id part of 3rd part application, need to tune it. how do plan on modifying 3 ^rd^ party application?

  • Make Flash CS5.5 Movie play through one time

    I have created a movie in Flash Professional CS5.5 which has two scenes in it, and I want iot to only play through a single time and then stop....
    I opened it originally as a Flash Project, completed the first scene which was an opening screne with a company logo on it, and then a second scene which is product placement images for the department. I have tried creating a new layer, and adding an action to the last keyframe by opening the action tab, and typing in stop();
    Unfortunately, this does not seem to do anything really, and I am confused here. If someone could PLEASE explain to me how to insert a break at the end of scene two, I will be eternally indebted!!
    Oh yeah, and thanks in advance....

    None that I know of.  I would recommend against using scenes, but if you have no other code then that recommendation is less meaningful.  Scenes are better off when used for strict animation, designs that have no code involved.
    The stop() will work, you have to figure out what is keeping it from working.  Compiler errors are only one way of getting the stop to not work.  As I said, if you have some other code in the file it might be defeating the purpose of that stop()
    (ps - your description of what you did is not exactly what I said to do)

  • ITunes on iPhone does not offer DL link for movie purchase!?!

    Is anyone else having this problem?
    I'm browsing thru movies on my iPhone 3G in the iTunes store
    and many of the movies don't have the button
    for purchase or rental. There's details about the purchase.. Like... 'If you buy this
    the SD version will be downloaded to this device and when you connect to
    iTunes on your computer the HD version will download.'
    I don't want to DL this movie to my computer. I'm trying to
    watch movies and TV shows on my iPhone.
    Anyone have any clue to why the link or button to
    purchase or rent is just MISSING for the page?
    This really seems just weird!
    Does iTunes NOT want to make money??
    I think not. PLEASE help.

    Are you using the same iTunes ID on the computer and on the device?

  • Move Database From one location to another in same Server

    Hi,
    I am using 11 g R2 in OEL 5.
    I have installed my database inside oracle base /TEST_DB. Here i have oracle home and datafiles directories etc as usual.
    But i need to move this to /UAT/TEST_DB and run the oracle home and database form there.
    Is this cloning procedure is enough :- *Cloning An Existing Oracle11g Release 2 (11.2.0.x) RDBMS Installation Using OUI [ID 1221705.1]*
    or this is only for Oracle_Home??? If so please tell me how to move both the database and the oracle home.
    Regards,
    Susmit
    Edited by: Susmit on Dec 20, 2011 2:47 PM
    Edited by: Susmit on Dec 20, 2011 2:47 PM

    Susmit wrote:
    Hi,
    I am using 11 g R2 in OEL 5.
    I have installed my database inside oracle base /TEST_DB. Here i have oracle home and datafiles directories etc as usual.
    But i need to move this to /UAT/TEST_DB and run the oracle home and database form there.
    Is this cloning procedure is enough :- *Cloning An Existing Oracle11g Release 2 (11.2.0.x) RDBMS Installation Using OUI [ID 1221705.1]*
    or this is only for Oracle_Home??? If so please tell me how to move both the database and the oracle home.
    Hi,
    I did this just a week ago, or so. You don't need to clone the instance.
    There's a pretty good description on how to do this here:
    http://www.oracle-base.com/articles/misc/RenamingOrMovingOracleFiles.php
    However, after doing the steps outlined here, you're still having the same ORACLE_HOME and ORACLE_BASE. Do the following:
    SQL> alter system create pfile from spfile;and manually change the relevant parameters in the newly created pfile to reflect the changes you're about to do (dump_dest etc..)
    Shut down the instance, move all files in your ORACLE_HOME to the new location, and change all relevant environment variables.
    connect to your idle instance in the new ORACLE_HOME, and do
    SQL> startup pfile=/path/to/your/pfileand after the instance has started correctly, do
    SQL> create spfile from pfile;All done!
    HtH
    Johan

  • Pages: How to move pages from one location to another?

    How to move a page from once place to the other in a document? The previous version allowed to do it

    Apple has removed almost 100 features from Pages 5. This is just one of them.
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Pages '09 should still be in your Applications/iWork folder.
    Archive/trash Pages 5, after Exporting your files to Pages '09, and rate/review it in the App Store, then get back to work.
    Peter

  • Processing Multiple Files for more than 100 Receive Location - File Size - 25 MB each file, file type DML

    Hi Everybody
    Please suggest.
    For one of our BizTalk interface, we have around 120 receive locations.  We are just moving (*.dml) files from the source to destination without doing any processing.  
    We receive lots of files in different receive locations and in few cases the file size will be around 25 MB and so while moving these large files, the CPU usage is varying between 10% to 90+% and the time consuming for this single huge file is around
    10 to 20 minutes.  This solution was already in place and was designed by the previous vendor for moving the files to their clients.  Each client has 2 receive locations and they have around 60 clients.  Is there any best solution for implementing
    this with in BizTalk or outside BizTalk? Please suggest.
    I am also looking for how to control the number of files which gets picked from the BizTalk receive location.  For example, If we have say 1000 files in receive location and we want to pick at a time only 50 files only (batch of 50) then is it possible?
    because currently it is picking all the files available in source location, and one of the process is dropping thousands of files in to the source location, so we want to control  the number of files getting picked (or even if we can control to pick the
    number of KBs).  Please guide us on how we can control the number of files.

    Hi Rajeev,
    25 MB per file, 1000 files. Certainly you got to revisit the reason for choosing BizTalk.
    “the time consuming for this single huge file is around 10 to 20 minutes”
     - This is a problem.
    You could consider other file transfer options like XCopy or RobotCopy etc if you want to transfer to another local/shared drive. Or you can consider using SSIS
    which does comes with many adapters to send to destination system depending on their destination transfer protocol.
    But in your case, you have some of the advantages that you get with BizTalk. For your scenario, you have more source systems (more Receive locations), with BizTalk
    it’s always easier to manage these configurations, you can easily enable and disable them when a need arise. You can easily configure tracking; configure host instances based on load etc. So you can consider following design for your requirement. This design
    would suit you well since you’re not processing the message and just pass it through from source to destination:
    Use a custom pipeline component in the Receive Locations which receives the large file.
    Stores the received file into disk and creates a small XML metadata message that contains the information about where the large file is stored.
    The small XML message is then published into the
    message box db
    instead of the large file. Let the metadata file also contain the same context properties as the received file.
    In the send port, use another custom pipeline component that process the metadata xml file, retrieve the location of the disk where the file is stored, access the file and send it to destination.
    Read the following article on this design..
    http://www.codeproject.com/Articles/180333/Transfer-Large-Files-using-BizTalk-Send-Side
    This way you don’t need to publish the whole message into message box DB which would considerably reduce the processing time and utilises host instance to process
    more files. This way you can still get the advantages of BizTalk and still process large files.
    And regarding your question of restricting the Receive location to handles the number of files from receives location. No it’s not possible.
    Regards,
    M.R.Ashwin Prabhu
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Accounting doc g for Movement type  309

    I have created a new movement type, copy of 309. and assigned G/L account.
    Still I am unable to see accounting Doc for the same
    Pl help me its Urgent

    It depends what you are doing with this movement type.
    309 is a multi-purpose movement type, you can jsut use it to move materials from one location to another like 311, then no accounting document is created.
    But you can as well move material to material, then you should get accounting docs, but.......if the materials are nonvaluated materials, then you dont get an accounting document.
    Tell more details And we will see how we can help you.

  • Can't see movie playing in Imovie Viewer

    I can not see any video in the Imovie Viewer. I can only hear the sound. I am using Snow Leopard and the latest version on Imovie. Can any body help?

    Chenks-
    Yes, on ATV I have "All" playlists enabled.
    I upgraded to ATV 2.4 and have the same settings.
    I now see that in iTunes 8.2.1, the movie section for ATV does have a choice box for sync selected, but it's either "movies" or "playlists" separately. There does not appear to be a choice for movies and playlists combined, in case I wanted to select just a couple of playlists.
    It seems to be all or nothing. Is this the way it's designed? If so, I hope Apple will add another choice for movies in the next ATV or iTunes update (the way it works for music playlists & folders).
    Ron

  • Hello there - I am sharing an iPhoto library across two accounts on the same computer - it works fine EXCEPT for Quicktime movies - they play on one account and claim I don't have the rights on the other - all permissions are on and ok?

    Hello there - I am sharing an iPhoto library across two accounts on the same computer - it works fine EXCEPT for Quicktime movies - they play on one account and claim I don't have the rights on the other - all permissions are on and ok?

    It should be in the Users/ Shared folder.
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Note the option to check and repair Library Permissions
    Regards
    TD

  • How do I setup multiple users to use one source but manage playlists separately?  For example, play counts are specific to each user.

    How do I setup multiple users to use one source but manage playlists separately?  For example, play counts are specific to each user.

    Hi,
    Thank you for posting in Windows Server Forum.
    Here adding to the words of “Tim”, a forwarder is a DNS server on a network used to forward DNS queries for external DNS names to DNS servers outside of that network. You can also forward queries according to specific domain names using conditional forwarders.
    A DNS server on a network is designated as a forwarder by having the other DNS servers in the network forward the queries they cannot resolve locally to that DNS server. You can refer information regarding forwarders and how to configure from beneath link.
    Understanding forwarders
    http://technet.microsoft.com/en-us/library/cc782142(v=ws.10).aspx
    Configure a DNS Server to Use Forwarders
    http://technet.microsoft.com/en-us/library/cc754941.aspx
    Hope it helps!
    Regards.

  • When I click attach when sending an email with an attachment I get a dropdown that says "single image" or "default multiple". I choose one. Nothing happens as far as offering a choice as to what doc or photo to attach. What do i need to do?

    When I click attach when sending an email with an attachment I get a dropdown that says "single image" or "default multiple". I choose one. Nothing happens as far as offering a choice as to what doc or photo to attach. I continue between the attach and attachment and still nothing .What do i need to do?

    Hmmm, Permissions are messed up somewhere!?
    Can you open to pic say in Preview, select All, Copy, 7 Paste into Mail?

  • Movie won't play now - searching for movie data in file "Bounce Acros 01"??

    I have a movie I made with iMovie (I have v3 or so). I know for a fact it used to play (it's saved as an MPG-2) on my laptop (10.3.9). All of a sudden, when I try to play it, it says "searching for movie data in file "Bounce Across 01"", or "Rolling Credits 05" for another one I have. These are effects I used for the titles, but what could be the problem? I thought once I save it in QuickTime format, it was self-contained - it looks like it's looking for some iMovie files. Why does it need them, why did they disappear (since I know this used to play fine!), and what can I do to fix it (download those data files, and convert the thing to be truly self-contained and not need any external files)?
    Thanks,
    Mike
    G4 17" laptop   Mac OS X (10.3.9)  

    I thought once I save it in QuickTime format, it was self-contained - it looks like it's looking for some iMovie files.QuickTime (MOV) files can be saved as either "Standalone" or "Reference" files. When using the "Save As..." option in QT Pro, you are offered the choice. Other applications like iMovie may make the decision for you. For instance, when automatically sending a file from iMovie to iDVD, a reference movie is used rather than standalone version in order to more quickly open iDVD. In your case, it sounds like a reference movie is being played and that someone has "cleaned out" some of the "rendered" files that were saved as part of the original project. If the project files are still available but moved, you can try to "re-link" them. Or, if the project is still available, you could simply re-export your movie as a standalone file.

Maybe you are looking for

  • BO XI 3.1 SP2 Issue

    Greetings to all, we are encountering a strange issue after installing the BO XI 3.1 Service Pack 2 on our server: row-level restrictions created in the universe are no more applied to InfoView report, while throught Desktop Intelligence/Web Intellig

  • How can I install CE 7.1 on Win XP Home?

    Hello everyone, I am a newbie!! I have made several attempts to install CE 7.1 on my XP Home OS but each time I get this error which is frustrating: An error occurred while processing option SAP NetWeaver CE Developer Edition > Install SAP NetWeaver

  • How to send a  Script as a PDF file to an mail with out saving in local PC

    HI Gurus, I Know it for locla PC. i HAve  converted the spool to pdf using CONVERT_ABAPSPOOLJOB_2_PDF and mailed using 'SO_DOCUMENT_SEND_API1'. Give me teh alternative. like storing in app server

  • IPad Mini Questions

    Hi, so I was recently thinking about purchasing an Ipad Mini for like an entertainment movie luxury for my mother instead of using my Macbook. I know that you can purchase an lightning to VGA adapter so we could use this capability but the real quest

  • Java Applet vs JavaScript

    Trying to find pros and cons for Applet and JavaScript. Anyone know any or a good place to look? Thanks