Serviceとは? わかりやすく解説

service

別表記:サービス

「service」の意味

「service」とは、他者に対して行われる支援援助、またはその過程提供される利益機能を指す言葉である。ビジネス文脈では、商品サービス顧客提供することを指すことが多い。また、「service」は、公共の利益のために行われる活動や、宗教的な儀式を指すこともある。

「service」の発音・読み方

「service」の発音は、IPA表記では /ˈsɜːrvɪs/ であり、IPAカタカナ読みでは「サーヴィス」となる。日本人発音するカタカナ英語では「サービス」と読むことが一般的である。

「service」の語源

「service」の語源は、ラテン語の「servitium」であり、これは「奉仕」や「隷属」を意味する言葉である。これが古フランス語経て中英語伝わり、「service」という形になった現代英語では、様々な文脈使用されるようになっている

「service」の類語

「service」の類語には、以下のような言葉がある。 1. assistance援助支援 2. aid援助助け 3. help助け援助 4. support支援後援 5. facility設備機能 これらの言葉は、それぞれ異なニュアンス持っているが、「service」と同様に他者への支援援助意味する

「service」に関連する用語・表現

「service」に関連する用語表現には、以下のようなものがある。 1. customer service顧客対応顧客サービス 2. public service:公共サービス公共事業 3. service industryサービス業 4. after-sales service:アフターサービス販売後のサポート 5. community service地域奉仕活動ボランティア活動

「service」の例文

1. Our company provides a wide range of services to our clients.(私たち会社は、顧客幅広いサービス提供している。) 2. The hotel offers excellent room service.(そのホテルは、優れたルームサービス提供している。) 3. She works in the financial services industry.(彼女は金融サービス業界で働いている。) 4. The government is committed to improving public services.(政府公共サービスの向上に取り組んでいる。) 5. The church holds a weekly service on Sundays.(その教会毎週日曜日礼拝行っている。) 6. The car is due for a service next month.(その車は来月、定期点検予定されている。) 7. The company has a reputation for outstanding customer service.(その会社は、卓越した顧客サービス評判がある。) 8. He is performing community service as part of his sentence.(彼は判決一環として地域奉仕活動行っている。) 9. The new software offers several useful services for businesses.(新しソフトウェアは、ビジネスに役立ついくつかのサービス提供している。) 10. The airline is known for its excellent in-flight service.(その航空会社は、優れた機内サービス知られている。)

サービス

英語:service

誰かのために何かを行うこと、他者助けになること。無形の財や価値あるいは労役などを提供すること。奉仕用役尽力。提供。

サービス(service)は英語に由来する語であり、動詞 serve名詞形語源を辿ると slave奴隷)と同源ラテン語行き着く。英語辞書における定義は、例えオックスフォード英語辞書では「 The action of helping or doing work for someone. 」(誰かの手助けをしたり誰かのために仕事をしたりするという行為)という記述筆頭挙げられている。

経済用語におけるサービスは無形の財であり、顧客利便性や満足を与え非物質的な価値である。サービスを提供する産業サービス業という。サービス業クラーク産業分類における第三次産業含まれるサービス業主な種類としては、ホテル業金融業広告業イベント興行業などが挙げられる

関連サイト
Definition of service in English ― OxfordDictionaries

サービス【service】

読み方:さーびす

[名](スル)

人のために力を尽くすこと。奉仕。「休日家族に—する」

商売で、客をもてなすこと。また、顧客のためになされる種々の奉仕。「—のよい店」「アフター—」

商売で、値引きしたり、おまけをつけたりすること。「買ってくだされば—しますよ」

運輸・通信商業など、物質的財貨生産する過程以外で機能する労働用役役務

サーブ1


サービス

【英】service

サービスとは、一般的には提供すること」「奉仕」といった意味の英語である。IT用語としては、主にプログラムが処理やルーチン実行して他のコンピュータ特定の機能提供することなどを指す語である。


Service クラス

XML Web サービス関連付けられる Port クラス関連するインスタンスセットにしてグループ化ます。このクラス継承できません。

名前空間: System.Web.Services.Description
アセンブリ: System.Web.Services (system.web.services.dll 内)
構文構文
Public NotInheritable Class
 Service
    Inherits NamedItem
public sealed class Service : NamedItem
public ref class Service sealed : public
 NamedItem
