Display Conditions for Configurator OptionFeature Options - R12.1

Here is a test scenario that I am using. This is for R12.1
1. I have a list of options under a Option feature
2. These options are to be displayed as drop down list in the configurator user interface as the min and max selections allowed is 1. i.e. options are mutually exclusive.
3. In configurator user interface, I have to display only the options that are available for user selection. i.e. Options that are either excluded by a rule of by an configurator extension, should not be displayed in the UI.
Now, here is the problem.
I am using the display condition for the drop down feature as below.
List Item Display Condition List Item Model Node.SelectionState IsNot Excluded
The above display condition removes the options that are excluded by a configurator rule (like logic rule or a CDL). But is does not remove the options from the list that are excluded by a configurator extension.
I tried with all different display condition approaches. But I was unsuccessful in not displaying both type of options that are exculded by configurator rule and configurator extension.
If anyone could help me achieve this, it would be of great help.
NOTE: The logical state of option excluded by configurator extension is either FALSE or UFALSE.
The logical state of option excluded by configurator rule is LFALSE.
Hope the above explaination is readable. Let me know if you have any questions.
Thanks,
user9356335

Hi Jason,
Thanks for your reply.
yes I have tried using LFALSE (as you have mentioned in your message - (IOption)opt.setState(IState.LFALSE); ).
But we cannot set the logical state of an option to LFALSE, LTRUE, UFALSE, UTRUE.
we can only set it to FALSE, TRUE or TOGGLE.
When I tried to set the state of the option to LFALSE, it throws an error saying - logical state of an option can only be set to FALSE, TRUE or TOGGLE.
- user9356335

