Is there any way to copy S.Variables via Maxl or Essbase

Guyz,
Is there any way to copy S.Variables from one App to another app via Maxl or Essbase.
Cheers
Cnee

you can copy substitution variables between different Essbase servers through Admin console.
At first you should be able to add both the essbase servers in the admin console.
Then you can copy the subst variables from one essbase server to other.
in subst variable window -> select copy -> select server, app, db -> select subst variable to be copied -> you can tick overwrite existing variables option if needed -> click OK.
the other way is to collect the subst variable information through maxl & then write maxl scripts to create the subst variables on the other server.
- Krish

Similar Messages

  • Hello I want to switch from iPhone 3GS to 4, is there any way to copy and paste my text massages (sms) from iPhone 3 to 4

    hello I want to switch from iPhone 3GS to 4, is there any way to copy and paste my text massages (sms) from iPhone 3 to 4

    Take Full Backup through iTunes!!

  • Is there any way to copy proxy filed structures to ABAP field structure?

    Hi All,
    We are getting message from  XI using inbound proxy and sending response asynchronously by outbound proxy.
    my question: " is there any way to copy or to move incoming proxy fields to ABAP backend fields?"
    for ex: we are getting Name structure from proxy wit fields firstname and lastname.
    and proxy will generate some structures for name. backend ABAP system will have structure name with two fields having fname and lname as data elements.
    so how can we directly move proxy fields to ABAP fields? ( here in example there are only two fields but real scenario we will have thousands of fields for which we cannot map manually from proxy fields to ABAP fields.)
    please help me in this regard.
    Thanks in advance.
    Regards,
    Ujwalkumar

    Hi Ujwalkumar,
    if you have control over the proxy:
    Create your interface at XI like the structure in backend system. Same structure and same fieldnames. If you regenerate your proxy you can use abap order "MOVE CORRESPONDING" to map all fields.
    Regards,
    Udo

  • I'm forced to use a xoom for work. Is there any way of installing android ICS via virtual machine or any other mechanism?

    i'm forced to use a xoom for work. Is there any way of installing android ICS via virtual machine or any other mechanism?

    On the iPad? No.

  • I'm using TestStand/Labview to do a string value test. Is there any way to use a variable in the edit string value test?? This forces you to hard code a string to test against.

    I'm using TestStand 2.0/Labview 6i to do a string value test. Is there any way to use a string variable in the edit string value test instead of an actual string?? This forces you to hard code a string to test against.

    Hi ART,
    You can also use the LimitLoader step to load your string into to step similar to the Numeric Step type.
    There should be an example of this in the Resource Library | TestStand
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • We have two iPod touch 2nd generations, one had to be restored a few days ago and is now not able to have some of the apps back on it saying that they are incompatible with the iPod. Is there any way to "copy" the apps from 1 to the other??

    Is there any way to get an older version of the app that can be compatible or to "copy" the app from one iPod to the other?
    Or maybe to update the opperating system??

    you can by downloading iTunes to your computer/laptop but before plugging it in to the computer make sure all of your apps are on it then just sync the restored iPod to your computer and all of the apps on the computer will go to your iPod.. Good Luck

  • Is there any way to spool with variable column size?

    Hi, I'm spooling to a CSV file with the following script (the real SELECT is different but similar, Oracle 10.2.0.3.0):
    SET COLSEP ';'
    SET FEEDBACK OFF
    SET LINESIZE 2000
    SET PAGESIZE 0
    SET TERMOUT OFF
    SET TRIMSPOOL ON
    SET VERIFY OFF
    SPOOL test.csv REPLACE
    SELECT 'COLUMN1', 'COLUMN2', 'COLUMN3' FROM dual UNION ALL
    SELECT 'value1', NULL, NULL FROM dual UNION ALL
    SELECT 'value2', NULL, NULL FROM dual;
    SPOOL OFF
    EXIT SUCCESS COMMITThis produces the following output:
    COLUMN1;COLUMN2;COLUMN3
    value1 ;       ;
    value2 ;       ;Is there any way to get the following output with variable column size
    COLUMN1;COLUMN2;COLUMN3
    value1;;
    value2;;I've tried SET NULL '' but I see no difference. Thanks in advance!
    Markus

    In short, No, because SQL*Plus is laying out the data in columns.
    You could either combine the data into a single column by concatenating as strings or use some other method e.g.
    As sys user:
    CREATE OR REPLACE DIRECTORY TEST_DIR AS '\tmp\myfiles'
    GRANT READ, WRITE ON DIRECTORY TEST_DIR TO myuser
    /As myuser:
    CREATE OR REPLACE PROCEDURE run_query(p_sql IN VARCHAR2
                                         ,p_dir IN VARCHAR2
                                         ,p_header_file IN VARCHAR2
                                         ,p_data_file IN VARCHAR2 := NULL) IS
      v_finaltxt  VARCHAR2(4000);
      v_v_val     VARCHAR2(4000);
      v_n_val     NUMBER;
      v_d_val     DATE;
      v_ret       NUMBER;
      c           NUMBER;
      d           NUMBER;
      col_cnt     INTEGER;
      f           BOOLEAN;
      rec_tab     DBMS_SQL.DESC_TAB;
      col_num     NUMBER;
      v_fh        UTL_FILE.FILE_TYPE;
      v_samefile  BOOLEAN := (NVL(p_data_file,p_header_file) = p_header_file);
    BEGIN
      c := DBMS_SQL.OPEN_CURSOR;
      DBMS_SQL.PARSE(c, p_sql, DBMS_SQL.NATIVE);
      d := DBMS_SQL.EXECUTE(c);
      DBMS_SQL.DESCRIBE_COLUMNS(c, col_cnt, rec_tab);
      FOR j in 1..col_cnt
      LOOP
        CASE rec_tab(j).col_type
          WHEN 1 THEN DBMS_SQL.DEFINE_COLUMN(c,j,v_v_val,2000);
          WHEN 2 THEN DBMS_SQL.DEFINE_COLUMN(c,j,v_n_val);
          WHEN 12 THEN DBMS_SQL.DEFINE_COLUMN(c,j,v_d_val);
        ELSE
          DBMS_SQL.DEFINE_COLUMN(c,j,v_v_val,2000);
        END CASE;
      END LOOP;
      -- This part outputs the HEADER
      v_fh := UTL_FILE.FOPEN(upper(p_dir),p_header_file,'w',32767);
      FOR j in 1..col_cnt
      LOOP
        v_finaltxt := ltrim(v_finaltxt||','||lower(rec_tab(j).col_name),',');
      END LOOP;
      --  DBMS_OUTPUT.PUT_LINE(v_finaltxt);
      UTL_FILE.PUT_LINE(v_fh, v_finaltxt);
      IF NOT v_samefile THEN
        UTL_FILE.FCLOSE(v_fh);
      END IF;
      -- This part outputs the DATA
      IF NOT v_samefile THEN
        v_fh := UTL_FILE.FOPEN(upper(p_dir),p_data_file,'w',32767);
      END IF;
      LOOP
        v_ret := DBMS_SQL.FETCH_ROWS(c);
        EXIT WHEN v_ret = 0;
        v_finaltxt := NULL;
        FOR j in 1..col_cnt
        LOOP
          CASE rec_tab(j).col_type
            WHEN 1 THEN DBMS_SQL.COLUMN_VALUE(c,j,v_v_val);
                        v_finaltxt := ltrim(v_finaltxt||',"'||v_v_val||'"',',');
            WHEN 2 THEN DBMS_SQL.COLUMN_VALUE(c,j,v_n_val);
                        v_finaltxt := ltrim(v_finaltxt||','||v_n_val,',');
            WHEN 12 THEN DBMS_SQL.COLUMN_VALUE(c,j,v_d_val);
                        v_finaltxt := ltrim(v_finaltxt||','||to_char(v_d_val,'DD/MM/YYYY HH24:MI:SS'),',');
          ELSE
            v_finaltxt := ltrim(v_finaltxt||',"'||v_v_val||'"',',');
          END CASE;
        END LOOP;
      --  DBMS_OUTPUT.PUT_LINE(v_finaltxt);
        UTL_FILE.PUT_LINE(v_fh, v_finaltxt);
      END LOOP;
      UTL_FILE.FCLOSE(v_fh);
      DBMS_SQL.CLOSE_CURSOR(c);
    END;This allows for the header row and the data to be written to seperate files if required.
    e.g.
    SQL> exec run_query('select * from emp','TEST_DIR','output.txt');
    PL/SQL procedure successfully completed.Output.txt file contains:
    empno,ename,job,mgr,hiredate,sal,comm,deptno
    7369,"SMITH","CLERK",7902,17/12/1980 00:00:00,800,,20
    7499,"ALLEN","SALESMAN",7698,20/02/1981 00:00:00,1600,300,30
    7521,"WARD","SALESMAN",7698,22/02/1981 00:00:00,1250,500,30
    7566,"JONES","MANAGER",7839,02/04/1981 00:00:00,2975,,20
    7654,"MARTIN","SALESMAN",7698,28/09/1981 00:00:00,1250,1400,30
    7698,"BLAKE","MANAGER",7839,01/05/1981 00:00:00,2850,,30
    7782,"CLARK","MANAGER",7839,09/06/1981 00:00:00,2450,,10
    7788,"SCOTT","ANALYST",7566,19/04/1987 00:00:00,3000,,20
    7839,"KING","PRESIDENT",,17/11/1981 00:00:00,5000,,10
    7844,"TURNER","SALESMAN",7698,08/09/1981 00:00:00,1500,0,30
    7876,"ADAMS","CLERK",7788,23/05/1987 00:00:00,1100,,20
    7900,"JAMES","CLERK",7698,03/12/1981 00:00:00,950,,30
    7902,"FORD","ANALYST",7566,03/12/1981 00:00:00,3000,,20
    7934,"MILLER","CLERK",7782,23/01/1982 00:00:00,1300,,10The procedure allows for the header and data to go to seperate files if required. Just specifying the "header" filename will put the header and data in the one file.
    Adapt to output different datatypes and styles are required.

  • Is there any way to copy your contacts to the sim?

    Hey! i just wanted to ask if theres any way to transfer iPhone contacts to your sim so that u can use the sim in another phone with contacts in it?

    iOS would create two entries if a single contact has two numbers, one for each. Like all other phones do.
    Numbers disgarded will be determined by alphabetical order.  Like they would for every phone that also has this limitation privided they selected the industry standard Copy All option. Otherwise they can pick and choose from their contact list which ones they want to copy if they have more than the maximum allowed phone numbers that can be stored on a sim card. Which is also an industry standard option.
    Average consumers will have to learn how sim card storage works via google for instance or opening the manual instructions on the iPhone or by speaking to their carrier who are more than happy to explain to the customer that by putting the contacts on their sim card they can use their servers to push these numbers to a new sim in the event their current one becomes faulty for whatever reason and they decided to get another manufacturers phone as a consequence.
    He/she will think "Well, atleast I managed to keep whopping huge 500 phone numbers. Saved myself a few hours there."
    Next question?
    PS. Apart from facebook fanatics who don't actually know 90% of the people they friended, do you know anyone with more than 500 phone numbers? Like most I know alot of people, and like a lot of other people I work for a pretty big company and have a company phone... I haven't managed to hit that magic number yet on either of the phones and I can't think of anyone who I know that has. No doubt there might be people out there with more than 500 phone numbers in their contact list but then they find themselves in the same boat as every other person on the entire planet that uses these sim cards in a commerically available phone.
    They haven't lost out on anything by gaining this feature by not being able to create an exact replica of the iPhone Contact list, but they will gain something by seeing it introduced because I am willing to say that the iPhone is the only smartphone/mobilephone on the market within the last decade missing this feature.
    I would also like to point out that out of all the topics created in this section of the forum within the last 24 hours this is one of the most viewed by visitors and thus this question has stoked interest in knowing how to get this feature working... except they learnt harshly that it doesn't exist on their phone. I would imagine there were a couple of "Eh?!" moments when they found that out. As for what they thought when they saw someone doing everything he could to stop it from coming to iPhone, I cannot say. Because like them I cannot understand why such a feature would be so vigorously opposed, especial;ly when that sim contact list can be transferred between different carriers when using a PAC code to transfer your old number to a new contract with a different company.

  • Is there any way to copy the music from my Ipod touch to my new laptop?

    I just want to transfer the songs from my Ipod to the ITunes on my laptop. I have obtained songs form various sources other than iTunes and its only showing the songs ive bought from iTunes. Is there any way to easily transfer all the songs?

    You'll have to use 3rd party software, check this article:
    User Tip: Syncing to a "New" Computer or replacing a "crashed" Hard Drive

  • Is there any way to copy the iPad photostream onto my phone?

    I was recently on vacation and the pictures I was taking on my phone were not being pushed to photo stream. I stupidly turned photo stream off and back on, and lost all of the photos in photostream on my phone. Luckily, the photostream on my iPad is intact. My question is: is there any way I can push my iPad photostream to my iPhone so that my pictures are restored? Thank you in advance.

    Welcome to the Apple Community.
    Try not to look on the photos on the iPad as being in photostream but rather as remnants from photostream, it would be a good idea to save them at the earliest opportunity. You can do this by navigating to the photostream thumbnail page, tapping on the rectangle with the arrow in the top right corner, selecting the photos and then choosing save from the options at the bottom of the page.
    Unfortunately getting them into photostream to have them appear on the iPhone is less straight forward. You could take screenshots of each photo, but you really would be better downloading the photos to a computer and adding them to photostream from there.

  • HT4527 Is there any way to copy content of iPod to an external drive without having the Id and password on the device?

    I am afraid I will lose content if I plug in to my laptop. I have aquired a used iPod Classic and want to keep some of the content on my external drive to merge with my existing account. Is there any way to do so. All of my research points to needing to authorize my computer first, but I do not have that info. Thanks for any help.

    You are not entitled to the content of the device. Wipe it out and start afresh.
    tt2

  • Are there any way to copy or delete more than one url at a time

    i have a lot of url and i want to copy them to another folder, for now i do it one at a time, so i am wondering can i highlight and cope more than one at a time, and i also want to do this in delete.

    If i ever win a grammy. ill thank u...ok one last thing...is there a way to sort of consolidate tracks? sometimes there are a few...quite a few and some stuff could be on one but i need it to not cut out any of the other parts

  • Is there any way to copy whole form value to other form ?

    is there any good way to copy whole value of one form to other form ?

    the form would eitherway will be bounded to te bindings of the VO.. y cant you use the bindings itself to populate the values from one form to another form

  • Is there any way to lock a Mac via iPhone or iPod touch?

    Just wondering... Is there any free way to lock or logout a Mac using an iPhone or iPod touch? Maybe using an AppleScript and the Bluetooth built into both devices (when the iPod goes outside of the Mac's range, the computer could lock)? Any suggestions?

    http://hints.macworld.com/article.php?story=20091221173111783

  • Is there any way to send a file via bluetooth to raspberry pi?

    We need to send voice recordings to a raspberry pi with speaker, is there any app already sends file via bluetooth to raspberry pi?

    updated.

Maybe you are looking for

  • How can I determine batches while picking in transaction VL02N?

    Hi all, good day. I would appreciate your suggestions. I'm developing some RF Transactions and at this point I have to solve the following: The program process data which the user enters using a handheld; values are send to the transaction VL02N, usi

  • Keyboard replacement.??

    Got a used s9 4067 off ebay.  2 keys missing.  I just decided to replaced the keyboard.  Hopefully I'll win the bid on ebay. Any how if I do I need to replace the whole keyboard and not just the keys.  Can't find any info on google, etc. Anyone know

  • Does the original Xserve Raid (2003) support 750Gb drives.

    Is the latest firmware compatible with the original Xserve Raid, thus supporting 750Gb discs? Thanks in advance.

  • Showcase: Adobe Edge + DPS app

    Hi everyone! We finished our first app with Adobe Edge and it's a collection of Russian tales. http://itunes.apple.com/ru/app/zivye-skazki/id441131633?mt=8 Now there're only two tales. First was made usind Adobe Flash + Wallaby project and the second

  • IDoc error handling using workflows

    Hi, I have a requirement to generate IDocs in the Source system and process them in the target system. The IDoc message type is HRMD_ABA. And I am using standard processes to generate them and post them using PFAL and RBDAPP01 program respectively. A