public final class Service extends NamedItem
public final class Service extends
 NamedItem
解説解説
使用例使用例
Imports System
Imports System.Web.Services.Description
Imports System.Xml
Imports Microsoft.VisualBasic

Class MyServiceClass
   Public Shared Sub Main()
      Try
         ' Read a WSDL document.
         Dim myServiceDescription As ServiceDescription
 = _
            ServiceDescription.Read("MathService_vb.wsdl")
         Dim myServiceCollection As ServiceCollection
 = _
            myServiceDescription.Services

         Dim noOfServices As Integer
 = myServiceCollection.Count
         Console.WriteLine(ControlChars.Newline & _
            "Total Number of Services :" & noOfServices.ToString())

         ' Gets a reference to the service.
         Dim myOldService As Service = myServiceCollection(0)
         Console.WriteLine("No. of Ports in the Service"
 & _
            myServiceCollection(0).Ports.Count.ToString())
         Console.WriteLine("These are the ports in the service:")
         Dim i As Integer
         For i = 0 To myOldService.Ports.Count
 - 1
            Console.WriteLine("Port name: " &
 myOldService.Ports(i).Name)
         Next i
         Console.WriteLine("Service name: " &
 myOldService.Name)

         Dim myService As New
 Service()
         myService.Name = "MathService"

         ' Add the Ports to the newly created Service.
         Dim j As Integer
         For j = 0 To myOldService.Ports.Count
 - 1
            Dim PortName As String
 = myServiceCollection(0).Ports(j).Name
            Dim BindingName As String
 = _
               myServiceCollection(0).Ports(j).Binding.Name
            myService.Ports.Add(CreatePort(PortName, BindingName, _
               myServiceDescription.TargetNamespace))
         Next j

         Console.WriteLine("Newly created ports -")
         Dim k As Integer
         For k = 0 To myService.Ports.Count
 - 1
            Console.WriteLine("Port name: " &
 myOldService.Ports(k).Name)
         Next k 

         ' Add the extensions to the newly created Service.
         Dim noOfExtensions As Integer
 = myOldService.Extensions.Count
         Console.WriteLine("No. of extensions: " &
 noOfExtensions.ToString())
         If noOfExtensions > 0 Then
            Dim l As Integer
            For l = 0 To myOldService.Ports.Count
 - 1
               myService.Extensions.Add(myServiceCollection(0).Extensions(l))
            Next l
         End If 

         ' Remove the service from the collection.
         myServiceCollection.Remove(myOldService)

         ' Add the newly created service.
         myServiceCollection.Add(myService)
         
         myServiceDescription.Write("MathService_New.wsdl")
      Catch e As Exception
         Console.WriteLine("Exception:" & e.Message)
      End Try
   End Sub 'Main

   Public Shared Function
 CreatePort(PortName As String, _
          BindingName As String, targetNamespace
 As String) As Port
      Dim myPort As New
 Port()
      myPort.Name = PortName
      myPort.Binding = New XmlQualifiedName(BindingName, targetNamespace)

      ' Create a SoapAddress extensibility element to add to the port.
      Dim mySoapAddressBinding As New
 SoapAddressBinding()
      mySoapAddressBinding.Location = _
         "http://localhost/ServiceClass/MathService.vb.asmx"
      myPort.Extensions.Add(mySoapAddressBinding)
      Return myPort
   End Function 'CreatePort
End Class 'MyServiceClass
using System;
using System.Web.Services.Description;
using System.Xml;

