what is this exactly FND_CLIENT_INFO

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • moyoal
    New Member
    • Mar 2008
    • 11

    what is this exactly FND_CLIENT_INFO

    Dear All,

    Anyone can tell me what this exactly in oracle applications, FND_CLIENT_INFO its a Database procedure/Function or what?

    thanks in advance.
    moyoal
  • amitpatel66
    Recognized Expert Top Contributor
    • Mar 2007
    • 2358

    #2
    Originally posted by moyoal
    Dear All,

    Anyone can tell me what this exactly in oracle applications, FND_CLIENT_INFO its a Database procedure/Function or what?

    thanks in advance.
    moyoal
    FND_CLIENT_INFO is mainly used to set the organization of the application. ITs something similar to setting the environment in unix box for pareticular Oracle instance.

    For Example:

    [code=oracle]

    EXEC FND_CLIENT_INFO .SET_ORG_CONTEX T('204');

    [/code]

    The above code when run, sets the organization to 204 and the datas for the operating unit = 204 will be retrieved from the oracle application views like po_headers,ap_v endors etc.....

    Comment

    • moyoal
      New Member
      • Mar 2008
      • 11

      #3
      thanks amit for your reply, but my question is still,
      FND_CLIENT_INFO is a built-in procedure/function or what...where i can find the FND_CLIENT_INFO coding/details

      regards,
      awaiting


      Originally posted by amitpatel66
      FND_CLIENT_INFO is mainly used to set the organization of the application. ITs something similar to setting the environment in unix box for pareticular Oracle instance.

      For Example:

      [code=oracle]

      EXEC FND_CLIENT_INFO .SET_ORG_CONTEX T('204');

      [/code]

      The above code when run, sets the organization to 204 and the datas for the operating unit = 204 will be retrieved from the oracle application views like po_headers,ap_v endors etc.....

      Comment

      • amitpatel66
        Recognized Expert Top Contributor
        • Mar 2007
        • 2358

        #4
        Originally posted by moyoal
        thanks amit for your reply, but my question is still,
        FND_CLIENT_INFO is a built-in procedure/function or what...where i can find the FND_CLIENT_INFO coding/details

        regards,
        awaiting
        Here it goes: Its a Package:

        [code=oracle]

        SQL> desc FND_CLIENT_INFO

        PROCEDURE SETUP_CLIENT_IN FO

        Argument Name Type In/Out Default?
        ------------------------------ ----------------------- ------ --------
        APPLICATION_ID NUMBER IN
        RESPONSIBILITY_ ID NUMBER IN
        USER_ID NUMBER IN

        PROCEDURE SET_CURRENCY_CO NTEXT

        Argument Name Type In/Out Default?
        ------------------------------ ----------------------- ------ --------
        CONTEXT VARCHAR2 IN

        PROCEDURE SET_ORG_CONTEXT

        Argument Name Type In/Out Default?
        ------------------------------ ----------------------- ------ --------
        CONTEXT VARCHAR2 IN
        SQL>

        [/code]

        Comment

        • moyoal
          New Member
          • Mar 2008
          • 11

          #5
          thanks alot amit...i got exactly what i was looking


          Originally posted by amitpatel66
          Here it goes: Its a Package:

          [code=oracle]

          SQL> desc FND_CLIENT_INFO

          PROCEDURE SETUP_CLIENT_IN FO

          Argument Name Type In/Out Default?
          ------------------------------ ----------------------- ------ --------
          APPLICATION_ID NUMBER IN
          RESPONSIBILITY_ ID NUMBER IN
          USER_ID NUMBER IN

          PROCEDURE SET_CURRENCY_CO NTEXT

          Argument Name Type In/Out Default?
          ------------------------------ ----------------------- ------ --------
          CONTEXT VARCHAR2 IN

          PROCEDURE SET_ORG_CONTEXT

          Argument Name Type In/Out Default?
          ------------------------------ ----------------------- ------ --------
          CONTEXT VARCHAR2 IN
          SQL>

          [/code]

          Comment

          • amitpatel66
            Recognized Expert Top Contributor
            • Mar 2007
            • 2358

            #6
            You are welcome. Do post back in case of any further issues

            Comment

            Working...