Assign components to TaskLists

Dear all,
I need to assign components (materials) to task lists.
The task list is for an equipment that is assign to a Maintenance Planning Plant.
When i put some materials into the task list (button "Component") the system tells me that the material xxxx is not assing to Plant sssss.
The material also need to be extended to the Maintenance Planning Plant? The Plant and the Maintenance Planning Plant has diferent codes definition.
The Plant is assigned to the Maintenance Planning Plant.
Many Thanks,
Duarte

Hi
Check the material is at Plant level. I dont think the material exist...
You need to maintain the material at plant level not at maintenance plant level...
Ex : The material is not only used by maintenance dept, it has many depts like production, pump house, etc
- Pithan

Similar Messages

  • Assigning Components to Operations in Maintenance Orders

    Dear Masters,
    I want to assign the component reservation to the operation number in the maintenance order (i.e., In a breakdown order if I reserve a material component it should ask me for the operation number to which I want to link it to). Can anybody help me with this?
    Please do help its a bit urgent. Thanks in advance.
    Chin2

    Hi Pushpa,
    Thanks for taking time to reply to my question. I thinking you might be laughing at this stupid question of mine but sometimes the mind stops working.
    Thanks once again.
    Chin2

  • Lsmw, butch input  RCPTRA01 , assignment of components to routings

    hi experts
    I use "LSMW" with the method "butch input", the subject : routing "RCPTRA01" for the assignment of components to the existing routings, but when I execute my butch input, the system forces me to create a new routing then it will assign the components. but what I want is to assign components to the routings that are already created
    you have proposals please

    try batch input instead of butch input.
    RCPTRA01 is used for creation as you can read in the docu: Data Transfer of Task Lists from External Systems
    You are actually looking for changing existing data, so RCPTRA02 should be more suitable. A lot details can be found in this old discussion Creating Routings via LSMW

  • Business Components not available while using Model Configurator in ID

    Hi,
    In ESR:
    I created a ProcessIntegrationScenario PIS_myScenario (and completed with sender and receiver components, actions etc)
    In ID:
    I created and activated two BusinessComponents: BC_A and BC_B
    I created a new Configuration Scenario: CS_Test, and selected Type of ES Repository Model:"Process Integration Scenario".
    and launched "Model Configurator".
    Now in the step "Assign Components" i see a tab "Assign Business System Components for A2A Configuration" , in that for "Communication Component" value, when i tried to select from the value list, it is only showing the Business Systems and not the Business Components BC_A and BC_B.
    By using the "Model Configurator" how can we create scenarios using the "Business Components" instead of "Business Systems".
    as i am trying the test scenarios, i want to use Business Components, i.e business services in earlier versions.
    I also opened the Business Components BC_A and BC_B and added the corresponding inbound and outbound service interfaces in the receiver and sender tabs.
    after that also, the Business Components are not visible for selecting from within Model configurator.
    let us know if its possible

    thanks abhishek for your reply.
    as mentioned in the reference link given by you, i edited the Process Integration Scenario in ESR, i ticked the checkbox "External Party with B2B Communication", and activated.
    In ID, in Model configurator, i can now see and select the Business Components BS_A and BS_B.
    but when i try to generate the configuration objects, it says: Not Configurable: Component view only contains external application components.
    so cannot proceed with Model configurator with Business components, in my scenario.
    seems i need to use only Business Systems.

  • "Component Assignment Incomplete" while Apply Model from ESR

    Hi all,
    I am trying to configure a scenario by using Model Configurator with Tools->Apply Model from ESR.
    My Process integration scenaro is : PAYE_EOY_GB which belongs to the swcv "E-FILING GB 1.0" whose content imported from ESR content available on sap marketplace.
    I am trying to configure the scenaro.
    The sender is a Business System "Sys_MyECC" which represents SAP ECC.
    The reciever is UK govt gateway.. for which i created a party with the name "GovernmentGateway" and a Communication Component "GG_submission" within the party.
    When i am in the model configurator, in the step 2 Assign Components, when i am selecting the sender Component as Sys_MyECC,  it is giving the popup message:
    Component Assignment Incomplete :
    Each business component must be assigned a business system component. Incomplete assignments exist; these can be removed automatically.
    What does this message is trying to convey.
    thanks in advance,
    Madhu_1980.

    Besides having a Business System, you need a Business system Service to have a B2B communication
    I did not get what exaclty the Business system Service means.
    for the sender, we have SAP ECC, the scenario will be triggered using sproxy communication.
    so, we created a Business System representing the ECC server.
    the "Bysiness system service" means.. does it also represent ECC server, in pi 7.1, if we create Business Component, how we can link the Business Component with the Business system.

  • Assignment of component to an operation in routing

    dear gurus,
    By default all components of a BOM are assigned to the 1st operation in the routing. If we assign the component to other operation will the default assignment get cancelled or not? If not how to cancel the assignment of a component to an operation?
    Reply will be rewarded.
    Thanks and Regards,
    Jejesh

    Hi jejesh,
    By default all the un assigned components will be assigned to the 1st operation on the routing. 
    You can change the assigned components from one operation to another operation also. Use the button
    "Re Assign " in the component overview screen of the Routing.
    Regards
    Krishna

  • CN01 assign Material Component to internal activity

    Hello gurus;
    In transaction CN01 / CN02 can I assign only one Material Component to internal activity without Bill of Material (BOM)?
    It is possible? How can i do?
    Best regards,
    Mariano

    Virendra;
    Thanks for your response.
    I saw the SAP Help portal in [http://help.sap.com/saphelp_46c/helpdata/es/4c/227a7746e611d189470000e829fbbd/frameset.htm]
    and I must use a Bill of Material to assign material component. There is no other choice
    This is the point where I disagree with SAP, cause the client says that they use Operational Networks, cause it's more simple to assign components to activities.
    Best regards.
    Mariano

  • Assigning field symbol

    I want to assign member area of several fields to a <fs>. For example,
    TYPES: BEGIN OF ty_ex,
        header TYPE char150,
        item1   TYPE char20,
        value1  TYPE i,
        item2   TYPE char20,
        value2  TYPE i,
    END OF ty_ex,
    BEGIN OF ty_item,
        item TYPE char20,
        value TYPE i,
    END OF ty_item.
    DATA:
         l_ex TYPE ty_ex.
    FIELD-SYMBOLS <item> TYPE ty_item.
    I want to make <item> points to l_ex-item1 and l_ex-value1.
    In abap, we can use 'ASSIGN dobj[+off][(len)] TO <fs>'. But in my case, the header is char150 long which exceeds to limit of (off + len) 131.
    Please advice. Thanks.

    Hi,
    Please check these links....
    [Basic form of assign statement|http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb38d5358411d1829f0000e829fbfe/content.htm]
    [Assigning components of a structure to a field symbol|http://help.sap.com/saphelp_nw04/Helpdata/EN/fc/eb3923358411d1829f0000e829fbfe/content.htm]
    Hope this would help you.
    Good luck
    Narin

  • Sales Ord assignment on Prod Ord component

    Experts,
    I have a situation, where in a previously created MTO Sales Order had its receipts deleted & now I want to create a manual production order with the Sales Order assignment (CO08). When I add a component & try to make it Sales Ord assigned, it works fine as long as the component's material master carries a 1 or a blank indicator on the MRP 4 Ind/Coll field. If its collective, system does not accept the SO entry on the Prodn Ord.
    However, when I try to create a Prod Ord (CO01), no matter what, the system does not allow me to enter a Sales Order on any component. Is it possible to influence this behavior some way?
    Thanks

    Andy,
    ??  What behavior do you seek? 
    CO01 creates a production order without reference to a sales order.  It would make no sense to assign components to a sales order, and this is not supported.This behavior cannot be altered in standard SAP.  Sales orders are irrelevant.
    CO08 creates a production order with reference to a sales order.  Components' assignment is dependent on the settings in the Material Master of the component.  This behavior cannot be altered in standard.SAP. 
    What behavior do your seek?
    Best regards,
    DB49

  • Components of a product are not visible in service order

    Hi all,
    I have created a product and assigned various other products as components to it. For e.g i have created a refrigirator and assigned components such as compressor etc. But after i assign the product while creating service order , i am not able to see the components. For e.g i can only see refrigirator and not compressor.
    I want even the components to be visible in the transaction Can anyone help me in doing that?
    Regards,
    Madhu.

    Hi Madhu,
    My Understanding:
    1. When you enter the main/header product in the item details, the item catefory for the header product gets determined.
    2. Your components can also be seen below as sub-items automatically, but the item category is not determined.
    Tell me if my understanding is correct.
    If Yes, u need to maintain the item category determination for the sub-items or components as well.
    Transaction Type: Put the service order transaction type
    Item Category Group: Check the item category group of your component product in COMMPR01 (Material tab/ Sales and Distribution Tab)
    Item Category Usage: Leave it Blank
    Main Item Category: Put the header product item category
    Item category: Put the desired item category here.
    Also ensure that in the customizing of the header item category, u have maintained the Structure Scope as A- Single Level Explosion of Structured Products.
    Regards,
    Shalini Chauhan

  • Error while Saving Service Sales order.

    Hi..
    Please help me for resolving below error..
    While saving service sales order error is coming as-
    Invalid account assignment category...
    Detailed Error-
    "Assign components to a/c assignment category & Account Assigmnet Category not defined.
    In customisining a/c assgnment cate for ser & mainta order .In standard define the following values for the order category 30.A/c Asd type general F,
    A/c *** type Project Q,A/c assigment type Sales Order E,Sales Doc Project D".
    Awaiting for your inputs....
    Thanks
    Manoj Mahajan

    Hi Manoj,
    Account Key assigned to the pricing condition hasn't been configured completely.
    Please check the appropriate account key and speak to your FI team.
    Pl award me points if it is helpful.
    Let me know if you need more details.
    Thanks,
    Ramesh

  • DS Enhancement issue

    Hi,
       I have enhnaced my LO DS with custom fields. Do I need to write exit to see the fields (not data) in RSA3? I dont want to see the data for the newly added fields, but I would like to see the fields in RSA3 columns?? Please suggest.

    HI,
    for LO we add fields to communication structure as append structure then bring those fields into ur extract structure from comm structure in LBWE , by default for those fields hide and field only check boxes will be checked un select those and activate ur data source then those fields will appear in ur data source.
    steps for data source enhancement.
    You need to follow these steps
    1) goto R/3 SE11 give comm structure name.
    2) u will get ur comm structuter then u can see the append structure at the top left click onit
    3) enter the NEW field starting with "ZXXXXX"
    4) goto LBWE bringe those fields from comm stru to extract struc.
    5) Save it
    6) Go to Cmod and then create a project
    7) the assign components as EXIT_SAPLRSAP_002 (for trasaction data)
    8) Go inside the include and write a code to fill the values to ur NEW field from the table u wnat move
    9) save the code and activate it
    10) Go to RSA3 and test the extractor
    11) check ur NEW field is there or not (if u dont find ur field go to rsa6 adn double click ur DS and then see that there is a HIDE mark i schecked or not)
    12) if everything looks fine from R3 side
    14) then Replicate the data source in BW
    15) u will find the new fild in the Trasfer structure
    16)assign to the IO which u want to mapp.. adn Activate it
    17) Add a new IO in Cube
    18) check all ur Update rules to map to fill the new IO from R3
    19) The Load the data to Cube
    assign points if it helps,
    thanks,
    pavan.

  • Remote Client copy issues

    Hi,
    I have performed a remoted client copy of ECP300 to ECQ system using
    SAP_ALL Profile and the client copied successfully. After the client
    copy some users are complainting that not all data moved over or there
    are some major differences. I know the client copy finished but the
    users are saying the client copy is not a exact copy of ECP.Are there
    any functional or abap post configuration that needs to happen after
    this remote client copy? From the client copy logs, it seem like all
    the tables got copied over. Please advise as this is very critical.
    I have attached 2 issues reported by users and the client copy log with
    details. I have also attached the data dictionary differences of the 2
    system ECP and ECQ using SCC9 --> RFC SYSTEM COMPARISON.
    Target Client                220
    Source Client (incl. Auth.)  265
       Source Client User Master 265
    Copy Type                    Local Copy
    Profile                      SAP_ALL
    Status                       Successfully Completed
    User                         SAP*
    Start on                     01/07/2011 / 23:16:01
    Last Entry on                01/08/2011 / 03:53:31
    Statistics for this Run
    - No. of Tables                  56787 of     56787
    - Number of Exceptions               1
    - Deleted Lines                  11478
    - Copied Lines               152345539
    /ISDFPS/CS_EXLST     Field Missing Remote     IS-DFS-MM     /ISDFPS/MM_CS     SAP     TRANSP          Exception List: Overwritten Purchase Requisitions     SAPKGED04G
    /SAPMP/GT_FDE_T1     Table Missing Remote     IS-MP     /SAPMP/FAST_DATA_ENTRY_GEN_APP     SAP     TRANSP          IMG: Fast Entry in Trading Contract General Settings     SAPK-603DDINECCDIMP
    /SAPMP/GT_FDE_T2     Table Missing Remote     IS-MP     /SAPMP/FAST_DATA_ENTRY_GEN_APP     SAP     TRANSP          Fast Entry in Trading Contract: Transfer from Info Record     SAPK-603DDINECCDIMP
    AD01DLI     Field Missing Remote     PS-REV     AD01     SAP     TRANSP          Dynamic items (DI)     
    ADPIC_MIGO_SET     Table Missing Remote     IS-AD-MPN     ADPIC     SAP     TRANSP          Customizing Settings for MIGO     SAPK-603DDINECCDIMP
    ADPIC_MIGO_USR     Table Missing Remote     IS-AD-MPN     ADPIC     SAP     TRANSP          Customizing Settings for MIGO     SAPK-603DDINECCDIMP
    MPDCD     Field Missing Remote     IS-AD-MPD     AD_MPD     SAP     TRANSP          MPD: OBSOLETE - Counter Data for Maintenance Document Items     SAPK-603DDINECCDIMP
    MPDCUST_DATA_FLG     Table Missing Remote     IS-AD-MPD     AD_MPD     SAP     TRANSP          Customising table to store the data container flag     SAPK-603DDINECCDIMP
    MPDCUST_EFFT_DOC     Table Missing Remote     IS-AD-MPD     AD_MPD     SAP     TRANSP          Customising table to store effectivity data for documents     SAPK-603DDINECCDIMP
    MPDCUST_EFFT_TO     Table Missing Remote     IS-AD-MPD     AD_MPD     SAP     TRANSP          Cust. table to store effectivity data from technical objects     SAPK-603DDINECCDIMP
    MPDCYCLE     Table Missing Remote     IS-AD-MPD     AD_MPD     SAP     TRANSP          MPD: Cycle Data for Maintenance Document Items     SAPK-603DDINECCDIMP
    MPDEFFECT     Table Missing Remote     IS-AD-MPD     AD_MPD     SAP     TRANSP          MPD effectivity data     SAPK-603DDINECCDIMP
    MPDITEM     Table Missing Remote     IS-AD-MPD     AD_MPD     SAP     TRANSP          Maintenance Plan Items     SAPK-603DDINECCDIMP
    MPDPSD     Field Missing Remote     IS-AD-MPD     AD_MPD     SAP     TRANSP          MPD: MPD and MP header data     SAPK-603DDINECCDIMP
    ADMPN_RBA_CGRP     Table Missing Remote     IS-AD-MPN     AD_MPN_RBA_DDIC     SAP     TRANSP          Check Groups for APO ATP     SAPK-603DDINECCDIMP
    TMCNV     Convertible -> Local     CA-GTF-TS     BMG     SAP     TRANSP          Data on Material Numbers Conversion     
    CRFH     Field Missing Remote     PP-BD-PRT     CF     SAP     TRANSP          CIM production resource/tool master data     
    CKIS     Field Missing Remote     CO-PC-PCP     CK     SAP     TRANSP          Items Unit Costing/Itemization Product Costing     
    KALM     Field Missing Remote     CO-PC-PCP     CK     SAP     TRANSP          Costing Run: Costing Objects     
    KEKO     Field Missing Remote     CO-PC-PCP     CK     SAP     TRANSP          Product Costing - Header Data     
    MLCR     Field Missing Remote     CO-PC-ACT     CKML     SAP     TRANSP          Material Ledger Document: Currencies and Values     
    VSAFKO_CN     Field Missing Remote     PS-SIM     CNVS     SAP     TRANSP          Version: Order header data for PP orders     
    VSAFPO_CN     Field Missing Remote     PS-SIM     CNVS     SAP     TRANSP          Version: Order items in PP orders     
    VSAFVC_CN     Field Missing Remote     PS-SIM     CNVS     SAP     TRANSP          Version: Operation in order     
    VSAUFK_CN     Field Missing Remote     PS-SIM     CNVS     SAP     TRANSP          Version: Order master data     SAPK-603DDINSAPAPPL
    VSFPLT_CN     Field Missing Remote     PS-SIM     CNVS     SAP     TRANSP          Version: Billing schedule: Dates     
    VSPLAF_CN     Field Missing Remote     PS-SIM     CNVS     SAP     TRANSP          Version: Planned order     
    VSRESB_CN     Field Missing Remote     PS-SIM     CNVS     SAP     TRANSP          Version: Reservation/Dependent requirements     
    VSRSADD_CN     Field Missing Remote     PS-SIM     CNVS     SAP     TRANSP          Version: Additional fields for reservation     
    VSVBAK_CN     Field Missing Remote     PS-SIM     CNVS     SAP     TRANSP          Version: Sales document: Header data     
    VSVBAP_CN     Field Missing Remote     PS-SIM     CNVS     SAP     TRANSP          Version: Sales document: Item data     
    RSADD     Field Missing Remote     PS-MAT     CN_MAT     SAP     TRANSP          Additional fields for reservation     
    TCNTM05     Field Missing Remote     PS-ST-OPR-NET     CN_NET_OPR     SAP     TRANSP          Assignment Components to Groups     
    AFKO     Field Missing Remote     PP-SFC     CO     SAP     TRANSP          Order header data PP orders     
    AFPO     Field Missing Remote     PP-SFC     CO     SAP     TRANSP          Order item     
    AFVC     Field Missing Remote     PP-SFC     CO     SAP     TRANSP          Operation within an order     SAPK-603DDINSAPAPPL
    AFFW     Field Missing Remote     PP-SFC-EXE-CON     CORU     SAP     TRANSP          Goods Movements with Errors from Confirmations     
    AFRU     Field Missing Remote     PP-SFC-EXE-CON     CORU     SAP     TRANSP          Order Confirmations     SAPK-603DDINSAPAPPL
    AFRV     Field Missing Remote     PP-SFC-EXE-CON     CORU     SAP     TRANSP          Confirmation pool     
    PLPO     Field Missing Remote     PP-BD-RTG     CP     SAP     TRANSP          Task list - operation/activity     
    STPO     Field Missing Remote     LO-MD-BOM     CS     SAP     TRANSP          BOM item     
    T414     Field Missing Remote     LO-MD-BOM     CS     SAP     TRANSP          Explosion Types     
    CJITO_02     Table Missing Remote     IS-A-JIT     DI_JITOUT     SAP     TRANSP          Customizing Table for Definition of Tolerances     SAPK-603DDINECCDIMP
    CJITO_02T     Table Missing Remote     IS-A-JIT     DI_JITOUT     SAP     TRANSP          Text Table to Define the Tolerances     SAPK-603DDINECCDIMP
    JITOCO     Field Missing Remote     IS-A-JIT     DI_JITOUT     SAP     TRANSP          Call Components JIT Outbound     SAPK-603DDINECCDIMP
    S2L_GLOBAL_DATA     Field Missing Remote     IS-A-S2L     DI_S2L     SAP     TRANSP          User-specific Save for Global Settings     SAPK-603DDINECCDIMP
    LFA1     Field Missing Remote     FI     FBASCORE     SAP     TRANSP          Vendor Master (General Section)     
    KNKK     Field Missing Remote     FI-AR-AR     FBD     SAP     TRANSP          Customer master credit management: Control area data     
    VIMI01     Field Missing Remote     RE     FVVI     SAP     TRANSP          Rental unit - Master data     
    VIOB01     Field Missing Remote     RE     FVVI     SAP     TRANSP          Business entities     
    VIOB02     Field Missing Remote     RE     FVVI     SAP     TRANSP          Property master data     
    VIOB03     Field Missing Remote     RE     FVVI     SAP     TRANSP          Real estate building master     
    VIOB27     Field Missing Remote     RE     FVVI     SAP     TRANSP          Relationship between properties and buildings     
    VIOB38     Field Missing Remote     RE     FVVI     SAP     TRANSP          Relationship between Real Estate objects and SAP-PS     
    PEG_TXPT     Field Missing Remote     IS-AD-GPD     GPD     SAP     TRANSP          Pegging: Record of intransit stock in cross plant transfers     SAPKGES01G
    VEKP     Field Missing Remote     LO-HU-BF     HANDLING_UNITS     SAP     TRANSP          Handling Unit - Header Table     
    EQUI     Field Missing Remote     PM-EQM-EQ     IEQM     SAP     TRANSP          Equipment master data     SAPK-603DDINSAPAPPL
    EQUZ     Field Missing Remote     PM-EQM-EQ     IEQM     SAP     TRANSP          Equipment time segment     
    MHIO     Field Missing Remote     PM-PRM-TL     IPRM     SAP     TRANSP          Call Object from Maintenance Order     
    MHIS     Field Missing Remote     PM-PRM-TL     IPRM     SAP     TRANSP          Maintenance plan history     
    EQBS     Field Missing Remote     LO-MD-SN     IQSM     SAP     TRANSP          Serial Number Stock Segment     
    OBJK     Field Missing Remote     LO-MD-SN     IQSM     SAP     TRANSP          Plant Maintenance Object List     SAPK-603DDINSAPAPPL
    SER01     Field Missing Remote     LO-MD-SN     IQSM     SAP     TRANSP          Document Header for Serial Numbers for Delivery     
    SER02     Field Missing Remote     LO-MD-SN     IQSM     SAP     TRANSP          Document Header for Serial Nos for Maint.Contract (SD Order)     
    T377X     Field Missing Remote     LO-MD-SN     IQSM     SAP     TRANSP          Documents Allowed for Serial Number Management     
    CJIT01     Field Missing Remote     IS-A-JIT     ISAUTO_JIT     SAP     TRANSP          JIT: Call Control     SAPK-603DDINECCDIMP
    VLCADDCUST     Table Missing Remote     IS-A-VMS     ISAUTO_VLC     SAP     TRANSP          VELO: Table for VMS additional end customer     SAPK-603DDINECCDIMP
    AFIH     Field Missing Remote     PM-WOC-MO     IWO1     SAP     TRANSP          Maintenance order header     
    AUFM     Field Missing Remote     PM-WOC-MO     IWO1     SAP     TRANSP          Goods movements for order     
    AUFK     Field Missing Remote     CO-OM-OPA     KAUF     SAP     TRANSP          Order master data     SAPK-603DDINSAPAPPL
    CEZP     Field Missing Remote     CO-PC-OBJ-PER     KKPK     SAP     TRANSP          Reporting Points Line Items     
    CPZP     Field Missing Remote     CO-PC-OBJ-PER     KKPK     SAP     TRANSP          Reporting Points - Periodic Totals Values     
    PABHD     Field Missing Remote     PP-KAB     LAPA     SAP     TRANSP          JIT call header record     
    PABIT     Field Missing Remote     PP-KAB     LAPA     SAP     TRANSP          JIT call items     
    LTAK     Field Missing Remote     LE-WM     LVS     SAP     TRANSP          WM transfer order header     
    ASMD     Field Missing Remote     MM-SRV     MASB     SAP     TRANSP          Service Master: Basic Data     
    CHVW     Field Missing Remote     MM-IM     MB     SAP     TRANSP          Table CHVW for Batch Where-Used List     
    ISEG     Field Missing Remote     MM-IM     MB     SAP     TRANSP          Physical Inventory Document Items     
    MKPF     Field Missing Remote     MM-IM     MB     SAP     TRANSP          Header: Material Document     
    MSEG     Field Missing Remote     MM-IM     MB     SAP     TRANSP          Document Segment: Material     
    RESB     Field Missing Remote     MM-IM     MB     SAP     TRANSP          Reservation/dependent requirements     SAPK-603DDINSAPAPPL
    MCIPMIS     Field Missing Remote     PM-IS-REP     MCI     SAP     TRANSP          PMIS: Master data characteristics for PMIS before image     
    MDTB     Field Missing Remote     PP-MRP-BD     MD     SAP     TRANSP          MRP Table     
    PLAF     Field Missing Remote     PP-MRP-BD     MD     SAP     TRANSP          Planned order     
    PKHD     Field Missing Remote     PP-KAB     MD05     SAP     TRANSP          Control Cycle     SAPK-603DDINSAPAPPL
    TPK02     Field Missing Remote     PP-KAB     MD05     SAP     TRANSP          Key for Controlling Control Cycle: External Replenishment     SAPK-603DDINSAPAPPL
    T459K     Field Missing Remote     PP-MP-DEM     MDPB     SAP     TRANSP          Control table for customer requirements     
    EBAN     Field Missing Remote     MM-PUR     ME     SAP     TRANSP          Purchase Requisition     SAPK-603DDINSAPAPPL
    EKBE     Field Missing Remote     MM-PUR     ME     SAP     TRANSP          History per Purchasing Document     
    EKBEH     Field Missing Remote     MM-PUR     ME     SAP     TRANSP          Removed PO History Records     
    EKEK     Field Missing Remote     MM-PUR     ME     SAP     TRANSP          Header Data for Scheduling Agreement Releases     
    EKES     Field Missing Remote     MM-PUR     ME     SAP     TRANSP          Vendor Confirmations     
    EKET     Field Missing Remote     MM-PUR     ME     SAP     TRANSP          Scheduling Agreement Schedule Lines     
    EKKO     Field Missing Remote     MM-PUR     ME     SAP     TRANSP          Purchasing Document Header     
    EKPO     Field Missing Remote     MM-PUR     ME     SAP     TRANSP          Purchasing Document Item     
    EKRS     Field Missing Remote     MM-PUR     ME     SAP     TRANSP          ERS Procedure: Goods (Merchandise) Movements to be Invoiced     
    MARA     Field Missing Remote     LO-MD-MM     MG     SAP     TRANSP          General Material Data     
    MARC     Field Missing Remote     LO-MD-MM     MG     SAP     TRANSP          Plant Data for Material     SAPK-603DDINSAPAPPL
    MARM     Field Missing Remote     LO-MD-MM     MG     SAP     TRANSP          Units of Measure for Material     
    MCH1     Field Missing Remote     LO-MD-MM     MG     SAP     TRANSP          Batches (if Batch Management Cross-Plant)     
    MCHA     Field Missing Remote     LO-MD-MM     MG     SAP     TRANSP          Batches     
    MVKE     Field Missing Remote     LO-MD-MM     MG     SAP     TRANSP          Sales Data for Material     
    T130F     Field Missing Remote     LO-MD-MM     MG     SAP     TRANSP          Field attributes     
    T134     Field Missing Remote     LO-MD-MM     MG     SAP     TRANSP          Material Types     
    MVRA     Field Missing Remote     LO-MD-MM     MGVERS     SAP     TRANSP          Cross-version fields for MARA     SAPKGES01G
    MVRC     Field Missing Remote     LO-MD-MM     MGVERS     SAP     TRANSP          Cross-version fields for MARC     SAPKGES01G
    MVRM     Field Missing Remote     LO-MD-MM     MGVERS     SAP     TRANSP          Units of Measure for Material     SAPKGES01G
    MVVE     Field Missing Remote     LO-MD-MM     MGVERS     SAP     TRANSP          Sales Data for Material     SAPKGES01G
    MILL_T399X     Field Missing Remote     IS-MP-PP     MILL_PP     SAP     TRANSP          Parameters for Partitioning Order - Order Type     SAPK-603DDINECCDIMP
    ESLH     Field Missing Remote     MM-SRV     ML     SAP     TRANSP          Service Package Header Data     
    ESLL     Field Missing Remote     MM-SRV     ML     SAP     TRANSP          Lines of Service Package     
    RSEG     Field Missing Remote     MM-IV     MRM     SAP     TRANSP          Document Item: Incoming Invoice     SAPK-603DDINSAPAPPL
    ADRC     Field Missing Remote     BC-SRV-ADR     SZAD     SAP     TRANSP          Addresses (Business Address Services)     
    VBAK     Field Missing Remote     SD-SLS     VA     SAP     TRANSP          Sales Document: Header Data     SAPK-603DDINSAPAPPL
    VBAP     Field Missing Remote     SD-SLS     VA     SAP     TRANSP          Sales Document: Item Data     SAPK-603DDINSAPAPPL
    VBEP     Field Missing Remote     SD-SLS     VA     SAP     TRANSP          Sales Document: Schedule Line Data     
    VBKD     Field Missing Remote     SD-SLS     VA     SAP     TRANSP          Sales Document: Business Data     SAPK-603DDINSAPAPPL
    CHVW_INC     Field Missing Remote     LO-BM     VB     SAP     TRANSP          Batch Where-Used List- N:M Assignment for Order     
    VBRK     Field Missing Remote     SD-BIL     VF     SAP     TRANSP          Billing Document: Header Data     SAPK-603DDINSAPAPPL
    VBRP     Field Missing Remote     SD-BIL     VF     SAP     TRANSP          Billing Document: Item Data     SAPK-603DDINSAPAPPL
    KONDH     Field Missing Remote     SD-MD-CM     VKON     SAP     TRANSP          Conditions: Batch Strategy - Data Division     
    LIKP     Field Missing Remote     LE-SHP     VL     SAP     TRANSP          SD Document: Delivery Header Data     SAPK-603DDINSAPAPPL
    LIPS     Field Missing Remote     LE-SHP     VL     SAP     TRANSP          SD document: Delivery: Item data     SAPK-603DDINSAPAPPL
    VALW     Field Missing Remote     LE-SHP     VL     SAP     TRANSP          Delivery Plan: Definition of Route Schedule     
    KNVV     Field Missing Remote     LO-MD-BP-CM     VS     SAP     TRANSP          Customer Master Sales Data     
    KNA1     Field Missing Remote     LO-MD-BP-CM     VSCORE     SAP     TRANSP          General Data in Customer Master     
    FPLA     Field Missing Remote     SD-BF     VZ     SAP     TRANSP          Billing Plan     
    FPLT     Field Missing Remote     SD-BF     VZ     SAP     TRANSP          Billing Plan: Dates     
    TFPLT     Field Missing Remote     SD-BF     VZ     SAP     TRANSP          Date Type for Billing Plan Type     
    VBSK     Field Missing Remote     SD-BF     VZ     SAP     TRANSP          Collective Processing for a Sales Document Header     
    VBUK     Field Missing Remote     SD-BF     VZ     SAP     TRANSP          Sales Document: Header Status and Administrative Data     
    VBUP     Field Missing Remote     SD-BF     VZ     SAP     TRANSP          Sales Document: Item Status     
    WBHI     Field Missing Remote     LO     WB2B_DDIC     SAP     TRANSP          Trading Contract: Item Data     
    LFM1     Field Missing Remote     LO-MD-BP-VM     WLIF     SAP     TRANSP          Vendor master record purchasing organization data     
    LFM2     Field Missing Remote     LO-MD-BP-VM     WLIF     SAP     TRANSP          Vendor Master Record: Purchasing Data     
    ZPPWRKMAP     Convertible -> Local     BC     ZDEV     PTANAKI     TRANSP          PP-012: Work Center Mapping     ECDK901192

    Hi,
    What is the volume of data you copied. Also have you followed the best practice of minimal/no activity in the source client.
    The dictionary differences seems to be becuase of some SPs not applied in your ECP system yet
    Regards,
    Sanujit

  • Solution manager maintenance optimizer

    Hi all,
    I have what I think is an issue, and hoping someone could possibly point me in the direction to correct. I have setup our solution manager system and trying to get the maintenance optimizer option working fully. I have a java system that I pull the information from SLD perfectly fine, and it lists all installed software components via SMSY>SYSTEMS perfectly. I have assigned logical components etc. I can create a new maintenance optimizer transaction, select the proper system with assigned components, but when it lists the files to be downloaded automatically I expect to see alot more files available for download than it lists for me. I assume I am missing something, but not sure where to look.
    Would anyone be able to possibly point me in the right direction on what I might be missing?
    Regards,
    Chris

    Hi Markus,
    The system is SAP EHP1 for SAP Netweaver 7.0. It has the following components installed and specified in logical components:
    Adobe Document services
    Application server Java
    EP Core
    Enterprise Portal
    Along with the kernel files I also get the following files available for download via maintenance optimizer (6 in total)
    FORUMS06_0-10005892.SCA SP06 for FORUMS 7.01
    BP_PROJ_PORT_DESIGNCOLL
    BPPPMDC17_0-10003174.SCA BP PROJ., PORT. & DCOL. 4.0 SP17
    BP ERP05 PROJ SELF-SERV
    BPERP5PSS17_0-10003284.SCA BP ERP05 PROJ SELF-SERV 1.0 Support Package 17
    BP ERP05 MAINTENANCE TECH
    BPERP5MTC07_0-10004455.SCA SP07 for BP ERP05 MAINTENANCE TECH 1.2
    BP ERP SITE TECHNICIAN
    BPIS7TST07_0-10004458.SCA SP07 for BP ERP SITE TECHNICIAN 1.20
    BP ERP ICM ANALYST
    BPIS7ICMAL06_0-10006119.SCA SP06 for BP ERP ICM ANALYST 1.41
    When I look at installed system components via SMSY it correctly shows everything installed which includes:
    ADOBE DOCUMENT SERVICES 7.01 0006 SP006 ADOBE DOCUMENT SERVICES 7.00
    BI BASE SERVICES 7.01 0006 SP006 BI BASE SERVICES 7.01
    BI INFORM. BROADCASTING 7.01 0006 SP006 BI INFORM. BROADCASTING 7.00
    BI META MODEL REPOSITORY 7.01 0006 SP006 BI META MODEL REPOSITORY 7.01
    BI REPORTING AND PLANNING 7.01 0006 SP006 BI REPORTING AND PLANNING 7.01
    BI UNIVERSAL DATA INTEGRATION 7.01 0006 SP006 BI UNIVERSAL DATA INTEGRATION BI UDI 7.01
    BI WEB APPLICATIONS 7.01 0006 SP006 BI WEB APPLICATIONS 7.00
    BI WEBDYNPRO ALV 7.01 0006 SP006 BI WEBDYNPRO ALV 7.01
    BP ERP FIN MDM 1.40 0006 SP006 BP for Financial MDM 1.40
    BP ERP HR EIC 1.40 0006 SP006 BP für HR Employee Interaction Center 1.40
    BP ERP ICM ANALYST 1.41 0004 SP004 BP for ICM-Analyst 1.41
    BP ERP RECRUITER 1.40 0006 SP006 BP for Recruiter 1.40
    BP ERP RECRUITING ADMIN 1.40 0006 SP006 BP for E-Recruiting Administrator 1.40
    BP ERP SITE TECHNICIAN 1.20 0006 SP006 BP for Site Technician (Telecommunications) 1.20
    BP ERP UT XSS 1.40 0006 SP006 BP ERP UT Definition für Self Service BP 1.40
    BP ERP05 BUS UNIT ANALYST 20 1.0 0017 SP017 BP for Business Unit Analyst (mySAP ERP) 1.0
    BP ERP05 COMMON PARTS 1.41 0006 SP006 BP ERP05 COMMON PARTS 1.41
    BP ERP05 ESS 1.41 0006 SP006 BP for Employee Self-Service 1.41
    BP ERP05 HR ADMINISTRATOR 1.41 0006 SP006 BP for HR Administrator (mySAP ERP) 1.41
    BP ERP05 MAINTENANCE TECH 1.2 0006 SP006 BP for Maintenance Technician 1.2
    BP ERP05 MSS 1.41 0006 SP006 BP for Manager Self-Service 1.41
    BP ERP05 PROJ SELF-SERV 1.0 0016 SP016 BP for Project Self-Service (mySAP ERP) 1.0
    BP ERP05 SELF-SERV ADMIN 1.0 0017 SP017 BP for Self-Service Administrator (my SAP ERP) 1.0
    BP ERP05 TALENT DEV 1.01 0010 SP010 BP for Talent Development Specialist 1.01
    BP_PROJ_PORT_DESIGNCOLL 4.0 0015 SP015 BP for Project Portfolio Management and Design Collaboration 4.0
    CAF EU 7.01 0006 SP006 SAP Net Weaver End User 7.01
    DI BUILD TOOL 7.01 0000  SAP BUILD TOOL 7.01
    DI CHANGE MANAGEMENT SERVER 7.01 0006 SP006 CHANGE MANAGEMENT SERVER and SXMAN 7.00 701
    DI COMPONENT BUILD SERVER 7.01 0006 SP006 COMPONENT BUILD SERVER 7.01
    DI DESIGN TIME REPOSITORY 7.01 0006 SP006 DESIGN TIME REPOSITORY 7.01
    FORUMS 7.01 0005 SP005 FORUMS 7.01
    J2EE ENGINE BASE TABLES 7.01 0006 SP006 BASETABLES
    J2EE ENGINE CORE TOOLS 7.01 0006 SP006 CORE TOOLS J2EE ENGINE
    JAVA LOG VIEWER 7.01 0006 SP006 SAP JAVA LOG VIEWER 7.01
    JAVA SP MANAGER 7.01 0006 SP006 JAVA SP MANAGER 7.00
    KMC BASE COMPONENTS 7.01 0006 SP006 KMC BASE COMPONENTS 7.01
    KMC COLLABORATION 7.01 0006 SP006 KMC COLLABORATION 7.01
    KMC CONTENT MANAGEMENT 7.01 0006 SP006 KMC CONTENT MANAGEMENT 7.01
    KMC UI LAYER 7.01 0006 SP006 KMC UI LAYER 7.01
    KMC WEB PAGE COMPOSER 7.01 0006 SP006 KMC WEB PAGE COMPOSER 7.01
    LIFECYCLE MGMT PORTAL 7.01 0006 SP006 LIFECYCLE MGMT PORTAL 7.01
    LIFECYCLE MGMT TOOLS 7.01 0006 SP006 LIFECYCLE MGMT TOOLS 7.01
    MI ADMINISTRATION 7.01 0006 SP006 MI ADMINISTRATION 7.01
    MI DRIVERS 7.01 0006 SP006 MI DRIVERS 7.00
    MI WD LAPTOP 7.01 0006 SP006 Net Weaver Mobile Infrastructure Web Dynpro LAPTOP 7.00
    PDK PORTAL SERVICES 7.01 0006 SP006 PDK PORTAL SERVICES 7.00
    PORTAL CORE SERVICES 7.01 0006 SP006 EPBC 7.01
    PORTAL FRAMEWORK 7.01 0006 SP006 EPBC2 7.01
    PORTAL PLATFORM 7.01 0006 SP006 EP - Portal Server PORTAL 7.01
    PORTAL WEB DYNPRO 7.01 0006 SP006 PORTAL WEB DYNPRO 7.01
    RTC 7.01 0006 SP006 RTC 7.00
    RTC-STREAM 7.01 0006 SP006 RTC-STREAM 7.00
    SAP CAF 7.01 0006 SP006 SAP CAF 7.01
    SAP CAF-KM 7.01 0006 SP006 SAP CAF-KM 7.01
    SAP CAF-UM 7.01 0006 SP006 SAP CAF-UM 7.01
    SAP CPS BASIC (SCHEDULER) 7.01 0004 SP004 Job scheduling capabilities of SAP NetWeaver 7.01
    SAP ESS 603 0006 SP006 SAP ESS 603
    SAP INTERNET KNOWLEDGE SERVLET 7.01 0006 SP006 SAP Internet Knowledge Servlet 7.00 (SAP J2EE IKS)
    SAP J2EE ENGINE 7.01 0006 SP006 SAP J2EE Engine 7.01
    SAP J2EE ENGINE CORE 7.01 0006 SP006 SAP J2EE ENGINE CORE 7.01
    SAP JAVA TECHNOLOGY S OFFLINE 7.01 0006 SP006 SAP JAVA TECHNOLOGY S OFFLINE SAP TECH S OFFLINE 7.01
    SAP JAVA TECHNOLOGY SERVICES 7.01 0006 SP006 SAP JAVA TECHNOLOGY SERVICES (Schicht 3 Dummy) SAP JAVA TECH SERVICES 
    SAP MI CLIENT 7.01 0006 SP006 SAP Mobile Infrastructure Client 7.0
    SAP MSS 600 0017 SP017 SAP MSS 600 (Manager Self Services)
    SAP PCUI_GP 603 0006 SP006 SAP PCUI_GP 603
    SAP SOFTW. DELIV. MANAGER 7.01 0000  SAP JAVA SL 7.01
    SOFTWARE LIFECYCLE MANAGEMENT 7.01 0006 SP006 SOFTWARE LIFECYCLE MANAGER 7.01
    UME ADMINISTRATION 7.01 0006 SP006 UME ADMINISTRATION 7.01
    UWL COLL PROCESS ENGINE 7.01 0006 SP006 UWL COLL PROCESS ENGINE 7.01
    VISUAL COMPOSER BASE 7.01 0006 SP006 VISUAL COMPOSER BASE 7.00
    VISUAL COMPOSER BI KITS 7.01 0006 SP006 VISUAL COMPOSER BI KITS 7.00
    VISUAL COMPOSER FLEX 7.01 0006 SP006 VISUAL COMPOSER FLEX 7.00
    VISUAL COMPOSER FRAMEWORK 7.01 0006 SP006 VISUAL COMPOSER FRAMEWORK 7.00
    VISUAL COMPOSER GP KITS 7.01 0006 SP006 VISUAL COMPOSER GP KITS 7.00
    VISUAL COMPOSER XX KITS 7.01 0006 SP006 VISUAL COMPOSER XX KITS 7.00
    WEB DYNPRO EXTENSIONS 7.01 0006 SP006 WEB DYNPRO EXTENSIONS 7.01
    I expect to see more than the 6 previously mentioned files available for download, also the option for EHP2 which I know is available, or am I wrong in expecting this.

  • How to delete a field from a Dynamically created internal table

    Hi friends,
    I have got a requirement in which, I will be entering the table name and Excel file from seletion-screen.
    based on the Table I have entered in the selection-screen I need to create a dynamic internal table so that I can fill that Execel data into that internal table and later i using BDC i can I can fill the database table using SM30 transaction.
    here. my problem is that, When I am creating internal table dynamically, MANDT filed is also getting created in the internal table.
    please, help in deleteing the filed MANDT from the internal able.
    following is the code which creates the dynamic internal table.
    CREATE DATA dy_table TYPE TABLE OF (p_tabname).
    assign dy_table->* to <dyn_table>.
    please provide, if any sample code is available.
    Regards,
    Xavier.P

    Hi,
    You can use this logic,
    While creating the Dynamic filed catalog try to avoid MANDT field.
    Ex:
    *Dynamic creation of a structure
      CREATE DATA LP_STRUCT TYPE (V_TABLE).
      ASSIGN LP_STRUCT->* TO <FS>.
    *Fields Structure
      OF_SDESCR ?= CL_ABAP_TYPEDESCR=>DESCRIBE_BY_DATA( <FS> ).
    LOOP AT OF_SDESCR->COMPONENTS ASSIGNING <COMPONENTS>.
    *Field MANDT not displayed
        IF SY-TABIX = 1 AND <COMPONENTS>-NAME = 'MANDT'.
          CONTINUE. " Next loop
        ENDIF.
    *Build Fieldcatalog
        LS_LVC_CAT-FIELDNAME = <COMPONENTS>-NAME.
        LS_LVC_CAT-REF_TABLE = V_TABLE.
        APPEND LS_LVC_CAT TO LT_LVC_CAT.
        CLEAR LS_LVC_CAT.
      ENDLOOP.

