Function Exit Help

Hi Experts,
I need to include two more input boxes in wherever GL . Account number is appearing in all screens.
<b>
Already Exits one is in boxes in wherever GL . Account number is appearing in all screen.</b>
GL Account number (one input box,length 10)
<b>
Our current requirement is in boxes in wherever GL . Account number is appearing in all screen.</b>
GL Account number (one input box1,length 10) (input box2 ,length 3) (input box3 ,length 3)
So how to design the Screen (Tcode FS00) to include input box2 and input box3 in that screen. For this I found one User exit “GLX1028”..it has a Function Exit “EXIT_SAPL1028_001”.For further modification how can I proceed it . by using this Function Exit how can i proceed.
Can please anyone give me steps detail.
Thanks.

First, you will have to search for screen exit where you can design subscreen for 2 additional boxes.
Are you looking for modification in all screens where G/L is appearing or only in transaction FS00?

Similar Messages

  • FI exit help

    Hi Folks,
       I have a Bank data file that is uploaded using the SAP standard RFEBGB00 which then posts in SAP. I want to know if there is any exit that I can use within this program. My requirement is to populate the Assignment field (ZUONR) in (Tcode FB02) and overriding the SAP internal assignment. I want the Text field (SGTXT) pick up few characters to the assignment field (ZUONR).The FI exits are different which depends on substitution rule. I understand the program is Rggbs000, which needs to get this copied as Zggbs000, then update table T80d point it to the Zggbs000 program and then add in the substitution in fi config under document header. Then get the exit written in the program and link the
    substitution to the exit.How and where is the subsititution to be defined and how do I link this to my requirement. Thanks for your help.
    Regards,
    Tim

    Hi,
    these were some of the exits available for FB02 transaction, please you need to explore them as to check up which one will match your requirement.
    F050S001            FIDCMT, FIDCC1, FIDCC2: Edit user-defined IDoc segment         
    F050S002            FIDCC1: Change IDoc/do not send                                
    F050S003            FIDCC2: Change IDoc/do not send                                
    F050S004            FIDCMT, FIDCC1, FIDCC2: Change outbound IDoc/do not send       
    F050S005            FIDCMT, FIDCC1, FIDCC2 Inbound IDoc: Change FI document        
    F050S006            FI Outgoing IDoc: Reset Clearing in FI Document                
    F050S007            FIDCCH Outbound: Influence on IDoc for Document Change         
    F180A001            Balance Sheet Adjustment                                       
    FARC0002            Additional Checks for Archiving MM Vendor Master Data          
    FEDI0001            Function exits for EDI in FI                                   
    RFAVIS01            Customer Exit for Changing Payment Advice Segment Text         
    RFEPOS00            Line item display: Checking of selection conditions            
    RFKORIEX            Automatic Correspondence                                       
    SAPLF051            Workflow for FI (Pre-Capture, Release for Payment)             
    Regards,
    Jagath

  • How to use the variables of Function exit in the include program

    i have a problem of using the variables of a function exit in the include program..
    If i use those variables there will be an error indicating 'Field FEBVW_IN is unknown. It is neither in one of the specified tables nor defined by a DATA statement'. Please help... Below is the code of the function exit:
    FUNCTION EXIT_SAPLIEDP_202.
    ""Lokale Schnittstelle:
    *"  IMPORTING
    *"     VALUE(IDOC_CONTROL_INDEX)
    *"     VALUE(IDOC_DATA_INDEX)
    *"     VALUE(FEBVW_IN) LIKE  FEBVW STRUCTURE  FEBVW
    *"     VALUE(FEBKO_IN) LIKE  FEBKO STRUCTURE  FEBKO
    *"     VALUE(FEBEP_IN) LIKE  FEBEP STRUCTURE  FEBEP
    *"     VALUE(FEBRE_IN) LIKE  FEBRE STRUCTURE  FEBRE
    *"     VALUE(FEBPI_IN) LIKE  FEBPI STRUCTURE  FEBPI
    *"  EXPORTING
    *"     VALUE(I_FIMSG) LIKE  FIMSG STRUCTURE  FIMSG
    *"     VALUE(FEBVW_OUT) LIKE  FEBVW STRUCTURE  FEBVW
    *"     VALUE(FEBKO_OUT) LIKE  FEBKO STRUCTURE  FEBKO
    *"     VALUE(FEBEP_OUT) LIKE  FEBEP STRUCTURE  FEBEP
    *"     VALUE(FEBRE_OUT) LIKE  FEBRE STRUCTURE  FEBRE
    *"     VALUE(FEBPI_OUT) LIKE  FEBPI STRUCTURE  FEBPI
    *"  TABLES
    *"      IDOC_CONTROL STRUCTURE  EDIDC
    *"      IDOC_DATA STRUCTURE  EDIDD
    *"      IDOC_AVIP STRUCTURE  AVIP OPTIONAL
    *"      IDOC_AVIR STRUCTURE  AVIR OPTIONAL
    *"      IDOC_AVIT STRUCTURE  AVIT OPTIONAL
    *"  CHANGING
    *"     REFERENCE(IDOC_AVIK) TYPE  AVIK OPTIONAL
    *"  EXCEPTIONS
    *"      PROC_ERROR
      INCLUDE ZXF08U10.
    Here is the code for the include program.
      INCLUDE ZXF08U10
    MOVE febvw_in TO febvw_out.

    Sometimes you will get this error message when checking include code in exits even though there is really no error - it happens because the include does not realise it is in the function due to the navigation index being out of date.
    Try activating the code - it may work even though the check said there were errors.
    You can also get this issue when trying to drill down on the field in the include to view its structure.
    Andrew

  • Menu-exits, Function-exits & Screen-exits

    What is Menu-exits, Function-exits & Screen-exits ? explain

    Hi,
          Why do you need enhancements ?
    The standard applications do not offer some of the functionality you need. The R/3 enchancement concept allows you to add your own functionality to SAP's standard business applications.
    What are the different types of enhancements ?
    Enhancements using customer exits
    Customers' potential requirements which are not included in the standard software are incorporated in the standard as empty modification 'shells'. Customers can then fill these with their own coding. Enhancements can relate to programs, menus and screens. Upward compatibility is assured. In other words, SAP guarantees that the jump from the standard software to the exit and the interface which call the exit will remain valid in future releases.
    Enhancements to ABAP/4 Dictionary elements
    These are ABAP/4 Dictionary enhancements (creation of table appends), text enhancements (customer-specific key words and documentation for data elements) and field exits (creation of additional coding for data elements).
    What is customer development ?
    Creating customer-specific objects within the customer name range.
    What is SSCR ?
    SSCR (SAP Software Change Registration) is a procedure, for registering all manual changes to SAP source coding and SAP Dictionary objects.
    What is the difference between modifications and enhancements ?
    Modifications mean making changes to the SAP standard functionality.
    Enhancements mean adding some functionality to SAP standard functionality.
    What are the disadvantages of modification ?
    Modifying standard code can lead to errors
    Modifications mean more work during software upgrades
    What are the advantages of enhancements ?
    Do not affect standard SAP source code
    Do not affect software upgrades
    when do you opt for modification ?
    Customer exits are not available for all programs and screens within the R/3 standard applications. You can only use exits if they already exist within the SAP R/3 System . Otherwise you have to opt for modifications .
    What are the various types of customer exits ?
    Menu exits
    Screen exits
    Function module exits
    Keyword exits
    What is a menu exit ?
    Adding items to the pulldown menus in standard R/3 applications .
    13.What is a screen exit ?
    Adding fields to the screens within R/3 applications. SAP creates screen exits by placing special subscreen areas within a standard R/3 screen and calling a customer subscreen from within the standard dynpro's flow logic.
    What is a function module exit ?
    Adding functionality to R/3 applications. Function module exits play a role in both menu and screen exits.
    What is a keyword exit ?
    Add documentation to the data elements of key words defined in the ABAP/4 Dictionary. The system displays this documentation whenever a user presses F1 to get online help for a screen field.
    How do SAP organizes its exits ?
    SAP organizes its exits in packages that are called SAP enhancements. Each SAP enhancement can contain many individual exits
    Regards

  • Which category screen exits and function exit come

    Hi ,
    I have created an enhancement in ECC 6.0 system on screen exit and function exit for LM00 tcode. now i want to update my developed object in Solution manager.
    Anyone pls help me under which category this enhancement project falls.

    Thanks everyone for the prompt response.
    The scenario is thet I have 190 CMOD projects and I needa quick way to find out which of the function exits in the CMOD projects have been implemented and which are the Z includes in these implemented function exits.
    Doing it one-by-one would take too much time. TADIR does not give the function exits and the includes in them.
    Need a quick way of identifying the implemented function exits, and the includes in the function exits, from the CMOD project name.
    Peter

  • FB70 Function Exit or user exit

    Hello!
    I have a requirement in which I need to assign customer invoice smartform in FB70 transaction. When the user will press save button then the data should go to spool request.
    Is it possible by using any Function Exit or BADIs. If yes please tell me the Exit or BADIs name.
    Your help will be appreciated.
    Ashvender
    [email protected]

    solved

  • Regarding a function exit

    hi guys,
    i have extended an idoc and for this i am using a function exit to populate data in the added new segment z1segment under E!knvkm segment ( parent segment). I found which funtion exit to use but i could not make out the logic to populate the data in the segment z1segment.
    can any one please help me regarding this
    thank you very much
           pavan

    Hi Pavan,
    I fail to understand the req.  You have found the proper function exit.. You have application data.. You have the idoc/segment details ....Check following code to update the idoc...
    <b>STEP 1 - Open document to edit</b>
    CALL FUNCTION 'EDI_DOCUMENT_OPEN_FOR_EDIT'
           EXPORTING
                document_number               = t_docnum
           IMPORTING
                idoc_control                  = itab_edidc
           TABLES
                idoc_data                     = itab_edidd
           EXCEPTIONS
                document_foreign_lock         = 1
                document_not_exist            = 2
                document_not_open             = 3
                status_is_unable_for_changing = 4
                OTHERS                        = 5.
    <b>STEP 2 - Loop at itab_edidd and change data</b>
    LOOP AT itab_edidd WHERE segnam = 'E1EDKA1'.
      e1edka1 = itab_edidd-sdata.
      IF e1edka1-parvw = 'LF'.
        e1edka1-partn = t_eikto.
        itab_edidd-sdata = e1edka1.
        MODIFY itab_edidd.
        EXIT.
      ENDIF.
    ENDLOOP.
    <b>STEP 3 - Change data segments</b>
    CALL FUNCTION 'EDI_CHANGE_DATA_SEGMENTS'
               TABLES
                    idoc_changed_data_range = itab_edidd
               EXCEPTIONS
                    idoc_not_open           = 1
                    data_record_not_exist   = 2
                    OTHERS                  = 3.
    Hope this helps you..let me know if need more input on this...
    Enjoy SAP.
    Pankaj Singh.

  • Can we add the standard includes inside a function exit.

    Hi,
    Can we add the standard includes inside a function exit.
    I want to add 4 to 5 standard includes. If iam adding it it says report or program already exists.
    Can anyone tell me is it possible or we can modify the only the data which is coming to that function module .
    Please help me on this.
    Thanks,
    Rose.

    hi santhosh,
      The data needed for those includes are also exist in the funtion module exit. I want to add those includes and in one include just i want to add some 10 to 15 lines of code. Is it possible.
    If i include all those includes inside the function exit it says report or program name already exists. When i double clicked on the error it takes me to a line in 1 include which has function-pool statement.
    How can i eradicate this error.
    Can u please help me on this.

  • Difference between user exit/Function exit / Customer exit and BADI

    Hi Guys,
    I am confused with the types of exits-user exit/Function exit / Customer exit and BADI.
    Can you tell me the difference between the different exits/Enhancements?
    Classify the following:
    what is the one which is shown in SMOD under enhancements? There are 3 sections in that - Function module, Screen and includes.
    What is the one which are called using -
    Call Customer-Function 001?
    Regards,
    Guru

    hi,
    The standard applications do not offer some of the functionality you need. The R/3 enchancement concept allows you to add your own functionality to SAP's standard business applications.
    Different types of enhancements
    Enhancements using customer exits
    Customers' potential requirements which are not included in the standard software are incorporated in the standard as empty modification 'shells'. Customers can then fill these with their own coding. Enhancements can relate to programs, menus and screens. Upward compatibility is assured. In other words, SAP guarantees that the jump from the standard software to the exit and the interface which call the exit will remain valid in future releases.
    Enhancements to ABAP/4 Dictionary elements
    These are ABAP/4 Dictionary enhancements (creation of table appends), text enhancements (customer-specific key words and documentation for data elements) and field exits (creation of additional coding for data elements).
    advantages of enhancements
    Do not affect standard SAP source code
    Do not affect software upgrades
    Customer exit - The R/3 enhancement concept allows you to add your own functionality to SAP’s standard business applications without having to modify the original applications. SAP creates customer exits for specific programs, screens, and menus within standard R/3 applications. These exits do not contain any functionality. Instead, the customer exits act as hooks. You can hang your own add-on functionality onto these hooks.
    Various types of customer exits
    Menu exits
    Screen exits
    Function module exits
    Keyword exits
    Menu exit
    Adding items to the pulldown menus in standard R/3 applications .
    Screen exit
    Adding fields to the screens within R/3 applications. SAP creates screen exits by placing special subscreen areas within a standard R/3 screen and calling a customer subscreen from within the standard dynpro's flow logic.
    Function module exit
    Adding functionality to R/3 applications. Function module exits play a role in both menu and screen exits.
    keyword exit
    Add documentation to the data elements of key words defined in the ABAP/4 Dictionary. The system displays this documentation whenever a user presses F1 to get online help for a screen field
    Hope this helps, Do reward.

  • When we use ZBW220 Function Exit   EXIT_SAPLRSAP_001& what meant for .

    Hi,
    When we use ZBW220 Function Exit   EXIT_SAPLRSAP_001& what meant for
    EXIT_SAPLRSAP_001
    EXIT_SAPLRSAP_002
    EXIT_SAPLRSAP_003
    EXIT_SAPLRSAP_004
    Regards,
    Anand Mehrotra.

    Hi Anand,
    ZBW220 is the project defined in your system to activate the componenets which include enhancement code for data sources.
    Check the link below to know more on this topic.
    http://help.sap.com/saphelp_nw04s/helpdata/en/6e/fe6e420f00d242e10000000a1550b0/frameset.htm
    Regards,
    Sunmit.

  • Function exit ..not comes into effect.

    Hi,
    i made changes in one function exit which is called in me21.
    i activated n placed break point.
    still it's not going in to that ...
    what wud be the problem..
    Help me.

    ravi,
    As i am new to this txn...plz guid
    i created project...
    in Enhancement assignments what can i give?
    i want fucntion exit..exit_XXX to be activated..
    where can i do this?
    Message was edited by: raja gurrala

  • Function exits ?

    hi ,
    how to differentaite between different types of user exits
    suchas
    screen exits
    function exits
    menu exits
    regards
    sriram.

    Hi Sriram,
    Follow this link-
    http://help.sap.com/saphelp_46c/helpdata/EN/c8/1975cc43b111d1896f0000e8322d00/frameset.htm
    Ravi

  • Menu Exits and Function Exits. Questions.

    Hi to all,
    I got a question in User Exits.
    Using the Tcode CMOD, I entered the project name and starting building the user exit for a practice.  I selected the enhancement list and looked at the components, I can see the Menu exit and a Function exit.
    I changed it like this,
    I edited the component menu exit and gave a new text and symbol. I saved it, clicked on the function exit, and went to function builder to write my own include program. I did that and activated the project.
    Now my question is that where to look for the menu in the main screen.  Will it be stored somewhere or I can see in the pull down menu in the main screen.  Once I see the pull down menu and the exits there, if I click, it should execute the add on functionality which I have mentioned in the fm include program in abap editor.
    So where to look for the menu exit in the pull down menu? Are the steps which I am narrating are right or I am going wrong somewhere.  Please guys, help me. 
    I will really appreciate you answers.
    Regards,
       -Ashok Patel

    Hi Ashok,
    I checked it, and yes it should work. Here is how they are linked.
    Screen 5000 of the program SAPLBPAR has this PAI module call commented out.
    MODULE 5000_OKCODE.
    Within this module you have a piece of code that is as follows
        WHEN '+003'.
          PERFORM BPDBANK_USER_EXIT_003 USING INDEX_BPDBANK.
    Within this form, there is a call to this function module
      CALL FUNCTION 'BPAR_X_BPDBANK_PROCESS'
           EXPORTING
                bp000_in   = bp000
           TABLES
                bpdbank_in = bpdbank_user
           EXCEPTIONS
                error      = 1
                OTHERS     = 2.
    Within this function module is the call to your function exit.
      CALL CUSTOMER-FUNCTION '003'
           EXPORTING
                BP000_IN    = BP000_IN
           TABLES
                BPDBANK_IN = BPDBANK_IN
           EXCEPTIONS
                ERROR       = 1
                OTHERS      = 2.
    Since the original call to the module itself is commented out, I think that is why your code is not getting executed.
    I cannot think of any other example that you can practice. Go to SMOD and do the drop down on Enhancement field. In the pop-up, click on the 'All Selections' button at the bottom with an arrow+ pointing down. You will see further options now. In the uncheck all the check boxes and check only the 'menu entries' checkbox. In the resultant list, see which one you can work on.
    Hope this helps,
    Srinivas

  • BPS function exit  how to

    Hi all,
    I have some bad fund in my cube. So to correct these bad funds, I am using function exit in BPS. My question is: Do I need to implement the initialization function and exit function both. how could I write these function modules.
    does anybody have sample coding for these functions.
    any help appreciated.
    Thanks.
    BNP

    Thanks ATW and all.
    But I still could not figure it out.
    I am trying to summarize my problem and code here.
    FUNCTION Z_INFOPROV_FUND_EXIT.
    ""Local Interface:
    *"  IMPORTING
    *"     REFERENCE(I_AREA) TYPE  UPC_Y_AREA OPTIONAL
    *"     REFERENCE(I_PLEVEL) TYPE  UPC_Y_PLEVEL OPTIONAL
    *"     REFERENCE(I_METHOD) TYPE  UPC_Y_METHOD OPTIONAL
    *"     REFERENCE(I_PARAM) TYPE  UPC_Y_PARAM OPTIONAL
    *"     REFERENCE(I_PACKAGE) TYPE  UPC_Y_PACKAGE OPTIONAL
    *"     REFERENCE(IT_EXITP) TYPE  UPF_YT_EXITP OPTIONAL
    *"     REFERENCE(ITO_CHASEL) TYPE  UPC_YTO_CHASEL OPTIONAL
    *"     REFERENCE(ITO_CHA) TYPE  UPC_YTO_CHA OPTIONAL
    *"     REFERENCE(ITO_KYF) TYPE  UPC_YTO_KYF OPTIONAL
    *"  EXPORTING
    *"     REFERENCE(ET_MESG) TYPE  UPC_YT_MESG
    *"  CHANGING
    *"     REFERENCE(XTH_DATA) TYPE  HASHED TABLE
    functional requirement.
    correct fund value in the given cube zxxx1.
    *characteristics                  key values
    *fund     fund center             key1    key2
    *1A2      4562389                 300     500     -
    line 1
    *to correct the fund above, I am adding these two records
    *2A2      4562389                 300     500     -
    line2
    *1A2      4562389                -300    -500     -
    line3
    *I am trying to accomplish the above scenario.
    *Could you please tell me what I am missing.
    *Here is my code
      TYPES: begin of f_c,
                 v_from type /BIC/OIZVAL_FROM,
                 fund   type /BI0/OIFUND,
             end of   f_c.
      Data:  t_fund type table of f_c,
             w_fund type f_c,
             old_fund(10) type c..
      FIELD-SYMBOLS: <fundctr> type any,
                     <fund>    type any,
                     <s_kyfs>  type any,
                     <s_chas>  type any.
      field-symbols: <t_data> type hashed table,
                     <chavl>  type any,
                     <value>  type any,
                     <s_data> type any.
      data: ls_data type ref to data,
            lt_data type ref to data,
            l_chavl type upc_y_chavlint,
            ls_chasel type upc_ys_chasel,
            ls_charng type upc_ys_charng.
      data: l_app type ref to cl_upx_application.
      l_app = cl_upx_application=>get_instance( i_area ).
      lt_data = l_app->create_th_data( ).
      assign lt_data->* to <t_data>.
      ls_data = l_app->create_s_data( ).
      assign ls_data->* to <s_data>.
      <t_data> = xth_data.
      clear xth_data.
    transaction data
      loop at <t_data> assigning <s_data>.
        ASSIGN COMPONENT 'S_CHAS' OF STRUCTURE <s_data> TO <s_chas>.
        ASSIGN COMPONENT 'S_KYFS' OF STRUCTURE <s_data> TO <s_kyfs>.
        check sy-subrc eq 0.
        ASSIGN COMPONENT '0FUND' OF STRUCTURE <s_chas> TO <fund>.
        check sy-subrc eq 0.
        check not <fund> is initial. "no need to check for blank fund
        old_fund = <fund>. "holding old fund for third record above
       here add new record with new fund but with same key figures and characteristics
        ASSIGN COMPONENT '0FUNDS_CTR' OF STRUCTURE <s_chas> TO <fundctr>.
        check sy-subrc eq 0.
        select /BIC/ZVAL_FROM fund into table t_fund from /BIC/AZFMDERIV00
                          where /BIC/ZVAL_FROM <= sy-datum and
                                /BIC/ZSOUR1_TO = <fundctr>.
        check sy-subrc eq 0.
        sort t_fund by v_from descending.
        read table t_fund into w_fund index 1.
        <fund> = w_fund-fund. "new correct fund.
        collect <s_data> into xth_data. "adding line 2 above
       here add new record with all key figures values reversed
       return back old fund now.
        <fund> = old_fund.
        LOOP AT ito_chasel INTO ls_chasel.
        select struture with characteristics
          ASSIGN COMPONENT 'S_KYFS' OF STRUCTURE <s_data> TO <s_kyfs>.
        choose char according to ito_chasel
          ASSIGN COMPONENT ls_chasel-chanm OF STRUCTURE <s_kyfs> TO <value>.
        select value according to ito_chasel
          READ TABLE ls_chasel-t_charng INTO ls_charng INDEX 1.
        set char value
          <value> = ls_charng-low * -1.
        ENDLOOP.
        collect <s_data> into xth_data. "adding line 3 above
      endloop.
    ENDFUNCTION.

  • Writing function Exits

    Hi All,
          I m very much interested in knowing how to write function exits in BPS. Can any body pls explain me how to write them step by step.
          Pls suggest me some very good documents on this.
        Is there any standard exits given by SAP? If so pls tell me the names of those exits.
    Regards,
    Ramana.

    Hi Ramana,
    the first (Init) FM has to be used if you need to perform some actions only once before any other operation. In this "how to" doc you read the input file.
    About this FM SAP says:
    <i>"This function module is optional. It is only required if new transaction data records are to be generated in the planning function that are different, in terms of the combinations of values, to characteristics in the previous transaction data that are not to be changed. The keys for these new transaction data records are delivered by the function module in the table ETO_CHAS. The keys are supplemented by the keys of the transaction data that already exist. The data objects for which the planning function is called up are formed from these keys. They also influence how often and with which combinations of transaction data the second function module is called up."</i>
    The second FM is executed many times  and in this "how to" is used to write data: you can easily get that it moves data read from the input file xth_data.
    About SAP says:
    <i>"A function module that is called up several times and that changes transaction data records. This function module receives a package of transaction data records in each case. These differ only in their characteristics to be changed. They have the same values as far as all other characteristics are concerned. The transaction data is in table XTH_DATA. Only the existing records are transferred. If key combinations were returned by the initialization function module, and no transaction data exists for these, then table XTH_DATA is empty. The key combination is in the table ITO_CHASEL."</i>
    Generally you have to implement the second FM (mandatory) that performs calculations on xth_data table: implementing the first (optional FM) depends on your business requirements.
    Hope it helps
    GFV

