Change pointer for functional location- deletion flag & activation status

Hello,
Im trying to use change pointer for functional location outbound interface. I did all required settings in BD52. The problem is with deletion flag and acive/deactive status.
I found that those two are stored in:
table     field
TAPL     LOEKZ
TAPL     PARKZ
The problem I have is that I cannot find the object for those table, and due to that it cannot be customized in BD52.
Could You please advise which object class should I use or alternatively which other table/field and object should I type in to activate change poiters for deletion flag and active/ not active status?
For object IFLO, and its table (IFLOT, IFLOTX, ILOA)- there is no field for del flag and active status.
Thanks in advance.

Hi, standard didnt let us fulfilling this requirement. What we did- we extended table IFLOT with additional field for the status and used an user exit when saving FL, to take the value (status) from table JEST/TJ02T and copy the value to the newly created field. Then BD52, iflo, iflot, and the new field and it worked. Of course the function module for the message type (BD60) had to be changed to add this status value in additional segment/field for the idoc. Hope this will help You, as there is a lot of technical background behind it, and this is only functional overview.
rgds.

Similar Messages

  • Problem when Indicator for Alt. labelling for functional location activated

    Dear Experts,
    In our test system, i had activated alternative labelling for functional lcation for an interface with Locations in ISU.
    After i activated it the entire labelling for functional locations got changed to some arbitrary sustem generated number. For a sample -?0100000000000000142. Is there a ways i can retrieve the original names back. We have reactivated it to inactive again.
    Please help.
    Thanks,
    Boby Mathew

    Hi,
    Once alternative labelling is active, the previous functional location number (IFLOT-TPLNR) and OBJNR become a internal number. The visible location labels are stored in table IFLOS (Field STRNO).
    How easy it is to revert to status 1-Inactive depends on the existance of IFLOS records. If there are no IFLOS records it should be possible to just deactivate via OIPU transaction - Uncheck the 'alt label active' flag - Save.
    Where IFLOS records exist it means functional locations have already been created while the switch was active. These functional locations must be archived. See the full instructions for this process in note [359186|https://service.sap.com/sap/support/notes/359186]. It's a old note but is still valid for all current releases.
    -Paul

  • Updating and deleting Partner functions for functional location

    Hi ,
    I am having a requirement of updating and deleting partner function for functional location .
    If anyone can suggest some BAPI or function module for same .
    Thanks n Regards
    Manik

    Hi Fritz,
    Thank you for your response,
    My need is to create a PARTNERS for the FUNCTIONAL LOCATION.
    LET ME DESCRIBE IT.
    WHEN I AM CREATING A FUNCTION LOCATION USING IL01, AS I ENTER A FUNCTIONAL LOCATION AND PRESS ENTER IN THE NEXT SCREEN.
    AND
    I NEED TO ENTER THE PARTNERS FROM THE DROP DROWN MENU  GOTO ->PARTNERS
    WHICH TAKES ME TO THE NEXT SCREEN WHERE I NEED TO FILL THE INFORMATION IN THE TWO FIELDS : FUNCT & PARTNER.
    I need a partner for the functional location that i mentioned above.and i need to upload that information in through Emigall.
    So my query was that can we customize that partner for this functional location and if yes, what should the constraints,
    what are steps required? Do we require a custom service module?
    Regards,
    Robert.

  • FM for changing address in functional location

    Hi all
    I wanted to change address in functional locations in my report, but I don't know any function modul for this. I've found BAPI_FUNCLOC_CHANGE, but it's not possible to change address data with it. Normaly  it's done through IL02 transaction. I would be grateful for any help.
    BR

    Pete Atkin,
    If you go to transaction IL02 and on tab Location you push pencil button, than on new window you can change some of address data but not all that are storred in ADRC table. For example you can change street name or city name, but there is no place that you could enter city code or street code. So if this is not possible to enter these values in this transaction it is not possible to run this transaction from report with BCD data so that street code and city code were changed in ADRC table.

  • Change pointer for Sales Order

    Hi,
    Using change pointers I want to create an IDOC when ever a specific field in the sales order line item is changed. I have activated the change pointer for message type ORDRSP. Also maintained the following entries in BD52
    VERKBELEG(Object) VBAP(Table) ABGRU(field).
    After this when I change this field at the sales order line item, it inserts entries into change pointer table.
    But my problem is creating IDOC's from those change pointer entries. I am not sure which function module (MASTERIDOC_CREATE_XXXXX) works for this.
    Anyhelp on this highly appreciated.
    Thanks
    Ram

    Hi Ram,
    I don't think so you can use change pointer for sales order changes. Usually, it is done through transaction code<b> NACE</b> - configuring condition for output type.
    You can setup requeirement in procedure control to trigger IDoc ORDRSP for any changes in item level.
    Hope this will help you and give an idea.
    Regards,
    Ferry Lianto

  • Change pointer for HR master data is not getting generated in table BDCP

    Hi,
    I have done all the required configuration for change pointer for HR master Distribution and it was working fine few days back. Now suddnly it has stopped working.
    Can anyone assist me on how should i debug it.
    Thanks
    Sunil Singh

    Hi Shital,
    Thanks for your Reply.
    I am not able to find that path in SPRO
    Basic Functions-> application Area
    And Also My change pointer configuration was working properly and it suddenly stopped working.
    I mean to say all the required settings was done previously.
    Anyways kindly let me know how should i proceed.
    Thanks
    Sunil Singh

  • Tables for Functional location/equipment   in Sales Area

    Hi ,This is sivakumar  ...
    h2.
    I wanna  know  Tables for Functional  Location/equipment in Sales area   under the Customer Service erena.

    I know the sales order number, header and item ..
    I need other parameters to use this table....

  • How to set a change pointer for a perticular table?

    Hi,
    Please let me know how to set a change pointer for a perticular table.

    what do you mean by 'change pointer'? normally this idiom is used for sending ÍDOCs from one system/client/org-unit to another ...
    do you generally want to record changes to a specific table? then set parameter rec/client using RZ10 for your instance profiles and restart the instances in order for the parameter to take effect.
    set the table to 'record all changes' using SE11.
    you might re-consider if the table has a lot of  data and is accessed very often for performance-resons.
    change protocols can be evaluated using tx, SCU3.

  • Function module like ENQUEUE and DEQUEUE for function location.

    Hi All,
    I should be highly appreciate if any one help me for locking function module like ENQUEUE and DEQUEUE
    for function location.
    Thanks
    Shaw

    Hi,
    You can either use the standard way of locking by using :
    data:lv_varkey          TYPE rstable-varkey.
    concatenate functional_location sy-mandt into lv_varkey .
    *   Lock table
        CALL FUNCTION 'ENQUEUE_E_TABLEE'
          EXPORTING
            mode_rstable   = 'E'
            tabname        = 'IFLOS'
            varkey         = lv_varkey
          EXCEPTIONS
            foreign_lock   = 1
            system_failure = 2
            OTHERS         = 3.
    *     Unlock table
          CALL FUNCTION 'DEQUEUE_E_TABLEE'
            EXPORTING
              mode_rstable = 'E'
              tabname      = 'IFLOS'
              varkey       = lv_varkey.
    Or,
    As mentioned above create a lock object via transaction SE11.
    Go to transaction se11:
    --> Enter lock object name e.g EZ_IFLOS
    --> Click on create
    --> Enter description
    --> Click on tables tab
    --> Enter 'IFLOS' as table name
    --> select lock mode
    --. click on save and activate.
    2 function modules will be created as DEQUEUE_EZ_IFLOS and ENQUEUE_EZ_IFLOS .
    Regards.

  • LSMW for functional location address fields

    HI Folks,
    I'm loading functional location thru LSMW Direct input method. I coudn't able to see any structure relation for address fileds on functional location. I have mapped the IBIPFLOC for functional location but it doesn't have any address fields. So how to load the address fields of functional location thru LSMW direct input method. Thanks in advance.

    Hi Praveen,
    You can create a separate LSMW for this or you create a LSMW for FLoc upload along with the address details. I don't think this is possible with the standard program you have chosen.
    Regards,
    Bala

  • Outbound IDOCs for Functional Location

    Hi experts
    We are planning to use IDOCs for interfacing SAP and Legacy system using XI.
    THis will be an outbound interface  as we will be updating the legacy system with SAP.Therefore I am looking for a standard outbound  IDOC for functional location.
    So far I have not found one. Can you advise the outbound IDOC for Functional location ?
    Another question I have , I have found some IDOC's but they are not released , Is there a way to release the IDOC's, what needs to be done for this.
    Many Thanks
    Regards
    Gaurav

    Hi Vinod,
    This is the case for the 2 outbound Idocs from ECC to SNC for which settings have been maintained to send them immediately:
    1. PORDCR1
    2. STPOD
    I have asked my PI team to check the PI port / PI cache. Will keep the thread updated if theres any resolution.
    Regards,
    Bharath

  • Addition of sub-screen for Functional Location / Equipment / Notification

    Hi All,
    Can any one help me on Addition of sub-screen based on config in new tab or sub-screen for objects for Functional Location / Equipment / Notification / Notification Item / Work OrderWork Order Operation.
    If you are designed the above requirement by using ABAP objects please send sample code for the same.
    I am not bothering about addtional fields which you created in your program.
    Thanks a lot.
    -Kalluri

    Thenna,
    QMIH-ILOAN -> ILOA-ILOAN
    ILOA-TPLNR -> IFLOT-TPLNR
    PeteA
    [www.pjas.com]

  • Can't find Business Object for Functional Location BOM in BAPI

    Hi all,
    I've to make Upload Program through BAPI for Functional Location BOM,for making that Upload i can't find BUSINESS OBJECT for FUNCTIONAL LOCATION ,Equipment BOM and Fleet Object (Vehicle).Kindly tell what Business Object should i used to create that Upload Programme.I shall be very thankful to you.
    Regards,
    ABAPFK

    Hi
    you have to do all steps in LSMW
    1.Maintain Object Attributes
    2.Maintain Source Structures
    3 Maintain Source Fields
    4 Maintain Structure Relations
    5 Maintain Field Mapping and Conversion Rules
    7 Specify Files
    8 Assign Files
    9 Read Data
    10 Convert Data
    11 Create Batch Input Session
    Please maintain source fields required.thats important.(maintain 2 level-header and item,also provide common name of column to link to 2 files
    Header file:sample
    RECORDNAME     EQUNR     Plant
    10001031                        10001031      3000
    Item file:sample
    RECORDNAME     ITEM NO     MATNR     Item catg   QTY
    10001031                             10      P-1001          L               1
    Regards
    Seenu

  • BAPI for functional location

    Hi expert,
    I want to upload master data for functional location .
    can any body suggest me name of BAPI for the same .???
    Regards
    Prasad

    Prasad,
    It would be very useful for you to have a look at TCode BAPI to see what is available
    PeteA

  • Alternative labelling for Functional locations

    Hi All,
    I wanted to know if i activate Alternative labelling for Functional locations, does it affect system performance. Also is it worthwhile to activate?
    Kind Regards
    Emanuel

    Hi,
    No, it will not have any impact on system performance. Alternative labelling offers you the possibility to have multiple labelling systems so a functional location can be known by different names by different parts of your organization. If you have a need for this then it would be useful otherwise probably not.
    -Paul
    Please use [Enterprise Asset Management (EAM)|Enterprise Asset Management (SAP EAM); forum for PM/CS specific topics

Maybe you are looking for