Maybe you are looking for

  • Windows Vista Beta

    HomeSite and Windows Vista Beta: I have used homeSite almost from its initial release many years ago. Version 5.0 has been loaded and reloaded on I think 3 platforms now, maybe four. I have recently installed windows Vista Beta and was deeply distres

  • Java.lang.NoSuchMethodError: main

    I am still trying to read a csv file, but getting an error, see subject. I think I nust go on a course as I just can't believe that it's thar hard just to read a simple csv file in java. Can anybody recommend a good course that will explain all. This

  • DVD's are slow to load up

    How long should a DVD take to load up and start playing? Mine seem to take about 60 minutes. It feels like forever. I don't remeber it taking so long. Has something changed? (The same is true on Macpro. DVD's take a really long time to cue up.)

  • UIX Message Choice (LOV)

    Hi, I'm trying to create an LOV in a UIX form. I'm using the message choice component, but it is not displaying all available values for my list (the LOV is bound to a table). How do I modify the lOV to include a scroll bar or, is there a different c

  • Enabling 'submit' button in email activity

    All, version:11.1.1.4 I'm trying to configure an email activity in an async bpel as below <body><form action="http://localhost:7001/soa-infra/services/default/AdvanceShipNotice/AdvanceShipNoticeResend?WSDL"> First name:<br> <input type="text" name="f