class MyServiceClass
{
   public static void Main()
   {
      try
      {
         // Read a WSDL document.
         ServiceDescription myServiceDescription = 
            ServiceDescription.Read("MathService_CS.wsdl");
         ServiceCollection myServiceCollection = 
            myServiceDescription.Services;

         int noOfServices = myServiceCollection.Count;
         Console.WriteLine("\nTotal number of services: " + noOfServices);
         
         // Gets a reference to the service.
         Service  myOldService = myServiceCollection[0];
         Console.WriteLine("No. of ports in the service:
 "+
            myServiceCollection[0].Ports.Count);
         Console.WriteLine("These are the ports in the service:");
         for(int i = 0 ; i < myOldService.Ports.Count;
 i++)
            Console.WriteLine("Port name: " + myOldService.Ports[i].Name);
         Console.WriteLine("Service name: " + myOldService.Name);

         Service myService = new Service();
         myService.Name = "MathService";
         
         // Add the Ports to the newly created Service.
         for(int i = 0; i < myOldService.Ports.Count;
 i++)
         {
            string PortName = myServiceCollection[0].Ports[i].Name;
            string BindingName = myServiceCollection[0].Ports[i].Binding.Name;
            myService.Ports.Add(CreatePort(PortName,BindingName,
               myServiceDescription.TargetNamespace));
         }

         Console.WriteLine("Newly created ports -");
         for(int i = 0; i < myService.Ports.Count;
 i++)
            Console.WriteLine("Port name: " + myOldService.Ports[i].Name);

         // Add the extensions to the newly created Service.
         int noOfExtensions = myOldService.Extensions.Count;
         Console.WriteLine("No. of extensions: " + noOfExtensions);
         if (noOfExtensions > 0)
         {
            for(int i = 0; i < myOldService.Ports.Count;
 i++)
               myService.Extensions.Add(myServiceCollection[0].Extensions[i]);
         }

         // Remove the service from the collection.
         myServiceCollection.Remove(myOldService);
         
         // Add the newly created service.
         myServiceCollection.Add(myService);
         
         myServiceDescription.Write("MathService_New.wsdl");
      }
      catch(Exception e)
      {
         Console.WriteLine("Exception: " + e.Message);
      }
   }

   public static Port CreatePort(string
 PortName,string BindingName,
      string targetNamespace)
   {
      Port myPort = new Port();
      myPort.Name = PortName;
      myPort.Binding = new XmlQualifiedName(BindingName,targetNamespace);

      // Create a SoapAddress extensibility element to add to the port.
      SoapAddressBinding mySoapAddressBinding = new SoapAddressBinding();
      mySoapAddressBinding.Location = 
         "http://localhost/ServiceClass/MathService_CS.asmx";
      myPort.Extensions.Add(mySoapAddressBinding);
      return myPort;
   }
}
#using <System.Xml.dll>
#using <System.Web.Services.dll>
#using <System.dll>

using namespace System;
using namespace System::Web::Services::Description;
using namespace System::Xml;

Port^ CreatePort( String^ PortName, String^ BindingName, String^ targetNamespace
 )
{
   Port^ myPort = gcnew Port;
   myPort->Name = PortName;
   myPort->Binding = gcnew XmlQualifiedName( BindingName,targetNamespace );
   
   // Create a SoapAddress extensibility element to add to the port.
   SoapAddressBinding^ mySoapAddressBinding = gcnew SoapAddressBinding;
   mySoapAddressBinding->Location = "http://localhost/ServiceClass/MathService_CS.asmx";
   myPort->Extensions->Add( mySoapAddressBinding );
   return myPort;
}

int main()
{
   try
   {
      // Read a WSDL document.
      ServiceDescription^ myServiceDescription = ServiceDescription::Read( "MathService_CS.wsdl"
 );
      ServiceCollection^ myServiceCollection = myServiceDescription->Services;
      int noOfServices = myServiceCollection->Count;
      Console::WriteLine( "\nTotal number of services: {0}", noOfServices
 );

      // Gets a reference to the service.
      Service^ myOldService = myServiceCollection[ 0 ];
      Console::WriteLine( "No. of ports in the service: {0}",
 myServiceCollection[ 0 ]->Ports->Count );
      Console::WriteLine( "These are the ports in the service:"
 );
      for ( int i = 0; i < myOldService->Ports->Count;
 i++ )
         Console::WriteLine( "Port name: {0}", myOldService->Ports[
 i ]->Name );
      Console::WriteLine( "Service name: {0}", myOldService->Name );
      Service^ myService = gcnew Service;
      myService->Name = "MathService";

      // Add the Ports to the newly created Service.
      for ( int i = 0; i < myOldService->Ports->Count;
 i++ )
      {
         String^ PortName = myServiceCollection[ 0 ]->Ports[ i ]->Name;
         String^ BindingName = myServiceCollection[ 0 ]->Ports[ i ]->Binding->Name;
         myService->Ports->Add( CreatePort( PortName, BindingName, myServiceDescription->TargetNamespace
 ) );
      }
      Console::WriteLine( "Newly created ports -" );
      for ( int i = 0; i < myService->Ports->Count;
 i++ )
         Console::WriteLine( "Port name: {0}", myOldService->Ports[
 i ]->Name );

      // Add the extensions to the newly created Service.
      int noOfExtensions = myOldService->Extensions->Count;
      Console::WriteLine( "No. of extensions: {0}", noOfExtensions );
      if ( noOfExtensions > 0 )
      {
         for ( int i = 0; i < myOldService->Ports->Count;
 i++ )
            myService->Extensions->Add( myServiceCollection[ 0 ]->Extensions[
 i ] );
      }

      // Remove the service from the collection.
      myServiceCollection->Remove( myOldService );

      // Add the newly created service.
      myServiceCollection->Add( myService );
      myServiceDescription->Write( "MathService_New.wsdl" );
   }
   catch ( Exception^ e ) 
   {
      Console::WriteLine( "Exception: {0}", e->Message );
   }
}
import System.*;
import System.Web.Services.Description.*;
import System.Xml.*;

