How to link grade labor benefits

Dear,

I want to link grade for labour benefits 'tailor-made '. Thus, at first the user will come base per academic year salary 'where rank appears in the line.

The user will select the shade in the section of the page, then the user will enter the amounts for each benefits from this grade. as the following table:

6th year (Page)
Housing - Single (pay online)$$$$
Housing _ married$$$$$

Once the user select what benefits will be affected by the position, will assign the appropriate value.

I wrote in my original code, if declarations of instance:

IF ("Housing_Allowances_Options" == [[Housing_Allowances_Options._Single_Housing]])

IF ("Grade" == [[Grade.Grade_6]])

"Housing allowances Grade"="6"-> "housing-Single;

ENDIF

Now, I must do this for each category and for each allocation option? they have about 22 rank and around 15 compensation - what is sense?

Please let me know if you have any advice. Thank you in advance.

Hello

You can make dynamic using the numeric index and converting it to a string and then concatenate with 'rank '.

In the definition of your smart list, make sure that your digital index is 1 for 'Grade 1', 2 for "class 2" etc. "." Then Member 'Rank' will contain, 1, 2, 3 etc. When assigned a value of smart list.

This way you can simply do

IF ("Housing_Allowances_Options" == [[Housing_Allowances_Options._Single_Housing]])

