Object type for Employee master for choose list

hi Experts
Can Any one tell me the object type for Employee master for choose list like for Bp master object type is 2 and 1 for Account master.
Thanks
Gorge

Hi Gorge,
You can find the full list in UI Help located in :
C:\Programm Files\SAP\SAP Business One SDK\Help\REFUI.chm (search for 'object type').
Employee is 171.
Bye

Similar Messages

  • Object type for Task list gp

    Hi All,
    Any idea, which is the object type ( from NRIV table) for Task list gp.(transaction CA11)
    Regards
    Saurabh

    Hi,
    I think Number Range Object ROUTING_S "Number ranges for reference operation sets" is what you are looking for.
    Regards,
    James Gaddis

  • Object type for Warehouse choose list.

    Hi Expert
    what is the object type for warehouse choose list like bp master there is 2.
    thanks
    Regards
    Gorge

    try 64

  • Business object type for parked invoices

    Hi,
    We are using documentum to store documents that have been attached to business object types in SAP. The business object types are configured in transaction OAC3 to point to a pre-configured content repository.
    Having this configuration allows the object type to use the "services for objects" option, enabling it to store attachments.
    The business object types for invoices have been configured and we are able to store attachments. However this does not seem to work for "Parked invoices". The configuration in the "services for objects" component is not there and the feature to store the attachment is disabled.
    As the configuration needs to be done for all object types that need to be able to store attachments, maybe someone here can indicate what the object type is for parked invoices. Alternatively, maybe there is a way to look up the various business object types.
    Any help you can provide is appreciated.
    Thanks.
    Kind Regards,
    Giwan

    Hi ,
    Thank You for your reply.
    I created inquiry . it takes BUS2031.But BUS2031 is used for quotation.But that inquiry is open in VA12(Change Inquiry) Transaction,not open in VA22(Change Quotation).
    Is there any setting for BOR object types to Document Types.
    Please give me a reply as early as possible.It's very urgent.
    Thanks,
    Saritha

  • Object type for Vendor Invoice (FB60) to attach image

    Hi,
    I was wondering if any of you experts would know the Object Type for Vendor Invoice which allows an image to be attached to it in early archiving.
    Many thanks
    G

    The object for attaching an image to a document entered directly into FI is BKPF.  This is the object for vendor invoices entered into FB60 as well as vendor credit memos (FB65), customer invoices (FB70), customer credit memos (FB75) and GL adjustments (FB50).  It also applies to any document posted via a complex (non-enjoy) FI transaction like FB01.

  • Predefined object type for Purchase order release stratergy

    dear experts,
    There are already predefined object type for purchase order like bus2012 where i can create new events and methods. I want to know is there any predefined objects for purchase order release strategy. The requirement is there i want to define method, that should display the po release screen. If i bind this method with work flow template, mail should be triggered and if i click the mail po release screen should be opened for respective material...
    regards,
    Kandhan G

    Hello
    I'm using the BUS2012 Object type in workflow task but in simulation the task run correct but in the transaction when modify a purchase orden the task send an error...
    maybe the error is similar...did you solve this problem?..
    Thanks!
    Wladimir E.
    [email protected]

  • Object type for multiple/text/unrestricted property

              Hi,
              Does anybody know what's the object type for multiple/text/unrestricted property.
              I tried to use um:setproperty tag to set the value of a multiple/text/unrestricted
              type property in jsp. I got the following error if the object type I use is ArrayList:
              javax.transaction.TransactionRolledbackException: Transaction: '995540362044_8798'
              rolled back due to EJB exception:
              java.rmi.RemoteException: EntityPropertyManagerImpl.insertTypeSpecificValue():
              caught ClassCastException. The reason might be because the type of the passed
              value does not mismatch the property type stored in schema information. Expected
              object type is: 3 and the object type was: java.util.ArrayList
              Does anybody know what's this type 3 object?
              Br,
              -Niyue Chen
              

    Hi All,
    I need to convert the amount value in comma to dot say 1000,00 to 1000.00.Any function module is there to convert it.After converting it i need to pass this value as exporting parameter to a function module having data type as character(lenght 13).
    Thnks
    Deb

  • Business Object Types for Z-tables

    hi
    could anyone please guide me how to create business-object-types for Z-tables?
    thanks in advance
    regards
    pavan

    Hi,
    Business objects (SWO1) are representations of business entities.
    So it is impossible to ask I need to create a business object for a z-table, because that's not business specific.
    Normally when you're faced with a BO issue, you first search for useable existing BO's. In there you also search if SAP has already provided the wanted functional requirement. If this is not present, you then search for a BO which is closest to the Functional requirement and then create a subtype of that BO en extend it to suit your needs (attributes, methods, events etc.) via delegation you can then also se it in sap standard.
    for more infor check the SAP Business Workflow

  • What is the Object Type for User Define table ?

    Dear All Experts,
    I create one of the User Define Table with no. of UDF's
    I already register User Define Table with Unique ID.
    As per my knowledge, Unique ID is our Object type for that User Define Table.
    I want to add Transaction Notification Code for created Used Define Table.
    This Transaction Notification prevents user to must enter name in that form.
    IF (@object_type = 'Z_Roto' AND (@TRANSACTION_TYPE = 'A' or @TRANSACTION_TYPE = 'U'))
    BEGIN
    If not Exists (Select T0.DocEntry from [@Z_ROTO] T0 Where ( T0.Name is null  OR  T0.Name = ' ' ) AND T0.Code  = @list_of_cols_val_tab_del )
    begin
    SET @error = 1
    SET @error_message = 'Name is NULL then So, Please enter ZERO Value i.e. 0 in Filed_Name'
    End
    End
    Please help me for this problem.
    Thanks & Regards,
    Nishit Makadia

    Hi All,
    Thanks for your replay.
    Below code is working for User Define Table's Transaction Notification
    IF (@transaction_type = 'A' OR @transaction_type = 'U') AND @object_type = 'Z_Roto'
    BEGIN
    If Exists (Select T0.Code from [@Z_ROTO] T0 Where ( T0.Name is null  OR  T0.Name = ' ' ) AND T0.Code  = @list_of_cols_val_tab_del)
    begin
    select @error = 10
    select @error_message = 'Name is NULL then So, Please enter ZERO Value i.e. 0 in Filed_Name'
    End
    End
    Necessary to Remember 4 Things. That are mentioned below.
    1) Register User Define Table (UDT) with using "Object Registration Wizard". For Example : @object_type = 'Z_Roto'
    2) When you define selection criteria then it must be compulsory for use Code Field. For Example : Select T0.Code from [@Z_Roto]
    3) When you define selection criteria then it must be compulsory for use Code for @list_of_cols_val_tab_del.
    4) Use error code as 10 Number
    Thanks & Regards,
    Nishit Makadia

  • Object Type for Freight

    Hi
    What is object type for Fright Charges ?.., In the sdk help center how to find the object type. Please help me.
    Thanks&Regards,
    Vidhuroo.

    Okay,
    you can use this code:
        Dim query = DirectCast(MyCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset), SAPbobsCOM.Recordset)
        query.DoQuery("SELECT [ExpnsCode] FROM [OEXD] ORDER BY [ExpnsName]")
        Dim expenses = DirectCast(MyCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oAdditionalExpenses), SAPbobsCOM.AdditionalExpenses)
        expenses.Browser.Recordset = query
        expenses.Browser.MoveFirst()
        While Not expenses.Browser.EoF
          Dim name = expenses.Name
          expenses.Browser.MoveNext()
        End While

  • Object type for Proxy for sending Notifcation Workflow

    Hi
    Object type for Proxy for sending Notifcation Workflow.
    Early reply is highely appriciable.
    Thanks,
    Naidu.

    Could you make your post more cryptic? There were still some things I could understand.
    Perhaps you should take a look at the forum guidelines and especially at the part on asking a question. you can find the forum guidelines through the sticky thread at the top of this forum or through the Community Guidelines which you can find on the left side of your screen.
    Regards,
    Martin

  • Sender object type for price catalog in Generation of BizPackage

    what is sender object type for price catalog in Generation of BizPackage and BIU under bizPackage Generate (SAP B1iSN Tools)
    i should put PRICAT (the msgtype in the model view or PRICAT02 in standard basic IDoc types)
    Thanks
    elson

    If i correctly understood your problem, i think you have to manage (in your trasformation) the section between <Items_Prices> and </Items_Prices>.
      <?xml version="1.0" encoding="utf-8" ?>
    <BOM xmlns:bfa="urn:com.sap.b1i.bizprocessor:bizatoms">
    <BO>
         <AdmInfo>
              <Object>4</Object>
              <Version>2</Version>
         </AdmInfo>
         <Items>
              <row>
                   <ItemCode>AAAAAA</ItemCode>
                   <ItemName>BBBBBBBBB</ItemName>
              </row>
         </Items>
         <Items_Prices>
              <row>
                   <PriceList>1</PriceList>
                   <Price>27.400000</Price>
                   <Currency>EUR</Currency>
              </row>
              <row>
                   <PriceList>2</PriceList>
                   <Price>0.000000</Price>
                   <Currency>USD</Currency>
              </row>
         </Items_Prices>
         <ItemWarehouseInfo>
              <row>
              </row>
         </ItemWarehouseInfo>
         <ItemPreferredVendors>
         </ItemPreferredVendors>
    </BO>
    </BOM>
    BR

  • Object type for service notification?

    Hi guys,
    In workflow what is the object type to create service notification (IW51). How can I find it?
    thanks in advance.
    Regards

    The object type for service notifications is BUS2080.  You can find it via transaction SWO1 - use the search help on the Object/Interface field.  You can also use the Business object repository (Browser) button on SWO1.

  • Object type for connection object

    Can any one tell me the object type for the connection object.
    Regards, Goksi

    hi goksy
    go to  swo1
    click push  butt BUSINESS OBJECT  REPOSITORY
    and click  all types in the pop up screen
    then u need to  xpand the sap util node
    then u  will find all the isu objects involved
    hope it  will be useful  to u
    kr
    raj

  • Object Type for Bill of Materials

    What is the object type for bill of materials?  I am trying to add the code that updates the finished good item sales weight according to the weight of the Bill of Materials. Only one item in the bill of materials actually contains weight information so there is no conflict regarding cross units of measure. So, the finished good will have the same weight as the raw materials.
    Here is what I have so far. Though I'm not sure what the Object Type is for Bill of Materials. I'm also unsure about some of my code - Please review my code as well.
    IF (@TRANSACTION_TYPE = 'A' OR @TRANSACTION_TYPE = 'U') AND @OBJECT_TYPE = '68'
    BEGIN
         UPDATE OITM SET
              SWeight1 = (SELECT SUM(dbo.OITM.BWeight1) AS Weight
                   FROM dbo.OITM INNER JOIN dbo.ITT1 ON dbo.OITM.ItemCode = dbo.ITT1.Code
                   GROUP BY dbo.ITT1.Father
                   HAVING (dbo.ITT1.Father = @LIST_OF_COLS_VAL_TAB_DEL)),
              SWght1Unit = (SELECT dbo.OITM.BWght1Unit
                   FROM dbo.OITM INNER JOIN dbo.ITT1 ON dbo.OITM.ItemCode = dbo.ITT1.Code
                   GROUP BY dbo.ITT1.Father, dbo.OITM.BWght1Unit
                   HAVING(dbo.ITT1.Father = @LIST_OF_COLS_VAL_TAB_DEL) AND (dbo.OITM.BWght1Unit IS NOT NULL))
         WHERE ItemCode = @LIST_OF_COLS_VAL_TAB_DEL
    END
    Thanks

    I found it. The object type is 66 Product Tree. It appears my code works as well - yeah!

Maybe you are looking for

  • File or picture upload in survey tool

    Hi, we want to use survey tool for gathering some information from customer location. Here there is a need to to provide a facility to user to load a file or picture.First of all can i do this using survey tool if so can anybody pls provide the way o

  • Multiple JLists controlled by one Scroll Pane?

    I'm trying to figure out a way of putting together a number of JLists within a single scroll pane. For example, on my PDA, to set the time there is one component that appears to be made up of 3 lists (hours, minutes, AM/PM) that are all controlled by

  • AD user to OID. can not login.

    that process works fine in developing system, but can not work at testing system. both system is infrastructure 10.1.4. mapping file in 2 system is same, and they connect to same AD. the message at testing system sso page is Authentication failed, pl

  • Restrict a user to see All site content link on quick lanuch

    Hi how to restrict a user (who has only view permissions ) to see All Site Content Link on quick lanuch adil

  • System error: RSDRC / FORM AUTHORITY_CHECK USER NOT AUTHORIZED 0SAL_DS01 0S

    Hello I have a big problem, I a have active the ODS 0SAL_DS01 with the update rule 0CRM_SALES_ACT_1. I have upload the data without problem. When I want to see the data I have this message : Your user master record is not sufficiently maintained for