class MyServiceClass
{
    public static void main(String[]
 args)
    {
        try {
            // Read a WSDL document.
            ServiceDescription myServiceDescription = ServiceDescription.
                Read("MathService_JSL.wsdl");
            ServiceCollection myServiceCollection = myServiceDescription.
                get_Services();
            int noOfServices = myServiceCollection.get_Count();
            Console.WriteLine("\nTotal number of services: " + noOfServices);
            // Gets a reference to the service.
            Service myOldService = myServiceCollection.get_Item(0);
            Console.WriteLine("No. of ports in the service:
 " 
                + myServiceCollection.get_Item(0).get_Ports().get_Count());
            Console.WriteLine("These are the ports in the
 service:");
            for (int i = 0; i < myOldService.get_Ports().get_Count();
 i++) {
                Console.WriteLine("Port name: " + myOldService.get_Ports().
                    get_Item(i).get_Name());
            }
            Console.WriteLine("Service name: " + myOldService.get_Name());

            Service myService = new Service();
            myService.set_Name("MathService");
            // Add the Ports to the newly created Service.
            for (int i = 0; i < myOldService.get_Ports().get_Count();
 i++) {
                String PortName = myServiceCollection.get_Item(0).get_Ports().
                    get_Item(i).get_Name();
                String BindingName = myServiceCollection.get_Item(0).get_Ports().
                    get_Item(i).get_Binding().get_Name();
                myService.get_Ports().Add(CreatePort(PortName, BindingName,
                    myServiceDescription.get_TargetNamespace()));
            }

            Console.WriteLine("Newly created ports -");
            for (int i = 0; i < myService.get_Ports().get_Count();
 i++) {
                Console.WriteLine("Port name: " + myOldService.get_Ports().
                    get_Item(i).get_Name());
            }
            // Add the extensions to the newly created Service.
            int noOfExtensions = myOldService.get_Extensions().get_Count();
            Console.WriteLine("No. of extensions: " + noOfExtensions);
            if (noOfExtensions > 0) {
                for (int i = 0; i < myOldService.get_Ports().get_Count();
 i++) {
                    myService.get_Extensions().Add(myServiceCollection.
                        get_Item(0).get_Extensions().get_Item(i));
                }
            }
            // Remove the service from the collection.
            myServiceCollection.Remove(myOldService);
            // Add the newly created service.
            myServiceCollection.Add(myService);
            myServiceDescription.Write("MathService_New.wsdl");
        }
        catch (System.Exception e) {
            Console.WriteLine("Exception: " + e.get_Message());
        }
    } //main
    public static Port CreatePort(String PortName,
 String BindingName,
        String targetNamespace)
    {
        Port myPort = new Port();
        myPort.set_Name(PortName);
        myPort.set_Binding(new XmlQualifiedName(BindingName, targetNamespace));
        // Create a SoapAddress extensibility element to add to the
 port.
        SoapAddressBinding mySoapAddressBinding = new SoapAddressBinding();
        mySoapAddressBinding.set_Location("http://localhost/ServiceClass/"
            + "MathService_JSL.asmx");
        myPort.get_Extensions().Add(mySoapAddressBinding);
        return myPort;
    } //CreatePort
} //MyServiceClass
継承階層継承階層
System.Object
   System.Web.Services.Description.DocumentableItem
     System.Web.Services.Description.NamedItem
      System.Web.Services.Description.Service
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
Service メンバ
System.Web.Services.Description 名前空間

Service コンストラクタ


Service プロパティ


パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ Documentation  DocumentableItem のインスタンステキスト ドキュメント取得または設定します。 ( DocumentableItem から継承されます。)
パブリック プロパティ DocumentationElement  DocumentableItemドキュメント要素取得または設定します。 ( DocumentableItem から継承されます。)
パブリック プロパティ ExtensibleAttributes  Web Services Interoperability (WS-I) Basic Profile 1.1準拠する WSDL属性拡張機能を表す XmlAttribute 型の配列取得または設定します。 ( DocumentableItem から継承されます。)
パブリック プロパティ Extensions オーバーライドされます。 Service に関連付けられている機能拡張要素コレクション取得します
パブリック プロパティ Name  項目の名前を取得または設定します。 ( NamedItem から継承されます。)
パブリック プロパティ Namespaces  ServiceDescription オブジェクト生成されるときに名前空間プレフィックス名前空間保持するために使用する名前空間プレフィックス名前空間のディクショナリを取得または設定します。 ( DocumentableItem から継承されます。)
パブリック プロパティ Ports Service格納されている Port インスタンスコレクション取得します
パブリック プロパティ ServiceDescription Serviceメンバとして含まれている ServiceDescription取得します
参照参照

関連項目

Service クラス
System.Web.Services.Description 名前空間

Service メソッド


Service メンバ

XML Web サービス関連付けられる Port クラス関連するインスタンスセットにしてグループ化ます。このクラス継承できません。

Service データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド Service  
パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ Documentation  DocumentableItem のインスタンステキスト ドキュメント取得または設定します。(DocumentableItem から継承されます。)
パブリック プロパティ DocumentationElement  DocumentableItemドキュメント要素取得または設定します。(DocumentableItem から継承されます。)
パブリック プロパティ ExtensibleAttributes  Web Services Interoperability (WS-I) Basic Profile 1.1準拠する WSDL属性拡張機能を表す XmlAttribute 型の配列取得または設定します。(DocumentableItem から継承されます。)
パブリック プロパティ Extensions オーバーライドされます。 Service に関連付けられている機能拡張要素コレクション取得します
パブリック プロパティ Name  項目の名前を取得または設定します。(NamedItem から継承されます。)
パブリック プロパティ Namespaces  ServiceDescription オブジェクト生成されるときに名前空間プレフィックス名前空間保持するために使用する名前空間プレフィックス名前空間のディクショナリを取得または設定します。(DocumentableItem から継承されます。)
パブリック プロパティ Ports Service格納されている Port インスタンスコレクション取得します
パブリック プロパティ ServiceDescription Serviceメンバとして含まれている ServiceDescription取得します
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

Service クラス
System.Web.Services.Description 名前空間

サービス

読み方さーびす
【英】:service

待ち行列モデルにおいて, 客がうける処理のこと. 実際問題においては, 加工作業であったり, CPU における計算であったり, 情報転送作業であったりで, 必ずしも狭い意味のサービスであるとは限らない.


Service


サービス

(Service から転送)

出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2024/02/01 05:27 UTC 版)