"Housing allowance" = @MEMBER (@CONCATENATE (@NAME ("Grade"), @CalcMgrIntegerToString (@MEMBER ("Grade")))-> "housing-Single;

ENDIF

I just doubt that @CalcMgrIntegerToString (@MEMBER ("Grade")) will really assess the Member 'Rank' or go to deem it a member/string. I used the same logic for a client of mine before, but I had done a CDF to get the text value of the SmartList in the relational database from the schedule so I didn't have this potential problem.

Tags: Business Intelligence

Similar Questions

  • How to link to pages created by web expressions 4?

    Original title: Web links.

    How to link to pages created by web expressions 4?

    Hi mmuribi,

    You can follow these links and check if it helps.

    http://expression.Microsoft.com/en-us/ee662149.aspx

    http://www.Microsoft.com/expression/News-Press/newsletter/2007-10/Article04.aspx

    Hope the helps of information.

    Please post back and we do know.

  • Canoe open attachment how to "link control panel Association the value of Set?

    Canoe open attachment how to "link control panel Association the value of Set?

    Hello

    something, you should also know, is that you need the program installed on your computer where the attachment file extension refers too

    and read this to set the file association

    How do I... Change file extension associations in Windows Vista?

    http://www.TechRepublic.com/article/How-do-i-change-file-extension-associations-in-Windows-Vista/6172036

  • How to link action support with reward points forum

    Hello

    I'm new here but I am registered as a developer. I would like to know how to link my actions here as post an article in the knowledge base or similar for the area of jam rewards program. Because I had to register separately for this forum. The site developer connection has failed.

    Thank you

    If you used the same e-mail address as you did box @ Jame, that should be enough. Otherwise, you can try to contact the Support of Jam: [email protected]

  • How to link two tables with a part of a cell value

    I have 1 column, which contains info like this "1 to 4 numbers - two words" in tableA

    for example

    985 - train series

    14 baby Doll

    874 piano keyboard

    6 - DVD player

    etc.

    In table B I have columns with the numbers of toys 1 and 2 which has the price.

    I want to write a query that gives me the number, name and price.

    But I don't know how to link part of the value in a cell with another table.

    I know that the database is not normalized, but I did not design and I have no permission to change.

    Kind regards

    What have you tried?

    Please read: Re: 2. How can I ask a question on the forums?

    Sounds to me like you just want to join the tables on a partial string, so to make you just extract the numbers from the table A Column1.

    for example

    TO_NUMBER (substr (A.col1, 1, instr(' ')-1))

  • Help! How to link to information users at the user page?

    I created the connection index, register, and sign the php pages. MySQL. Now I'm trying to create the user profile page. But I can't link their information to the user page. So, how to link to information users at the user page? @

    maniragav26 wrote:

    I created the connection index, register, and sign the php pages. MySQL. Now I'm trying to create the user profile page. But I can't link their information to the user page. So, how to link to information users at the user page? @

    Can I assume you are using Dreamweaver server behaviors (I guess if you ask this question, it is likely that you would be).

    Go to the mode code in your "login" page Find the section of code that creates the DW:

    $LoginRS__query = sprintf ("SELECT Uname, Pword OF USERS WHERE Uname = %s AND Pword = %s",

    GetSQLValueString ($loginUsername, "text"), GetSQLValueString ($password, "text"));

    $LoginRS = mysql_query ($LoginRS__query, $connUsers) or die (mysql_error ());

    $loginFoundUser = mysql_num_rows ($LoginRS);

    If {($loginFoundUser)

    $loginStrGroup = "";

    Declare two session variables and assign them

    $_SESSION ['MM_Username"] = $loginUsername;

    $_SESSION ["MM_UserGroup"] = $loginStrGroup;

    INSERT THE CODE in RED below: 'id' is the name of the id column in your database table - if it were 'user_id' that's what you have inserted.

    $LoginRS__query = sprintf ("SELECT users id Pword, Uname, Uname WHERE = %s AND Pword = %s",

    GetSQLValueString ($loginUsername, "text"), GetSQLValueString ($password, "text"));

    $LoginRS = mysql_query ($LoginRS__query, $connUsers) or die (mysql_error ());

    $loginFoundUser = mysql_num_rows ($LoginRS);

    $row_rsUserDetails = mysql_fetch_assoc ($LoginRS);

    If {($loginFoundUser)

    $loginStrGroup = "";

    Declare two session variables and assign them

    $_SESSION ['MM_Username"] = $loginUsername;

    $_SESSION ["MM_UserGroup"] = $loginStrGroup;

    Now to find the under section of code in the 'login' page: (this implies that you have defined a 'success' page to return IF the connection information is correct):

    If (isset($_SESSION['PrevUrl']) & false) {}

    $MM_redirectLoginSuccess = $_SESSION ["PrevUrl"];

    }

    Header ("Location:".) $MM_redirectLoginSuccess);

    }

    else {}

    Header ("Location:".) $MM_redirectLoginFailed);

    }

    INSERT THE CODE in RED below: 'id' in $row_rsUserDetails ['id']; is the name you gave the id column in your database user table, so if it was "user_id" it would read as - $row_rsUserDetails ['user_id'];

    If (isset($_SESSION['PrevUrl']) & false) {}

    $MM_redirectLoginSuccess = $_SESSION ["PrevUrl"];

    }

    $_SESSION ['id'] = $row_rsUserDetails ['id'];

    Header ("Location:".) $MM_redirectLoginSuccess);

    }

    else {}

    Header ("Location:".) $MM_redirectLoginFailed);

    }

    NOW, you create your user details page.

    Create a Recordset, select the table of database you want to gather information about the user. Select the filter to 'none '.

    Go to the view code and at the top of the page, insert:

    <>

    $userId = $_SESSION ['id'];

    ?>

    NEXT FIND THE CODE THAT SELECTS DATA FROM THE DATABASE: (your will be slightly different as you use different details of connection and recordset)

    @mysql_select_db ($database_connUsers, $connUsers);

    $query_rsUserDetails = "SELECT * FROM USERS";

    $rsUserDetails = mysql_query ($query_rsUserDetails, $connUsers) or die (mysql_error ());

    $row_rsUserDetails = mysql_fetch_assoc ($rsUserDetails);

    $totalRows_rsUserDetails = mysql_num_rows ($rsUserDetails);

    Change the second line above to: (add red code below for your SELECT string) (remember WHERE 'id' - 'id' is the name of the column in your database table.)

    $query_rsUserDetails = "SELECT * FROM users WHERE id = '". " $userId. » ' ";

    It's her!

    You can now start "liaison" details on the user Details page.

  • How to link to separate pages 3 together into one 3-page pdf document?

    How to link to separate pages 3 together into one 3-page pdf document?

    No way with just the free reader. can be done with Adobe Acrobat or the service Pack of PDF.

  • How to link to a specific spry in Adobe Dreamweaver CM³ tabs Panel?

    Hi all

    I have a homepage using panels to Spry tab with 6 panels. I want you assign a URL that is unique to each panel so that I can link directly to each tab to other pages in the Web site.

    I found this question asked and answered for previous versions of Dreamweaver. Dreamweaver CC now (starting August 2012) use widgets to jQuery UI for panels with tabs, so I think it's why I'm not having much success with solutions that are already out there.

    Please note that I am relatively new to the web languages and Web site design.

    I also created a version that shows how a link to a specific panel or a tab in a tab or jQuery UI accordion: http://foundationphp.com/tutorials/jqui_specific.php.

  • How to link a Word to a particular place on the same page?

    Can someone tell me how to link a Word to a particular point on this page? I have a fairly long page that I want to make it more user-friendly, I want to give visitors the possibility to choose a subtitle to a list that will lead them directly to this point on the page so that they do not have to scroll.

    Use the names of ID:

    ID = "first">

    Insert content here...

    ID 'second' =>

    Insert content here...

    ID = "third">

    Insert content here...

    LINKS ON THE SAME PAGE:

    LINKS ON OTHER PAGES:

    Nancy O.

  • How to link in my navigation bar to open a completely separate page of my Web site?

    How to link in my navigation bar to open a completely separate page of my Web site? I want the site to be open and the other page open simultaneously

    Hello

    In order to have the link in your pop-up menu in a separate tab, you need to change the Menu Type to manual and enter the navigation links. Select the item menu, and then in the hyperlink field in the Control Strip, check the box that says open the link in a new window or tab. Next to the hyperlink, specify what page linked by using the drop-down text box.

    Thank you

    Dana

  • How to link two networks

    I have a LAN House along with millions of others and I want to connect to my Android phone via WiFi hotspot.  So, I want to access an application on the phone via the local network from any PC in the local network.  I thought a network bridge Windows would work, but no.  There are dozens of sites that tell you how to create a bridge but none that actually tell you how to do something useful.

    Details:

    I use a laptop to Windows 7 which has an Ethernet LAN adapter and a network card Wireless used for wireless connections.  The LAN has a wireless router that provides the connection to my ISP.  The laptop and LAN connections pass through a switch that top-links to the router.  The router uses DHCP to get an IP address from the ISP.  The internal network is assigned 10.0.0.x addresses which I think is a fairly common practice for Cisco routers.  Mine is a Netgear6300.

    The router provides the laptop with an address of 10.0.0.12 and a gateway 10.0.0.1 as expected.  Android provides 192.168.43.1 as the gateway address and 192.168.43.17 for the wireless card.

    With two active connections, I can connect successfully to the LAN and WiFi.  I can connect the application phone laptop computer as well as INTERNET access, discs shared on other machines and all other features of LAN.  I was not able to find a way to access the app android from another machine however.

    The first puzzle, is that when I connect to the phone app, I use 192.168.43.1.  (HTTP://192.168.43.1:8080).  Based on the addresses indicated by ipconfig, I wish it was 192.168.43.17, but it's address, said app I use and it works.

    ???

    What I tried:

    1. first I tried just log in from another machine wired (10.0.0.13) even if I didn't know that it works, because there is no way he could know where 192.168.43.1.  Of course, it did not work ("this page cannot be displayed").  Then I added a static route to the router: Ip: 192.168.43.1; Gateway: 10.0.0.12; Subnet mask: 255.255.255.255. Metric: 2. that did not work either ("this page cannot be displayed").

    2. then, I removed the static route and bridged connections Wi-wired and wireless.  Now it does not work to each machine ("this page cannot be displayed" both 10.0.0.12 and 10.0.0.13).  And with the added bonus to change the IP address of the machine to 10.0.0.20. Wow!  I then added static route: Ip: 192.168.43.1; Gateway: 10.0.0.20; Subnet mask: 255.255.255.255. Metric: 2 failed on another machine ("this page cannot be displayed").  While putzing autour, I learned that connection you do right click on is one that's the attributes of: when I created a bridge with a right click on the wireless bridge, I got this:
    IPv4 address...: 192.168.43.19
    ... Subnet mask: 255.255.255.0.
    ... Default gateway. : 192.168.43.1.

    So now my machine is off the LAN and I don't see any other machines and my external IP address changed because I'm going out WiFi Phone.  It keeps getting better and better.

    3. I tried sharing LAN connection.  This does not work and more he took my LAN access.

    4. I tried to share the wireless connection.  It does not eithes. Also removed my LAN access.

    This kind of thing network always gives me a headache.

    I've spent hours on it, and so far I do not see the benefits to fill or sharing.  It seems that they extract more capabilities they provide.  Is there another way I can accomplish what I want?  Any help would be appreciated.

    Ken

    You're overthinking this.  You don't need to fill or to share.

    Please specify what you mean by that:

    The laptop and LAN connections pass through a switch that top-links to the router.

    Is this another piece of hardware or are you referring to the 4 Ethernet connectors at the back of the Netgear 6300?  If the first case, it must be plugged into one of the 4 Sockets Ethernet on the Netgear 6300.

    You forgot in your description the device that connects effectively to your outside line (DSL or cable, I presume).  As the 'modems' DSL or cable provided by ISPS often include their own routers, home network configurations can often be complicated by the bad connection devices.  Is your modem connected on the making of 'Internet' on the Netgear 6300 or to one of the Ethernet?

    You have your phone configured as "wifi hotspot".  So you have two routers available to connect wireless.   One with a gateway address 10.0.0.1 (the Netgear 6300) and the other with a 192.168.43.1 gateway address (telephone).  I guess what you mean by the following

    With two active connections, I can connect successfully to the LAN and WiFi.

    is that you have the laptop connected to your router via an Ethernet cable AND have connected it through wifi on your phone.

    The reason for which you can "access the app from another machine" - which is probably related to your Netgear router, either by using an Ethernet cable - is because the phone is not connected to your router.

    Disable the 'hot spots' function on your phone and connect the phone using wifi, the Netgear router.  Your phone should now be assigned a shape 10.0.0.x IP address by the DHCP server on the Netgear router, and you should be able to access it from any other computer connected to the router - regardless of whether if the computer is connected to the router by Ethernet or wifi.

  • How can link shared to me by a friend, I tell if I'm sure?

    An old friend of mine, that I have not talked to long sent me a link, it has been shortened with google... like for example goo.gl/r9494randomletters94fjrjg/skypeID = MyName, then I clicked it and it was an advertisement. This person is very good with computers for them to get hacked is therefore quite surprising. I now wonder if in some way I had downloaded anything or how to protect myself?

    I work from home to a lot of my contacts are working so I would hate for this to spread to so many people.

    So far I have not seen all messages out, I erased my browser history and everything using the CCleaner and I have avast did a scan. Is there anything else that you might suggest?

    Jesper592 wrote:

    I had the opposite problem. My account send these messages to almost all my contacts list. At least I can tell you that I was not aware of the messages sent, so there must be something wrong with the computer of shippers. I'll change the passwords I use regularly and scan my computer, don't know what else to do at the moment, pending responses from the forums.

    Hi, Jesper592,

    Please see this continuous topic (thread) for more information:

    http://community.Skype.com/T5/security-privacy-trust-and/spoofed-message-from-contact/TD-p/4026578

    Kind regards

    Elaine

    __________________________________________________________________________________________________
    Your question has been answered? Please click on the link to accept as a Solutionfor everyone can quickly find what works! As a post or want to say, 'Thank You ' -? Click on the button of congratulations!
    Reliable information: Brian Krebs: 3 basic rules for online safety

  • My child matters - how to link to me as a 'account of children "?

    Hello

    I just created a new Windows Live account for my daughter, 11. I gave her correct date of birth. However, without are asking questions nor was I required to connect it to my own Windows Live account. Now, his story seems fully active, without limitations (despite the stated age!).
    Country of residence said: United Kingdom.
    I would like to be able to control its contacts and permissions to link his account as 'children' account to mine.
    However, I do not know how to do it.
    Under permissions-> Kids accounts ' (https://account.live.com/MyKids.aspx), no option is there to link my daughter's account to mine.
    How should I proceed?
    Thank you!!!
    k.

    Hi Kashmiri,

    Access to this feature has been removed for users who have not already configured it. If you had introduced on the market before, you will still see the feature on the site of family safety on the left side of the Web page for contact management. For more information about this, please read the article in the link below:

    Where is the function of the safety Contact family management?

    Kind regards
    Gerard G.

  • How to link Highway segments 2010

    Hello

    How can I create a segment of Highway 2010 link to get a complete picture, map and description of my trip?

    Thanks for a response

    Lutz

    ......

  • How to link email in windows 8?

    I'd like to link gmail and live.com to my Hotmail account in windows 8. novice with a computer. any help will be appreciated.  has been very easy on my Nokia 900 but unable to figure out how in windows 8. Thank you

    Hi Christophe,

    Thank you for your message and give us the opportunity to help you. I see that you want to add accounts to the Mail App.
     
    You can follow these steps to add accounts to the mail app on the computer.
    (a) open the Mail app, then press "Windows + C" to highlight the bar of charms.
    (b) click on 'Settings' then 'accounts '.
    (c) You can then click on 'Add an account' to add multiple accounts of your choice.
     
     
    Please feel free to use our forum for the future for other questions you may have.

Maybe you are looking for