Where to maintain the user defined variables in Variant maintenace?

In the variant maintenace screen, ther is provision for
Type T - Table TVARVC entries
Type D - Dynamic for date and time fields
Type B - user defined
My question :
Where do you maintain the user defined variables?
Pl advise.
Thanks,
Ven

You may need to look into this link ( Its sap doc link)
http://help.sap.com/saphelp_nw70/helpdata/en/c0/98039ee58611d194cc00a0c94260a5/content.htm

Similar Messages

  • Where has the user defined variable pod gone?

    Last week I used the User Defined Variable pod to define some
    user defined variables in a project.
    Today I click View > Pods > User Defined Variables and
    nothing appears! Furthermore, on the Insert menu, the User Defined
    Variable option is greyed-out.
    Has anyone experienced this before? What is the solution?
    Regards
    Ian Saunders

    I'm not the great and powerful Peter, but hopefully youl find this helpful.
    Right-click the menu and choose Customize... Then from the General tab, ensure the Menu Bar is selected and click the Reset... button.
    Dismiss the dialog and see if things are better.
    If it helps, I've spent time with Peter on a few occasions. Perhaps that helps my credibility?
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • How to get the tag of the User Defined Variables using the Get Tag method%3F

    For the cRIO modules under a cRIO Chasis, a tag value can be obtained using the Get Tag method with crio.Type to the TagName input of the method. When it comes to the User Defined Variables, what should be fed to the TagName input?

    For the cRIO modules under a cRIO Chasis, a tag value can be obtained using the Get Tag method with crio.Type to the TagName input of the method. When it comes to the User Defined Variables, what should be fed to the TagName input?

  • ERROR:  User defined variable

    Hello All,
    I am using Robohelp 10 to create both CHM and multi-screen HTML.  I have been using user defined variables successfully within my project for some time, and now when I compile the project I am getting an error that implies that these are not defined.
    This screencast shows the error and also shows where I've defined the variable set, what the values are, and how I've assigned the variable set within the Project.  I also tried deleting one of them and then re-creating the field, but it isn't working.
    http://screencast.com/t/k9YNWph6c3Nw
    I have been mucking about within my Master Page but not sure if that relates to this issue.  I've also recently removed the Conditional Build tags because I think they were unnecessary for the project to acheive what I needed.  It doesn't seem like the Conditional Build tags would correlate to the user defined variables, but perhaps I'm mistaken.
    Any ideas - what would cause a user defined variable to become un-defined?
    Thanks much,
    Glynnis

    Never mind.  Solution involved picking another Variable Set (within project setup) then then going back to the original choice.  Mysterious and yet effective!

  • Applying User Defined Variables across project

    Hello,
    I'm working with the User Defined Variables feature and can't
    seem to figure out how to apply a variable/value across all topics.
    I may have misunderstood the definition of what this is supposed to
    do, so it may be user error. It is my understanding that if you
    have information that use repeatedly, for instance if I refer to a
    product name in numerous topics and the product name changes, I can
    set up a user defined variable and set this to update all the
    occurrences. I can change it going in each topic and each sentence
    where the occurence is by right-clicking the word and selecting
    Insert User Defined Variable. Any ideas as to what I can do to make
    a global update. Also, I'm reading the help, but still seem to be
    missing something.
    Thanks,
    Michele

    Thank you, Peter! This article is very informative and much
    more clear (to me) than what I read in the RoboHelp help manual. I
    understand now that this feature is used when you are creating
    topics in a project and anticipating what may change--in which case
    you insert the variable as you need it, then if it changes in the
    future you can update it easily. I was looking at it as more of a
    global search and replace to update information that already
    exists. I think it will come in handy with our documentation
    projects.
    Thanks again. :-)
    Michele

  • Equivalence in Oracle of user-defined variables in mysql

    Hi,
    Due to the convertion of the backend database of an application from mysql to oracle 10g, I need also to convert my sql query for a BIRT report to be compatible to Oracle 10g.
    It is about the usage of user-defined variables in mysql. What is the equivalence in oracle of the user-defined variables in mysql for the following listed case?
    Thanks much in advance!
    LBäcker
    SQL for Mysql was something like this:
    select ID1,ID2, case when ( SORT is not null )
    then @SA := SORT else @SA := @SA + 1 end as S1 ,
    case when ( SORT2 is not null ) then @SB := SORT2 else @SB := @SB + 1 end as S2
    from
    ( select @SA := 100 , ID ID1, GLOBALSORTORDER SORT, ORG ORG1
    from DOCUMENT where ACTIVE = 'T' and BASELINE = 4 ) b1
    FULL OUTER JOIN
    ( select @SB := 200 , ID ID2, GLOBALSORTORDER SORT2, ORG ORG2
    from dOCUMENT where ACTIVE = 'T' and BASELINE = 5 ) b2
    on b1.ORG1 = b2.ORG2
    ORDER BY S2, S1
    The purpose I wrote this sql code is to resolve a sorting problem
    b1
    ID | Globalsortorder | org |
    23 | 100 | 10
    24| 101 | 11
    b2
    ID | Globalsortorder | org |
    38| 200 | 9
    39 | 201 | 10
    34| 202 | 12
    expected result
    ID1 | ID2 | S1 | S2
    null | 38 | 100 | 200
    23 | 39 | 100 | 201
    24 | null | 101 | 202
    null |34 | 102 | 202

    Hello
    It is entirely possible I've missed something but does this not do what you need it to?
    WITH baseline AS
    SELECT 1 Baseline, 23 ORG, '2.1' SEQ, 200 so, 300 Item_Id FROM dual UNION ALL
    SELECT 1 Baseline, 25 ORG , '2.1.1' SEQ, 201 so, 305 Item_Id FROM dual UNION ALL
    SELECT 1 Baseline, 26 ORG, '2.2' SEQ, 202 so, 403 Item_Id FROM dual UNION ALL
    SELECT 2 Baseline, 22 ORG, '12.3' SEQ, 300 so, 323 Item_Id FROM dual UNION ALL
    SELECT 2 Baseline, 23 ORG, '12.3.1' SEQ, 301 so,3423 Item_Id FROM dual UNION ALL
    SELECT 2 Baseline, 24 ORG , '12.3.1.1' SEQ, 302 so,2534 Item_Id FROM dual UNION ALL
    SELECT 2 Baseline, 25 ORG , '12.3.1.2' SEQ, 304 so,3242 Item_Id FROM dual
    SELECT
          bl.*,
          bl2.*
    FROM
        ( SELECT
          FROM
              baseline bl
          WHERE
              baseline = 1
        ) bl
        FULL OUTER JOIN
        ( SELECT
          FROM
              baseline bl
          WHERE
              baseline = 2
        ) bl2
        ON(bl.org = bl2.org)
    ORDER BY
          bl2.so,bl.so
      BASELINE        ORG SEQ              SO    ITEM_ID   BASELINE        ORG SEQ              SO    ITEM_ID
                                                                  2         22 12.3            300        323
             1         23 2.1             200        300          2         23 12.3.1          301       3423
                                                                  2         24 12.3.1.1        302       2534
             1         25 2.1.1           201        305          2         25 12.3.1.2        304       3242
             1         26 2.2             202        403
    5 rows selected.Also, when you post data or sql statements, it helps readibility if you type {noformat}{noformat} before and after your code or data to preserve the formatting as above.
    HTH
    David                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to create User Defined Variables in Procurement Contract 12.1.3

    Hi,
    We are using Procurement Contract 12.1.3. As per our business requirement while creating contract template we need to use many variables which are not available in 'System Defined' variable list. Please guide us with some samples (step by step) how to create the 'User defined' variables.
    Regards,
    Prabhu

    Hi Prabhu,
    Did you get the setps how to create user defined variables in Procurement contracts? if so please share me the setp by step flow.
    Prakash

  • Can I get multiple User-defined variables in one slide?

    I have used the user defined variables in the past to collect identifiying information on quiz results, as well as for quiz certificate.  I would like to re-use the variables in a couple of areas.  in my project, one slide will prompt the User Name (variable I created), second will prompt for User ID (variable I created).  I would like a third screen that reads "Confirm your previous entries", and I want it to show the two variables.  I am only seeing the first one.  Is there a way to get them both to display?
    I would also like to re-use both in the quiz certificate at the end.  If I edit the certificate widget in Flash, will both variable display?
    This quiz reports to me via email (we have no LMS).
    Any suggestions?
    Cyndi Nagel

    Hi again
    Did you shrink the screen shot before uploading? You're right. It's barely legible.
    If the variables are being inserted in more than one caption, have you double checked the timing? Perhaps something is pausing the slide before one of the captions has a chance to appear.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • User-defined variable in selection variant - doesn't work?

    Hello,
    Anyone had any experience of using user-defined variables (type B) in a selection variant? I can't get this to work in 4.7 or ECC 6.0. Seems like a bug - there's no way to specify the name of the variable. The theory behind their use is fine, but I wonder if anyone has successfully used them?
    Thanks,
    Chris.

    In an ECC 5 system, I can get to these showing if I'm in a report selection screen and I use the "Goto > User variables" (or Ctrl-F6) option... but note that it will only show the menu option if there are report parameters that have a PID on them and where the PID is defined in table TUVID (see note 144459).  That said, personally I've only used the "T" option and maintained system wide values in table TVARVC.
    Jonathan

  • No pop up displayed for user defined variables when executed from a program

    Dear All,
    We have created user entry variables for the characteristic(s) with replacement type as 'User Defined Values' in the planning area.
    When I am running the planning function from BPS0, I am getting the pop up for the variables perfectly.
    But, when I execute this planning function from a program by calling the function module 'API_SEMBPS_FUNCTION_EXECUTE' I am not getting the pop up for the user entry variables.
    Is there any way where in I can get the pop up for the variables when I run the program?
    Regards,
    Srini.

    Srinivas
    You might want to check if the variable has a default value. Try "removing" the defautl value and check if it works.
    Srikant

  • Shared & user-defined variable behavior when they are passed an error?

    If a [TRUE] error condition is preset at its input terminal:
    What is the expected behavior for a shared variable which is being read?             My guess: To return the default value for the datatype being read.
    What is the expected behavior for a user-defined variable which is being read?     My guess: To return the default value for the datatype being read.
    What is the expected behavior for a shared variable which is being written?         My guess: To not update the value of the variable.
    What is the expected behavior for a user-defined variable which is being written? My guess: To not update the value of the variable.
    Are my guesses at the behavior correct?  If not, what is the real behavior?  This is for LabVIEW version 11 and newer.
    Thanks!
    Solved!
    Go to Solution.

    Thank you Arham!   I'm sorry you had to go to the trouble of creating a test VI to get the answer. I thought that this might have been documented somewhere and I was just missing it. It still may be documented somewhere but sometimes creating a test VI is the quicker path to an answer than is a search for where the documentation is stored and the test VI is probably the more conclusive answer anyway.
    In any case, thanks to your answer, it is now documented in a manner that should not be too hard for others to find, should they have the same question.
    Thanks again.

  • Sharing User Defined Variables across projects

    Hi,
    I'm wondering if it's possible to share User Defined Variables across projects. What I have in mind is that I would like to have my User Defined Variables configured in a central location and then insert them into my projects as linked variables so that they update automatically when I change their values. For example, I define a variable named Product_Version that has its value set to 9. Then I insert this variable into all my projects as a linked variable. After 2 months the product version changes to 10, so I change the value of the variable to 10 in the location where it is stored and it is automatically updated in all the projects. Can this be done somehow? I'm new to RoboHelp and I can't find any answer. I've been searching for the solution for some time in the product help, on the Internet to no avail. I even contacted Adobe Support and they redirected me to this forum I used Help and Manual before and their way of dealing with user variables was pretty simple.

    Hi there
    Unfortunately RoboHelp doesn't offer up a way to allow this, At least, not directly.
    However, I do believe I found a way to make it happen, The variables are stored in a file named rhvariable.apj. So what you could do is to add this file as a Baggage File to each of your projects that will share the variables.
    Now you would create a Shared Location as well as a new Category in your Resource Manager. This will create a common location to store the apj file.
    Add the Baggage File to the location. Repeat the process for all projects that are sharing the variables.
    Now, when the variable gets changed in any of the participating projects, the shared location should be updated and you can accomplish the goal.
    However, note that even though you will have what you are wanting, it will still require opening each of the participating projects, synchronizing the APJ file and generating the output in order to update it all. No way I'm aware of to escape that.
    Cheers,,, Rick

  • User defined variables transfer data

    Hello
    I am using the etherCAT 9144 chassis and this hardware supports only target scoped FIFO. After a search, I realized that the only way to transfer data from FPGA to Host is by using User defined variables. But these variables do not support FIFO concept. So, which is the best practice to transfer data after measurements ( e.x 10Hz measurement of 15 values ) to host VI ?
    Thanks
    Solved!
    Go to Solution.

    As mentioned, the 9144 only supports scan engine.
    As for what you should do, that really depends on the whole application. For example, what is the master? Are there other systems involved here? Etc. This is a good read in general, although it might not help right this second: http://www.ni.com/white-paper/14151/en/
    From a high level you should decide what you need. If you need deterministic, low latency communication over longer distances from an RT controller, the 9144 is probably the right choice. If you need low-latency+streaming over short distances from an RT controller, you should look into the MXI RIO chassis. If you primarily need non-deterministic low speed (10 hz) data mixed with low-throughput streaming over long distances from a windows or RT host, then the ethernet rio expansion (9146,7,8,9) is probably the right choice. If you need high speed streaming with low latency control over long distances from a windows or RT host, you need a full cRIO controller. Based on what you've posted so far, its uncertain what is the right fit.
    Lets say you're stuck with the 9144 for now. Given that you can easily hit 1 kHz scan cycles, it should be perfectly achievable to "stream" data at 10 Hz. If you run scan engine at 1 kHz then you're oversampling by 100x. Where it gets tricky is that sync requirement. By default the I/O acquisition is synchronized to the scan clock (and you can see when the scan clock is set through an FPGA I/O node). However, you can take full control of a module in the FPGA and read the I/O at any time you please. That is, you can set it up so when DIO0 goes high you immediately sample all 15 AI values. You can then transfer those latched AI values to the host using user defined variables.

  • Variable Limit for User Defined Variables, Arrays

    Hi -
    Does anyone know the limit for the number of user-defined variables in a Captivate project?
    Also, does anyone know if Captivate 5.5 supports user-defined arrays that will hold more variables?
    I'm used to creating large questionnaires in  Authorware where I could have over 1,000+ variables stored in various arrays and I'm trying to create the same projects in Captivate.  (Or if anyone has a suggestion for a software that would be better suited, please let me know.)
    Thanks!

    Hi there
    You might want to review the information at the link below:
    Click here to view
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Using user defined variables in SAP BPC 7.0 NW

    Hi,
    I am using BPC 7.0 SP2 NW version. I want to do some calculatioins and/or comparision in the script logic by using user defined variables.
    For Ex: I want to assign the property TIMEID of TIME dimension to a variable and then use this variable in my IIF statement.
    I have tried a lot but not getting any solution.
    Can anyone guide me in how to use user defined variables in Script Logic.
    Your valuable reply is appreciated.
    Thanks & Regards
    Manoj Damle

    Hi,
    Thanks for the valuable reply.
    But i want to define variables in the Script Logic and not in the Data Manager.
    The scenario is like this:
    I want to check the value of the DUMMYACC1 member of GL_ACCOUNT dimension with a constant and depending on the condition i want to update a user defined variable. This variable will further be used in the *SELECTCASE statement for decision making.
    The Code is as follows:
    *XDIM_MEMBERSET COMP_CODE = COMP_CODE_1
    *XDIM_MEMBERSET BUS_AREA = BUS_AREA_1
    *XDIM_MEMBERSET VERSION = VERSION_1
    *XDIM_MEMBERSET CURRENCY = AUD
    *XDIM_MEMBERSET DATASRC = DATASOURCE_1
    *XDIM_MEMBERSET GL_ACCOUNT = SALESREVENUE,PRICE,QUANTITY,DUMMYACC1
    *XDIM_MEMBERSET TIME=2009.MAY,2009.JUN
    *XDIM_MEMBERSET CUSTOMERCATEGORY = CUSTOMER_CAT_1
    *XDIM_MEMBERSET PROFIT_CTR = PROFIT_CTR_1
    *XDIM_MEMBERSET SEGMENT = SEGMENT1
    *XDIM_MEMBERSET MEASURES = PERIODIC
    *FUNCTION PRO(%VAR1%,%VAR2%)
        [%VAR1%].CURRENTMEMBER.PROPERTIES("%VAR2%")
    *ENDFUNCTION
    *FOR %GL_ACC% = DUMMYACC1
        *FOR %CV_TIM% = 2009.MAY,2009.JUN
            #CUR_MTH = IIF(([GL_ACCOUNT].[%GL_ACC%],[TIME][%CV_TIM%]) = 1.,1,NULL)
        *NEXT
    *NEXT
    *SELECTCASE #CUR_MTH
    *CASE 1
        #CURRENTMTH = PRO(TIME,TIMEID)
    *ENDSELECT
    The errors which system gives is:
    1. Duplicate formula found
    2. Invalid MDX statement
    3. #CUR_MTH & #CURRENTMTH is not a valid member
    Please give your valuable suggestion.
    Thanks and Regards
    Manoj Damle

Maybe you are looking for