Problems when creating data transfer process for  0EC_CPLAN (Compensation )

Hi experts,
I have the infoobject 0EC_CPLAN (Compensation Plan) Active in my BW sistem.
I tri to create data transfer process for text and atributtes for it, but when i do this i get a "Target 0EC_CPLAN (Type IOBJA) is not active" error message.
When i double-click on the texts or attributes i recive an  "Administration function is not possible for this InfoObject" information message and i can not active or edit it.
What could this be? I am breaking my brain.
Thank you all!

Debugging i have seen this:
15         CALL FUNCTION 'RSD_IOBJ_GET'
16           EXPORTING
17             i_iobjnm         = l_iobjnm
18             i_objvers        = rs_c_objvers-active
19             i_bypass_buffer  = rs_c_false
20           IMPORTING
21             e_s_vcha         = l_s_vcha
22           EXCEPTIONS
23             iobj_not_found   = 1
24             illegal_input    = 2
25             bct_comp_invalid = 3
26             OTHERS           = 4.
27         IF sy-subrc <> 0 OR l_s_vcha-infoarea IS INITIAL.
28           MESSAGE i025(rsawbn).
l_s_vcha-infoarea is Initial.
Dues this mean that the object has no-infoarea??? In infoprovider i is under "enterprise compensation management" Does it give you a clue?
Thanks!