レストランウェイター

サービス: service)あるいは用役(ようえき)、役務(えきむ)とは、経済活動において、売買した後にモノが残らず、効用や満足などを提供する、形のないを指す経済学用語である。第三次産業が取り扱う商品である。

また、サービスの概念に含まれる公共サービス社会国家自治体組合)がその費用を負担する役務のことである。資源スキル、創意、経験などを活かし、提供者が消費者市民などに提供する。

特性

同時性
売り買いした後にモノが残らず、生産と同時に消費されていく。しかしながら、サービス労働の対象としての人に物質化されるのではないかとの異論もある。
不可分性
生産消費を切り離すことは不可能である。
不均質性/変動性
品質は一定ではない。
無形性/非有形性
触ることができない、はっきりとした形がないため、商品を購入前に見たり試したりすることが不可能。
消滅性
形のないものゆえ、在庫にすることが不可能である。

以上の性質が全てに当てはまるわけではない[1]。例えば、エンターテインメント産業(音楽、映像など)において、ライブパフォーマンス以外は同時性、不可分性を満たさない。修理、メンテナンス、クリーニングなどでは品質が標準化されることがある。情報産業ではサービスを形にして在庫にすることができる。

個人向け・事業所向けの分類

個人向けサービス業、事業所向けサービス業といった区分が用いられることもある。例えば、第3次産業活動指数では、

