Function module was assigned to 4tmp package

Hello all,
I have created XML-DataSource with SOAP Connection in our BW development system.
In this regard the system created a function module to receive data via XI. This function modul was assigned to the package $tmp and it is not possible to transport this FM into production system.
When I try to re-assign the package to our designated develop package an error message appears, which says I have to use a package which starts with /BI0/.
Any idea how can I transport this function module. That would be great.
Thanks upfront and Best regards,
Stefanos from Munich/Germany

hi Stefanos,
try to transport the datasource/infosource to target system and check if the function module is generated there.
hope this helps.

Similar Messages

  • Function module for assigning BP Number to the Postion ID in org model

    Hi Experts,
    Is there any function module for assigning BP Number to the Postion ID in organizational model.
    The requirement is:
    1)There are some employees which are reporting to a Manager who has a position ID.
    2) Each of these employees should be assigned to the given position ID.
    This can be done by First Locate the BP Record in SAP via the Vantive Person ID  and retrieve the SAP BP Number.
    <b>Then assign the SAP BP Number found to the Position ID.</b>
    My question is <b>Is there any function module for assigning BP Number to the Postion ID .</b>
    Looking forward for reply.
    Thanks & Regards,
    Renju.

    Hi,
       Org. management uses API classe objects with static methods as APIs. You may be able to achieve this using
    CL_CRM_ORGMAN_SERVICES->MAPPING_ORGUNIT_TO_BP
    Reward if helpful!
    Regards,
    Sudipta.

  • Function module for assigning a HU to delivery

    Function module for assigning a HU in HU managed location to a delivery ??

    Hello,
    In FuGrp HU_BASIC_BAPIS               Basic BAPIs for Hus
    with F’tn BAPI_HU_CREATE  Create handling unit with items
    this creates HU's NOT yet assigned.
    After F'tn BAPI_TRANSACTION_COMMIT
    You can assign the HU via
    F'tn BAPI_HU_CHANGE_HEADER
    using the BAPIHUHEADER fields: PACK_MAT_OBJECT & PACK_MAT_OBJ_KEY.
    Dirk

  • ABAP program/Function module to assign the roles in SU01

    Hi,
    Is there any ABAP program/function module to assign the roles in SU01. And program/function module which does all teh SU01 related activities.
    Thanks and Regards,
    Rashmi

    Hello,
    Check the function modules that start with BAPI_USER*
    To assign roles :
    BAPI_USER_ACTGROUPS_ASSIGN
    To assign profiles :
    BAPI_USER_PROFILES_ASSIGN
    To change user's metadata (name, settings, ... other SU01 functions) :
    BAPI_USER_CHANGE
    Success.
    Wim

  • Function module to assign a parent role to a child role

    Hi All,
    Is there any function module that can be used to assign a parent role to a child role.
    I have tried to debug the PFCG transaciton but was not successful in find one.
    Please help me out.
    Thanks,
    Hari.

    Hello Hari
    It would be more logic to create a child role from a parent role yet there may be demands for the other way around. I would like to add that you assign not just a but the parent role since a child role can have only a single parent role.
    The parent role is defined by AGR_DEFINE-PARENT_AGR. Thus, you could try to use the following function modules:
    PRGN_STRU_LOAD_DEFINITION
    PRGN_STRU_SAVE_DEFINITION
    Obviously there are additional steps required in order to create a fully functional child role.
    Regards,
      Uwe

  • Is there any function module to assign Object to Transport request (Task)?

    Hi There,
    My requirement is to assign an object to desired task of the transport request. I found one FM called TR_EXT_INSERT_IN_REQUEST. But it has some limitations.
    Limitations of FM :  TR_EXT_INSERT_IN_REQUEST
    1. It will assign the given object to given Transport request. But not to the task of a transport request. This FM will not allow   assigning objects to the task. It will allow only to request.
    2. Object entry present in transport request table e071. But, I can't find any version in version management. Moreover, the object is not locked under that particular request.
    Can any one let me know, is there any function module to fullfill the requirement without above mentioned limitations?
    Requirement :
    1. Given object should be assigned to given task of TR.
    2. Need FM to activate the Object and object texts.
    3. After assigning to the request, It should show the vesion in version management and object should be locked under particular Task/ Request.
    Your help would be greatly appreciated and <<removed by moderator>> Thanks in advance.
    Have a nice day!!
    Thanks and Regards,
    Neelima. D
    Edited by: kishan P on Jan 5, 2012 2:21 PM

    @ Dear Nabheet & Karuna
    The object is not in local folder. I am aware of the process of assigning the object to request manually.
    I want that to be done automatically. I wont prefer writing BDC for this.
    @ Dear Keshav,
    Thank you for the function module. But TR_INSERT_REQUEST_WITH_TASKS will create a tarnsport request with tasks.
    @ Dear All,
    My requirement is to assign the object to Task automatically. Not creating the request or Task. Task & Request are
    present already.

  • Function Module to assign contact person to account

    Hello,
    is there a standard function module which can be used to create the relationship between existing contact persons to an existing account?
    Thank you very much.
    Kind regards
    Manfred

    Hi Manfred,
    The simplest call to that BAPI can be done like this:
    CALL FUNCTION 'BAPI_BUPR_CONTP_CREATE'
      EXPORTING
        businesspartner = <partner_number>
        contactperson   = <contact_person_number>.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    This will connect a business partner with an existing contact person.
    You only need to field the other fields if you want to add more details to that relationship, like default relationship setting, telephone number or email, but that only depends of you purposes.
    Kind regards,
    Garcia

  • Function module for assigned wage types

    Hi experts,
    We need wage type wise count and sum of the amount for each wage type defined in infotype '0008' for the given from and to dates. Is there any function module available for the same.
    Please suggest.
    Regards,
    Kaustubh Kabre.

    Hi,
    <li>I do not look for function module for this case as i know that we can or have to read wage types and corresponding amount in the program. LDB PNP should be given in program attributes.
    REPORT RPABAP06.
    TABLES:PERNR.
    INFOTYPES:0008.
    DATA: BEGIN OF WAGETYPES,
       LGA LIKE P0008-LGA01,
       BET LIKE P0008-BET01,
       ANZ LIKE P0008-ANZ01,
       EIN LIKE P0008-EIN01,
       OPK LIKE P0008-OPK01,
      END OF WAGETYPES.
    DATA:total type P0008-BET01.
    GET PERNR.
    RP_PROVIDE_FROM_LAST P0008 SPACE PN-BEGDA PN-ENDDA.
    DO 20 TIMES VARYING WAGETYPES-LGA FROM P0008-LGA01 NEXT P0008-LGA02
                VARYING WAGETYPES-BET FROM P0008-BET01 NEXT P0008-BET02.
    IF WAGETYPES-LGA IS INITIAL.
    EXIT.
    ELSE.
    TOTAL = TOTAL + WAGETYPES-BET.
    WRITE: / WAGETYPES-LGA, WAGETYPES-BET.
    ENDIF.
    ENDDO.
    WRITE TOTAL.
    Thanks
    Venkat.O

  • Determining How a Function Module Was Called

    I have an RFC-enabled function module which can be invoked from outside of SAP, via an RFC from the JCo, for example, or it can be invoked from another SAP program or function module. I want the RFC-enabled function module to process certain things differently if called from the RFC than if it were called from another program or function module within SAP. Is there an easy way to do, e.g. using something in SYST? Thanks.
    Kevin

    When you make an RFC connection there is a user information passed you can check the terminal that the call is made from but if it's easy or not depends on how the terminals (PC's) in your company are defined.
    Check the ABAP forum for more!

  • Function Module to assign product into Campaign

    Hi All,
    Could you please tell me which FM can be used to assign product to campaign?
    I have already created Campaign programmatically using FM MKT_ELEMENT_CREATE.
    Regards,
    Sagar

    Solved!

  • How to defined/change assigned MW function module in CRMSUBTAB-MOD_NAME

    Hi,
    I need to find the place, where I can configure the field values of MOD_NAME in CRMSUBTAB. I am unable to find anything in R3AS3 for "CPB_STOCK_INFO". There is a function module "CRS_CP_STOCK_EXTRACT" assigned via CRMSUBTAB, which I have to replace by my own function module.
    The values are actually stored in ERP, but as I saw in Program SAPLSMOFCUST (Include LSMOFCUSTFOU), it gets written down by CRM. I don't know how to locate the transaction code, which is using this program otherwise I would have solved my issue :o)
    Thanks for any help!
    Regards,
    Andreas

    I just found the solution! It was just not so obviously as the default function was not displayed. I have opend R3AS3 in CRM, selected "CPB_STOCK_INFO", went to the detail screen in edit mode and opened the popup behind the button of object class. The popup offers you a empty field and allows you to overwrite the SAP default module in the ERP table.
    Regards,
    Andreas

  • Any Function Module/Class to get Program's Package Name??

    Hi Guys,
    Are there any Function Modules/Classes that return the Package name of any given Program?
    I have had a look but have been unable to find any...
    thanks,
    C
    PS POINTS WILL BE REWARDED

    Hi,
    1)u can get Package name from SE93
    go to SE93>give transaction code>display
    2)you can also get from
    go to t-code>system>status>d.click on program name>goto-->attributes
    Thanks
    Ankur Sharma

  • Organisation Assignment Function Module

    Hi Folks,
    Do you know any function module can assign a Business Partner to a position of organisation unit?
    I have tried "RHOM_MAINTAIN_RELATION_BUFF", Seem it doesn't work well for me, though I add a bp to the org unit,I can't see any change in TC: PPOSA_CRM.
    Do I need to  call some function module to execute commit?
    Thanks, heather

    Hi Rob,
    Thank you for your help.
    However, i found my problem that data is not changed is because I didn't save the data from buff to DB, now I found a function module
    RHOM_WRITE_BUFFER_TO_DB, there is still some problem.
    Do you have any idea to save the relationship created to the DB?
    Thanks,
    Heather

  • Transport of ALE Interfaces for Function Module

    hi,
    i have a Z function module, Z business object type and z message type identifying ALE interface.
    i need to move all the objects from Dev R3 to QA R3. What are the steps involved?
    Thanks,
    Tirumal

    Hi
    While creating a Z function module it will ask you for a change request number. attach it to change request and migrate it to Production.
    In case your function group to which you assigned this function module is open then the CTS number will by default come in CTS number field if any exists for the function group. You can now migrate your CTS to production.
    Now after assinging function module to a CTS you can be sure that your program for function module and FM both will be migrated. For confirmation you can now check attribuutes section in your function module. it will list the SAP program associated with Func mod , function group to which function module is assigned , package and include programs which needs to be migrated. So you only need to attach a CTS and migrate your CTS.
    You can create a Change erquest (CTS) in SE01 or SE10 transactions.
    Regards,
    Amit.
    Please reward any help
    Message was edited by: amit bhadauria
    Message was edited by: amit bhadauria

  • Regarding custom Function Module

    Hi Group,
    Could anyone please guide me on a custom Function Module.
    Scenario:
    I have to use this function module to get either active records or inactive records.
    This function module which has yet to be created should have to code to fetch both active records and inactive records. It depends on what user has selected in a report.
    The report has 2 radio buttons in the selection screen. If rb_1 is selected then we have to call this function module and pass all the inactive records.
    And if rb_2 is selected then all the active records should be selected.
    Now I have to code the function module depending on the selection of the radio button. I can keep a flag in the function module and assign it 1 or 2 depending of the selection of the radio button.
    Guys could you guide me on how do I set a flag in such scenario in the function module?
    Like:
    In the Source code of function module.
    If flag = 1.
    select all invalid records
    endif.
    If flag = 2.
    select all valid records.
    endif.
    where should I keep this flag in my function module.
    After setting this how do I call it in the report, depending on the radio button selected and how do I code in my report.
    Hope you will understand this.
    A million thanks in advance.
    Kumar.

    hi,
    in the function module u have to declare "FLAG" as an import parameter. n then while calling this functon module from the report, u should paas a value to this "FLAG" based on the radio button selected.
    tell me if this information was helpful.

