Query on splitting ASCS and PAS

Quick question All,
I referred the current SWPM procedure for 7.1 and higher on splitting ASCS and PAS.  I have a question here please. The first point in the Procedure has 2 items -1) Choose an instance number for the ASCS instance to be created.  and 2) Note that the message server port is not changed during the split.  I am wondering how can this be. I thought DVEBMGSXX will split into ASCSXX and DXX.  If point 1 holds good that means I can choose a port of my convenience and if point 2 is true, then that means I cant choose ASCS port of my liking. Both cant co-exist or am i missing something here. I basically want to have current port( Central CI port) to be used by PAS after split and this is not possible  if point 2 above holds good. We have several interfaces that are pointed to this port and we don't want to end up adapting all RFC interfaces and gateway ports etc. We don't have HA so SPOF is not an issue here.
Any thoughs here please
Regards
Kalyan

Hello Kalyan,
Adding further information to what Boris already explained here, you can read the following SAP KBA about Splitting Off ASCS from PAS I wrote:
2073500 - FAQ: Splitting off ASCS from PAS
The main cause the message server port is not changed during the is explained in question #5 of the document above:
5. Why SWPM does not allow changing the Message Server port and it keeps
using PAS port?
As described in section Splitting
Off a Central Services Instance for ABAP from an Existing Primary Application
Server Instance, the message server port is not changed during the
split.
Each SAP GUI Logon (end users) has the message server port information
locally saved in the services file (/etc/services on Unix/Linux or
C:\windows\system32\drivers\etc\services on Windows). Also all RFCs to
externally communicate to another system are configured with the message server
port.
Therefore the tool cannot change the port during the process due to
configuration and communication reasons.
I hope this information can be helpful as well for you.
Regards,
Henrique Girardi
SAP Active Global Support