と分類している。

種類

下記に順不同で列挙するが、まさに多様といえる。

各国の状況

日本

歴史

日本においてサービスという言葉を最初に使ったのは、日本自動車会社の社長石沢愛三である。大正末期に米国を視察した際、米国の自動車販売に「サービス・ステーション」が大きな成果を上げていることを知り日本でもサービス・ステーションを広めようとする。帰国後、取引先関係各社にはがきをだす。文面は「今般、当社は完全なるサービス・ステーションに依り顧客本位の御便宜を計ることに相成り候」。これに対し、「サービス・ステーションという便利なものが到着した由、至急届けてもらいたい」との回答が多数返ってくる。これに困った石沢はサービス・ステーションの和訳を試みるが、辞書には、サービスとは奉仕的なるものとの記述のみであり、外国人にきいても要領を得なかったので、使うのをやめたという[2]

その後、1925年(大正14年)、フォード自動車が横浜に工場を置き操業を開始。米国フォード社自身が「サービス第一主義」を掲げ、フォード・モデルT全盛であったこともあり「サービス・エンジニヤー」を「プロダクション・エンジニヤー」以上に尊敬の対象としたほどで、全世界にサービス網を構築し安心して使用できることを訴求することが販売における重要なポイントであるとしていた。1927年(昭和2年)には日本GMが大阪工場の操業を開始。それぞれの会社が各府県に一箇所はディーラーを置き活動する。このような自動車関連海外資本の日本進出による諸活動が日本でのサービス概念の形成に大きく影響している。また特にGMは、英国資本のライジングサン石油と共に日本にガソリンスタンドを大量設置したことも欧米型サービスの地方への普及に貢献した。しかし、このようなサービスは当初より顧客本位を謳いながらも、海外現地法人下での活動では親会社本位が現実であり、ディーラーに多くのしわ寄せがなされ、原則各府県一箇所のディーラーが10年程で300程が契約されているところにその厳しさがあらわれている[2]

誤解

日本においては、「サービス」という語を「奉仕」、「無料」、「値引き」、「おまけ」というような意味で用いていることも多く、誤解を招く要因となっている[3][4]

かつては、生産技術生産管理、商品の品質管理のレベルが低く、不良品の発生率も高かった。このため、メーカーや販売店は不良品を新品と交換する、修理・交換部品を無料にする、修理代金を無料にするといった活動や、販売後のケアを無償とせざるを得なかった。また、人件費が低かったこともあり、商品の販売による売り上げさえ確保できれば、こういった修理や販売後ケアを無料にしてもコスト面で折り合いが付いた[4]。その後、販売競争が激しくなっても、販売価格は据え置きでサービスが無料という形態は続いた。むしろ、サービスが無料という点は、販促のための方策でもあった[4]。製造業や流通業の立場からでも「顧客は値引きを求めている」という解釈を行い、顧客が実際に求めているか否かに関わりなく、各種サービスを無料にすることが行われていた[4]。営業職側も、営業調査やマーケティング調査を怠り、安易な値引き路線やおまけ付与という営業活動が慣習化されていた[4]

100円均一の回転寿司100円ショップ、1000円均一の理髪店などが優れたビジネスモデルとして顧客の人気を獲得している一方、技量の優れた職人が握る寿司屋や丁寧に対応する理髪店、美容院もまた同様に支持されていることから、顧客はサービスの差を理解しているとも判断されている[4]

サービス業、サービス産業

サービス業(サービス産業)はサービスを取り扱う産業のことであるが、その範囲は、使用される状況や資料によって異なる。広義のサービス業は、第三次産業と同義である。例えば、第637回統計審議会では、「第一次産業、第二次産業に含まれないその他のもの全てを第三次産業として、サービス産業としている」とある。また、経済産業省産業構造審議会サービス政策部会の中間報告書では、「サービス産業は第三次産業と同義で、エネルギーや通信、運輸や卸・小売等も含む」とある。また、形のない財をサービスと呼ぶことから、形のある財を取引する卸売業・小売業を除いた第三次産業を指して、サービス業と呼ぶこともある。狭義のサービス業は、第三次産業をいくつかに分類したときに、その分類に当てはまらないもの全てを総称して呼ぶ。そのため、「○○以外」という表現を用いないで、狭義のサービス業を定義することは不可能である。日本標準産業分類では、第三次産業のうち、電気・ガス・熱供給・水道業、情報通信業、運輸業、卸売・小売業、金融・保険業、不動産業、飲食店、宿泊業、医療、福祉、教育、学習支援業、複合サービス事業、公務に分類されないものを指す。

