Query to extract new enrollment amount during open enrollment

Hi,
Can someone share a query to extract the new enrollment amount employee chooses during a life event enrollment. I need to do some validations based on the new amount employee chooses during self service enrollment.
Thank you for your help.

This is pretty old but still for the people who will be visiting to this thread just like I did.
We had a same issue... I have checked Web Dynpro java application for benefits enrollment and it shows this message when it has ZERO plans to show in open enrollment.
Then I did debugging in ECC Function modules and found why it is not sending any benefit plans even though user has them in Info type 168 (insurance plans).
It could be any reason for plans not to populate, our reason was user have Vol Spouse Life insurance and Voluntary Child Life Insurance but they dont have Spouse and/or Child records in Info type 21.
So, this error will show up when there are ZERO plans / records to show in portal. Find your issue why by debugging.
-Pradeep

Similar Messages

  • Restricting certain plans from ESS during open enrollment

    Hi Experts,
    We have a requirement to restrict plans from ESS during open enrollment. Please let us know the best possible solution to acheive the same.
    We have found that Proxy class CL_BENEFITS_AREAPAGE which is assigned to the service can be copied and enhacned to filter the plans, is this the right approach?

    I had that exact same delima, but one of our consultants pointed us to the transaction: HRBEN00ADJRSN
    This is a mass load of adjustment reasons.  You just need to feed the program the total time allowed for adjustments and things like start of records date and end of records date.  Because of the dates and the potential for different plans to have different dates, we actually have two open enrollment adjustment reasons.  We have one for Flexible spending where I give the 1/1 begin date and a 12/31 end date since it is only effective for the year in question.  Then we have our main open enrollment for all other plans where the begin date is 1/1 of the new year and 12/31/9999 for the endda.  I then run the HRBEN00ADJRSN twice for the population:  once for the flex enrollment, and then again for the main open enrollment adjustment reason.
    DP

  • How to find open orders with amount and open deliveries?

    Hi All,
    I want to find out the open orders with open amount and open deliveries for a particular customer.
    We need this for credit check purpose.
    Kindly guide us for this.
    Regards,
    Satish.

    Hi,
    To find out open order:
    data: c_bef_pgi(1) TYPE c VALUE 'A',
    RANGES: rg_wbstk FOR vbuk-wbstk."range for wbstk
      rg_wbstk-sign = 'I'.
      rg_wbstk-option = 'EQ'.
      rg_wbstk-low = 'C'.
      APPEND rg_wbstk.
      rg_wbstk-low = 'A'.
      APPEND rg_wbstk.
    1.first put query on vbak table
    2.Put query on vbuk table as
          SELECT vbeln bestk lfstk gbstk FROM vbuk
                  INTO TABLE it_vbuk_open
                  FOR ALL ENTRIES IN it_vbak
                  WHERE vbeln = it_vbak-vbeln AND
                        bestk IN rg_wbstk AND
                        lfstk = c_bef_pgi.
    so this wil give u open orders.
    3. Then according to vbuk, get the details from vbap.
    To find open delivery
    1. First put query on vbak table
    2. Put query on vbfa as
      SELECT vbelv posnv vbeln posnn vbtyp_n vbtyp_v FROM vbfa
                 INTO TABLE it_vbfa
                 FOR ALL ENTRIES IN it_vbak
                 WHERE vbelv = it_vbak-vbeln AND
                       vbtyp_n = 'J' AND
                       vbtyp_v = 'C'.
    3.Then from VBfa,get the details from LIkp
    4.Then put entry on vbuk as
    *entries from vbuk
          SELECT vbeln wbstk fkstk gbstk FROM vbuk
                 INTO TABLE it_vbuk_del
                 FOR ALL ENTRIES IN it_likp
                 WHERE vbeln = it_likp-vbeln AND
                       wbstk IN rg_wbstk AND
                       fkstk = c_bef_pgi.
    Thanks & Regards,
    Anagha Deshmukh

  • Not able to run a program to extract news from news channel websites.

    Let me start with stating the fact that I am a super greenhorn, so please be ultra elaborate with the answers .
    This is my code, I copied it from Mr. Alvin Alexander (http://alvinalexander.com/java/edu/pj/pj010011?). I am trying to use it to extract news from news channel websites.
    I used the following URLs:
    1.http://in.reuters.com/
    2.http://timesofindia.indiatimes.com/
    3.http://www.hindustantimes.com/
    // JavaGetUrl.java: //
    // A Java program that demonstrates a procedure that can be //
    // used to download the contents of a specified URL. //
    // Code created by Developer's Daily //
    //  http://www.DevDaily.com  //
    import java.io.*;
    import java.net.*;
    public class JavaGetUrl {
      public static void main (String[] args) {
      // Step 1: Start creating a few objects we'll need.
      URL u;
      InputStream is = null;
      DataInputStream dis;
      String s;
      try {
      // Step 2: Create the URL. //
      // Note: Put your real URL here, or better yet, read it as a //
      // command-line arg, or read it from a file. //
      u = new URL("http://200.210.220.1:8080/index.html");
      // Step 3: Open an input stream from the url. //
      is = u.openStream(); // throws an IOException
      // Step 4: //
      // Convert the InputStream to a buffered DataInputStream. //
      // Buffering the stream makes the reading faster; the //
      // readLine() method of the DataInputStream makes the reading //
      // easier. //
      dis = new DataInputStream(new BufferedInputStream(is));
      // Step 5: //
      // Now just read each record of the input stream, and print //
      // it out. Note that it's assumed that this problem is run //
      // from a command-line, not from an application or applet. //
      while ((s = dis.readLine()) != null) {
      System.out.println(s);
      } catch (MalformedURLException mue) {
      System.out.println("Ouch - a MalformedURLException happened.");
      mue.printStackTrace();
      System.exit(1);
      } catch (IOException ioe) {
      System.out.println("Oops- an IOException happened.");
      ioe.printStackTrace();
      System.exit(1);
      } finally {
      // Step 6: Close the InputStream //
      try {
      is.close();
      } catch (IOException ioe) {
      // just going to ignore this one
      } // end of 'finally' clause
      } // end of main
    } // end of class definition
    This is the error i am getting, every time I run it on Eclipse:
    Oops- an IOException happened.
    java.net.ConnectException: Connection refused: connect
    at java.net.DualStackPlainSocketImpl.connect0(Native Method)
      at java.net.DualStackPlainSocketImpl.socketConnect(Unknown Source)
      at java.net.AbstractPlainSocketImpl.doConnect(Unknown Source)
      at java.net.AbstractPlainSocketImpl.connectToAddress(Unknown Source)
      at java.net.AbstractPlainSocketImpl.connect(Unknown Source)
      at java.net.PlainSocketImpl.connect(Unknown Source)
      at java.net.SocksSocketImpl.connect(Unknown Source)
      at java.net.Socket.connect(Unknown Source)
      at java.net.Socket.connect(Unknown Source)
      at sun.net.NetworkClient.doConnect(Unknown Source)
      at sun.net.www.http.HttpClient.openServer(Unknown Source)
      at sun.net.www.http.HttpClient.openServer(Unknown Source)
      at sun.net.www.http.HttpClient.<init>(Unknown Source)
      at sun.net.www.http.HttpClient.New(Unknown Source)
      at sun.net.www.http.HttpClient.New(Unknown Source)
      at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(Unknown Source)
      at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
      at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
      at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
      at java.net.URL.openStream(Unknown Source)
      at JavaGetUrl.main(JavaGetUrl.java:33)
    Also, when I try a local server URL, the output screen goes blank, which I guess is due to lack of Text on the local URL. So, the little research that I did, made me believe that the code not running on external server was due to firewall on the server side. Please help me run it. Also : I work on a proxy network.( if that has something to do with this).
    P.S : Advanced gratitude for any assistance.

    any decently secured server would reject such a blatant attempt to steal its content.

  • How to insert a query into a NEW workbook ?

    Hi Friends,
    Could some one tell me how to insert a query into a new workbook? i am trying to run query in NW2004S BEx Query Designer, which always open the query on web when executed. i want to run the query in NW2004S BEx Query Designer and want it to open the result in Excell.
    If i am not wrong then to do the same, i need to embed the query into workbook. Correct me if i am wrong. If i am right then plzz tell me the steps to insert the query into workbook.
    Ur help will be rewarded in terms of points.
    Thanks,

    Hello,
    If you open the BEx Query Designer from the desktop, you cannot execute the query directly to the BEx Analyzer for an Excel view. You can only execute it directly to the Web. This is true for the SAP BW 3.x version as well as the SAP NetWeaver 2004s version.
    If you open the BEx Query Designer from within BEx Analyzer, once you select (or create) your query, you will have a green check mark icon that will then allow you to deploy the query directly to the BEx Analyzer for the Excel view.
    However, this would only make sense if you are creating or modifying the query. If not, you would simply open BEx Analyzer and use the Open Query option in this tool to see your query in an Excel format, as has been previously suggested by the other respondents to this posting.
    Regards,
    Katie Beavers
    SAP NetWeaver Product Management

  • Retention Amount during vendor invocing

    Dear All,
    I have a doubt related to retention amount for vendors.
    Scenario is:
    Client is keeping certain amount as retention amount from the vendor bill. Now this amount is pre-decided in PO terms & confitions and the same is known to purchase department. But no such comminucation is made to accounts dept. Hence the person who is passing the payment entry is not aware of the amount to be retained. Client requirement is that, vendor invoice should be passed with the full invoice amount & during payment only the amount other than retention amount should be paid. But no manual intervention is required.
    e.g. Vendor invoice is INR1000
           Retention amount - INR 300( decided during PO)
           FB60 / MIRO passed with INR1000
           F-58 should automatically pick up INR 700 for payment    &  rest of the amount should remain in vendor cr with spl GL indicator.
    Can this be possible.
    Thanks in advance,
    Regards,
    Ajay Gupte

    Dear Ajay,
    You can use the Terms of payment to acheive this requirement.
    Go to Transaction code OBB8. Create a new terms of payment say Z001, which has the "Installment Payment" ticked.
    Now create two more terms of payment Z002 and Z003. Here mark the "Payment Block" (A or B) for the terms of payment Z003.
    Now go to OBB9, fill as below
    Z001----- 170-----Z002
    Z001--230-----Z003.
    Now at the PO stage, make sure that the terms of payment is Z001.
    At the stage of the invoice verification, the entry would be
    Expense A/c Dr 1000
    To Vendor A/c           700
    To Vendor A/c           300 ( This would be with a payment block)
    At the time of automatic payment, this Rs.300/- will not be selected unless we remove the payment block.
    Regards
    Venkatesh
    PS: Assign points if useful.

  • Report or a query to show New computer in sccm

    Hello,
    Is there a query or a report that will show me new computers added in SCCM for the last number of months or days.
    Thank you

    Hi,
    I think in the environment without duplicate records, you can use sms_uuid_change_date0 attribute of v_R_System view. But if some of you client have new hardware updated then it will cause the SMS UUID update, thus this computer will be recognized as the
    newly added computer based on sms_uuid_change_date0 attribute queries. Even though, I think it was a choice for you.
    Query like this, query out all the clients added during the last month:
    select v_R_System_Valid.ResourceID, v_R_System_Valid.Netbios_Name0
    from v_R_System_Valid
    inner join v_R_System on v_R_System.ResourceID = v_R_System_Valid.ResourceID
    where DATEDIFF(mm, v_R_System.SMS_UUID_Change_Date0, GETDATE()) <= 1
    Also for day based use  DATEDIFF(dd, v_R_System.SMS_UUID_Change_Date0, GETDATE()).
    Hope this will help.
    Thanks

  • RFBILA00 - Error during opening of file

    Hello everyone!
    Can someone provide me some help regarding a error message when executing RFBILA00: the message is very strange due to the fact that I have another system an I can write to my c:/temp directory the extract to consolidation. It goes like this: Error during opening of file c:\temp\EXTRACT_CS_CO.txt
    I've also check all the costumizing between the two systems and they are equal.
    Thanks in advanced,
    David Resende

    Deat Paulo,
    Thank you for your fast response!
    Could it be that the path indicated in the unix configuration isn't valid? I've check this over and over and I don't see any difference between the two systems I have. One works and the other don't!
    I've check the customizing via transaction FILE, and everything is equal. Should I contact the systems administration to verify the existence of the unix path, or can I do it myself?
    Best regards,
    David

  • List of New reports created during a partcular period

    Dear All,
    Is there some way in form of tables in BW which can provide information about teh new reports created during a particular period of time- date of creation, user who created etc.
    Regards,
    Saurabh Diwakar

    HI......
    Regarding reports u will get all the details in Metadata Repository........
    RSA1 >> Metadata Repository >> Select Queries>> From there u can find.......
    Here r some useful tables for reporting......
    Queries
    RSZELTDIR Directory of the reporting component elements
    RSZELTTXT Texts of reporting component elements
    RSZELTXREF Directory of query element references
    RSRREPDIR Directory of all reports (Query GENUNIID)
    RSZCOMPDIR Directory of reporting components
    Workbooks
    RSRWBINDEX List of binary large objects (Excel workbooks)
    RSRWBINDEXT Titles of binary objects (Excel workbooks)
    RSRWBSTORE Storage for binary large objects (Excel workbooks)
    RSRWBTEMPLATE Assignment of Excel workbooks as personal templates
    RSRWORKBOOK 'Where-used list' for reports in workbooks
    Web templates
    RSZWOBJ Storage of the Web Objects
    RSZWOBJTXT Texts for Templates/Items/Views
    RSZWOBJXREF Structure of the BW Objects in a Template
    RSZWTEMPLATE Header Table for BW HTML Templates
    Moreover .......u can also check the table DD02L.........this table will give u list of all tables.......
    Regards,
    Debjnai......

  • How to copy existing query report into new query report in SQ00

    Hi Experts,
    Hi Experts,
    I want to add fields "company code" "'region" to existing  query report AQZZ/SAPQUERY/FKF1============
    (list of vendor address) for this i done as following:
    1.In SQ01  go to "EDIT->other user group" and i selected user group as /SAPQUERY/FK
    2.I typed F1 in query field and click change button
    3.I clicked next screen button and entered into "change query f1: select fields screen".here i clicked "basic list" button and searched company code checkbox and saved it as result company code is appearing in the standard report"AQZZ/SAPQUERY/FKF1============"
    but unfortunately there is no region field(LFA1-REGIO) for this i think i should copy the existing  query report  into new query report(Ex:Z_LIST_OF_VEND) which should be 14 characters.please tell me briefly how to do this because this is first time i am using SQ00.
    one more issue is when i selected "edit-otheruser group" and choosing /SAPQUERY/FK  i  am getting only infoset "/SAPQUERY/FIKD" but i should need Info set: "/SAPQUERY/FIDD" please tell me how to add the previous one into user group.i think if i got /SAPQUERY/FIDD into usergroup  /SAPQUERY/FK i can add region also into Query report as i mentioned above by going SQ01 ...............................
    please help regarding this which should be very beneficiary to my carrier.
    Regards,
    naresh

    Hi Experts ,
    I solved issue by changing infoset in SQ02 by means of assigning field to field group and changed the query in SQ00.
    Regards,
    naresh.

  • In FF 34.0.5 I use to be able to click on a link within an e-mail and the link would open in a new tab; it now opens in the same tab; how can i change it back?

    I'm using FF 34.0.5 (I like it). I use to be able to right click on a link, within an e-mail, and the link would open in a new tab. Now when I click on the link it opens in the same tab replacing my e-mail.
    Example - a friend sends me an e-mail containing a link to a web site he thinks I'd like. I click on the link and go to the web site and then go back to the e-mail tab and reply to him. Now, when clicking that link, my e-mail disappears and is replaced by the new site.
    How can I fix this? When this happened once before I was told to change the 'value' for a specific 'preference name' through the about:config page.
    Can anyone help jog my memory?
    Thanks!

    Is this about clicking a link in an external program?
    You can check this pref on the about:config page for external links.
    * browser.link.open_newwindow.override.external (-1)
    If this pref has the default value -1 then browser.link.open_newwindow is used.
    * http://kb.mozillazine.org/browser.link.open_newwindow
    *1: current tab; 2:new window; 3:new tab;
    You can open the <b>about:config</b> page via the location/address bar.
    You can accept the warning and click "I'll be careful" to continue.
    *http://kb.mozillazine.org/about:config

  • On my mac when i click on pages, a new document doesn't open instantly  but a window with my files open and then  have to click on the left bottom new document in order to open one. How can i have directly a new document when i click on pages icon

    On my mac when i click on pages, a new document doesn't open instantly  but a window with my files open and then  have to click on the left bottom < new document> in order to open one. How can i have directly a new document when i click on pages icon

    How to open an existing Pages document?
    Click Pages icon in the Dock to launch Pages.
    When Pages is open, click File menu in the  Pages menu bar.
    Select “Open”.
    When the select document  dialog box opens up, highlight/select the document and click “Open”
    at the bottom right corner of the dialog box.
    s
    https://support.apple.com/kb/PH15304?locale=en_US

  • I can not figure out how to set-up my home page so that it starts with Goggle, and then evrytime I open a new tab, it too opens with Goggle. TY 4 any help.

    [email protected]

    Firefox has always opened a blank new tab, if it opened to anything else that would be caused by an add-on. Check your add-ons to see if any offer this feature, or if any were disabled when you updated to Firefox 4.
    The NewTabURL add-on can be used to open a page of your choice in new tabs - https://addons.mozilla.org/firefox/addon/newtaburl

  • Firefox won't open new tab, have to open new window for any link.

    New tab won't open both when attempting to do it by clicking on "cross" in the tabbar or from File >> new tab.
    Thanks

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How do I change opening a new window so it stays on the new window when I open it?

    When I click on the 'New Window' button, it opens a new window than immediately goes back to the original window. I want the new window to remain displayed until I choose to go back to the original window.

    Sounds that you've clicked the Rest button and have created a new profile.
    Note that "Reset" creates a new default profile with a time stamp appended to identify it and tries to recover settings like bookmarks and history and passwords and cookies and auto-fill data from the old profile, but you lose data like extensions and other customizations.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    Firefox 15+ versions will move the old profile folder to an "Old Firefox Data-##" folder on the Desktop that gets a number appended if you use reset more than once.
    If the new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    *https://support.mozilla.org/kb/Recovering+important+data+from+an+old+profile
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

Maybe you are looking for