@Override
  public void onActivityCreated(Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);

    getLoaderManager().initLoader(LOADER_SALESCATEGORY, null, this);

    Bundle args = new Bundle();
    args.putInt(LoaderProductSalesCategory.ARG_SALESCATEGORYID, salesCategoryId);
    getLoaderManager().initLoader(LOADER_PRODUCTBYCATEGORY, args, loaderProductCategoryCallback);
  }