Similar Messages

  • Separate ASCS and PAS from Database server

    Dear friends, in a customer we have the following need:
    We need to separate de ASCS and the Primary application server to a host different from database server. The SAP system is an ERP 6.0 EHP4 based in NW 7.01.
    We have used Software provisoning manager to splitt off the ASCS from the CI. Before the splitt off we only had the directory DVEBMSG00, and after the splitt off, we had ASCS01 and DVEBMSG00 directories. But, this is only half of the solution, because we need to move this services to another hosts.
    We tried to use Software provisioning manager to deinstall the ASCS, and install it in the other host. This works. But the problem is the Primary application server, because if we uninstall it, when insttall in the other host with the option "System Copy" the sapinst promts for the installation export.
    In the Marketplace i could not find any note form aour scenario.
    Do you know a way to separate de CI and the PAS from de database server without a system copy?
    Thanks and best regards.

    Hi
    http://scn.sap.com/community/netweaver-administrator/blog/2013/12/04/why-splitting-off-the-ascs-from-pas
    This link might be useful
    But if you have a system based on SAP NetWeaver 7.0x, this option is not available in the 70SWPM, The only way to do that would be running a system copy of the system. Then during the target system installation, you would be able to install the new system with sepated ASCS from PAS . "

  • What's difference between ASC and DESC index

    1 select count(*)
    2* from big_emp e where hiredate >= to_date('1980-01-01', 'YYYY-MM-DD') and hiredate <= to_date('1983-12-31', 'YYYY-MM-DD')
    COUNT(*)
    11971
    SQL> create index i_big_emp_hiredate on big_emp(hiredate);
    Index created.
    SQL> set autot trace
    SQL> select empno, ename, hiredate
    2 from big_emp e where hiredate >= to_date('1980-01-01', 'YYYY-MM-DD') and hiredate <= to_date('1983-12-31', 'YYYY-MM-DD') ;
    11971 rows selected.
    Execution Plan
    | Id | Operation | Name | Rows | Bytes | Cost |
    | 0 | SELECT STATEMENT | | 11766 | 218K| 19 |
    |* 1 | TABLE ACCESS FULL| BIG_EMP | 11766 | 218K| 19 |
    SQL> drop index i_big_emp_hiredate;
    Index dropped.
    SQL> create index i_big_emp_hiredate on big_emp(hiredate desc);
    Index created.
    SQL> select empno, ename, hiredate
    2 from big_emp e where hiredate >= to_date('1980-01-01', 'YYYY-MM-DD') and hiredate <= to_date('1983-12-31', 'YYYY-MM-DD') ;
    11971 rows selected.
    Execution Plan
    | Id | Operation | Name | Rows | Bytes | Cost |
    | 0 | SELECT STATEMENT | | 29 | 551 | 4 |
    | 1 | TABLE ACCESS BY INDEX ROWID| BIG_EMP | 29 | 551 | 4 |
    |* 2 | INDEX RANGE SCAN | I_BIG_EMP_HIREDATE | 53 | | 2 |
    i have 2 questions
    1. In "Expert one-on-one Oracle", Tom said, there is no deference between ASC and DESC index in case of one column because Oracle can just read in reverse order. but my test made me confused. why Oracle did "full table scan" only in ASC index???
    2. using "set autot trace" command. i believed the the "Rows" column mean the rows that Oracle access. Can you explain why the rows are 29(DESC) and 11766(ASC) in spite of the result is 11971. what is the exact meaning of "Rows" column in execution plan

    I think what you're seeing is a bug in the optimizer. If you had printed up the predicate section of the execution plan, this would be more obvious. I have the query:
    select *
    from   t1
    where  d1 between to_date('01-jan-2001')
              and     to_date('31-dec-2003')
    ;This returns one row per day for 3 years, and when a normal index is created on it, the optimizer calculates the correct cardinality and uses a sensible set of predicates. But when I use a descending index, this is what I get:
    Execution Plan
    Plan hash value: 1429545322
    | Id  | Operation                   | Name  | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT            |       |  1097 | 21940 |     2 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| T1    |  1097 | 21940 |     2 |
    |*  2 |   INDEX RANGE SCAN          | T1_I1 |     5 |       |     2 |
    Predicate Information (identified by operation id):
       2 - access(SYS_OP_DESCEND("D1")>=HEXTORAW('8798F3E0FEF8FEFAFF')  AND
                  SYS_OP_DESCEND("D1")<=HEXTORAW('879AFEF8FEF8FEFAFF') )
           filter(SYS_OP_UNDESCEND(SYS_OP_DESCEND("D1"))>=TO_DATE('2001-01-0
                  1 00:00:00', 'yyyy-mm-dd hh24:mi:ss') AND
                  SYS_OP_UNDESCEND(SYS_OP_DESCEND("D1"))<=TO_DATE('2003-12-31 00:00:00',
                  'yyyy-mm-dd hh24:mi:ss'))Note the introduction of the strange sys_op_descend() function - which is related to the descending index implemention, and the extra FILTER predicates which introduce a significant extra selectivity effect. The optimizer is double-counting on selectivity effects, and introducing extra factors of 1% and 5% (I haven't checked exact details) due to the functions applied to columns and the range-based predicates.
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk

  • Different output of same query in SQL Server and Oracle

    I have two tables table1 and table2
    --table1 has two columns c1 int and c2 varchar. there are not constraints added in it. it has data as given below
    c1     c2
    6     d
    5     j
    102     g
    4     g
    103     f
    3     h
    501     j
    1     g
    601     n
    2     m
    --table2 has only one column c1 int. there are not constraints added in it. it has data as given below
    c1
    6
    1
    4
    3
    2
    now when i run below given query in sql server and oracle it gives me different result
    select *
    from table1
         inner join (SELECT ROW_NUMBER() OVER (order by c1 ASC) AS c1 from table2) table2 on table2.c1=table1.c1
    sql server output
    c1     c2     c1
    1     g     1
    2     m     2
    3     h     3
    4     g     4
    5     j     5
    oracle output
    C1 C2 C1
    5 j 5
    4 g 4
    3 h 3
    1 g 1
    2 m 2
    If you notice the first column in both output. It is sorted in sql server and not in oracle.
    Why it is behaving differently in oracle? Is there any way I can solve this in oracle?
    Thanks,
    Jigs

    It is NOT behaving "differently" in Oracle; you just haven't specified an order that you expect your results to be in, so you're going to get output in whatever order the database fancies displaying it (ie. no guarenteed order). This is an artifact of how the database chooses to put together the data, and different databases (or even datasets within the same database) can and most likely will behave differently.
    Even SQL Server won't guarentee to always get your data in an ordered fashion if you exclude the order by clause, even if you think it has always output the data in an ordered fashion.
    Your solution is to add an order by clause, in BOTH databases, to force the order of the output data.

  • Bica: change the query cause error in the pas model

    Dear  friends,
    We have very simple scenario: one query 'SSM_SQL_KPI_MAY'' for feeding  the pas model- 2 demensions and 2 measures. With this query I load the schema and data to the pas model.Everithing was fine. After that we added new  dimension to the query.Ichanged the  existing query and load the data with bica.But when I try to open the model I get the next  error every time
    DAT316:
    No internal Dimenson unique name to position cache exists for 'EZOR_KEY' on Linkid 'BI' Cube 'SSMKPI/SSM_SQL_KPI_MAY'
    We try to resolve the issue by deleting data and schema but every time I get the same error.
    How is it possible to resolve this issue?
    What is a best practice in the case of changing queries working with bica?
    Thanks.
    Best regards,Orit.

    Dear Orit,
    Keep in mind that dimensions provided by a BICA query connection must have a HIERARCHY associated to the base characteristic in BW. PAS uses this hierarchy to define the "Result" (rollup) levels of the dimension. Check your BW query and verifiy that all the included dimensions have associated hierarchies in use. I'm guessing this is the issue with your new dimension.
    You can also check the dimensions in PAS by selecting your model, then "Dimensions" and right-clicking on the affected dimension name and then the "View" option (or "List" or something related to displaying the dimension definition). You should see a PAS script that describes the dimension, including the dimension member IDs, descriptions and rollup levels. This should be consistent with your query results and hierarchies).
    Also, from the same menú you may also choose to "Delete" a dimension.
    Good luck!
    Regards

  • Source table has an xml column that I need to query before splitting into 2 tables.

    Hi
    I have a source table with an xml column that I need to query on the nodes and then depending on what data is in the node then to split it into 2 different tables. I don't think I can use conditional split so I am looking at just a straight Execute SQL Task.
    Has anyone got any ideas on any other way of doing this?
    Thanks for the help in advance.
    Dave

    Hi TheDish,
    Your goal arguably can me accomplished using pure T-SQL only encompassing XPath or XQuery.
    E.g. the XQuery would retrieve the nodes as explained in http://sqljudo.wordpress.com/2013/12/02/xpath-for-the-sql-server-dba/
    And then you may want to use the WHERE clause to extract - insert the nodes that go to one or another table.
    I don't see why SSIS is necessary, but you can run the same queries in two Data Sources, or Execute SQL Tasks (that capture a resultset).
    Arthur
    MyBlog
    Twitter

  • I need query to split the string

    I need query to split the input string into comma seperated triplets values.
    Input String: Database
    Output : Dat, ata,tab,aba,bas,ase

    SQL> with t
      2  as
      3  (
      4  select 'Database' str
      5    from dual
      6  )
      7  select substr(str, level, 3) str
      8    from t
      9   where length(substr(str, level, 3)) = 3
    10  connect by level <= length(str);
    STR
    Dat
    ata
    tab
    aba
    bas
    ase
    6 rows selected.
    And if you want it as a single string then..
    SQL> with t
      2  as
      3  (
      4  select 'Database' str
      5    from dual
      6  )
      7  select ltrim(sys_connect_by_path(str, ','), ',') str
      8    from (
      9            select row_number() over(order by level) rno
    10                 , substr(str, level, 3) str
    11              from t
    12             where length(substr(str, level, 3)) = 3
    13            connect by level <= length(str)
    14         )
    15   where connect_by_isleaf = 1
    16   start with rno = 1
    17  connect by rno = prior rno + 1;
    STR
    Dat,ata,tab,aba,bas,ase

  • How to use one query against multiple table and recieve one report?

    I have duplicate tables, (except for their names of course) with commodities prices. They have the same column headings, but the data is different of course. I have a query that gives me a certain piece of information I am looking for but now I need to run this query against every table. I will do this every day as well, to see if the buying criteria is met. There are alot of tables though (256). Is there a way to say run query in all tables and return the results in one place? Thanks for your help.

    hey
    a. the all 256 tables whuld be one big partitoned table
    b. you can use all_tables in order to write a select that will write the report for you:
    SQL> set head off
    SQL> select 'select * from (' from dual
      2  union all
      3  select 'select count(*) from ' || table_name || ' union all ' from a
      4  where table_name like 'DB%' AND ROWNUM <= 3
      5  union all
      6  select ')' from dual;
    select * from (
    select count(*) from DBMS_LOCK_ALLOCATED union all
    select count(*) from DBMS_ALERT_INFO union all
    select count(*) from DBMS_UPG_LOG$ union all
    remove the last 'union all', and tun the generated quary -
    SQL> set head on
    SQL> select * from (
      2  select count(*) from DBMS_LOCK_ALLOCATED union all
      3  select count(*) from DBMS_ALERT_INFO union all
      4  select count(*) from DBMS_UPG_LOG$
      5  );
      COUNT(*)
             0
             0
             0
    Amiel

  • Can we combine Query for cancelled requisitions and query for internal requisitions without internal sales order into a single query

    Hi All,
    Greetings.
    I have two queries namely,
    1.Query for cancelled requisitions and
    2.Query for Internal Requisitions without Internal Sales Orders.
    I was on a task to combine those two queries..
    Can we do that? if so, please help me do that..
    Thanks in Advance,
    Bhaskar.

    Hi All,
    Greetings.
    I have two queries namely,
    1.Query for cancelled requisitions and
    2.Query for Internal Requisitions without Internal Sales Orders.
    I was on a task to combine those two queries..
    Can we do that? if so, please help me do that..
    Thanks in Advance,
    Bhaskar.

  • How do I create a folder or report from a query with a union and parameters

    I have created folders with unions but I am having difficulty coverting a query with a union and parameters.
    The following works great in SQL*Developer without parameters, but I want to change to use parameters for the year and quarter and use it in Discoverer:
    SELECT TO_CHAR(NVL(AV.TAX_ID,999999999),'000000000') FEID,
      AV.FIRM_NAME VENDOR_NAME,
      AV.BIDCLASS CONTRACT_CODES,
      AV.AWAMT AWARD_AMOUNT,
      AV.SOL_MODE FORMAL_INFORMAL,
      AV.CERT BUSINESS_ENTITY,
      AV.ETHNICITY ETHNICTY,
      AV.PO_NUMBER_FORMAT CONTRACT,
      SUM(VP.INVOICE_AMOUNT) AMOUNT_PAID_$
    FROM CONFIRM.VSTATE_PAID_AWARD_VENDORS AV,
      CONFIRM.VSTATE_VENDOR_PAYMENTS VP
    WHERE ( ( AV.PO_NUMBER = VP.PO_NUMBER
    AND AV.VENDOR_ID       = VP.VENDOR_ID ) )
    AND (TO_CHAR(VP.PAYMENT_DATE,'Q') = '4')
    AND ( TO_CHAR(VP.PAYMENT_DATE,'YYYY') = '2009' )
    GROUP BY TO_CHAR(NVL(AV.TAX_ID,999999999),'000000000'),
      AV.FIRM_NAME,
      AV.BIDCLASS,
      AV.AWAMT,
      AV.SOL_MODE,
      AV.CERT,
      AV.ETHNICITY,
      AV.PO_NUMBER_FORMAT
      union
    SELECT TO_CHAR(NVL(AV2.TAX_ID,999999999),'000000000') FEID,
      AV2.FIRM_NAME VENDOR_NAME,
      AV2.BIDCLASS CONTRACT_CODES,
      AV2.AWAMT AWARD_AMOUNT,
      AV2.SOL_MODE FORMAL_INFORMAL,
      AV2.CERT BUSINESS_ENTITY,
      AV2.ETHNICITY ETHNICTY,
      AV2.PO_NUMBER_FORMAT CONTRACT,
      0 AMOUNT_PAID_$
    FROM CONFIRM.VSTATE_PAID_AWARD_VENDORS AV2
    WHERE
    not exists (SELECT 'X'
                  FROM CONFIRM.VSTATE_VENDOR_PAYMENTS VP2
                 WHERE av2.po_number = vp2.po_number
                       AND (TO_CHAR(VP2.PAYMENT_DATE,'Q') = '4')
                       AND ( TO_CHAR(VP2.PAYMENT_DATE,'YYYY') = '2009' ))
    AND (TO_CHAR(AV2.AWDATE,'Q') = '4')
    AND (to_CHAR(AV2.AWDATE,'YYYY') = '2009')
    GROUP BY TO_CHAR(NVL(AV2.TAX_ID,999999999),'000000000'),
      AV2.FIRM_NAME,
      AV2.BIDCLASS,
      AV2.AWAMT,
      AV2.SOL_MODE,
      AV2.CERT,
      AV2.ETHNICITY,
      AV2.PO_NUMBER_FORMAT Can someone provide a solution?
    Thank you,
    Robert

    Hi,
    You can take the parameters to the select so that you will be able to create conditions over them.
    Try to use this SQL instead of your and in the discoverer workbook create the conditions and parameters:
    SELECT TO_CHAR(NVL(AV.TAX_ID,999999999),'000000000') FEID,
    AV.FIRM_NAME VENDOR_NAME,
    AV.BIDCLASS CONTRACT_CODES,
    AV.AWAMT AWARD_AMOUNT,
    AV.SOL_MODE FORMAL_INFORMAL,
    AV.CERT BUSINESS_ENTITY,
    AV.ETHNICITY ETHNICTY,
    AV.PO_NUMBER_FORMAT CONTRACT,
    TO_CHAR(VP.PAYMENT_DATE,'YYYY') P_YEAR,
    TO_CHAR(VP.PAYMENT_DATE,'Q') P_QTR
    SUM(VP.INVOICE_AMOUNT) AMOUNT_PAID_$
    FROM CONFIRM.VSTATE_PAID_AWARD_VENDORS AV,
    CONFIRM.VSTATE_VENDOR_PAYMENTS VP
    WHERE ( ( AV.PO_NUMBER = VP.PO_NUMBER
    AND AV.VENDOR_ID = VP.VENDOR_ID ) )
    --AND (TO_CHAR(VP.PAYMENT_DATE,'Q') = '4')*
    --AND ( TO_CHAR(VP.PAYMENT_DATE,'YYYY') = '2009' )*
    GROUP BY TO_CHAR(NVL(AV.TAX_ID,999999999),'000000000'),
    AV.FIRM_NAME,
    AV.BIDCLASS,
    AV.AWAMT,
    AV.SOL_MODE,
    AV.CERT,
    AV.ETHNICITY,
    AV.PO_NUMBER_FORMAT ,
    TO_CHAR(VP.PAYMENT_DATE,'YYYY') P_YEAR,
    TO_CHAR(VP.PAYMENT_DATE,'Q') P_QTR
    union
    SELECT TO_CHAR(NVL(AV2.TAX_ID,999999999),'000000000') FEID,
    AV2.FIRM_NAME VENDOR_NAME,
    AV2.BIDCLASS CONTRACT_CODES,
    AV2.AWAMT AWARD_AMOUNT,
    AV2.SOL_MODE FORMAL_INFORMAL,
    AV2.CERT BUSINESS_ENTITY,
    AV2.ETHNICITY ETHNICTY,
    AV2.PO_NUMBER_FORMAT CONTRACT,
    TO_CHAR(VP.PAYMENT_DATE,'YYYY') P_YEAR,
    TO_CHAR(VP.PAYMENT_DATE,'Q') P_QTR
    0 AMOUNT_PAID_$
    FROM CONFIRM.VSTATE_PAID_AWARD_VENDORS AV2
    WHERE
    not exists (SELECT 'X'
    FROM CONFIRM.VSTATE_VENDOR_PAYMENTS VP2
    WHERE av2.po_number = vp2.po_number
    AND (TO_CHAR(VP2.PAYMENT_DATE,'Q') = TO_CHAR(VP.PAYMENT_DATE,'Q') )
    AND ( TO_CHAR(VP2.PAYMENT_DATE,'YYYY') = TO_CHAR(VP.PAYMENT_DATE,'YYYY') ))
    --AND (TO_CHAR(AV2.AWDATE,'Q') = '4')*
    --AND (to_CHAR(AV2.AWDATE,'YYYY') = '2009')*
    GROUP BY TO_CHAR(NVL(AV2.TAX_ID,999999999),'000000000'),
    AV2.FIRM_NAME,
    AV2.BIDCLASS,
    AV2.AWAMT,
    AV2.SOL_MODE,
    AV2.CERT,
    AV2.ETHNICITY,
    AV2.PO_NUMBER_FORMAT,
    TO_CHAR(VP.PAYMENT_DATE,'YYYY') P_YEAR,
    TO_CHAR(VP.PAYMENT_DATE,'Q') P_QTR
    Tamir

  • My wife and I split up and I was given the iPad but she is still know what I am doing on it. Supposedly when I got the iPad there was a program that we set up so we could know what is happening on the iPad how do we stop that? She can still see my text

    My wife and I split up and I got the iPad. But she still knows what I am doing on it. Even though I changed my apple i.d password and everything. She knows who I am talking to what I am doing on fb, my iMessage, emails, how do I get my privacy back without losing all my apps, book and movies I paid for?

    Sorry, but you are describing many different problems all in one go.  Have you changed your FaceBook account and the passwords for all your email accounts ?
    You say you have changed all the passwords for all the accounts you use, including your Apple/iTunes account if you have one.  If this hasn't done the trick I suggest you restore your iPad to factory conditions, set it up again from scratch, and download the things you've paid for again.  You will not need to pay for things bought through your iTunes account again.

  • Material maintained in split valuation and batch management

    Dear Seniors,
      I have maintained a material with both split valuation and batch management. If i check in MMBE, only batch management is getting preference. Valuation type is not coming. Why is it so ? why maintaining both is not possible in SAP ??? kindly explain me please.
    Regards,
    JanaMM

    If you  Mantain both Split valuation as well as batch mgmt for  a material, then  all stock  reports will show  "Batch "  and  Not valuation type  since  batch  is relevant to inventory  mgmt  and split valuation is relevant for account determination and valuation. ,  the only  report which  wil show you both  is BMBC(batch info cockpit).
    You  can however run MB5B  w.r.t  valuation type in the input screen.
    In such cases , The  Valuation Type  forms a part of the batch master which  you can see in MSC3N .

  • Need to run a sql query in the background and display the output in HTML

    Hi Guys,
    I have a link in my iprocurement webpage, when i click this link, a query (sql query) should be run and the output should be displayed in a HTML page. Any ideas of how this can be done. Help appreciated.
    We dont have OA Framework and we r using 11.5.7.
    help needed
    thanx

    Read Metalink Note 275880.1 which has the link to developer guide and personalization guide.

  • Bex Query WAD Iview - Look and feel.

    I've put a query into a WAD and I've published the WAD as an ivew. But i want the look and feel to be "Corporate" and not use the SAP standard blues etc. I have created a custom them but when I preview the iview the query in the WAD is blue rather than the green I want and have used in my theme. I created a custom stylesheet and tried using &style_sheet in the Iview but the bulk of the query is still blue. I tried putting a line in the XTHML just below <HEAD> that said <link rel="STYLESHEET" type="text/css" href="&quot;bwmimerep:///sap/bw/MIME/customer/stylesheets/My_Theme_For_Portal.css" but that doesnt seem to work either. The bulk of the data displayed in the query remians blue. I just dont think it's referencing my stylesheet.
    Any ideas? Help is much appreciated.
    Edited by: Joel Yates on Mar 16, 2011 2:18 PM

    Joel,
    What I would do is publish the WAD as a template in your system and then call your query like:
    ...?query=zbm_m001_q001&template=zmywad_temp
    or
    make the default template that is called your WAD - zmywad_temp
    tcode - RSCUSTV27
    Customizing ID
    Broadcasting         0BROADCASTING_TEMPLATE70
    Query Precalculation 0QUERY_TEMPLATE_BROADCASTING70
    Report Precalculat.  0REPORT_TEMPLATE_BROADCASTING
    Enterpr. Report      0REPORT_DEFAULT_TEMPLATE
    Ad Hoc Analysis      0ANALYSIS_PATTERN
    You can change 0ANALYSIS_PATTERN to zmywad_temp
    Couple things to remember: in your new default template make it so all queries can use it and don't default it to a specific query unless you want you users to get a different look on that query.
    Hope I'm understanding ur question correctly.
    Mike

  • Imovie11 splitting clips and freeze frame problems

    I am having a problem with imovie11 splitting cips and using the freeze frame function.  When I highlight the clip I want split, it splits a different clip either on the line below it or somewhere else in my project!  Also, my freeze frame function freezes the frame where my playhead is BUT doesn't split the clip...so what I'm left with is the entire clip- then the freeze frame - then the continuation after the freeze frame.  Is there a fix for this??

    Remove any in or out points you have on the timeline. Place the playhead at the frame on the timeline you want to freeze, and then select Modify > Make Freeze Frame, the freeze should appear instantly in the viewer. You can then click the Overwrite button, and the freeze should now be placed on the timeline in the correct place.
    Is this not happening?
    MtD

Maybe you are looking for

  • Can you set a half-size (640x360) sequence in FCE?

    I have some older SWF ad units in my portfolio that cannot be converted to .mov files in Flash, so I'm forced to make video screen grabs of the sequences. They look nice and sharp at their original pixel dimensions of 336x280 pixels, but when grabbed

  • [SOLVED] (...) which CFLAGS to choose for /etc/makepkg.conf

    Hello all. I read about certain CFLAGS you can set in /etc/makepkf.conf, so I checked out if there was anything i could do to make the packages built on my system more optimized. However, as the title states, I'm not sure what to set. The sticker on

  • Stolen MacBook Pro 15'

    My MacBook Pro was stolen out of my car in Nairobi. I am trying to list the stolen serial as many places as possible in hopes of recovery through a tip or through an honest person that might buy it. If it isn't wiped I would even be willing to buy it

  • Converting AIFF files to take up less space

    Hi--I recently converted about 50 songs from old cassette tapes to export into iTunes. I used Audacity which went pretty smoothly. I did not realize when converting all the aup files from Audacity to aiff files for exporting that they were such large

  • Bizarre lines around windows; strange screen problems

    My Macbook has been acting strange lately. I'm attaching a few images so you can see what's happening with my display. Sometimes, after I exit a program and return to the desktop, I get strange patches of white/gray boxes on the screen. Logging off a