Maybe you are looking for

  • Connect a PC and TiBook G4 using firewire cable

    Hi all, I want to connect my TiBook G4 to a PC with firewire cable, can anyone provide me any info regarding this? thanks a lot. alice

  • SD Implementation Guide

    Dear Friends,     Can anyone please send the SD implementation Document .     please send this mail id  <REMOVED>              Thanx in advance   Regards,   S.Siva Message was edited by:         Yathish K

  • MGCP flow problem - ASA

    The following is the setup and the problem we have: * MGCP call agent -- ASA 5510 -- vpn tunnel -- linksys -- MGCP gateway * VPN tunnel setup is in aggresive mode (initiated as needed from linksys). * When MGCP call agent is up but the vpn tunnel is

  • Buffered ring acquisition with IMAQ 1394 2.0 (beta)

    Hi, the IMAQ 1394 low level buffer access topic comes up again. National Instruments promised that low level buffer access will be feasible in the 2.0 (beta) version of the IMAQ 1394 driver. However, I still encounter problems. I want to run a contin

  • 720/50P to SD

    I'm shooting 720/50P on a Sony EX3 and I need to downconvert to SD DV after editing on FCP. Can anyone give me settings to get the best quality. Or even advise me if 720/50P is my best option for shooting if it's going to end up on SD?