Similar Messages

  • Problems when creating a  transfer order for moving storage units

    Hi,
    When creating a TO for moving storage units with FM FU L_TO_CREATE_MOVE_SU i got problems when the storage unit consist of 2 items. The message 'Warehouse number does not exist (new selection required)'
    is displayed. When i use the FM again after this message then the TO is created correctly.
    When i debug the FM for 2 items is see that LEIN-LGNUM is empy en when performing:
    PERFORM T300_LESEN(SAPML03T) USING LEIN-LGNUM. and the message E080 is raised.
    The perform before this is determining the lein-lgnum (PERFORM LENUM_EINL_CHECK(SAPML03T) USING I_LENUM) but this value isnt passed to the calling program the first time (memory or something????)
    Does anyone have a solution for this problem?
    Thx in advance.
    Kind regards,
    John Nijburg

    Hello,
    I had the same problem today and I've fixed it by calling the FM in a different task (asychronous) .. this way the fugr/internal variables will be loaded again and you won't get this stupid error anymore. 
    CALL FUNCTION 'L_TO_CREATE_MOVE_SU' STARTING NEW TASK lv_task
    In case you need it syncronous use PERFORMING clause together with WAIT UNITL
    Hope this helps!
    Cristian

  • Problem while creating data transfer process

    Hi friends
    I am using BI 7.0 version.
    I m getting a problem while creating dtp
    After activating DTP and selecting the execute button, I am getting the following error message:
    Request cannot be processed in its current state
    Messg no : RSBK209
    can anyone help me on this problem
    Thank

    Hi Deepthi,
    Also check the error message(long text) and paste it here...
    check if you are either creating a "second" Delta DTP ( if an existing Delta DTP exists, then system will not allow you create a second DTP) and will throw an "overlapping" error
    Hope this helps
    Thanks
    Kalyan

  • Problems when creating a new parameter for a parametric role

    I'm trying to create a new parameter for a parametric role, but it seems that it is never updated, because the BPM engine does not return any error.
    The scenario is: I have a process that has the role "Brands_Admin", the brands are populated by Web Service dynamically, then the parameters of the role would be those brands. In this case, if a new brand is registered (WS returns a new brand), I simply create a new parameter for the role through the "process administrator" of the BPM Enterprise.
    I'm trying to create the new parameter as follows:
    dirSession                 = DirectorySession.currentEngineSession;
    dirOrganizationalRole       = DirOrganizationalRole.fetch(session : dirSession, id : "Brands_Admin");
    String[] parametricRoles       = dirOrganizationalRole.parametricValues;
    parametricRolesCount      = parametricRoles.length();
    parametricRoles[parametricRolesCount]      = "NEW_BRAND";
    dirOrganizationalRole.parametricValues      = parametricRoles;
    dirOrganizationalRole.update();
    dirOrganizationalRole.refresh();
    for (int i=0; i<dirOrganizationalRole.parametricValues.length(); i++) {
         logMessage(dirOrganizationalRole.parametricValues);
    In the code above, the BPM Studio will print the new parameter correctly, but in next activity (like a Screenflow) when I try to get the parameters of that role again, there are only the parameters that were registered using the BPM Studio, the parameters that are created programmatically not appear.
    Anyone know the reason?
    An user with the same problem: http://forums.tangosol.com/forums/thread.jspa?threadID=839253&tstart=1

    When a project that contains this logic to create a new parameter for a parametric role programmatically is deployed in BPM Enterprise, some strange behaviours occurs.
    The first is that I cannot see through the process administrator the new parameter that was created for the parametric role.
    The second is that if I create this new parameter through process administrator and associate an user to the role that contains the new parameter I cannot access the deployment process. In workspace (authenticated with user that is associated with the role that contains the new parameter) I cannot see anything about the process.

  • Problem when creating Drag Tags Dynamically for Drag & Drop UI element

    In one of my requirement,
    I need to populate the TREE dynamically ( only 2 levels  fixed),
    This TABLE TREE is  drag enabled ( which acts as a Target & Source ) to move records to another table.
    Both tables are created at design time and are having DRAG SOURCE INFO element.
    In Modify View method,  I am trying to ADD  DROP TARGET INFO with tags for the table based on the records.
    Even after assigning it to the table(dynamicallY), it is giving dump as
    There is no DropTargetInfo in the DropOnRowTarget aggregation with this ID
    Here is the code.....
        DATA l_tags TYPE string.
        DATA lo_nd_tgt_ip_end_notes TYPE REF TO if_wd_context_node.
        DATA lt_tgt_ip_end_notes TYPE wd_this->Elements_tgt_ip_end_notes.
        DATA ls_tgt_ip_end_notes TYPE wd_this->Element_tgt_ip_end_notes.
        DATA lr_table TYPE REF TO cl_wd_table.
        DATA l_name TYPE string.
        DATA l_id TYPE string.
        data l_index TYPE string.
      IF first_time = abap_true.
    " reading the context   
    *     navigate from <CONTEXT> to <TGT_IP_END_NOTES> via lead selection
        lo_nd_tgt_ip_end_notes = wd_context->get_child_node( name = wd_this->wdctx_tgt_ip_end_notes ).
        lo_nd_tgt_ip_end_notes->get_static_attributes_table( importing table = lt_tgt_ip_end_notes ).
    " get the reference of the table
        lr_table ?= view->get_element( 'TBL_TGT_IP_ENDNOTES' ).
    "Creating DROP TARGET INFO for all the RECORDS in the Table
        LOOP AT lt_tgt_ip_end_notes INTO ls_tgt_ip_end_notes WHERE parent_key = ''.
            " Tag name & Name of  DROP TARGET INFO
          l_name = ls_tgt_ip_end_notes-ip_number.
          CALL METHOD CL_WD_DROP_TARGET_INFO=>NEW_DROP_TARGET_INFO
            EXPORTING
    *          BIND_ENABLED =
                ENABLED      = 'X'
                 ID           =  |TGT_DROP_TARGET_INFO{ sy-tabix }|   
                 NAME         = l_name
                 SCOPE        = '00'
                 TAGS         = l_name
             RECEIVING
                CONTROL      = lr_dti.
    " binding the DROP TARGET INFO to the TABLE
    CALL METHOD LR_TABLE->SET_DROP_TARGET_INFO
      EXPORTING
        THE_DROP_TARGET_INFO = lr_dti.
        ENDLOOP.
    ENDIF.
    any idea...on this.
    Thanks in Advance,
    Anil Danda
    I apologize for wrong Posting
    I  don't know, how to move this thread, it would be great, if any Moderator can move this thread to Web Dynpro ABAP forum
    Edited by: danda aneel on Mar 10, 2011 6:36 PM

    Hi,
    As far as i know , you need to insert a droptargetinfo only once in the table level not on every row.
    Try to do on design time what you are dynamically doing ? You would not get a chance to to insert a droptragetinfo on every row.

  • Problem in Creating Data type strcuture for Proxies.

    Hello gurus
    My scenario is to send  data from ECC system to SRM system through proxies. we have to fetch's data from source system and post the data to target system through XI.
    Because of massive data coming from source system, I am going for proxy to proxy scenario. What I do not understand is the Data type’s structure.
    This is the structure of  Data type for  sender end
    Can anyone help me to create the data type for the Receiver end(SRM).
    Thanks in advance.
    Regards
    karan

    hello sir
    I have done the config in ESR as-
    Data type, message type, service interface, message mapping, operational mapping as well.
    while transportation, the data filled in sender is shown in receiver  side also.
    sir, i need to know now that do we have to do the configuration in IR as well as
    Receiver determination, Interface determination. sender agreement, receiver agreement as well .
    because ther's no XML created when in go to transaction SXMB_MONI.
    help?
    Thanks
    Regards
    karan

  • Problem when creating standard recipient list for all documents

    Dear All,
    I am facing 'NO_RELATION_EXIST' dump issue. So i am following note 509191 provided by SAP. At the moment i am trying 2nd  option i.e. for automatic document distribution, i am trying to create one standard recipient list for all documents to be released. However when i try creating a recipient list it does not allow me to create for a particular document type. As i can see there are 2 important key fields Document no and Document type. But i want to create only for a document type. The reason for that is this document type is for a PR attachment. So as soon as a PR gets released by the final approver this distribution should happen, irrespective of document number.
    Please let me know if this is possible. I would like to apologize if it's too simple of a question as i am an ABAP person and have no knowledge in DMS. And there is no DMS consultant whom i can approach.
    Thanking in advance.
    Regards,
    Saud

    ...distribution should happen, irrespective of document number...
    This wouldn't be feasible because documents are identified in the recipient list by both,the document number and document type and hence are mandatory inputs.
    Regards,
    Pradeepkumar Haragoldavar

  • Activation of Objects with Type Data Transfer Process

    Hi Experts,
    I am stuck in a problem of activation of DTP. I loaded the data from the Datasource to PSA and there are about 200,000 reocrds.
    Now I wanted to take this load to DSO NEW table ..I have created a DTP and when I try to activate the DTP I get this Error
    Activation of Objects with Type Data Transfer Process
        Internal Activation (Data Transfer Process )
             Post Processing/Checking the Activation for Data Transfer Process DTP_49Z7OSAHFAR9O8335ED6
                  Error when activating Data Transfer Process DTP_49Z7OSAHFAR9O8335ED67X11C.
    I tried to activate the Data source but it still didnt help. Looked in SDN for some related stuff but most of them are talking about going for SP 11 ..we are already on
    *SAP_BW     700     SAPKW70014     *
    Your suggestion will be appreciated with maximum points
    Thanks

    Hello Experts,
    Could you'll please help me out with this ...I
    I deleted the DTP and created back again
    logged out of BW and logged back again
    Infact I found a SAP note 1086877 and i applied it ..but it still didint help
    Whie loading the Master Data from PSA to DTP ..it worked fine.
    While Loading the transactrion data I went to Tcode RSBATCH and in the drop down I selected the DTP activation and gave a 3 Back ground processes....Ever since that it started giving me problem
    Your help will be appreciated...my data loads are stalled ..i mean I cant move forward.
    Thanks

  • Crash in data transfer process, exception cx_rs_step_failed_callstack

    Hi,
    I am having problems with a data transfer process, i am getting the message:
    Extraction datasource Z_WMS_VRM
       Prepare for extraction
       Exceptions in Substep: Extraction Completed
       Processing terminated
    When I click the button behind "Exceptions in Substep" it jumps to a line  with
    CALL METHOD cl_rsbm_log_step=>raise_step_failed_callstack
    in method IF_RSBK_CMD_X~GET_DATAPACKAGE.
    When I look in the PSA(13 records) it all looks ok, no weird values. De infopackage runs ok and fills the PSA. Screenshot of PSA contents: http://i44.tinypic.com/sesqw2.jpg
    The datasource is an external DS filled by powerexchange 4.
    The system's current support pack is 18.
    Edited by: Thijs de Jong on Jun 23, 2009 12:00 PM
    Edited by: Thijs de Jong on Jun 23, 2009 12:11 PM

    Hello Thijs,
    The same issue happened to me this week. This can happen for several reasons:
    - Some parts of the loading line is not active, resp. structures were changed and need to be activated again.
    - There is no more tablespace in the DB.
    - There is a deadlock when reading a table (maybe the table is too big...)
    Hope this helps.
    Cheers,
    Stephan

  • Transporting of Data Transfer Processes fails

    Hi to you all!
    I’ve a problem when transporting DTPs…
    Always the import of a DTP fails in the after-import method RS_DTPA_AFTER_IMPORT with the same error message.
    At the step Post Processing/Checking the Activation for Data Transfer Process <name of DTP> the following error occurs:
    <b>
    PSA table name was blank
    **** Error from PSA ****
    Error when activating Data Transfer Process
    </b>
    So I built a test case with a simple DTP.
    First I successfully transported a simple InfoObject as the source of the DTP.
    Then I successfully transported a simple DataStore-Object as the target of the DTP.
    Next I successfully transported the transformation of the DTP.
    The transport of a DTP still fails with the error message mentioned above.
    I’ve no idea what the error message what to tell me…
    Any suggestions?
    Thanks
    Kai
    PS: I' currently working SP09...

    Steps you followed seems to be correct
    You may wish to check OSS Note 1020231 - 70SP13: UNCAUGHT_EXCEPTION in after import
    Hope it Helps
    Chetan
    @CP..

  • Issues in Data Transfer Process

    Hello All,
    After creating transformation from Infosource to InfoCube, now i am trying to data transfer process.
    In DTP Type it displays "DTP for direct process", but i need DTP type as Standard(Can be scheduled).
    Its giving me an error as "Source does not support direct access"
    Could any one help me to solve this error.
    Thanks in advance
    Regards,
    Nithin

    Hi,
    You can only use the type DTP for Direct Access as the target of the data transfer process for a VirtualProvider.
    Check the below links
    http://help.sap.com/saphelp_nw04s/helpdata/en/42/fa50e40f501a77e10000000a422035/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/42/fb8ed8481e1a61e10000000a422035/frameset.htm
    Regards
    KP
    Edited by: prashanthk on Jan 19, 2011 5:15 PM

  • Block zero quantity when creating Inventory Transfer

    Hi all,
    does anyone know how to block zero quantity when creating inventory transfer?
    for example: I have zero quantity in warehouse A. Then I want to transfer it to warehouse B. The system accept that. So, when I check that item in warehouse A, the in stock column become negative. How I can protect it?
    please help me. it's very urgent.
    thanks
    sisca

    Go to Administration > System Initialization > Document Settings > General Tab
    Check Manage Inventory nu Whse and also check Block negative inventory. Read details below of their functionality.
    Manage inventory by whse
    Defines whether the check is performed for the warehouse selected in the document row. If you select the checkbox, the system checks the minimum inventory level in the warehouse that was selected for the item when the sales document was entered.
    If the transaction causes the inventory level in that warehouse to fall below the minimum inventory level, a warning message appears even if the total available inventory of the item is greater than the minimum warehouse quantity. If you do not select this checkbox, the system checks the total available inventory in all warehouses where this item is stored.
    You can also define automatic notification for a specific user when the inventory level falls below the minimum level. A purchase transaction can then be initiated.
    Block negative inventory
    Select to block documents that would cause the level of inventory to fall below zero. If you deselect the checkbox, the message “Negative inventory usage is not in accordance with accounting rules. Are you sure you want to enable negative inventory usage?”
    If you select Manage inventory by whse and Block negative inventory, SAP Business One calculates the block per warehouse. However, if the item is not handled by a warehouse and you do not select Manage inventory by Whse, the block is calculated for all the warehouses.

  • Is there any documentation for filter routine in Data Transfer Process?

    I am trying to create a filter routine in the Data Transfer Process to select different billing types depending on what date the Data Transfer Process is running....
    I have searched through SDN and found some examples, but some formal documentation would help.
    Is there any documention on filtering in a Data Transfer Process using a routine?
    I am in 7.0

    data: l_dow TYPE I,
          L_S_RANGE TYPE rssdlrange.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'F2'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'G2'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'L2'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZCDD'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZCDI'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZCR1'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZCR2'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZDR1'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZEDI'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZMD'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZRE'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZRE1'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZRED'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZSMP'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZUSD'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZUSI'.
    APPEND L_S_RANGE TO l_t_range.
    CALL FUNCTION 'DATE_COMPUTE_DAY'
      EXPORTING
        date = sy-datum
      IMPORTING
        day = L_DOW.
    IF l_Dow EQ 5.
      l_s_range-iobjnm = '0BILL_TYPE'.
      l_S_range-fieldname = 'BILL_TYPE'.
      l_S_range-sign = 'I'.
      l_S_range-option = 'EQ'.
      l_S_range-low = 'S1'.
      APPEND L_S_RANGE TO l_t_range.
      l_s_range-iobjnm = '0BILL_TYPE'.
      l_S_range-fieldname = 'BILL_TYPE'.
      l_S_range-sign = 'I'.
      l_S_range-option = 'EQ'.
      l_S_range-low = 'S2'.
      APPEND L_S_RANGE TO l_t_range.
    ENDIF.

  • Need for Data Transfer process

    Hello Friends
    While loading data from ODS to InfoCube, do I really need to create a data transfer process or is there a way that the data loaded into ODS can be subsequently loaded into the cube after undergoing the transformation. If yes, please let me know how we can do that.
    Thanks and Regards
    Rishi

    Hi,
    Refer.
    DTP
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/f98e07cc483255e10000000a1553f7/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/fb8ed8481e1a61e10000000a422035/frameset.htm
    Thanks,
    JituK

  • Errors in data transfer process

    Hi,
      i'm getting "Errors in data transfer process" message when i try to run conntrans. when i see the detials error log in trouble shooting ( in client console), i get this following message in detials ( see the bold letters). can some one help me. i have check all the connections between mobile and CRM server. will reward points!!!
    2324       96c                               ! Entering 'PullMessages' for queue 'CRM_SITE_000000000000274' / limit 20 messages
    2324       96c      Fri Aug 24 20:28:22 2007 E
      NewTransferService - _TransferPullMessages : <b>DotNet Stub.TransferPullMessages call failed with fffffffa:</b>(null)
    2324       96c                               E
      _TransferPullMessages failed with fffffffa
    2324       96c      Fri Aug 24 20:28:23 2007 E
    regards
    Kamalesh K.V

    Hi,
    We have installed MSA 4.0 (SP12 ). we have also checked QMT config in Mobile sales bin folder. The test connection is sucessfull.( see the below message). we stil have problems in Data transfer when we run connstrans. Please help .
    <b>" NewQmtCnfg Version 2.0 for Windows 2000 - revision  4003
    Assume running on Client
    1. Try to access Communication Station 'MTV01sdCR02', please wait...
    ... OK
       Try QmtServer component initialize check, please wait...
    ...OK: QmtServer initialize call returns successfully
    2. Try to access CRM Server (Destination '<DEFAULT>'), please wait...
    ...OK: CRM Server call returns successfully</b>
    regards
    Kamalesh KV

Maybe you are looking for