Need a little scripting help

Can someone post some basic code that shows how to export from a form on a web page and how the shell script reads that variable in.
I'm trying to take a value called TYPE and post that to the shell version of the transfer script. I don't know how to relate that TYPE variable to something the shell can understand.
Many thanks.
Dave

Thanks try67. . .  but I probably did not pose the question correctly. When I inserted the script I got the discounted value when I really wanted the value minus the discount.... in this case it would have been $100.00. (1 Die LIne @ $115.00 - $15.00 = $100.00).

Similar Messages

  • Need some more scripting help

    [I'll be posting this over on the Google Group forum too.]
    File is here: https://acrobat.com/#d=m7zuQYiUoFrtz5isD7rErQ
    Form is a series of tables that can expand and contract their respective rows by clicking a button in the header - tables start out collapsed and filler can open the appropriate tables. I'm using + and - values on the buttons to check what they should do - they call a script object which handles looping through the table rows, etc (thanks Niall!).
    I also have similar loops set up on prePrint and docReady (on the form1 root) events so that the tables collapse down to only used rows for printing or after the form is saved and re-opened.
    I'm having a few issues that I'm having trouble figuring out. I'm thinking some of the problems might even have to do with which events I'm using but not sure.
    Resetting the value of the +/- button in the header rows:
    Unless a table is expanded and has rows that are empty showing I want the button caption to be a +. I've been trying to explicitly set this as part of the different loops but seem to be having issues.
    Problem with repeating header button caption:
    If a table breaks across a page, the button in the repeated header row doesn't reflect the caption of the button in the parent header row. I kind-of fixed this with some code from Paul Guerett which sets the caption based on xfa.layout.pageSpan and it works but if you click the repeated button again to collapse the table the main button caption doesn't update (should change back to a +), unless you click on the main button.
    Related to this one is when the file is saved and re-opened table headers that had been repeated show random multiple time (2-5 generally).
    I also ran into some trouble with Reader when using Unicode characters for the button caption. Instead of +/- I was trying to use \u25BC and \u25B2 (down and up triangles) but Reader seemed to choke on it.
    This form is ready to go except for these couple of issues that I can't seem to track down.

    Hi Jono,
    Here is the form with a few mods: https://acrobat.com/#d=rXwdoCcfDC0pWQz-39KWjg
    In relation to the repeating headers, I think the main problem is that the HeaderRow was set to repeat in the Object > Binding tab. I have deselected this. However you would need to test. I have seen this before and to get over it I have wrapped the header in a separate subform. I don't want to do it here because of the scripting, but see how you get on.
    On the reset button, I have included a execEvent for the docReady event in the form1 node. This resets the "+".
    Where a table spans more than one page (generating another "-" button). I have included another line to reset the original button back to "+":
    xfa.resolveNode("HeaderRow[0].Button1.caption.value.#text").value = "+";
    This seems to work.
    I haven't looked at the unicodes. I would stick with the +/-, as these are self evident and you will be less likely to have compatibility problems.
    Form looks good!
    Good luck,
    Niall

  • I need a little script, please.

    I have 2 audio streams buttons that have "Resume" functions. There is 20 sec intro that goes into main menu where the select sound stream resides. If people let play the intro, the resume buttons everything works fine. If they select menu in the middle of intro and then select the sound stream from the sound menu then it won't go anywhere. I need to take people to the main menu.
    Question #2, how do I make the selected stream button show which one selected when I return to sound selection menu?
    Thanks.

    Let me see if I understand this issue... your disc has a short intro and from this you jump to the main menu. Once there, you can select the sound stream you want.
    If I follow correctly, the sound stream selection buttons will have a button condition on them to set the correct audio stream, right? I am not clear on where you are using a resume function?
    I would set the audio stream on the button directly, OR I would use a script to set the stream, but include in the script a resume function. You'll need to identify the button you have used (to select the sound) and then set the system stream accordingly. However, you also need a line or two which looks to see if a track has been played already, and if so set the audio and resume the track.
    So, use a GPRM to store a value when a track gets started... You could do this in a number of ways, but for this I suggest a simple approach. When you activate the button to play the track, set the target to go to a short script:
    mov GPRM0, 1
    Jump Trackname
    Now, whenever the disc starts you know the GPRM will be '0', but after the track is played once it will be '1'.
    For the sound script you can now rely on that value. I am going to assume that you have button 1 setting one language, and button 2 setting a second. It is likely that you won't have it set this way, but use whatever values are correct for your menu.
    mov GPRM1, SPRM8
    div GPRM1, 1024
    Set System Stream AU(language1) If (GPRM1 = 1)
    Set System Stream AU(language2) If (GPRM1 = 2)
    Goto 7 IF (GPRM0 = 1)
    Jump trackname
    Resume
    Now, if you set the menu buttons to both go to this script you should achieve what you want. In line 1 we find the button you clicked on (i.e. the language you chose), and in line 2 we made that value more usable by reducing it to a simple digit.
    Lines 3 and 4 set the audio stream according to which button was selected and line 5 checks to see if a track has already played (if so, you jump the next line). If a track has not played, you go to the start of the named track (make sure you use the correct name in this line) and the resume function won't be called.
    If the track has already played, then you skip the jump statement and land on the resume function instead.
    Have a go with this and see how it works for you. I haven't tested it, so would be interested to know if it works as I think it should.

  • I need a little script badly...

    I need a script attached to the "English" subtitle button. The script should have 2 variables:
    1. When I click "English" from subtitles menu before it will add subtitles and take me back to main menu, where I can play movie or chose chapters.
    2. When I click "English" from subtitles while the movie is playing it will add subtitles and resume play.
    I also have Spanish subtitles, I assume I can take the same script and apply to "Spanish" button as well.
    Thanks you very much.
    Message was edited by: Girshon Rutstein
    Message was edited by: Girshon Rutstein

    I need a script attached to the "English" subtitle button. The script should have 2 variables:
    1. When I click "English" from subtitles menu before it will add subtitles and take me back to main menu, where I can play movie or chose chapters.
    2. When I click "English" from subtitles while the movie is playing it will add subtitles and resume play.
    I also have Spanish subtitles, I assume I can take the same script and apply to "Spanish" button as well.
    Thanks you very much.
    Message was edited by: Girshon Rutstein
    Message was edited by: Girshon Rutstein

  • Need Windows bat script help

    Apparently I've been in Unix land a little too long, because I'm trying to do something in a windows .bat scirpt that i know is possible in a Kornshell. I just don't know for sure if it is possible on windows.
    I am trying to assign a variable the value of a command. More specifically, I'm trying to assign the variable as the contents of a file.
    So in a Kornshell I would do something like this...
    DBS_NAME=$(cat DBS_NAME.txt)
    echo $DBS_NAME
    So I have gotten this far in the .bat script...
    set DBS_NAME=type DBS_NAME.txt
    echo %DBS_NAME%
    but everything I've tried to resolve the "type" command (to display the contents of the file) is not working, I keep ending up with the text of what is after "set DBS_NAME=" on the output.
    Does anybody know if this is possible in windows?
    TIA,
    Robert

    The echo is there to display the value of DBS_NAME for testing.
    I'm actually trying to read this in so I can pass it to a maxl command line, and instead of the variable passing the App.DBname (contents of the file), it is passing 'type C:\DBS_NAME.txt' to my maxl script, and so it is failing.
    Here is the test bat script...
    set DB=type C:\DBS_NAME.txt
    essmsh C:\Test.mxl %DB%
    and its maxl output below...
    (I overwrote the user, password and server below)
    Notice that it is failing on the word 'type'. This should be the App.DB being passed (the contents of the file), but instead it is still only passing the text of the command.
    MAXL> login <user> <password> on <server>;
    OK/INFO - 1051034 - Logging in user [000694098].
    OK/INFO - 1051035 - Last login on Friday, November 05, 2010 2:08:03 PM.
    OK/INFO - 1241001 - Logged in to Essbase.
    MAXL> display variable on database type;
    ERROR - 1242021 - (1) Syntax error near ['type'].
    MaxL Shell completed

  • Need a little code help please

    I am writing a program that shows a house with some clouds moving a the top. I have all the class compiling correctly, when it runs the clouds and background are painted over the house. I think I am just missing something small here. Can someone help me please. Thanks.
    public class BallApp extends javax.swing.JFrame {
      public BallApp (String title) {
        super(title);
        this.setSize(600, 450);
        this.setDefaultCloseOperation(javax.swing.JFrame.EXIT_ON_CLOSE);
        this.add(new BallPanel());
        this.setVisible(true);
        this.add(new LinePanel());
        this.setVisible(true);
      public static void main (String [ ] args) {
        BallApp app = new BallApp ("Chapter 7: BallApp");
    public class LinePanel extends javax.swing.JPanel
       private SmartLine _myLine, _myLine2, _myLine3;          //instance variables for lines
       private SmartLine _myLine4, _myLine5;
       public LinePanel()
         super();
         _myLine = new SmartLine(210, 290, 210, 365, java.awt.Color.BLACK);  //creates lines sets position/color
         _myLine2 = new SmartLine(290, 290, 290, 365, java.awt.Color.BLACK);
            _myLine3 = new SmartLine (210, 365, 290, 365, java.awt.Color.BLACK);
         _myLine4 = new SmartLine (200, 300, 250, 245, java.awt.Color.BLACK);     
         _myLine5 = new SmartLine (250, 245, 300, 300, java.awt.Color.BLACK);
         this.setBackground(java.awt.Color.BLUE);     //sets background color
       public void paintComponent (java.awt.Graphics aBrush)
         super.paintComponent(aBrush);          //method paints lines on to panel
         java.awt.Graphics2D betterBrush = (java.awt.Graphics2D) aBrush;
         _myLine.draw(betterBrush);
         _myLine2.draw(betterBrush);
         _myLine3.draw(betterBrush);
         _myLine4.draw(betterBrush);
         _myLine5.draw(betterBrush);
    } //end of class
    public class BallPanel extends javax.swing.JPanel implements Mover {
        private final int INIT_X = 75; // attributes
        private final int INIT_Y = 75;
        private final int INIT_X1 = 0;
        private final int INIT_Y1 = 0;
        private final int DIAMETER = 60;
        private final int INTERVAL = 100;
        private BouncingBall _ball, _ball2; // components
        private MoveTimer _timer;
        public BallPanel () {
         super();
         _ball = new BouncingBall (java.awt.Color.white, this); 
         _ball2 = new BouncingBall (java.awt.Color.white, this);
         _timer = new MoveTimer(INTERVAL, this);
         //this.setBackground(java.awt.Color.blue);
         _ball.setLocation(INIT_X, INIT_Y);
         _ball.setSize(DIAMETER, DIAMETER);
         _ball2.setLocation(INIT_X1, INIT_Y1);
         _ball2.setSize(DIAMETER, DIAMETER);
         _timer.start();
        public void move() {
         _ball.move();
         _ball2.move();
         this.repaint();
        public void paintComponent (java.awt.Graphics aBrush) {
         super.paintComponent(aBrush);
         java.awt.Graphics2D betterBrush =
             (java.awt.Graphics2D) aBrush;
         _ball.fill(betterBrush);
         _ball2.fill(betterBrush);
    }

    ok.
    public interface Mover {
        public void move();
    public class BouncingBall extends SmartEllipse implements Mover {
        private int _changeX, _changeY; // attributes
        private final int MOVE_LEN = 5;
        private javax.swing.JPanel _panel; // peer object (and container)
        private javax.swing.Timer _timer;
        private double nextY;
        public BouncingBall (java.awt.Color aColor,
                             javax.swing.JPanel aPanel){
         super(aColor);
         _changeX = MOVE_LEN;
         _changeY = MOVE_LEN;
         _panel = aPanel; nextY=75;
        public void move() {
         int nextX = (int)this.getX() + _changeX;
         if (nextX <= this.getMinBoundX()) {
             _changeX *= -1;
             nextX = this.getMinBoundX();
         else if (nextX >= this.getMaxBoundX()) {
             _changeX *= -1;
             nextX = this.getMaxBoundX();
         this.setLocation(nextX, nextY);
        public int getMinBoundX() {
         return (int) _panel.getX();
        public int getMaxBoundX() {
              return (int) (_panel.getX() + _panel.getWidth()
                    - this.getWidth());
    public class MoveTimer extends javax.swing.Timer {
        private Mover _mover; // peer object
       public MoveTimer (int anInterval, Mover aMover) {
          super(anInterval, null);
          _mover = aMover;
          this.addActionListener(new MoveListener());
       private class MoveListener implements java.awt.event.ActionListener {
         public void actionPerformed(java.awt.event.ActionEvent e){
            _mover.move();
    public class SmartLine extends java.awt.geom.Line2D.Double
       private java.awt.Color _lineColor;
       private final int STROKE_WIDTH = 2;          //makes width of line constant
       private double X1, Y1, X2, Y2;          //set as instance variables that are doubles
       public SmartLine (double X1, double Y1, double X2, double Y2, java.awt.Color aColor)
         _lineColor = aColor;          //constructor
         setLine(X1,Y1,X2,Y2);
         X1 = 0;                    //sets intial positions to 0
         Y1 = 0;
         X2 = 0;
         Y2 = 0;
       public void setLineColor (java.awt.Color aColor)
         _lineColor = aColor;          //method for setting the color of the lines
       public void setLocation (double X1, double X2, double Y1, double Y2)
         this.setLine (getP1(), getP2()); //method for setting location of lines             
       public void draw (java.awt.Graphics2D aBrush)
         java.awt.Color savedColor = aBrush.getColor();        //method draws the line with color set
         aBrush.setColor(_lineColor);
         java.awt.Stroke savedStroke = aBrush.getStroke();
         aBrush.setStroke(new java.awt.BasicStroke(STROKE_WIDTH));
         aBrush.draw(this);
         aBrush.setStroke(savedStroke);
         aBrush.setColor(savedColor);
    } //end of class

  • I  need a Java script  help

    I need a javascript that I can put a list of picture urls in and it
    will be
    timed to fade into the next picture. I don't want just a rotating one
    it
    must fade into the next picture to look good. Very easy project

    I don't think you can do fading and rotating of
    images in Javascript anyway.Sounds like one of those godawful Flash thingsthat
    websites make you watch before you can get to the
    useful stuff.I hate those.
    My company's website is rife with them. System
    testing is a major PITA. I can only imagine how
    frustrating it must be for a customer who doesn't
    have broadband.My company also loads up the corporate site with this trash. We don't employ any web developers, so they brought in some "consultants" to do it for us.
    Every time I have to watch it, I'm reminded of the four straight years I went without a pay raise. Turns my stomach.

  • Need a little more help

    so i am going to buy an iphone 3gs used but with no sim card what will I have to do in order to use it as an ipod, and if i need one what type of sim card would i need to use it, would it have to at&t or will any work in order to just use it as an ipod

    You would have to insert a valid sim card to activate it (doesn't have to be an activated sim card, just a valid one).  If the phone was locked, the sim card must be from the carrier it was locked to.

  • Need a little JavaScript help with disabling a select list in a tabular frm

    Hello Folks
    Here's the scenario.
    I have a tabular form which, subject to the setting of one Select List, I want to disable/enable another.
    I have got this far and it will disable a text item but not a select list..
    This is in the HTML header section for the page...
    <script type="text/javascript">
    function test(pThis)
    var currIndex = $('select[name="'+pThis.name+'"]').index(pThis);
    if (pThis.value=='2') {
    $('input[name="f02"]')[currIndex].style.backgroundColor = "LightGrey";
    $('input[name="f02"]')[currIndex].disabled=true;
    The report region is defined as...
    SELECT apex_item.text(1, ir.iot_rebate_type_id) iot_rebate_type_id
    ,apex_item.select_list_from_lov_xl(2,ir.rebate_currency,'LOV_CURRENCY_CODES') rebate_currency
    FROM iot_rebate ir
    WHERE ir.iot_agreement_id = :P303_IOT_AGREEMENT_ID
    The iot_rebate_type_id column has an Column Element Attribute set to...
    onchange="javascript:test(this);"
    As I say, if I define the rebate currency as a text item, the javascript works fine.
    Can anyone offer any suggestions?
    Many thanks
    Simon
    Application Express 4.0.2.00.07

    Simon Gadd wrote:
    Hi Vikram.
    That's great.
    I have the relevant items being set to diabled & grey (and also the reverse of this if the driving select list is changed back).
    As this is being used in a Tabular form, if I am calling pre-existing records which should be displayed with two of the select lists disabled, can you point me in the right direction to show the relevent select lists as disabled when the records are returned from the database?If you are using apex_item API set the disabled property into p_attributes parameter conditionally using a case statement in you sql statement
    Another option is you can use some javascript to loop through the tabular form array that runs on the onload of the page.
    Finally, if some columns are disabled, this invaludates the MRU process on the page. Is there a way to submit the page with some fields in the disabled state?Do that as per Roel's suggestion for this issue.
    Any input/pointers much appreciated.
    Simon

  • Trying to add a sign in module, but I need a little code help.

    I am trying to add a sign in, but this is what happens to my page. http://www.blisssurfadventures.com/about.html?Preview=True
    When trying to add in module the page content box only allows me to see a part of my web page.

    Hi,
    I notice the sign in is now already there. What Safari version are you using? I tested on 6.0.2 (the latest) and seems to be working fine. Did you try other browsers?
    Also, looks like you're publishing from muse and using non-web-safe fonts, thus turning your texts into images. That may not be the best way to go, if you want content to be indexed, layout to be flexible, if users might want to select parts of the text, etc.
    Kind Regards,
    Alex

  • Help Needed with Apple Script

    I need a little help with Apple Script. I have been using a script for several months now, and all of a sudden it just stopped working. Here's the script"
    ============
    with timeout of 9999 seconds
    tell application "Finder"
    activate
    (* copy target file to another disk - to create a backup *)
    duplicate file "Daily.dmg" of folder "File Backups" of disk "HD Mirror" to folder "Data Backup-Daily" of disk "MacHD 1" replacing yes
    (* copy a 2nd target file to another disk - to create a backup *)
    duplicate file "Personal.dmg" of folder "File Backups" of disk "HD Mirror" to folder "Data Backup-Daily" of disk "MacHD 1" replacing yes
    (* now copy the 2nd target file to my iDisk *)
    duplicate file "Personal.dmg" of folder "Data Backup-Daily" of disk "MacHD 1" to folder "Documents" of disk "xxxxxx" replacing yes
    end tell
    end timeout
    ============
    In the above script, xxxxxx represents the name of my iDisk that is mounted in the Finder.
    Here's my issue - the above script worked fine until just recently. However, now the first two steps work fine, but I get this error message while trying to copy the file to my iDisk:
    "The operation could not be completed because some items had to be skipped. 'Personal.dmg'"
    Does anyone have any ideas on how I can fix this? I'm wondering if Mac OS 10.4.5 might be the culprit since this problem seems to have occurred shortly after I upgraded???
    Thanks,
    -AstraPoint

    Hi,
    Assumptions :-
    uuencode command exits
    mailx command exits
    File name is "vas.txt".
    Mail id is "[email protected]"
    # START OF SCRIPT
    #!/bin/ksh
    vasFileName="$1"
    vasRecordsDirFile=/etl/dev/work/wellness/enrl_rej/records/${vasFileName}
    vasMetatdataDirFile=/etl/dev/work/wellness/enrl_rej/metadata/${vasFileName}
    vasHeaderDirFile=/etl/dev/work/wellness/enrl_rej/header/${vasFileName}
    vasHeaderRejDirFile=/etl/dev/work/wellness/enrl_rej/hdrrej/${vasFileName}
    vasFieldsDirFile=/etl/dev/work/wellness/enrl_rej/fields/${vasFileName}
    if [[ -e ${vasRecordsDirFile} ]]
    then
    uuencode ${vasRecordsDirFile} ${vasRecordsDirFile} | mailx -s "process complete and attached are the rejected records" [email protected]
    elif [[ -e ${vasMetatdataDirFile} ]]
    then
    uuencode ${vasMetatdataDirFile} ${vasMetatdataDirFile} | mailx -s "Metadata Mismatch no of fields in detail didn't match" [email protected]
    elif [[ -e ${vasHeaderDirFile} ]]
    then
    uuencode ${vasHeaderDirFile} ${vasHeaderDirFile} | mailx -s "Problem with header file - File Rejected" [email protected]
    elif [[ -e ${vasHeaderRejDirFile} ]]
    then
    uuencode ${vasHeaderRejDirFile} ${vasHeaderRejDirFile} | mailx -s "the Percentage of rejects more than 3 percent File rejected" [email protected]
    elif [[ -e ${vasFieldsDirFile} ]]
    then
    uuencode ${vasFieldsDirFile} ${vasFieldsDirFile} | mailx -s "The header and detail count didn't match File rejected" [email protected]
    else
    echo "File doesn't exist in any of the directories mentioned."
    fi
    # END
    Vijay Bheemineni.

  • Need a little help new to mac

    Need a little help I'm new to Mac.. i have had my ibook for over a year now and i like it a lot, but some times my usb post dies on my for a couple days maybe weeks. Ill have my ipod connected and when i go to plug in a flash drive. It doesn't detect my ipod anymore and my usb port don't work. it says that they were "removed improperly" and now they are not working again..i have tried to reinstall the whole os again and that doesn't work i don't have the hardware test disk so i don't know what could be the problem i know its not the logic board is there any test i can do to it to find out the problem its an ibook late 2001... there is no reset button on it. i tried to hold in the space bar and now when i boot up i get prompt to this screen that shows the world and then a folder with a ? mark but then after a few sec it boots right up im a mess need some help

    +it says that they were "removed improperly"+
    You have to go to the iPod's icon on your computer (or the flash drive's icon), select it and eject it there before removing it. Otherwise, data can be corrupted and/or lost. Repeatedly removing it without ejecting it from the desktop can cause it not to be recognized any longer.
    If your iBook is a "late 2001" model. It should have a reset button. Check out the chart here to make sure which model iBook you have:
    http://support.apple.com/kb/HT1772?viewlocale=en_US
    +i get prompt to this screen that shows the world and then a folder with a ? mark but then after a few sec it boots right up+
    It's trying to find a network volume from which to boot.
    Once it's booted up, go to System Preferences > Startup Disk, and select your Mac OS X startup volume. Then close System Preferences. The next time you start up, it should start up without looking for a network volume.

  • HT4208 I just need a little bit of help. I visited the american ap store looking for the new scrabble game which is not available in the australian ap store. Can't get it anyway as I don't have an account there. I am trying to get back to the australian a

    I just need a little bit of help. I visited the american ap store, using my i phone, to check out something. I dont have an account with them so I couldn't get what I wanted anyway.Now, I need to get back to the australian store and I don't know how to do that. Please help!

    Go to app store- scroll down to bottom- click on apple id- change country

  • Greetings,   I need a little help. I have a WRT54G Wirele...

    Greetings,
    I need a little help. I have a WRT54G Wireless Router, and it worked well for years with my Alcatel DSL Modem (Bellsouth/ATT).  The modem went out and it was replaced with Westell Modem.  When I bypass the router I have no problem connecting to the Internet, however when I connect the router--no connection.  I thought it would not be a problem swapping the modem out.  I am running XP with Norton Internet Security and Anti-virus.  I have disabled Norton and do not believe that to be the problem.  Do I have to reconfigure the router?  If so, can I do it with the original install CD?  (I am disabled and the original CD/instructions/box is in the attic and I cannot get it easily.)  I have read several different threads, but they do not specifically address my problem.  Any assistance is appreciated.  Eddy

    Many Westell modems are actually "modem-routers" and they use the same 192.168.1.1  address space as your WRT54G.  This is the root of your problems.
    Try the settings at this URL.
    http://www.dslreports.com/faq/6323
    Note that the "WAN" port on the BEFSR41 in the example is the same as the "Internet" port on your WRT54G.
    Please let me know whether or not this worked for you.

  • Report Script Help Needed - Data Extract

    Hi,
    I have a cube with 11 dims: Account, Period, Resource, Facility, SSSS, CCCC, Activity, Years, Version, Scenario, Charges
    I need a report script that will extract data for a certain year and scenario only. I have not written a report script in a long time and have the following thus far. However it's not extracting data that I know exists. Can anyone help? Thanks is advance. This runs but I just get a blank screen or file....
    //ESS_LOCALE English_UnitedStates.Latin1@Binary
    // This report script extracts data from cube
    "FY11"
    {DECIMAL 4}
    {NAMEWIDTH 25}
    {SUPCOMMAS}
    {SUPBRACKETS}
    {SUPPAGEHEADING}
    {NOINDENTGEN}
    {SUPMISSINGROWS}
    {SUPZEROROWS}
    {TABDELIMIT}
    {SUPFEED}
    {ROWREPEAT}
    "JAN"
    "FEB"
    "MAR"
    //"APR"
    //"MAY"
    //"JUN"
    //"JUL"
    //"AUG"
    //"SEP"
    //"OCT"
    //"NOV"
    //"DEC"
    "BUDGET"
    // This is the members of the CCCC dimension to extract
    // This is the members or the ACCOUNT dimension to extract
    !

    Hello -
    You can try/modify the code below and see if this works -
    //ESS_LOCALE English_UnitedStates.Latin1@Binary
    { SUPMISSINGROWS }
    { SUPZEROROWS }
    { SUPFEED, SUPBRACKETS, SUPCOMMAS }
    { NOINDENTGEN }
    { DECIMAL 4}
    { NAMEWIDTH 30 }
    { ROWREPEAT }
    { TABDELIMIT }
    {MISSINGTEXT "-" }
    <PAGE ("Scenario", "Resource", "Facility" ,"SSSS", "Activity", "Version", "Charges")
    "Budget"
    "Resource"
    "Facility"
    "SSSS"
    "Activity"
    "Version"
    "Charges"
    <COLUMN ("Year","Period")
    "FY11"
    "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
    <ROW ("Account", "CCCC")
    <LINK (<DESCENDANTS ("ACCOUNT") AND <LEV("ACCOUNT",0))
    <LINK (<DESCENDANTS ("RT9_CCCC") AND <LEV("CCCC",0))
    Here you may want to change teh combination in the Page dimensions for eg -
    I know for Scenario you want Budget
    But for Version should it be "Version" or may be "Working" Or "Final" or any other version dimension member ...?
    Same way modify the dimension memebres for other dimensions.
    Regards
    Edited by: Rosi on Aug 24, 2009 10:01 AM
    Edited by: Rosi on Aug 24, 2009 10:02 AM

Maybe you are looking for

  • Hello, how can I import pictures from my Macbook Pro to my iMac?

    I have stored my holiday pictures on my Macbook Pro and I want to transfer/copy them to my iMac. I have a local network (via Apple hardware) and I have marked the photo library on the Macbook Pro as "Shared". So I should be able to transfer pictures

  • VGA monitor and TV switchbox with Mini

    I have recently purchased the EyeTV for DTT box for my Mac Mini. I currently use a Dell VGA monitor for my work but would like to watch TV broadcasts from the EyeTV through my TV. However, I don't want to keep unplugging the monitor and then plugging

  • "Untitled" as default document name for new documents

    I have one installation of Adobe Illustrator CS2 in a Mac with which I have the following problem: Whenever I go to File->New, to create a new document, the default document name is blank, and it should be "untitled". Is there a way (without reinstal

  • SmartView 11.1.1.3 - Web launch operation has been cancelled

    Hi Gurus, My Customer is having issue when he tries to open a Planning web form in SmartView through Workspace, gets the error: "Web launch operation has been cancelled" Hyperion Planning: 11.1.1.3 on MS Windows APS 11.1.1.3 on MS Windows Essbase on

  • Add entries to standard table

    Hey guys, how can i add entries to a standard table (generic table)? I have a function modul which has an export table of standard table and i'd to add some entries to this table. How can i do that? i don't know the table line type.     thx,        W