Creation of Variable in RSZV in BW 2.0 version

Hi All,
Can anyone tell me how to Create a variable in BW 2.0 version as we have a requirement in 2.0.
In RSZV can u please list out the steps to create a Custom variable for 0calmonth characteristic.
RSVP
Thanks & Regards,
Sai.

it's not necessarily a problem.  it's just a matter of understanding how flash works.
as already mentioned, when you create a new instance of flip_box the code in its first frame does NOT instantly execute.  it executes after the movieclip is created.
you could use a delay to assign nowtext after it's assigned on the movieclip's timeline.  eg,
var box1:MovieClip = _root.attachMovie("flip_box_lg", "fb1", this.getNextHighestDepth(),{_x:100,_y:100});
this.onEnterFrame=assignF;
function assignF():Void{
delete this.onEnterFrame;
nowtext="50/5";

Similar Messages

  • Creation of Variables in BEx reporting

    Hi,
    I want to know the Creation process or steps for creation of variables in BEx Reporting.
    Please let me know.
    Thanks & Best Regards,
    Venkata.

    Hi,
    there are various kind of variables- refer this -
    http://help.sap.com/saphelp_bw33/helpdata/en/f1/0a56a7e09411d2acb90000e829fbfe/frameset.htm
    if you want to create variable on char -
    go to BEx Query designer, create your query , go to left panel & that characteristics--open that -- see variable - right click & create.
    it will take you through all the steps.
    hope it helps
    regards
    Vikash

  • UI Creation / Populating Variables...

    I've now moved onto UI creation... What I would like to do is create edittext boxes, which would populate my variables.. I'm having a problem on my first attempt..
    // Add a panel to contain the components
    win.pnlA = win.add("panel", [10, 10, 400, 450], "Settings");
    win.pnlA.displayTextLbl = win.pnlA.add("statictext", [10, 415, 100, 430], "XML Name:");
    XMLName = win.pnlA.add("edittext", [100, 415, 225, 430], 'XMLTest5');
    var logFile = new File("/c/TEMP/" + XMLName + ".xml");
    Most of the rest of the script creates lots more static and edit texts with other panels... My problem is, I'm not sure how to get the result of the edittext (in my example, XMLTest5) to appear in the variable/filename. My filename is unwantingly written as [object EditText].xml
    Thanks again for your help.
    -Dave

    Hi Dave,
    Your XMLName variable points to an EditText object. To get its value, you need to reference its text attribute (i.e., XMLName.text).
    Jeff

  • Dynamic creation of variables and alv grid output/internal table

    Dear Experts
    I am stuck in an inventory ageing report which is to be done year wise. the scenario is as follow.
    selection screen i enter the year 2011 or 2010 or 2009.
    the output should show me 2011-2007 or 2010-2007 or 2009-2007. the alv grid should always start from 2007 and end at the year that is entered in the selection screen.
    Now how can i create a dynamic variables to store the values of the corresponding yr and also how can i create a dynamic internal table to store these values.
    Thanks & Regards
    Zamir Parkar

    Hi Zamir,
    if you are new to ABAP you may leave old and buggy techniques behind.
    If you want to create the table dynamically, please do not use l_alv_table_create=>create_dynamic_table because it is limited and always triggers a possibly unwanted database commit.
    You better use RTTS dynamic runtime type services, i.e. check the example for [Creating Flat and Complex Internal Tables Dynamically using RTTI|http://wiki.sdn.sap.com/wiki/display/Snippets/CreatingFlatandComplexInternalTablesDynamicallyusingRTTI].
    As done here, leave all outdated ALV technologies behind and start with CL_SALV_TABLE. It is following the object-oriented approach and does not need a field catalog.
    You will get used to field-symbols that can be compared to the data referenced by a pointer. For dynamic fields, you may build the field names dynamically, i.e.
    DATA:
          lo_structdescr         TYPE REF TO cl_abap_structdescr,
          lo_typedescr           TYPE REF TO cl_abap_typedescr,
          lo_tabledescr          TYPE REF TO cl_abap_tabledescr,
          lr_data                TYPE REF TO data,
          lt_comp_all            TYPE cl_abap_structdescr=>component_table,
          lv_index               TYPE numc2.
        FIELD-SYMBOLS:
          <any>                  TYPE ANY,
          <component>            TYPE LINE OF abap_component_tab,
           <table>                TYPE table.
        DO nnn TIMES.
          lv_index = sy-index.
          lo_typedescr   =  cl_abap_typedescr=>describe_by_name( <name of data element> ).
          APPEND INITIAL LINE TO lt_comp_all ASSIGNING <component>.
          <component>-type ?= lo_typedescr.
          CONCATENATE 'YEARVAL' lc_underscore lv_index INTO <component>-name.
          <component>-as_include  = abap_true.
          CONCATENATE lc_underscore lv_index INTO <component>-suffix.
        ENDDO.
    * create description object for structured type
        lo_structdescr = cl_abap_structdescr=>create( lt_comp_all ).
    *  create table description object for this
        lo_tabledescr = cl_abap_tabledescr=>create(
                        p_line_type  = lo_structdescr
                        p_table_kind = cl_abap_tabledescr=>tablekind_std
                        p_unique     = abap_false ).
    * create data object
        CREATE DATA lr_data TYPE HANDLE lo_tabledescr.
    ASSIGN lr_data->* to <table>.
    This is a fragment. Please adapt to your needs.
    Regards,
    Clemens

  • BOM creation with variable size item

    Dear Experts,
    I want to create BOM with 'R'-Variable size item, Can U tell me exact procedure step by step to How to create BOM with R- Variable size item?
    Regards,
    Shivkumar Dachawar

    Hi,
      T-Code-CS01
    1. Enter the material for which you want to create BOM, Plan and BOM usage.
    2. Select the item category "R", enter the component. Now you will be taken to the "Variable item data" screen.
    3. Enter the datas of Size 1, 2 & 3 (as required) and the unit of the size & number. System will calculate the "Qty of var- size item" in the unit assigned to the basic data of the material master of the component.
    4. Save
    Note: You can change the unit of the variable size item as per your requirement in OS28
    Hope this helps.
    -Thaila Shree

  • Creation of  Variable for Hierarchy Node

    Greetings...fellow matez,
       I am using Characteristic "0PROFIT_CTR" : PROFIT CENTER
       Here, I created used SAP <b>Standard</b> variable 0N_PCTR (Profit Center/Profit Center Hierarchy)
       This meets my requirement of allowing User to Input the TOP MOST Hierarchy Node basically means my Hierarchy.
       Now, what I need is the ability of a User Input/Key In Variable to ask for a specific Node of my Hierarchy instead of just the <b>'main'</b> hierarchy
      Let me demonstrate with an example :-
      At the moment, I have a variable defined for "0PROFIT_CTR". So, I am able to choose "XXX GROUP" as my hierarchy.
      Now, under this "XXX Group" I have several Sub-Nodes like XXX-Functional Groups ; XXX-Business Units; XXX-Subsidaries.
      How can I create a variable which prompts for this Subnodes of my hierarchy ?

    Matez,
      Issue remains unresolved.
      What I need is a <b>Hierarchy - NODE</b> variable for my "Profit and Loss" Hierarhy
      But, when I use the variable option in the 'Selecting Variable for Hierarchy' scree, I only get to choose my Hierarchy instead of my Hierarchy Node.
      How can I created a variable of type Hierarchy-NODE instead of Hierarchy for my characteristic "0Account"
    Kindly advice matez!

  • Creation of Variable with single values in BPS

    Dear All,
    I have a very basic requirement in creating variables that would accept single values from the user in BPS.
    Could anyone pls provide me the steps in doing so?
    I am able to create and use varibles with value ranges but could not find the option to create variables with  single values.
    Regards,
    Srini.

    Hi Raj,
    I have already been  thru SAP help file but,  though it says we can create variables with single values, it does not  provide any steps in creating it.
    Any suggestions?
    Regards,
    Srinivas Kamireddy.
    Edited by: Srinivas Kamireddy on Apr 25, 2008 7:59 PM

  • Creation of variable in BEx from user authorization

    Hi gurus,
       i want to create a variable with user authorization in BEx. Can any one please tell me the steps to create the variable for authorization.
    Thanks in advance
    sandy

    Hi,
    You will get a better and quicker answer if you post this in the BI forums.
    Eddy
    PS.
    Put yourself on the SDN world map (http://sdn.idizaai.be/sdn_world/sdn_world.html) and earn 25 points.
    Spread the wor(l)d!

  • Problem creation of variable

    Hi all,
    I've got a little problem in BEx.
    I'm trying to create an offset.
    For that, i created a new variable on 0CALMONTH, with replacement path with tha variable of 0CALMONTH : "0I_CMNTH".
    But when I put this variable, the following error appears :"Name ZCOMPT" already exists; select a different name."
    I investigated and this "ZCOMPT" is the name of a variable of the infoobject "ZBPARTNR" which has 0CALMONTH as attribute.
    So can you help me in order that i can correctly create this offset ?
    Thanks for help,
    Points will be assigned,
    Vince.

    Vince,
    I think the system somehow accepted two variables with the same technical name ZCOMPT earlier and now it has realised it. The system would not allow for two variables to have the same technical name. Try doing the following:
    Try creating a variable with a different name from what you are doing now say ZTEST.
    If you get the same message that you are getting now, then the issue is with the variable ZCOMPT and not with your variable.
    Then you will have to delete one of the variables ZCOMPT. That is the only solution. Once one of the variables is deleted, then you can go ahead with your work.
    Thanks.

  • SQL Creation Date variable issue

    I am building a report where I need the CREATION DATE field to display only the results for the previous day. Is there an SQL statement that I can add to the Viewer that will display this data? Ex:
    STAFF_LOCAL.CREATION_DT  IN (insert SQL statement here)

    Hi Todd,
    If you want to create a report which will show data of previous day, you can make a filter in the universe with this definition.
    i.e. if you are using sql server create a filter condition with definition like
    @select(classname\objectname)=getdate()-1
    for oracle it will be @select(classname\objectname)=sysdate-1
    and then use this condition in the report, you will get the desired result.
    If you want this to be at report side only and not from designer than use this example sql which gives hiredate and name for employees hired in the previous day.
    Select
    employee.fname,employee.hire_date
    from
    employee
    where
    (employee.hire_date = getdate()-1)
    this is for sql server...
    for oracle you can replace the getdate() with sysdate in the customer sql.
    hope this helps.
    Regards,
    Gaurav

  • Batch creation of variables

    A client works with CS4 on a map with about 2000 text boxes that need to be exported for translation.
    Is there a way to batch process the file so that all the text boxes are assigned a variable for export in XML ?
    Thank you in advance for the replies.
    Jean-Christophe Helary

    Thank you for your reply.
    I finished the extraction last night before seing your mail.
    What I did, as written above is:
    1) Select all text
    2) Make visibility dynamic
    3) Create data set
    4) Run the script for the selected text
    5) Save the library
    The library contains the dynamic visibility data under Variable 1 and all the other variables starting from Variable 2.
    Now, I tested the proper way to do that, as you wrote above:
    1) Select all text
    2) Create data set
    3) Run the script for the selected text
    4) Save the library
    And I end up with exactly the same variables, except that the extra "dynamic visibility data" is not there.
    *if* importing the data I created with the first process fails, I'll have to redo the whole export, which is fine (it took me less than an hour for the whole file set), but if it works fine, I don't want to do that again.
    Is there a reason why the import would not work ?
    Jean-Christophe

  • Creation Exit variable for Sales office Characteristic

    Hi Experts,  can anybody suggest me,
    My requirement is like i have to create Exit Variable on Sales Office Characteristic, by using Exit, in this exit it i should get the values of Sales office 2201 To 2299 only.
    plese give the sample code tobe written in the Function Module.
    Thanks in Advance.

    Hi,
    You can check with code below in function module:-
    Parameters of function module:
    Import : I_area type UPC_Y_Area.
                ITO_CHA type UPC_YTO_CHA.
    Changing : XS_CHA type any.
    Source code
    Field symbol: <salesoffice> type any.
    assign component of 'Technical name of sales office ' of structure xs_cha to <salesoffice>.
    If <salesoffice> <= 2201 and <salesoffice> >= 2299.
    Message e001(message class).
    endif.
    Hope it may be helpful.

  • Assistants creation and variables logic in Muse

    Hello, I'd like to know if Muse allow me to create assistants in which I can formulate questions, and according the answers, show more questions, and according the answers go to next questions derived from the previous questions. Then, get all those data in variables, and finally allow me to know values and take proper decissions. I am wondering if Muse can do that?
    For example, let's imagine someone want to see shoes, so I will ask female or male shoes? if the reply is male, then I will ask style, color, etc.
    Finally I would like to have all those data in variables.
    Would MUSE be able to do that?
    If not, could this feature be directed to the MUSE development team?
    Cheers
    A tip for the MUSE development team.
    If this feature is not yet implement, I see a very easy way to implement it.
    It would work as a flowchart, with simple shapes.
    You just draw a flowchart with the process or question and you connect that box, romboid, etc. to other process or question.
    That would define graphically the logic processes.
    Then, the only thing MUSE need to do is to follow the processes showing the questions in the screen, with the font, format, etc.

    Hi Aish,
    Done. Here you have it: https://forums.adobe.com/message/6814528#6814528
    Hope you like it.
    Please, ask me any questions you could have in mind if you don't understand the idea or need to clarify anything.
    Cheers

  • Job creation with variable variant parameters

    Hi,
    Is it possible from a FM to start a job using a program where one sends the selection screen parameters with?
    As the called FM calls the program with different parameteres each time.
    If it is possible can someone please assist by giving an exsample?
    Thanks in advance.
    Best regards

    Hi,
    Check this eg.
    This program will submit an another program in background mode as a job.
    REPORT  ZACE1031_ROUTING_CONV_TRG NO STANDARD PAGE HEADING
                                    LINE-COUNT 255(1)
                                    LINE-SIZE 255.
    TYPES: BEGIN OF x_mat,
           werks TYPE mast-werks,
           matnr TYPE mast-matnr,
           stlal TYPE mast-stlal,
           stlnr TYPE mast-stlnr,
           stlan TYPE mast-stlan,
           END OF x_mat.
    DATA:  v_params    TYPE pri_params,
           v_jobname   TYPE tbtcjob-jobname,
           v_jobcount  TYPE tbtcjob-jobcount VALUE 1,
           v_stringlen TYPE i VALUE 0,
           v_msg_string(50) TYPE c,
           v_prog(30)  TYPE c,
           c_cross(1)  TYPE c VALUE 'X',
           c_01(2)     TYPE c VALUE '01',
           c_trg(1)    TYPE c VALUE 'X'.                "CCT51576
    DATA : it_mat TYPE TABLE OF x_mat,
           wa_mat type x_mat.
    DATA : v_werks TYPE mast-werks,
           v_pre_werks TYPE mast-werks.
    RANGES: r_matnr FOR mara-matnr.
    TABLES : mkal,mast.
    SELECTION-SCREEN BEGIN OF BLOCK matnr
                              WITH FRAME TITLE text-001.
    SELECT-OPTIONS : so_matnr FOR mast-matnr.
    SELECTION-SCREEN END OF BLOCK matnr.
    SELECTION-SCREEN BEGIN OF BLOCK plant
                              WITH FRAME TITLE text-002.
    SELECT-OPTIONS : so_werks FOR mast-werks OBLIGATORY .
    SELECTION-SCREEN SKIP.
    PARAMETERS     : p_date TYPE datuv OBLIGATORY.                        "CCT51576
    SELECTION-SCREEN END OF BLOCK plant.
    INITIALIZATION.                                                        "CCT51576
    CONCATENATE sy-datum+0(4) c_01 c_01 INTO p_date.
    AT SELECTION-SCREEN.
    START-OF-SELECTION.
      SELECT bwerks bmatnr  bstlnr bstlal b~stlan
      INTO CORRESPONDING FIELDS OF TABLE it_mat
      FROM mara AS a
      INNER JOIN mast AS b
      ON bmatnr = amatnr
      WHERE a~matnr IN so_matnr
      AND b~werks IN so_werks
      AND  ( a~mtart = 'FD')
    AND b~stlan = 1.        "CCT53428
      AND b~stlan IN (1,2).    "CCT53428
      IF sy-subrc = 0.
       SORT it_mat by werks matnr.                                  "CCT53428
       DELETE ADJACENT DUPLICATES FROM it_mat COMPARING werks matnr."CCT53428
      SORT it_mat BY matnr werks stlan stlal  ASCENDING.                  "CCT53428
      DELETE ADJACENT DUPLICATES FROM it_mat COMPARING matnr werks stlan. "CCT53428
      SORT it_mat BY matnr werks stlan DESCENDING.                        "CCT53428
      DELETE ADJACENT DUPLICATES FROM it_mat COMPARING matnr werks.       "CCT53428
        SORT it_mat BY werks.
        LOOP AT it_mat into wa_mat.
          CLEAR : r_matnr.
          r_matnr-sign = 'I'.
          r_matnr-option = 'EQ'.
          r_matnr-low = wa_mat-matnr.
          APPEND r_matnr.
          AT END OF werks.
            CLEAR v_werks.
            v_werks = wa_mat-werks.
            CLEAR v_jobname.
            CONCATENATE 'WWACSD12' '_' v_werks INTO v_jobname.
            PERFORM f_open_job USING v_jobname.
            PERFORM f_submit_job.
            PERFORM f_job_close.
            REFRESH r_matnr.
          ENDAT.
        ENDLOOP.
      ELSE.
        WRITE / text-017.
      ENDIF.
    *&      Form  f_open_job
    Form to open the job with the particular job name
    FORM f_open_job USING v_jobname TYPE any.
      CALL FUNCTION 'JOB_OPEN'
        EXPORTING
          jobname  = v_jobname
        IMPORTING
          jobcount = v_jobcount
        EXCEPTIONS
          OTHERS   = 8.
      IF sy-subrc NE 0.
        WRITE: /3 v_werks,
                11 text-008, v_jobname.
      ENDIF.
    ENDFORM.                                                    " f_open_job
    *&      Form  f_submit_job
    Form to submit the program (ZACC0014_COST_COLLECTORS_BDC) as job
    FORM f_submit_job.
      v_prog = text-016.
      SUBMIT (v_prog) WITH so_matnr IN r_matnr
                      WITH p_werks EQ v_werks
                      WITH p_date   EQ p_date                 "CCT51576
                      WITH ck_trg   EQ c_trg
                      TO SAP-SPOOL
                      SPOOL PARAMETERS v_params
                      WITHOUT SPOOL DYNPRO
                      USER sy-uname VIA JOB v_jobname NUMBER v_jobcount
                      AND RETURN.
      IF sy-subrc > 4.
        WRITE: /3 v_werks,
                11 text-009, v_jobname.
      ENDIF.
    ENDFORM.                    " f_submit_job
    *&      Form  f_job_close
    Form to close the job
    FORM f_job_close.
      CALL FUNCTION 'JOB_CLOSE'
        EXPORTING
          jobcount             = v_jobcount
          jobname              = v_jobname
          strtimmed            = 'X'  "start immediately
        EXCEPTIONS
          cant_start_immediate = 1.
    Process various error conditions
      CASE sy-subrc.
        WHEN 0.
          MOVE v_jobname TO v_msg_string.
          CONDENSE v_msg_string.
          v_stringlen = STRLEN( v_msg_string ).
          WRITE ' created.' TO v_msg_string+v_stringlen.
          WRITE :/3 v_werks,
                  11 v_msg_string.
        WHEN OTHERS.
          MOVE v_jobname TO v_msg_string.
          CONDENSE v_msg_string.
          v_stringlen = STRLEN( v_msg_string ).
          WRITE 'create failed.' TO v_msg_string+v_stringlen.
          WRITE :/3 v_werks,
                  11 v_msg_string.
      ENDCASE.
    ENDFORM.                                   "f_job_close

  • Selection Options feature for variable input in BEx in 7.0 version

    Hi All,
    We are currently in EHP1 BI 701 software version. We have queries in both 3.x and 7.0 version. The variable screen that we get when we execute the report in 3.x and 7.0 is different.
    We have selection options in 3.x (We can copy and paste values (non sequential) from an excel sheet for example during variable input) but I'm not seeing the same in 7.0 queries.
    Please suggest if it's a configuration/software issue or i'm missing something here.
    Regards,
    Vivek

    Hi,
    I would like to inform you that you will not get the same button as in 3.x . But when you open the F4 screen and then you have
    to click on the More Button.
    Two ways you can copies:
    To past from clipboard follow these steps:
    1. Click on the u201CMore >>u201D button.
    2. Click on the right box to set the focus.
    3. Ctrl + V.
    To import from a txt file follow these steps:
    1. Click on the u201CMore >>u201D button.
    2. Right click on the right box and choose u201CUpload selectionsu201D option.
    3. Select the txt you want to import.
    All the values will be copied on the Right Pane.
    Thanks,
    Venkat

Maybe you are looking for

  • Disable Customer-Material Number field during VL02n before post goods issue

    Hello SAP gurus, I would like to ask the possibility of disabling the field "Customer Material Number' during outbound delivery creation. As we would know, this field (LIPS-KDMAT) will only be disabled after post goods issue. Will it be possible to d

  • Adobe Reader 9.1 fails to print to Sharp AR-BC320

    Dear Adobe Support: The current version of Adobe Reader 9.1 for Macintosh fails to print to our Sharp AR-BC320 but your previous version 9.0 printed without any problem. I'd appreciate knowing how I can download a copy of the older 9.0 version so tha

  • How to report a problem in ios 7

    i have found a minot glitch in iphone ios 7... related to the lock screen, how to report it to apple and is it true that if i found a bug i get paid for it ?

  • Error Installing Yosemite

    The download is complete but it keeps giving me an error of "This disk has S.M.A.R.T. errors.  This disk has a hardware problem that can't be repaired.  Back up as much of the data as possible and replace the disk." I need to know what this means an

  • Will Mountain Lion Run on a Solid State Drive?

    Will Mountain Lion Run on a Solid State Drive?