学術団体については、1951年4月21日、日本商業学会が慶應義塾大学教授向井鹿松を初代会長として設立された[5]

2002年のサービス業の分類変更

2002年の日本標準産業分類改訂により、「サービス業」は見直しが行われ、分割や他の産業との統合が行われた。その結果、以前の分類とは内容が異なっており、時系列での比較には注意が必要となる[6]

大分類として新しく起こされたものを挙げると、

  • 宿泊業が飲食業と統合され、「飲食店、宿泊業」となった。
  • 従来のサービス業から「医療、福祉」が分割、大分類となった。
  • 同じく、「教育、学習支援業」が分割、大分類となった。
  • 協同組合が郵便局と統合され、「複合サービス事業」となった。

統計の産業分類は日本標準産業分類に準じるため、順次新分類に移行している。ただし、数年おきの大規模な調査では新分類で調査を行っていなかったり、自治体の統計では2002年改訂以前の分類によっているものもある。

脚注

注釈

  1. ^ 歴史的経緯などから、広義のアウトソーシングサービスに含まれる建設業は、一般に経済用語としてのサービスには含まれない。

出典

  1. ^ 小宮路雅博「サービスの諸特性とサービス取引の諸課題 (木綿良行名誉教授古稀記念号)」『成城大學經濟研究』第187巻、2010年2月、149-178頁、CRID 1050001337473516800 
  2. ^ a b 尾崎政久『自動車日本史』自研社、1955年。doi:10.11501/2476331NCID BN04404754全国書誌番号:55012410https://dl.ndl.go.jp/pid/2476331/1/1 
  3. ^ 『消費者教育』 第23巻、光生館、2003年、141頁。 
  4. ^ a b c d e f 武田哲男「6.「無料」はサービスになりえない」『顧客に「感動以上」の喜びを提供するための 「サービス」の常識』PHP研究所、2008年。ISBN 9784569697505 
  5. ^ 学会HP”. 日本商業学会. 2022年1月23日閲覧。 個人会員1,072名,賛助会員11社・団体,購読会員32件 (2019年7月現在)
  6. ^ 詳細は総務省の産業分類のページ参照。

関連項目

外部リンク



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

','','','','','','','','','','','','','','','','','',''];function getDictCodeItems(a){return dictCodeList[a]};

すべての辞書の索引

「Service」の関連用語



3
day service デジタル大辞泉
100% |||||

4
new service デジタル大辞泉
100% |||||


6
100% |||||

7
100% |||||

8
100% |||||

Serviceのお隣キーワード
検索ランキング
';function getSideRankTable(){return sideRankTable};

   

英語⇒日本語
日本語⇒英語
   



Serviceのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
実用日本語表現辞典実用日本語表現辞典
Copyright © 2025実用日本語表現辞典 All Rights Reserved.
デジタル大辞泉デジタル大辞泉
(C)Shogakukan Inc.
株式会社 小学館
IT用語辞典バイナリIT用語辞典バイナリ
Copyright © 2005-2025 Weblio 辞書 IT用語辞典バイナリさくいん。 この記事は、IT用語辞典バイナリの【サービス】の記事を利用しております。
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.
日本オペレーションズ・リサーチ学会日本オペレーションズ・リサーチ学会
Copyright (C) 2025 (社)日本オペレーションズ・リサーチ学会 All rights reserved.
日外アソシエーツ株式会社日外アソシエーツ株式会社
Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved.
ウィキペディアウィキペディア
All text is available under the terms of the GNU Free Documentation License.
この記事は、ウィキペディアのサービス (改訂履歴)の記事を複製、再配布したものにあたり、GNU Free Documentation Licenseというライセンスの下で提供されています。 Weblio辞書に掲載されているウィキペディアの記事も、全てGNU Free Documentation Licenseの元に提供されております。

©2025 GRAS Group, Inc.RSS