Similar Messages

  • Clearing the displayed value for a SELECT-OPTION

    How do I clear the displayed value of a SELECT-OPTION? 
    I have 2 SELECT-OPTIONs on my screen (standard basic report program screen).  I use code like this to populate the drop-down boxes for each one. 
    =====
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_prgrp-low.
      PERFORM fill_prgrp_values.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_prctr-low.
      PERFORM fill_prctr_values.
    =====
    The value the user picks for the first SELECT-OPTION will affect what values I put in the drop-down list for the second SELECT-OPTION. 
    If a user enters a value for the second SELECT-OPTION, and then goes back and changes the value of the first SELECT-OPTION, then I want to do two things:
    1.  Create a new set of values for the drop-down list for the second SELECT-OPTION (no problem; working fine);
    2.  Clear the displayed value from the second SELECT-OPTION that the user entered previously.  That value became invalid when the user picked a new value for the first SELECT-OPTION. 
    How do I clear that second displayed value? 
    I have tried CLEAR and REFRESH for the second variable using the formats s_prctr, s_prctr[], and s_prctr-low.  They will erase the values of the internal table or part(s) of it, but the displayed value stays on the screen. 
    I need to clear out the displayed value so the user will either leave it blank or enter or select a new value. 
    I am using F4IF_INT_TABLE_VALUE_REQUEST to build the drop-down lists, and it works fine, but I do not see any function module to clear the displayed value off the screen. 
    Thanks for your help.

    Sorry, but calling DYNP_VALUES_UPDATE did not work.  This is how I coded it. 
    fld_reset_rcd-fieldname  = 'S_PRCTR'.
      fld_reset_rcd-stepl      = sy-stepl.
      CLEAR fld_reset_rcd-fieldvalue.      "  re-initialize s_prctr
      CLEAR fld_reset_rcd-fieldinp.        "  what goes in here?
      APPEND fld_reset_rcd TO fld_reset_tbl.
      CALL FUNCTION 'DYNP_VALUES_UPDATE'
        EXPORTING
          dyname = 'ZFI_GL_BALANCE_NGL'
          dynumb = '1000'
        TABLES
          dynpfields = fld_reset_tbl
    <Added code tags>
    I have discovered that CLEAR and REFRESH of s_prctr will clear it somewhat.  If I enter multiple values, ranges, etc., they will all be cleared, EXCEPT for the one single value that is displayed on the main screen.  It is not cleared and it remains if you push the button to display the pop-up to enter ranges, etc. 
    To devrath.sampat  --  Thanks for your example for building the drop-down list, but that is not the problem I am having.  I am already able to build it just fine. 
    To repeat my problem, if I: 
    1.  first enter / select a value for the first SELECT-OPTION s_prgrp
    2.  then enter / select a value for the second SELECT-OPTION s_prctr
    3.  And finally go back and select a new value of the first SELECT-OPTION s_prgrp from its drop-down list,
         when I do, the program needs to clear the value displayed on the main screen for the second SELECT-OPTION s_prctr (any additional values, ranges, etc., are cleared by CLEAR and REFRESH, if I go look; but not the value shown on the main screen).
    Edited by: Scott Crosby on Feb 14, 2012 4:20 PM
    Edited by: Suhas Saha on Feb 15, 2012 12:03 PM

  • API for search profile options-R12.

    Is there any API for searching profile options? (R12)
    Using ibe_customer as the default responsibility.How to filter profile option search using organization , responsibility and different access level?
    Edited by: Ep on Aug 29, 2012 11:57 PM
    Edited by: Ep on Aug 29, 2012 11:58 PM

    hi ,
    You can search the table that profiles options are saved,Using the application id in that table ,you have query it....

  • AJAX Report Refresh  a_report- Condition for display not being validated

    Hi ,
    I have a report which has the following condition for dispaly:
    Exists(SQL query returs atleast one row) - SELECT * from temp1The query for the report is : select * from temp1 Now I have a button on the page and on click of the button I call the below Javascript :
    function f_insert_Temp_table(pTrans){
          var l_Return = null;
          var get = new htmldb_Get(null,$x('pFlowId').value,
                  'APPLICATION_PROCESS=temp_table_insert',206);       // ODP to insert into temp1
          get.add('TRANS_ID_ITEM',pTrans);
          gReturn = get.get('');
         //alert(gReturn);
         //$x_Show('6342610690289435');
         $a_report('6342610690289435','1','15','15');
    }Everything executes fine and the report refreshes the rows but the condition used for display doesn't get checked when I call $a_report() ...
    I can see the ODP execute successfully and row gets inserted into temp1 which means report condition is satisfied .
    If I remove the condition for the report, I can see the report getting refreshed and showing new rows through the $a_Report() call.
    Is there something that needs to be added to the script or $a_report call to validate the condition too ?Is there a way I can validate the region condition too ?
    Appreciate any suggestions/pointers here. I really do not want to refresh the whole page.
    Thanks,
    Dippy
    Edited by: Dippy on Feb 5, 2010 11:05 AM

    Hi Flavio,
    Thanks for your support.I figured where I was going completely wrong.
    Its just that when the page loads for the first time the temp table is empty and hence the report is not being displayed which simply
    means that the report id Im passing into the a_report function is not rendered on the page. Hence no matter what the temp table contains the report id is absent from the page.
    I fixed it as follows :
    Remove the condition for the report.
    Added and item and computed(P_Compute) its value using select count(*) from temp.
    Added an onload JS function which does a $x_Show('Report_Region') if P_Compute > 0 or $x_Hide('Report_Region') if P_Compute <0 .
    Now in my JS function which has an AJAX call to an ODP does an $x_Show('Report_Region').
    Flavioc : the query for my report is simple
    select * from tempIt finally dawned upon me that I'm trying to catch hold of an ID that's not rendered.
    So one issue is solved now the other part would be figuring out how to make $a_report work with pagination etc .

  • How to configure Workflow Notification Mailer for oracle alert in R12

    Hi all....,
    How to configure Workflow Notfication mailer for oracle Alert in R12. Please provide the complete steps.. Its urgent.. Plz help me..
    Regards ,
    Madhan

    Duplicate thread (please post only once)
    plz help me...!!!! Workflow Notification Mailer
    plz help me...!!!! Workflow Notification Mailer

  • HOWTO configure parameter options in oracle apps R11i for reports ??

    Hello
    I've developed a character report with orientation = landscape ,width=180 and height=66 on my laptop.It takes FROM DATE & TO DATE input from user which are passed to the sql query.
    KINDLY GUIDE ME IN CONFIGURING PARAMETERS OPTIONS TO RUN THIS REPORT IN ORACLE APPLICATIONS 11i.
    More what would the Token Option be in my case.
    I'm pasting the sql query and the last line indicated in bold takes parameter.I'm working in the HR & PAYROLL SCHEMA.
    SELECT DISTINCT
    PAPF.PERSON_ID AS "PERSON_ID",
         PAPF.BUSINESS_GROUP_ID,
    PAPF.TITLE,
         PAPF.FIRST_NAME,
         PAPF.MIDDLE_NAMES,
         PAPF.LAST_NAME,
    PGD.SEGMENT4 AS "GRADE",
         PPG.SEGMENT1 AS "GROUP_NAME",
    PPG.SEGMENT2 AS "DEPARTMENT",
    PPEMP.PEM_ATTRIBUTE8 AS "PREVIOUS_SALARY",
    PAC.SEGMENT2 AS "SALARY_OFFERED",
    PQFS.TITLE AS "QUALIFICATIONS",
         (SELECT
         SUM(PPEMP.PEM_INFORMATION1)
              FROM
              PER_PREVIOUS_EMPLOYERS PPEMP
              WHERE
              PPEMP.PERSON_ID=PAPF.PERSON_ID
              AND PPEMP.BUSINESS_GROUP_ID=3788
              ) AS "RELEVANT_EXPERIENCE",
              (SELECT
              SUM(PPEMP.PERIOD_YEARS) ||' '||'Y'||' '|| SUM(PPEMP.PERIOD_MONTHS)||' '||'M'          
              FROM
              PER_PREVIOUS_EMPLOYERS PPEMP
              WHERE
              PPEMP.PERSON_ID=PAPF.PERSON_ID
              AND PPEMP.BUSINESS_GROUP_ID=3788
              ) AS "TOTAL_EXPERIENCE",
              (SELECT PJD.SEGMENT4
                   FROM                
                                  PER_JOBS PJ,
                                  PER_JOB_DEFINITIONS PJD
    WHERE                         PAPF.PERSON_ID=PAAF.PERSON_ID
    AND                              PAAF.JOB_ID=PJ.JOB_ID                          
    AND                          PJ.JOB_DEFINITION_ID = PJD.JOB_DEFINITION_ID
    AND                          PJ.BUSINESS_GROUP_ID = 3788) AS "FUNCTIONAL_TITLE"
    FROM
    PER_ALL_PEOPLE_F PAPF,
    PER_ALL_ASSIGNMENTS_F PAAF,
         PER_JOBS PJ,
         PER_JOB_DEFINITIONS PJD,
    PAY_PEOPLE_GROUPS PPG,
    PER_GRADES PG,
         PER_GRADE_DEFINITIONS PGD,
    PER_QUALIFICATIONS PQFS,
    PER_PREVIOUS_EMPLOYERS PPEMP,      
    HR_ALL_ORGANIZATION_UNITS HRAOU,
         PER_PERSON_ANALYSES PPALYS,
         PER_ANALYSIS_CRITERIA PAC,
         APPS.FND_ID_FLEX_STRUCTURES FIFS,
         HR_LOCATIONS_ALL HLA,
         PER_APPLICATIONS PA
    WHERE PAPF.PERSON_ID = PAAF.PERSON_ID
    AND PAAF.GRADE_ID = PG.GRADE_ID
    AND PG.GRADE_DEFINITION_ID = PGD.GRADE_DEFINITION_ID
    AND PAAF.PEOPLE_GROUP_ID = PPG.PEOPLE_GROUP_ID
    AND     PAAF.JOB_ID (+)=PJ.JOB_ID
    AND PJ.JOB_DEFINITION_ID (+)=PJD.JOB_DEFINITION_ID
    AND PQFS.PERSON_ID (+)= PAPF.PERSON_ID
    AND PPEMP.PERSON_ID (+)= PAPF.PERSON_ID
    AND HRAOU.ORGANIZATION_ID (+)= PAAF.ORGANIZATION_ID
    AND PAPF.BUSINESS_GROUP_ID=3788
    AND PAPF.EFFECTIVE_END_DATE=TO_DATE('31/12/4712','DD/MM/RRRR')
    AND PAAF.EFFECTIVE_END_DATE=TO_DATE('31/12/4712','DD/MM/RRRR')
    AND PAPF.CURRENT_APPLICANT_FLAG='Y'
    AND PAAF.ASSIGNMENT_TYPE='A'
    --AND    HRAOU.ORGANIZATION_ID = PAAF.ORGANIZATION_ID
    AND nvl(PPEMP.END_DATE,TO_DATE('31/12/4712','DD/MM/RRRR'))=nvl((SELECT MAX(END_DATE)
    FROM PER_PREVIOUS_EMPLOYERS P
              WHERE PPEMP.PERSON_ID=P.PERSON_ID),TO_DATE('31/12/4712','DD/MM/RRRR'))
    AND PAPF.PERSON_ID=PPALYS.PERSON_ID
    AND PPALYS.ANALYSIS_CRITERIA_ID=PAC.ANALYSIS_CRITERIA_ID
    AND FIFS.ID_FLEX_NUM=PAC.ID_FLEX_NUM
    AND FIFS.STRUCTURE_VIEW_NAME='HIRING APPROVAL'
    AND HLA.LOCATION_ID=PAAF.LOCATION_ID
    AND PA.PERSON_ID=PAAF.PERSON_ID
    AND PAPF.EFFECTIVE_START_DATE between :From_Date And :To_Date

    Hi Dinesh
    I have some bad news for you I'm afraid. Discoverer workbooks are not stored as SQL definitions, they are stored as BLOBs within the database. It is therefore not possibly to write any sort of query to interrogate the inner workings of a workbook. The only way to do this is to open each workbook in turn and analyze it.
    Sorry to be the bringer of bad news
    Best wishes
    Michael

  • MO Operating Unit Profile Option Needed for Mass Allocation in R12

    Mass Allocation does not work in R12 unless you set MO Operating Unit profile option at GL Responsibility level. Is that an official requirement from Oracle or is that a bug? A client should be able to implement and use GL without setting operating units as they are needed for subledgers.

    Hi
    I have found the below mentioned information on MO: operating Unit Profile option from the Oracle E-Business Suite Multiple Organizations & Oracle General Ledger Reference Guide which directly or indirectly requires the setting of the profile option at the appropriate level (responsibility, site etc)
    Profile Options not Owned by General Ledger:
    The following profile option affects the operation of General Ledger, but is not "owned" by General Ledger:
    • MO: Operating Unit - This profile option controls which operating unit a particular responsibility is assigned to.
    Note: General Ledger's Account Inquiry window ignores the setting of this profile option. This allows you to drill down to your subledgers independent from their multiple organization setup. As a result, when you drill down to subledger details, General Ledger will show you all of the transactions that comprise an account balance, regardless of which organization originated the transaction.
    To use multiple organizations, you must define an accounting setup with at least one legal entity, a primary ledger that will record the accounting for the legal entity, and an operating unit that is assigned to the primary ledger and a default legal context (legal entity).
    You must set either the MO: Operating Unit or MO: Security Profile profile option for each application responsibility to use Multiple Organizations context sensitive applications. When you connect to the Oracle Applications, you sign on by entering your user name and password. Then, you choose a responsibility that is available to your user. After you choose your responsibility, there is an initialization routine that reads the values for all profile options assigned to that responsibility. Oracle Applications allows you to see only the information for those operating units that are assigned to your responsibility.
    Hope this helps.
    Thanks and Regards
    Manish Jain

  • Configured new language not displayed in user profile Language options

    Hi all,
    I have a requirement to add new language in portal. In that I have configured the language u201Chindiu201D in portal content translation.Now i want to configure  language options in userprofile.
    These are the procedures I have followed
    1 .On the file server navigate to
    <Installation-drive>:usrsap<SID><Instance_ID>SDM
    ootoriginsap.com com.sap.security.core.adminSAP AG<version_number>com.sap.security.core.admin.630.ear
    From here extract the com.sap.security.core.useradmin.war.
    2.In com.sap.security.core.useradmin.war file and add u201C hi = Hindi u201C in Language_en.properties
    3.Create a copy of Language_en.properties, and save as Language_hi.properties at any location.
    Now we have to do some changes with the help of configtool.bat
    So start the tool by executing.
    <SAPJ2EEEngine_installation>j2eeconfigtoolconfigtool.bat>
    Now Switch to configure mode.
    In the Tree navigate to cluster_data>>persistant>>com.sap.security.core.ume.services.
    Now switch between view and edit mode and choose yes.
    4.By right clicking on com.security.core.ume.service create a Sub node. And choose
    File-entry and upload the language_hi.properties that you have created in previous step.
    5.Create and Close the Window. And just restart all cluster nodes
                            After the above configuration, the language u201Chindiu201D is added and I can able to see the language  in self registration Language options.but it is not displayed in userprofile language options.
                            how to configure this Please help  me.            
                        These are the threads I have referred
                          How to add Hindi language in Portal
                          Regards: Add a new language (Hindi} In portal
                          How to add new language in portal
    Regards
    Bala

    Dear Markus,
    1.)  import done in SMLT
    2.)  support package parts of the languages imported
    3.)  language substituted
    4.) client refill done
    I have done 1 & 2 and also client maintenance.
    I'm not sure what are 3 & 4. Can elaborate further ?
    Thanks.
    Regards,
    Kent

  • Profile Option: HZ: Display Accounts for All Operating Units

    I just noticed this profile option, but cannot find any documentation stating what it does. Does anyone know? Offhand, it sounds like the customer account is now org-striped, in addition to the sites, but I don't see any other evidence of this.
    Thanks.

    Have you looked at note 369821.1.?
    It says,
    If you want to review all of the Quotes for all organizations then you need to set the profile "HZ: Display Accounts for All Operating Units" to "Yes" at the site level. After that you will be able to see all the transactions in OCO for all organizations. Sandeep Gandhi

  • Smartform-Suppress Zero and Display Zero for same field in Diff Conditions?

    Hi,
    I have a scenario in smartform, where for a quantity field of length p15 and Dec3, needs to display ZERO for one scenario and display SPACE for another condition. To display ZERO i have made it as &quantity(c)&, so that i can display zero. It displays ZERO, but for another condition, when i want to display space, there also it displays 0.000 ! how to display SPACE there ?
    thanks,
    Padma

    Hi,
    I think then in that case we need to use (NZ) I am not sure. But however why don't you use the Condition Tab in the Text by Including the Condition Quantity > 0.000.
    Please let me know if anyone of this works for you.
    Regards,
    SRinivas

  • Configuring PPP options for only one VPN connection

    How do you configure PPP options for only one VPN connection that is using L2TP over IPSec? The built-in VPN client in 10.4.9 is failing authentication because it won't talk MSCHAP-V2 (this is the only authentication protocol I can use) with the server. I am able to establish a connection if I add the following to /etc/ppp/options:
    refuse-eap
    refuse-pap
    refuse-chap
    refuse-mschap
    require-mschap-v2
    However, these options will affect all PPP connections. The preference file that contains the network configurations (/Library/Preferences/SystemConfiguration/preferences.plist) also contains PPP options for each specific network service. After some searching around, I found that there are several keys that seem promising (MSCHAP2, etc.). But these keys take a string value and I have no clue what they should be. These keys are defined in SCSchemaDefinitions.h file.
    Any ideas?
      Mac OS X (10.4.9)  

    Hi Brian,
    I just tried to check all of ADDT´s "includes" files for any internal references (read: "require" or "require_once" statements) to the file "tNG_config.inc.php". So far I can only see this file referenced in the file "tNG.inc.php" (within the "$KT_tNG_uploadFileList1" array).
    So what could this mean ? Maybe you´ll have to make copies of the the original "tNG.inc.php" as well and save them as, say, "tNG.inc_ital.php" file plus make sure that these copies internally point to a different "tNG_config_ital.inc.php" file -- because it´s always the first mentioned file which gets referenced from e.g. an ADDT login page (see the "Load the tNG classes" - part)
    I want to use ADDT’s User Registration Wizard and I have looked at all the neat stuff in the Control Panel/Login Settings
    The Control Panel will always update the main "tNG_config.inc.php" file, so any further modifications will have to become manually applied to the custom files you´re creating.
    Cheers,
    Günter

  • Hide / display conditionally export links and export options

    Hi all,
    Is there a way to hide / display conditionally export links in a dashboard. Also, is there a way to limit the export options to display only Export to Excel, and not all the other options such as pdf, etc.
    Thank you
    Regards,
    Laurent

    Hi Laurent,
    Regarding limiting the choices of export, you can refer to below post:
    Re: Export to only PDF,Excel, PPT
    Thanks
    Hyder

  • Display Conditions available for end users

    I have just created a report with 9 conditions and n number of possible combination of the conditions. I was wondering if it's possible to create some sort of prompt when the user logins to that report so the end user is able to choose the conditions for the report (instead of going to Tools, Conditions ...).

    Not as such.
    However, it is possible to have a parameter that the user enters (ie: name, role, whatever) and each of the conditions can have a CASE statement for each possible entry.
    ie: something like:
    CASE WHEN :parm = 'TONY' THEN SYSDATE-60 WHEN :parm = 'ANNE' THEN ADD_MONTHS(SYSDATE,2) END
    Russ

  • How do you add additional resolution options in the display settings for the MacbookPro?

    I am using a Dell external monitor with my 2013 MacBook Pro Retina 13 inch.  The resolution is 1900x1200 which is not one of the display selections for an external monitor in the Macbook settings.  How do I update the display settings to support this monitor?

    Function Modules
    http://www.erpgenie.com/abap/functions.htm
    http://www.sapdevelopment.co.uk/fmodules/fmssap.htm
    http://www.erpgenie.com/abap/index.htm
    http://www.geocities.com/victorav15/sapr3/abapfun.html
    USER EXIT
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    http://www.sap-img.com/ab038.htm
    http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://expertanswercenter.techtarget.com/eac/knowledgebaseAnswer/0,295199,sid63_gci982756,00.html
    Rewards if useful.........
    Minal

  • Pricing condition for Taxes in R/3 not being calculated.

    We have SRM4.0 in classic mode with R/3 4.6C. In SRM we configured Tax calculation is in R/3. When creating the shopping cart, EBP calls R/3 via RFC for the Tax % and displays the tax information in the cart successfully. The cart is saved and the completed PO is created in R/3. However, our pricing condition for tax, at Pur.Org/Material group in R/3 does not get calculated - so in the item condition screen, no tax is calculated. If i go into the change PO and in Item conditions/Update, (G-Copy Pricing and Redetermine taxes) then it is OK (but this is not ideal). When i do an RFC trace, using RSRFCTRC, i can see my Pur Org, Material Group and Tax code all being passed to R/3. Also, when i do a manual SE37 test on funct.mod. BAPI_PO_CREATE, it does calculate tax correctly - i am stuck - any help appreciated. rgs Adam

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

Maybe you are looking for

  • CC desktop app quit responding.  It will not let me re-install and update it!

    I was getting help thru live chat, but apparently they have all gotten off work now.  A tech guy tried to help me get creative cloud desktop app back onto my system, but was not successful.

  • Help transferring everything from old 3gs to new 4s

    My girlfriend has just got a new 4s to replace her old 3gs.  Unfortunately, the (windows) desktop we used to sync the 3gs has recently pretty much died.  Is there any way to get all the data from the old phone to the new one easily?  I've got a macbo

  • Report Builder can't setup RDS

    When trying to setup RDS in the report builder for CF8 I get an http 1.1 404 Object not found error. Windows authentication is off and I can use RDS with Dreamweaver. Any thoughts?

  • How to send string data through socket!

    Is there any method to send string data over socket. and if client send string data to server, How to get that data in server? Comments please!

  • LoadVars problem in FMS

    I am running a very simple code, using loadVars inside FMS, to load an ASP script. ====================================== var lvData = new loadVars(); var lvR = new loadVars(); lvR.onLoad = function(BS) { if(BS) trace("do something"); lvData.file = "