Pop Drip
news /

How can I get my SSS CRN number?

Login to SSS Account or Mobile App SSS online account to know your CRN. You can also use the SSS mobile app (download from Google Play or the App Store). After logging in to My. SSS, you will see your common reference number below your name and SS number.

How can I get my SSS history?

How to Check Your SSS Employment History Online

  1. Important: The SSS website recommends that you use the Internet Explorer browser to log in to the SSS website.
  2. Step 1: Visit the SSS website at and enter your User ID and password.
  3. Step 2: Hover over E-SERVICES, then click Inquiry.

How can I print my SSS employment history online?

After you successfully logged in to your account, click on “Member Info” tab, then select “Employment History” in the drop-down menu. Step 5. You will arrive on the “Employment History” page. Your employer name, SSS ID number, and your reporting date and employment date then will appear on the screen.

How can I get SSS static information?

How to Get your your SSS Static Information from the SSS Website?

  1. Type in your browser.
  2. Login to your SSS Online Account. If you do not have an Online SSS Account, register first.
  3. Click the E-Services > Inquiry.
  4. Click the Tools icon from your browser then click Print or Print Preview.

How can I get my CRN?

How to get a CRN

  1. Sign in to myGov.
  2. Select Continue in the Government support for Coronavirus banner.
  3. Select I need a CRN.
  4. Follow the prompts to enter your identity details to prove who you are.
  5. Enter details from your Medicare card.
  6. Enter some personal details.

What is SSS history?

The SSS History In 1948, President Manuel Roxas called for the immediate creation of the Social Security Commission with the idea of providing a social security scheme for Filipino workers in the private sector.

How to get static information from SSS online?

How to get Static Information from SSS? You need to register at the SSS Official website at or if you are registered already, just login at Once you are already viewing your own SSS account page, just choose from the menus to show your ” Employee Static Information .”

How can I check for static IP address?

In the Start menu, search for and select the “Network and Sharing Center” option. 2. Click “Change Adapter Settings” on the left navigation pane. 3. Right click on your wireless connection adapter (it will likely be the only one with the green internet icon) and select “Properties” from the drop-down menu. 4. This will open a new window.

What kind of static information does Social Security use?

What is SSS Static Information. SSS Static Information relies on personal data and employment of SSS members. Such information is composed of the SSS number, the full name of the member, the date of birth and the date of adherence to social security.

How to get a static property with reflection?

NET reflector can see the static properties just fine, so clearly I am missing something here. Or just look at this… Type type = typeof (MyClass); // MyClass is static class with static properties foreach (var p in type.GetProperties ()) { var v = p.GetValue (null, null); // static classes cannot be instanced, so use null…