CALC SCRIPT - HELP PLEASE!!! URGENT

I am trying to write a Calc Script for the Outline below -
AP_Related
Trade_AP +
2200 + (Alias – A/P Trade related Party)
2210 + (Alias – A/P Trade I/P)
2215 +
AP_Corporate +
2240 + (Alias – Brazil Fees)
2250 + (Alias – Corporate Chargebacks)
2260 + (Alias – Service Fees)
2270 + (Alias – Fusion Fees)
2280 + (Alias – Tech Fees)
AP_Corp_IP + (UDA – Input_Accs)
I want to put the values in 2240 and 2250 into AP_Corporate and the values of 2260,2270 and 2280 into 2210.
I am trying to add the code to the existing code.
/*Fix on members to copy Actual data to Forecast - */
FIX(&ActMonthEnd,&ForecastYear,"Final",@RELATIVE("Product Groups",0),@RELATIVE("Departments",0),
@RELATIVE("ICP",0),@RELATIVE("TOT_USG",0),@RELATIVE("Accounts",0))
"Actual"(
@CALCMODE(bottomup);
IF(@ISUDA("Accounts","INPUT_ACCS"))
"Basic"->"Forecast"->&ForecastYear=@SUM(@REMOVE(@RELATIVE(@PARENT(@CURRMBR("Accounts")),0),
@REMOVE(@RELATIVE(@PARENT(@CURRMBR("Accounts")),0),
@UDA("Accounts","SUMMED_ACCS"))))-@CURRMBR("Accounts");
     IF(@ISMBR("Tot_I/P_Mat_Costs_Roll Prod_INP"))
          "Basic"->"Forecast"->&ForecastYear->"Tot_I/P_Mat_Costs_Roll Prod_INP"=#Missing;
     ENDIF
     IF(@ISMBR("Metal_Costs_3rd_Party_INP"))
          "Basic"->"Forecast"->&ForecastYear->"Metal_Costs_3rd_Party_INP"=#Missing;
     ENDIF
     ELSEIF(@ISMBR("Oth_Exp_Misc_Inp"))
          "Basic"->"Forecast"->&ForecastYear->"Oth_Exp_Misc_Inp"="40110100"+"40079000"-"30100200";
     ELSEIF(@ISMBR("TOT_ALLOW_INP"))
          "Basic"->"Forecast"->&ForecastYear->"TOT_ALLOW_INP"="12005000"+"12005100";
Edited by: user11300497 on Jun 24, 2009 12:00 PM

Thanks for the response,but the Original script I sent is based on UDA's.I am sending the script and the modified Outline with the UDA's.Any help is greatly appreciated.
The members are from Account dimension.
AP_Related
Trade_AP +
2200 + (Alias – A/P Trade related Party)
2210 + (Alias – A/P Trade I/P)
2215 +
AP_Corporate +
2240 + (Alias – Brazil Fees) (UDA's:Summed_ACS)
2250 + (Alias – Corporate Chargebacks)(UDA's:Summed_ACS)
2260 + (Alias – Service Fees)(UDA's:Summed_ACS)
2270 + (Alias – Fusion Fees)(UDA's:Summed_ACS)
2280 + (Alias – Tech Fees)(UDA's:Summed_ACS)
AP_Corp_IP + (UDA – Input_Accs)
/* Purpose to copy a single month of actuals to the working forecast replacing a month of forecast.
Run monthly to update the current Forecast */
/* Assumptions.
The substitution variables for
ActMonthEnd = Is set to the month containing the Actuals to be copied.
ActualYear = Is set to the year containing the Actuals to be copied.
ForecastYear = Is set to the Current Forecast year value.
ForecastVersion = Is set to the appropiate archive Forecast version.
All input accounts have a UDA of "INPUT_ACCS" and not the UDA "SUMMED_ACCS"
A parent has only one account with the "INPUT_ACCS" UDA amoung its children
All siblings of the "INPUT_ACCS" member that are to be summed into the input account have a UDA of "SUMMED_ACCS"
FIX("LC")
FIX(&ActMonthEnd,&ForecastYear,"Basic",@IDESCENDANTS ("TOT_USG"),
@REMOVE (@IDESCENDANTS("Accounts"),
@LIST(
"30000000",@SHARE("30000000"),
"30003300",@SHARE("30003300"),
"30020400",@SHARE("30020400"),
"30020500",@SHARE("30020500"),
"30010200",@SHARE("30010200"),
"30010400",@SHARE("30010400"),
"41002200",@SHARE("41002200"),
"41002300",@SHARE("41002300"),
"74001000",@SHARE("74001000"),
"41000100",@SHARE("41000100"),
"41001400",@SHARE("41001400"),
"53000000",@SHARE("53000000"),
"59000000",@SHARE("59000000"),
"IP_Ship",@SHARE("IP_Ship"),
"IP Tolling Ship",@SHARE("IP Tolling Ship"),
"IP_NonAlum_Ship",@SHARE("IP_NonAlum_Ship"),
"3rd_Party_Ship",@SHARE("3rd_Party_Ship"),
"3rd party Tolling Ship",@SHARE("3rd party Tolling Ship"),
"Margin - Full",@SHARE("Margin - Full"),
"Margin - Tolling",@SHARE("Margin - Tolling"),
"Discounts - Full - Value",@SHARE("Discounts - Full - Value"),
"Discounts - Tolling - Value",@SHARE("Discounts - Tolling - Value"),
"Base Metal Freight / Logistics - USD",@SHARE("Base Metal Freight / Logistics - USD"),
"Flash Operating EBITDA",@SHARE("Flash Operating EBITDA"),
"Flash Total Book Inventory",@SHARE("Flash Total Book Inventory"),
"BMC / Tonne",@SHARE("BMC / Tonne"),
"IP BMC / Tonne",@SHARE("IP BMC / Tonne"),
"BMC_CPL",@SHARE("BMC_CPL"),
"BMC_Cur",@SHARE("BMC_Cur"),
"BMC_M0",@SHARE("BMC_M0"),
"BMC_M1",@SHARE("BMC_M1"),
"BMC_M2",@SHARE("BMC_M2"),
"BMC_M3",@SHARE("BMC_M3"),
"BMC_PQ",@SHARE("BMC_PQ"),
"CPL Adjustment",@SHARE("CPL Adjustment")
     CLEARDATA "Forecast";
ENDFIX
/* copy in Actual Currency Rates for proper monthly converison
FIX(&ActMonthEnd,&ForecastYear,"EOMRATE","Product_None","Dept_None","ICP_None",
"Entity_None","Rate_EUR_USD","Rate_INR_USD","Rate_GBP_USD","Rate_KRW_USD","Rate_BRL_USD",
"Rate_CHF_USD","Rate_CAD_USD","Rate_MYR_USD","Rate_SEK_USD")
DATACOPY "Actual"->"Final" TO "Forecast"->"Basic";
ENDFIX
/*Fix on members to copy Actual data to Forecast - */
FIX(&ActMonthEnd,&ForecastYear,"Final",@RELATIVE("Product Groups",0),@RELATIVE("Departments",0),
@RELATIVE("ICP",0),@RELATIVE("TOT_USG",0),@RELATIVE("Accounts",0))
"Actual"(
@CALCMODE(bottomup);
IF(@ISUDA("Accounts","INPUT_ACCS"))
"Basic"->"Forecast"->&ForecastYear=@SUM(@REMOVE(@RELATIVE(@PARENT(@CURRMBR("Accounts")),0),
@REMOVE(@RELATIVE(@PARENT(@CURRMBR("Accounts")),0),
@UDA("Accounts","SUMMED_ACCS"))))-@CURRMBR("Accounts");
     IF(@ISMBR("Tot_I/P_Mat_Costs_Roll Prod_INP"))
          "Basic"->"Forecast"->&ForecastYear->"Tot_I/P_Mat_Costs_Roll Prod_INP"=#Missing;
     ENDIF
     IF(@ISMBR("Metal_Costs_3rd_Party_INP"))
          "Basic"->"Forecast"->&ForecastYear->"Metal_Costs_3rd_Party_INP"=#Missing;
     ENDIF
     ELSEIF(@ISMBR("Oth_Exp_Misc_Inp"))
          "Basic"->"Forecast"->&ForecastYear->"Oth_Exp_Misc_Inp"="40110100"+"40079000"-"30100200";
     ELSEIF(@ISMBR("TOT_ALLOW_INP"))
          "Basic"->"Forecast"->&ForecastYear->"TOT_ALLOW_INP"="12005000"+"12005100";
     ELSEIF(@ISMBR("Int_Exp_Third_Oth_INP"))
          "Basic"->"Forecast"->&ForecastYear->"Int_Exp_Third_Oth_INP"="40071200"+"40071300"+"40075530"+"40075540"+"40075550"+"40075570"+"40075580"+"40075590"+"40075610"-"30063200";
     ELSEIF(@ISMBR("Realized_Der_Metal_Inp"))
          "Basic"->"Forecast"->&ForecastYear=@sum(@RELATIVE(@PARENT(@CURRMBR("Accounts")),0))-@CURRMBR("Accounts")-
          (2*("30121240"));
     ELSEIF(@ISMBR("Unrealized_Der_Metal_Inp"))
          "Basic"->"Forecast"->&ForecastYear=@sum(@RELATIVE(@PARENT(@CURRMBR("Accounts")),0))-@CURRMBR("Accounts")-
          (2*("30131240"));
     ELSEIF(@ISMBR("TOT_EMP_INP"))
"Basic"->"Forecast"->&ForecastYear=@SUM(@UDA("Accounts","EMP_ACCS"));

Similar Messages

  • Gallery script help, please

    Gallery script help, please
    Hello,
    I'm new to actionscript in general, I do know a little...
    I foung a gallery script, modified many things, the images
    open fine, everything is working, but here's the thing:
    the gallery is in 3 sections, red, blue and yellow.
    I would like to know how, what, and where to put a script so
    that if a "the small red image #1" is clicked, I can load any sort
    of a movie on top of the "the BIG red image #1" or #2 or 3 and so
    on...same goes for the blue and yellow...
    If I figured things correctly on my own...the small thumbnail
    images of the gallery are not buttons, that's why I can't attach a
    movie (let's say) to them...but it is all written in script, using
    the horizontal and vertical position of the mouse to open the large
    images of the gallery...
    So, I don't know how to figure things out, to attach a
    specific movie to a specific thumbnail...
    p.s.: I think the script that controls the gallery is in
    symbol 120
    I really would appreciate the help
    Merry Christmas in advance to everyone
    Sandra
    here are all the files...
    http://www.gentro.ca/sandra_test.zip

    There's a great tutorial on kirupa...
    click
    here for link

  • Need calc script help....

    i have a cube which used to take more than 2 hrs to refresh (mbr + data load + calc time)
    A dim name Version used to be as DENSE earlier and i changed it to Sparse..
    no it takes less than an hour to build...
    but one of the calc script is not working completely....
    in that calc script there are some IF conditions where i check for the current month and for each month i do different calculations
    but now i dont know why ...the calc is going to the JAN calc part even though the curr mnth is NOV in my cube...
    Can anyone help me with this issue???

    fix(Entityx)
    fix(("Fcst"))
    fix(geo)      
    "FTE Amount"(
    IF(@UDA("Period","CurrMth") == "Mar" or @UDA("Period","CurrMth") == "Apr" or @UDA("Period","CurrMth") == "May")
    "Jan"->"FTE Amount" = 10;
    Feb"->"FTE Amount" = 10;
    so on till dec.
    elseif(@UDA("Period","CurrMth") == "Jun" or @UDA("Period","CurrMth") == "Jul" or @UDA("Period","CurrMth") == "Aug" )
    "Jan"->"FTE Amount" = 20;
    Feb"->"FTE Amount" = 20;
    so on till dec.
    elseif( @UDA("Period","CurrMth") == "Jan") or ( @UDA("Period","CurrMth") == "Feb") )
    "Jan"->"FTE Amount" = 30;
    Feb"->"FTE Amount" = 30;
    so on till dec.
    elseif( @UDA("Period","CurrMth") == "Sep" or @UDA("Period","CurrMth") == "Oct" or @UDA("Period","CurrMth") == "Nov")
    "Jan"->"FTE Amount" = 40;
    Feb"->"FTE Amount" = 40;
    so on till dec.
    elseif( @UDA("Period","CurrMth") == "Dec" )
    "Jan"->"FTE Amount" = 50;
    Feb"->"FTE Amount" = 50;
    so on till dec.                    
    endif;)               
    endfix;
    endfix;
    endfix;
    my currmnt is NOV....but i get values as 10 which should be the case when currmnt is mar or apr or may...
    i even checked by individual IF's like IF(mar) do this....if(apr)....do this...
    then its going to MAR... i dont know why..
    CAn u help ??

  • Firefox not responding, freezes, sometimes responds after a few minutes, other times a pop-up appears asking if I want to stop script - help please

    firefox not responding, freezes, sometimes responds after a few minutes, other times a pop-up appears asking if I want to stop script - help please

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • JtextPane Help Please  Urgent.

    Hi,
    I need to read text character by character in a TextArea. Further, if the text is boldm italic etc. I also need to display it that way. I have done this with JTextArea. But, it does not allow me to use the features like bold, italic etc. I also need to have scrolling with the text area. I know that this can be done by JTextPane or JEditorPane. I tried to use JtextPAne, but the text does not get displayed.
    I have used setText and getText methods and added textPane to scrollPane but no use.
    Can someone please help with this? It is kind of urgent.
    Thanks in advance.
    sjl

    You must use sone default action on JTextPane component assign it to a menu item or toolbar button and after can add some style to text inserted...remember that must add a StyledEditorKit() to your component in such way that can add some default functionality.
    public class SimpleEditor extends JFrame {
         protected JTextPane textComp;
         protected Hashtable actionHash = new Hashtable();
         public SimpleEditor() {
              super("SimpleEditor");     
              textComp = createTextComponent();
              hashDefaultActions();
              makeActionsPretty();
              Container content = getContentPane();
              content.add(createToolBar(), BorderLayout.NORTH);
                                               scroll = new JScrollPane(textComp);
              content.add(scroll , BorderLayout.CENTER);
              setSize(320, 240);
                          protected JTextPane createTextComponent() {
              JTextPane ta = new JTextPane();
              ta.setEditorKit(new StyledEditorKit());
              return ta;
                             protected void hashDefaultActions() {
              Action[] actions = textComp.getActions();
              for (int i = 0; i < actions.length; i++) {
                   String name = (String) actions.getValue(Action.NAME);
                   actionHash.put(name, actions[i]);
    // You can add your custom action
         protected void makeActionsPretty() {
              Action a;
              a = getHashedAction(DefaultEditorKit.cutAction);
              a.putValue(Action.SMALL_ICON, //Put your image HERE);
              a.putValue(Action.NAME, "Taglia");
              a = getHashedAction(DefaultEditorKit.copyAction);
              a.putValue(Action.SMALL_ICON, //Put your image HERE);
              a.putValue(Action.NAME, "Copia");
              a = getHashedAction(DefaultEditorKit.pasteAction);
              a.putValue(Action.SMALL_ICON, //Put your image HERE);
              a.putValue(Action.NAME, "Incolla");
              a = getHashedAction(DefaultEditorKit.selectAllAction);
              a.putValue(Action.NAME, "Seleziona tutto");
              a = getHashedAction("font-bold");
              a.putValue(Action.SMALL_ICON, //Put your image HERE);
              a.putValue(Action.NAME, "Bold");
              a = getHashedAction("font-italic");
              a.putValue(Action.SMALL_ICON, //Put your image HERE);
              a.putValue(Action.NAME, "Italic");
              a = getHashedAction("font-underline");
              a.putValue(Action.SMALL_ICON, //Put your image HERE);
              a.putValue(Action.NAME, "Underline");
              a = getHashedAction("font-family-SansSerif");
              a.putValue(Action.NAME, "SansSerif");
              a = getHashedAction("font-family-Monospaced");
              a.putValue(Action.NAME, "Monospaced");
              a = getHashedAction("font-family-Serif");
              a.putValue(Action.NAME, "Serif");
              a = getHashedAction("font-size-10");
              a.putValue(Action.NAME, "10");
              a = getHashedAction("font-size-12");
              a.putValue(Action.NAME, "12");
              a = getHashedAction("font-size-16");
              a.putValue(Action.NAME, "16");
              a = getHashedAction("font-size-24");
              a.putValue(Action.NAME, "24");
              a = getHashedAction("left-justify");
              a.putValue(Action.NAME, "Sinistra");
              a.putValue(Action.SMALL_ICON, //Put your image HERE);
              a = getHashedAction("center-justify");
              a.putValue(Action.NAME, "Centrato");
              a.putValue(Action.SMALL_ICON, //Put your image HERE);
              a = getHashedAction("right-justify");
              a.putValue(Action.NAME, "Destra");
              a.putValue(Action.SMALL_ICON, //Put your image HERE);
         protected JToolBar createToolBar() {
              JButton button;
              JToolBar bar = new JToolBar();
              // Add simple actions for opening & saving
              button = bar.add(getOpenAction());
              button.setText("");
              button.setFocusable(false);
              button = bar.add(getSaveAction());
              button.setText("");
              button.setFocusable(false);
              bar.addSeparator();
              // Add cut/copy/paste buttons
              button = bar.add(getHashedAction(DefaultEditorKit.cutAction));
              button.setText("");
              button.setFocusable(false);
              button = bar.add(getHashedAction(DefaultEditorKit.copyAction));
              button.setText("");
              button.setFocusable(false);
              button = bar.add(getHashedAction(DefaultEditorKit.pasteAction));
              button.setText("");
              button.setFocusable(false);
              bar.addSeparator();
              JButton toggle = new JButton(getHashedAction("font-bold"));
              toggle.setText("");
              toggle.setFocusable(false);
              bar.add(toggle);
              toggle = new JButton(getHashedAction("font-italic"));
              toggle.setText("");
              toggle.setFocusable(false);
              bar.add(toggle);
              toggle = new JButton(getHashedAction("font-underline"));
              toggle.setText("");
              toggle.setFocusable(false);
              bar.add(toggle);
              toggle = new JButton(getHashedAction("left-justify"));
              toggle.setText("");
              toggle.setFocusable(false);
              bar.add(toggle);
              toggle = new JButton(getHashedAction("center-justify"));
              toggle.setText("");
              toggle.setFocusable(false);
              bar.add(toggle);
              toggle = new JButton(getHashedAction("right-justify"));
              toggle.setText("");
              toggle.setFocusable(false);
              bar.add(toggle);
              return bar;
         public static void main(String[] args) {
              SimpleEditor editor = new SimpleEditor();
              editor.setVisible(true);
    The above code show how to get some default functionality of the JTextPane particularly to StyledEditorKit associated to JTextPane. You can get all default action and after put them as an Action directly to element of JToolBar or JButton...and so you have styled text.
    I hope this help you.
    regards anti-shock

  • File Security on Portal - Help Please urgent

    Hello all,
               I need an urgent help on File Security on Portal.
    suppose we have 5 .PDF files in a perticular directory on the portal server. I want to have J2EE engine check if the user is already logged into portal or not. If the user is not logged in I want to throw logon screen asking them to Login. If the user is logged in I want to show the document directly.
    How to configure these things. Please help me.
    Thanks and regards,
    Vasu Pabbaraju.

    Hi,
    instead of storing Your files into the portal server's filesystem You could store them into KM.
    If the file "dummy.pdf" is stored into the KM folder "/documents/test", You could call it via
    http(s)://<potal server>:<port>/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/test/dummy.pdf
    The portal will ask for a login before displaying the document.
    Best Regards
    Frank

  • Auto refresh with apple script- help please

    can any one help me please
    i use multiple windows in safari at one time and can any one help me to refresh these pages (two windows) automatically using apple script.
    also if I click manually to refresh these pages i get the following note"
    "To open this page again, Safari must resend the form you completed to open the page the first time. This may cause the website to repeat actions it took the first time you sent the form."
    and i have click send for this to happen
    any help from you all will be appreciated as this will help me a lot with the present work that i am doing

    Not sure about the "automatic" reload - Opera allows you to set a refresh time interval for each tab, but not Safari. Also, Safari Extender gives you a single click contextual menu option to "reload all tabs".
    here is an AppleScript for a one-page auto reload. You might be able to alter the script to auto reload all open tabs.
    Not sure about the "warning" message. Can you post a URL so I can have a look?

  • Enabling rights is canceling scripting - help please!

    After some frustrating time I finally was able to get scripting to work on this last part of my form. I wanted a radio button (stand alone) and a text box. If the radio button was clicked, then the text box was no longer required. If the radio button was not clicked then the text box was required in order to submit.
    Here is the coding I am using (all java script):
    In the exit line of the PhotoOnlyEngraving field is:
    Engraving.validate.nullTest = "disabled";
    In the presubmit line of the Engraving field is:
    if (PhotoOnlyEngraving.rawValue == null || PhotoOnlyEngraving.rawValue == "")
    {Engraving.validate.nullTest = "disabled";
    else
    (Engraving.rawValue == null || Engraving.rawValue == "") { {
    app.alert("Please include details required for Engraving");
    xfa.host.setFocus("Engraving");
    Works great (accept the alert message) until you enable rights with the form. Then it ignores the script and forces you to add text in the engraving field when you have already clicked the PhotoOnly field. This is the only item that seems to be disabled in all the java script.
    Any help with this would be great! I'm really stuck trying to finish a form that is now 4 days past due.
    Thanks!
    Lezli

    thx

  • Formula Column help please - URGENT

    I'm trying to create a formula column as follows:
    function NO_REPLIESFormula return Number is
    NOREPLY number;
    begin
    SELECT COUNT(reply) INTO NOREPLY
    FROM letters
    WHERE reply = 'N'
    GROUP BY ltrtype, batch;
    RETURN (NOREPLY);
    end;
    This PL/SQL compiles fine, but when I run the report, I get the following messages:
    REP-1401 no_repliesformula FATAL PL/SQL error occured. ORA-01422 exact fetch returns more than requested number of rows.
    If I remove the GROUP BY ltrtype, batch, I don't get the error messages, but the result I get is the total no_replies instead of the total no_replies for each ltrtype/batch grouping.
    Could someone please help me with this?
    Thank you.

    Hi irish,
    I think i am not sure about what you are trying to say, but let me guess, You want the values to be return on the bases of "ltrtype, batch". Which mea that you want more then one values, i mean there can be more then one Groups based on ltrtype and batch. and you want to display these values with repective record???
    If i am right, then there is a fault in your code, and that is , you are not specifing in your code that which value is to be diplayed with which record in this report. For that there must be ltrtype, batch colums displayed in the report, you must add those values in your Code in the query, i.e.
    function NO_REPLIESFormula return Number is
    NOREPLY number;
    begin
    SELECT COUNT(reply) INTO NOREPLY
    FROM letters
    WHERE reply = 'N' and ltrtype= :V_ltrtype and batch=:v_batch;
    RETURN (NOREPLY);
    end;
    Where :V_ltrtype and :v_batch are the run time values of each records displayed in the report.
    Remember that if you don't sepecify this then your code will return as many records as many distich values of ltrtype, batch. and your variable NOREPLY can hold only one value at a time. I hope you understand both, Solution and the logic behind the error.
    Please correct me if i am wrong.
    Thanks.
    Mohib ur Rehman

  • Encore CS6 crash during build. help please URGENT

    Hi,
    this is my first dvd in encore but I did lots of dvd on dvdstudio.
    My project has 1 main menu, 5 submenus. 2 timeline and more than 50 chapter list access by these sub menus. with option of play once, loop etc.
    Check dvd only bring back an error that Im ignoring cause it says that one timeline has no end action, and also it is orphan. don't care cause all chapter are select by chapter playlist to reduce the amount of size
    anyway I don't think it is something wrong with the authoring, maybe something I missing during the menu creation I did all of them in PS thru adobe dynamic link
    The built process crash at 1/3 of the progress. An it takes like 4 hours just for that. The assets are quicktimes none compresed and some .mp4 all together is about 2 hours of video.
    PLEASE any suggestion ? I need to send this to my client tomorrow
    I can Re make the whole dvd in DVDstudio but as you can guess it took me a lot of time to conect all this assets.
    thanks!

    Stan thanks a lot for all your help
    Last night I leave one of my computers enconding all the material to m2v files with encoder dvd presets.
    But when I tried to replace this files in my encore project it gives me an error: "Could not import file it is not the same type as the file it is replacing" weird. of course this files are now m2v. this files are working perfect in DVDstudio
    I will have to remake the authoring in dvdstudio with this m2v files.
    Too bad I was soooooo in love with adobe CS, I switch a few month ago, and premiere surprise me! is by far much better than FCP, audition is great for fast audio post don't need to use OMF and protools anymore, AE is AE the best for motion. encoder quality/speed is so much better than compresor.
    hope they fix encore and they make a more versatil speedgrade (one that work with any file codec)

  • VO Extension or Substitution Help Please - Urgent (iExpenses)

    Hi All,
    I am trying to limit the data of the Projects and Tasks LOV (on the ExpenseAllocationsPG) in iExpenses Module. I tried a VO substitution and failed with an error.
    ERROR: oracle.jbo.NoDefException: JBO-25002: Definition type View Definition not found
    basically it could not find my custom VO that i created, so i deleted it from the database.
    This is basically what i want to do:
    The standard Projects LOV from the ExpenseAllocationsPG
    1.oracle.apps.ap.oie.server.ProjectsLovVO
    SELECT * FROM (SELECT P.PROJECT_NUMBER PROJECT_NUMBER, P.PROJECT_NAME PROJECT_NAME, P.PROJECT_ID PROJECT_ID, P.START_DATE START_DATE, P.COMPLETION_DATE COMPLETION_DATE, (select O.NAME from HR_ALL_ORGANIZATION_UNITS O where P.CARRYING_OUT_ORGANIZATION_ID = O.ORGANIZATION_ID)PROJECT_ORGANIZATION_NAME FROM PA_PROJECTS_EXPEND_V P) QRSLT ORDER BY PROJECT_NUMBER
    2.oracle.apps.ap.oie.server.ProjectsVO
    SELECT * FROM (SELECT P.PROJECT_NUMBER PROJECT_NUMBER, P.PROJECT_NAME PROJECT_NAME, P.PROJECT_ID PROJECT_ID, P.START_DATE START_DATE, P.COMPLETION_DATE COMPLETION_DATE, O.NAME PROJECT_ORGANIZATION_NAME FROM PA_PROJECTS_EXPEND_V P, HR_ORGANIZATION_UNITS O WHERE P.CARRYING_OUT_ORGANIZATION_ID = O.ORGANIZATION_ID) QRSLT ORDER BY UPPER(PROJECT_NUMBER)
    I tried to do a substititution on both LOV's
    I then created custom Project LOV in a custom folder and i changed the the query a bit as follows to restrict the LOV to user projects:
    SELECT P.PROJECT_NUMBER PROJECT_NUMBER,
    P.PROJECT_NAME PROJECT_NAME ,
    P.PROJECT_ID PROJECT_ID ,
    P.START_DATE START_DATE ,
    P.COMPLETION_DATE COMPLETION_DATE ,
    (SELECT O.NAME
    FROM HR_ALL_ORGANIZATION_UNITS O
    WHERE P.CARRYING_OUT_ORGANIZATION_ID = O.ORGANIZATION_ID
    )PROJECT_ORGANIZATION_NAME
    FROM PA_PROJECTS_EXPEND_V P,
    PER_ASSIGNMENTS_F per,
    HR_ORGANIZATION_UNITS O,
    FND_USER fu
    WHERE per.person_id = pa_utils.getempidfromuser(fnd_global.user_id)
    AND per.primary_flag = 'Y'
    AND SYSDATE BETWEEN per.effective_start_date and per.effective_end_date
    AND p.project_id IN(select project_id from pa_transaction_controls
    where person_id = pa_utils.getempidfromuser(fnd_global.user_id)
    UNION ALL
    select project_id from pa_transaction_controls
    where person_id is null
    and expenditure_category = 'Labour'
    UNION ALL
    select project_id from pa_transaction_controls
    where person_id = pa_utils.getempidfromuser(fnd_global.user_id)
    and expenditure_category = 'Labour')
    AND p.carrying_out_organization_id = o.organization_id
    AND fu.employee_id = per.person_id
    **all that is in bold is what i added.
    my VO substitution does not work. i got errors.....
    Can someone please help me.....am i doin the right thing or is there another approach. It would greatly appreciated. I guess if i can get the Projects LOV to work then the Task Lov would be the same.
    Thanks
    Kresen

    hi Kresen,
    if u r unable to see that extended VO then verify wheter all these steps are done...
    after extending that VO in jdeveloper......Please FTP all the 3 (VO.xml, Voimpl and VORowImpl)
    into to $JAVA_TOP/<custom directory>/oracle/apps/ap/oie/server/ProjectsLovVO
    this thing looks very silly but important......
    Please Substitute the Seeded VO to the Extended VO in the Jdeveloper......then check in the .jpx file whether the substituion has taken place
    in .jpx file
    <Substitutes>
    <Substitute OldName ="oracle.apps.ap.oie.server.ProjectsLovVO" NewName ="xxxx.oracle.apps.ap.oie.server.ProjectsLovVO" />
    </Substitutes>
    this thing should be present....import that jpx file...
    Please convert the java files Voimpl and VorowImpl to Class files in the Server using javac command
    bounce the apache
    regards,
    sravanth

  • DVD Crahses Help Please Urgent

    Hi, I have a 1 hour 45 min video with several chapter points, when I skip through the chapter points on my mac it works fine. I burnt my project on a Dual DVD and played it in my DVD Player, it crashes at one particular chapter point. I tried 3 more DVD players some play it fine, some crash, does anybody have an idea what this could be? I thought if it was a bad burn it would not play on any DVD players so that cant be it. Please help.

    Did you specify a layer break point, or let DVDSP automatically select one? I found that by using auto selection it was less likely to work. Try to insert a marker and specify it as a layer break marker somewhere near the midway mark of your timeline. Also be sure to set it somewhere so that Layer 1 will be larger than Layer 2.
    The other thing I noticed is that Toast didn't handle my BUILD folder properly. I think it disregarded the break point I set up and chose its own, which didn't work. If you were using Toast to burn the disc that could be an issue. I used DVDSP's Build & format and it worked out A-OK.

  • HELP PLEASE urgent: Creating a package, and class that prints all...

    please help, 5 duke dollars up for the best answer, or first answer that solves my problem!
    Hello, I have created a package called molecule that contains classes named Water, Sugar, Carbon Dioxide, and SulfuricAcid, and a sub-package named molecule.atom. The atom sub-package contains classes named Carbon, Hydrogen, Oxygen, and Sulfur. Each class in the molecule package should re-define the toString() method to print the numbers and types of atoms that constitute the molecule. For example, molecule.Sugar.toString() should return the string:
    "Sugar: 6 Carbon, 12 Hydrogen, 6 Oxygen".
    So basically, I have created a folder in C:\molecule\ and a subfolder C:\molecule\atom\ . I have also created a class called ChemTest belonging to the default package. ChemTest.main() creates and prints instances of each molecule and atom, but does not contain any import statements. The problem is that the ChemTest.java file won't compile coming up with 16 errors!
    Can someone explain to me what I am doing wrong?
    here is one of the molecule classes, for example CarbonDioxide.java:
    package molecule;
    public class CarbonDioxide
         private String co2;
         public CarbonDioxide()
              co2 = "Carbon Dioxide: 1 Carbon, 2 Oxygen";
         public String toString()
              return co2;
    and here is one of the atom classes, for example Carbon.java:
    package molecule.atom;
    public class Carbon
         private String c;
         public Carbon()
              c = "Carbon: symbol = C, num = 6, weight = 12.011";
         public String toString()
              return c;
    now here is the ChemTest.java file that won't compile:
    public class ChemTest
         public static void main(String[]args)
              molecule.Water water = new molecule.Water();
              molecule.Sugar sugar = new molecule.Sugar();
              molecule.CarbonDioxide carbonDioxide = new molecule.CarbonDioxide();
              molecule.SulfuricAcid sulfuricAcid = new molecule.SulfuricAcid();
              molecule.atom.Carbon carbon = new molecule.atom.Carbon();
              molecule.atom.Oxygen oxygen = new molecule.atom.Oxygen();
              molecule.atom.Hydrogen hydrogen = new molecule.atom.Hydrogen();
              molecule.atom.Sulfur sulfur = new molecule.atom.Sulfur();
              System.out.println(water.toString());
              System.out.println(sugar.toString());
              System.out.println(carbonDioxide.toString());
              System.out.println(sulfuricAcid.toString());
              System.out.println();
              System.out.println(carbon.toString());
              System.out.println(oxygen.toString());
              System.out.println(hydrogen.toString());
              System.out.println(sulfur.toString());
    and finally, here are the errors:
    C:\molecule\ChemTest.java:5: cannot resolve symbol
    symbol : class Water
    location: package molecule
              molecule.Water water = new molecule.Water();
    ^
    C:\molecule\ChemTest.java:5: cannot resolve symbol
    symbol : class Water
    location: package molecule
              molecule.Water water = new molecule.Water();
    ^
    C:\molecule\ChemTest.java:6: cannot resolve symbol
    symbol : class Sugar
    location: package molecule
              molecule.Sugar sugar = new molecule.Sugar();
    ^
    C:\molecule\ChemTest.java:6: cannot resolve symbol
    symbol : class Sugar
    location: package molecule
              molecule.Sugar sugar = new molecule.Sugar();
    ^
    C:\molecule\ChemTest.java:7: cannot resolve symbol
    symbol : class CarbonDioxide
    location: package molecule
              molecule.CarbonDioxide carbonDioxide = new molecule.CarbonDioxide();
    ^
    C:\molecule\ChemTest.java:7: cannot resolve symbol
    symbol : class CarbonDioxide
    location: package molecule
              molecule.CarbonDioxide carbonDioxide = new molecule.CarbonDioxide();
    ^
    C:\molecule\ChemTest.java:8: cannot resolve symbol
    symbol : class SulfuricAcid
    location: package molecule
              molecule.SulfuricAcid sulfuricAcid = new molecule.SulfuricAcid();
    ^
    C:\molecule\ChemTest.java:8: cannot resolve symbol
    symbol : class SulfuricAcid
    location: package molecule
              molecule.SulfuricAcid sulfuricAcid = new molecule.SulfuricAcid();
    ^
    C:\molecule\ChemTest.java:10: cannot resolve symbol
    symbol : class Carbon
    location: package atom
              molecule.atom.Carbon carbon = new molecule.atom.Carbon();
    ^
    C:\molecule\ChemTest.java:10: cannot resolve symbol
    symbol : class Carbon
    location: package atom
              molecule.atom.Carbon carbon = new molecule.atom.Carbon();
    ^
    C:\molecule\ChemTest.java:11: cannot resolve symbol
    symbol : class Oxygen
    location: package atom
              molecule.atom.Oxygen oxygen = new molecule.atom.Oxygen();
    ^
    C:\molecule\ChemTest.java:11: cannot resolve symbol
    symbol : class Oxygen
    location: package atom
              molecule.atom.Oxygen oxygen = new molecule.atom.Oxygen();
    ^
    C:\molecule\ChemTest.java:12: cannot resolve symbol
    symbol : class Hydrogen
    location: package atom
              molecule.atom.Hydrogen hydrogen = new molecule.atom.Hydrogen();
    ^
    C:\molecule\ChemTest.java:12: cannot resolve symbol
    symbol : class Hydrogen
    location: package atom
              molecule.atom.Hydrogen hydrogen = new molecule.atom.Hydrogen();
    ^
    C:\molecule\ChemTest.java:13: cannot resolve symbol
    symbol : class Sulfur
    location: package atom
              molecule.atom.Sulfur sulfur = new molecule.atom.Sulfur();
    ^
    C:\molecule\ChemTest.java:13: cannot resolve symbol
    symbol : class Sulfur
    location: package atom
              molecule.atom.Sulfur sulfur = new molecule.atom.Sulfur();
    ^
    16 errors
    Please help!!!, thanks!

    HI,
    I tried your problem with the following directory structure:c:\java\ChemTest.java
    c:\java\molecule\CarbonDioxide.java
    c:\java\molecule\atom\Carbon.javaI set the dos-prompt to c:\java and ran the following commands:javac molecule\CarbonDioxide.java
    javac molecule\atom\Carbon.java
    javac -classpath . ChemTest.java- and it worked!
    Sure, in ChemTest.java I deleted all the lines refering to classes that you didn't post...
    I hope this helps you!
    Anja

  • Artwork help please Urgent

    A friend of mine has downloaded 20 tracks from ITunes for me with all the Art work.
    The problem I have is that I have imported the 20 Tracks to iTunes, and there is no Art work for the tracks. Even Tho they Show in the folder on my desktop
    Is there any reason to why the Art work isn’t showing? I have done this before and the art Dose shows?
    Please help ?
    Thank You

    Have you tried right-clicking on all the tracks, and using *Get Album Artwork* ?

  • Restoring contacts.dat (Help please, urgent)

    Hello.
    I installed Mail for Exchange, and did a mistake so all my contacts got wiped from the phone.
    Its and Nokia N80, and I've got a backup on my computer that I'd like to restore.
    The files I've got is:
    Contacts.dat
    Contacts.xml
    sms.dat
    sms.xml
    and a .db file with a lot of numbers. (IMEI number?)
    How can I restore these files? Please help!

    Thanks for the info - I was able to use Norton Utilities to go to mark those files as not deleted, and got them back!

Maybe you are looking for

  • WRT54G v5 (v1.02.6 ) Port Forwarding

    Hi guys, First of all, let me confirm that I've searched almost everywhere regarding my issue here . I'm trying to setup an openVPN network  to my home network.  In the backend, my computer is set-up as it should, meaning I can establish openvpn conn

  • Java on my computer

    Im having trouble trying to get this java programming program to work. It says you need a recent JDK version installed? If anyone know please help!!!!!!

  • Use WEBUTIL for upload and download file to/from Database

    Dear friends I have a table with three columns (id , name , myDoc) myDoc is a BLOB, I would like upload word documents or PDFs or images to myDoc column, I use Oracle Form 10g, I try to use webutil to solve my problem, but I couldn't, Please help me.

  • Do I need to install Norton 360 multi device on my new iPad Air?

    I just got a new iPad Air 64GB wifi + cellular and the retailer is strongly suggesting I install Norton 360 Multi Device on it and on my MacBook Pro with OS X 10.8.5. I was under the impression that Macs were seldom affected by viruses. However, they

  • HP Color Sphere Laser Printer CM1312nfi MFP

    My printer will leave a smear of cyan toner on the right side of the page if I print landscape.  If I print portrait it prints fine.  Any suggestions?