Maybe you are looking for

  • Won't detect second screen

    My xorg.conf can be seen here: http://pastebin.com/m25cafd6d My problem is that i can get mergedFB working, but the auto monitor detection always fails and DRI/AIXGL get's disabled. You can see my X log file here: http://pastebin.com/mfc2d2c7 The par

  • Can't get videos to 60GB iPod Video

    So a few days ago, I updated to iTunes 7.0 and Firmware 1.2. All my videos are in an MPEG-4 format, and now I can't get them to my iPod. They all used to play, but I restored it and now they won't even go on to the iPod. I've also got got it set to m

  • Out of Memory Runtime Error

    Hello, I'm new to Java, this is only my third time using the language, and first time writing an applet. What I'm trying to do is create an applet that will plot 2D a set of coordinates based on an input string. Inexplicably, the VM gives an "<<Out o

  • Is it possible to download Adobe TV tutorials to my hard drive?

    Is it possible to download Adobe TV tutorials to my hard drive?

  • Automatic unexpected MB11(561) upon goods receipt - MIGO_GR(101)- Why????

    Hi. Whenever we do & save MIGO_GR(101) for the PO, automatically in background, MB11(561) happens which doubles the stock simply. The MB11-561 documents stamped with same userid/time stamp and same material data. We really do nto expect this MB11(561