Table CRMD_ORDERADM_H in IS-U ECC System

Hi all,
I hope i don't get wrong, but we realized that there's table CRMD_ORDERADM_H available in our ECC IS-U system? Is this part of standard? I thought CRMD_ORDERADM_H table is a CRM table? Why is it also available in IS-U and what is it for? Would appreciate some answers. Thanks.

Hi Raj,
Please check:
http://forums.sdn.sap.com/thread.jspa?threadID=1211966
Regards
Ajay

Similar Messages

  • Extracting Values of a Field from a Database Table in SAP ECC System

    Hi,
    I downloaded Extracting Values of a Field from a Database Table in SAP ECC System Using MII 12.0
    senario from sdn. I'm trying to do that senario in MII 12.05. But I have problem with section 6 in page 7 (you can supply senario from sdn)
    "6- Under the loop of Repeater, use action u2018Rowu2019 to append just the string part of the WA which will display only values for field u2018Batchu2019"
    I did not find WA elemen in Output element of Repeater_0
    How can I create WA element?
    Thanks.

    Cemil,
    Set up a SAP JCo Interface action block.  Use the RFC name RFC_READ_TABLE.
    In the link editor map the table to "MARA", set RowCount to something small (20 is good sample size) and create an xml transaction property named FIELDS and copy the following into it:
    <?xml version="1.0" encoding="UTF-8"?><FIELDS>
          <item>
            <FIELDNAME>MATNR</FIELDNAME>
            <OFFSET/>
            <LENGTH/>
            <TYPE/>
            <FIELDTEXT/>
          </item>
          <item>
            <FIELDNAME>MTART</FIELDNAME>
            <OFFSET/>
            <LENGTH/>
            <TYPE/>
            <FIELDTEXT/>
          </item>
          <item>
            <FIELDNAME>BSTME</FIELDNAME>
            <OFFSET/>
            <LENGTH/>
            <TYPE/>
            <FIELDTEXT/>
          </item>
          <item>
            <FIELDNAME>XCHPF</FIELDNAME>
            <OFFSET/>
            <LENGTH/>
            <TYPE/>
            <FIELDTEXT/>
          </item>
          <item>
            <FIELDNAME>DATAB</FIELDNAME>
            <OFFSET/>
            <LENGTH/>
            <TYPE/>
            <FIELDTEXT/>
          </item>
        </FIELDS>
    Then link the Transaction.FIELDS to SAP_JCo_Interface_0.Request{/RFC_READ_TABLE/TABLES/FIELDS}.  You may run into problems with two other fields and optionally they can be removed (set link type to remove xml).  I usually remove them initially for testing.  The two fields are:
    SAP_JCo_Interface_0.Request{/RFC_READ_TABLE/INPUT/NO_DATA}
    SAP_JCo_Interface_0.Request{/RFC_READ_TABLE/INPUT/DELIMITER} (or you can set this to something like a semicolon,";" or tilda,"~".  I find it easier to caclulate position by length, but that is my own idiosyncrasy.)
    Once you get this one working, we can explore how to do filtering on the dataset.  Your output should be something like this:
    <?xml version="1.0" encoding="utf-8"?>
    <RFC_READ_TABLE>
      <INPUT>
        <DELIMITER />
        <NO_DATA />
        <QUERY_TABLE>MARA</QUERY_TABLE>
        <ROWCOUNT>20</ROWCOUNT>
        <ROWSKIPS>0</ROWSKIPS>
      </INPUT>
      <TABLES>
        <DATA>
          <item>
            <WA>000000000000000023ROH 00000000</WA>
          </item>
          <item>
            <WA>000000000000000038HALB 00000000</WA>
          </item>
          <item>
            <WA>000000000000000043HAWA 00000000</WA>
          </item>
          <item>
            <WA>000000000000000058HIBE 00000000</WA>
          </item>
          <item>
            <WA>000000000000000059HIBE 00000000</WA>
          </item>
          <item>
            <WA>000000000000000068FHMI 00000000</WA>
          </item>
          <item>
            <WA>000000000000000078DIEN 00000000</WA>
          </item>
          <item>
            <WA>000000000000000088FERT 00000000</WA>
          </item>
          <item>
            <WA>000000000000000089FERT 00000000</WA>
          </item>
          <item>
            <WA>000000000000000098HALB 00000000</WA>
          </item>
          <item>
            <WA>000000000000000170NLAG 00000000</WA>
          </item>
          <item>
            <WA>000000000000000178NLAG 00000000</WA>
          </item>
          <item>
            <WA>000000000000000188NLAG 00000000</WA>
          </item>
          <item>
            <WA>000000000000000288HALB 00000000</WA>
          </item>
          <item>
            <WA>000000000000000358HAWA 00000000</WA>
          </item>
          <item>
            <WA>000000000000000359HAWA 00000000</WA>
          </item>
          <item>
            <WA>000000000000000521HAWA 00000000</WA>
          </item>
          <item>
            <WA>000000000000000578FERT 00000000</WA>
          </item>
          <item>
            <WA>000000000000000597HAWA 00000000</WA>
          </item>
          <item>
            <WA>000000000000000598VERP 00000000</WA>
          </item>
        </DATA>
        <FIELDS>
          <item>
            <FIELDNAME>MATNR</FIELDNAME>
            <OFFSET>000000</OFFSET>
            <LENGTH>000018</LENGTH>
            <TYPE>C</TYPE>
            <FIELDTEXT>Material Number</FIELDTEXT>
          </item>
          <item>
            <FIELDNAME>MTART</FIELDNAME>
            <OFFSET>000018</OFFSET>
            <LENGTH>000004</LENGTH>
            <TYPE>C</TYPE>
            <FIELDTEXT>Material Type</FIELDTEXT>
          </item>
          <item>
            <FIELDNAME>BSTME</FIELDNAME>
            <OFFSET>000022</OFFSET>
            <LENGTH>000003</LENGTH>
            <TYPE>C</TYPE>
            <FIELDTEXT>Purchase Order Unit of Measure</FIELDTEXT>
          </item>
          <item>
            <FIELDNAME>XCHPF</FIELDNAME>
            <OFFSET>000025</OFFSET>
            <LENGTH>000001</LENGTH>
            <TYPE>C</TYPE>
            <FIELDTEXT>Batch management requirement indicator</FIELDTEXT>
          </item>
          <item>
            <FIELDNAME>DATAB</FIELDNAME>
            <OFFSET>000026</OFFSET>
            <LENGTH>000008</LENGTH>
            <TYPE>D</TYPE>
            <FIELDTEXT>Valid-From Date</FIELDTEXT>
          </item>
        </FIELDS>
        <OPTIONS />
      </TABLES>
    </RFC_READ_TABLE>
    Add a repeater sourced on:
    SAP_JCo_Interface_0.Response{/RFC_READ_TABLE/TABLES/DATA/item}
    Link your repeater output to a tracer with this:
    Repeater_0.Output{/item/WA}
    What you will see in each tracer message is a single line of data with all the fields contents concatenated together.  You can look up what each field in the string represents by the length of the field as returned in the Response segment of the RFC_READ_TABLE rfc.  Then you can parse out the data you are interested in.
    Give this a try and let me know how you succeeded.
    By the way, I could not find the scenario you referred to.  Can you post a link?
    Regards,
    Mike
    Edited by: Michael Appleby on Jan 12, 2009 5:16 PM

  • ADR3 table updation in new ECC system for customer address

    When ever customer is created using VAP1 transaction and maintain telephone and fax number it used to get update in ADR3 table.
    in new ECC system unless and until the telephone and fax is maintained in Business area of Contact person it is not getting updated in ADR3 table.
    Can u please let me know in which table it is getting saved if we are not maintaining these in business area in ECC?

    Sreedevi only fax number along with extension is getting updated in ADR3 but telephone number & extrnsion is getting updated in ADR2.
    Reward Points if it helps,
    Regards,
    N

  • Data Migration from Legacy system to ECC systems via ETL through SAP PI

    Hi All,
    I wanted to know if we can migrate the data from Legacy systems to ECC systems via PI.
    What I understand is there is ETL tool is used to extract the data from legacy system, and what client is looking to load that data via PI?
    Can we do that ? I am concerned because this will involve mass data?
    If I have to use PI , I see option of  PROXY / IDOC /FILE as receiver in ECC system (take the data from ETL)?
    Can somebody has done this earlier , please share the approach.
    Thanks,
    Pushkar Patel

    Hi ,
    I require few details from you.
    1. What ETL tool you are using, If Informatica, it already have PowerConnect to connect to SAP. So you can create source and Target Structure and also you can use RFC's to send data to R/3. Else, for other ETL tools, can you prepare RFC's or any other way to send data to R/3. let me know the tool.
    2. Does R/3 contains the master data tables? If yes, then try to use LSMW for Mass upload of data to tables.
    If your client don't want to use either of these options please elaborate, what is the case.
    Regards
    Aashish Sinha

  • How to find out Shopping Cart created in backend system or ECC system

    Hi All,
    I am new  to SAP SRM7.0.  The Client has implemented "Extended Classic Scenario".  i.e. SC>Approval>PO>Confirmation>Invoice process in ECC.
    We created few SC with "Free text" i.e. Describe what you need option in SC.
    The SC is created with 4 digit number 2690.  Also, the Status " Approved". since its low value.say 5 GBP.
    I have like 25 to 30 SC created like this:  I need to know the following:-
    1. When i open SC and look for Related document, i see only SC number , but no Follow on document.  not sure why ?
    2. How can i know the list of SC in backend system. i.e like ECC of the SRM backend system.  Please let me know the table name it get stored.. I searched EBAN and found only those which has PO is stored.
    also can you please advise if by creating the SC in SRM.. will get replicated in ECC system ?. or only if Follow on doc gets created it will get replicated in ECC system?.
    Thx
    MJ

    Hi,
    SC is never replicated to backend.
    Extended scenario document flow is SC -> SRM PO(Main) -> ERP PO(Copy).
    Please go to BBP_PD transaction and navigate to SC item detail. You see what is the follow-on document.
    Regards,
    Masa

  • Replicating custom texts in BP from CRM to ECC systems

    Hi All,
    I'm trying to set up synchronisation of a custom text held against a business partner in CRM with our ECC system.  So, in CRM, if I go to transaction BP and go to change mode for a partner and then go to the long texts tab...  As well as the 2 standard Correspondance and Accounting Note text ID's my functional consultant has also configured a third text, with ID Z001.  We are trying to get this to synchronise with ECC.
    With a bit of debugging I can see the text is being sent in a BDOC across to ECC but it isn't being populated into the customer master.  On the ECC side the custom text has been set up against the sales area of the customer master - I'm not sure of what else has been done there.
    Has anyone done this before who can give us some help/advice?  Bear in mind I know almost nothing about CRM to ECC synchronisation and BDOC's so I'm struggling with this!
    Thanks in advance,
    Gareth.

    Hi Gareth,
    While researching this issue I came across note number 622133. https://websmp202.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=622133&_NLANG=E
    Its an old note, but it pointed me in the general direction of FM 'PI_BP_MAP_TEXT_IDS_CRM_R3'. This FM looks in table 'CRMTEXTID' to check if any mappings were maintained. Now if you do a where-used on CRMTEXTID, you see that it is used in a view, V_CRMTXTID. So go to SM30, maintain that view, map your R/3 text IDs to CRM text IDs and you should be all set.
    There must be a more elegant way to get to this table, but in the short term, this should fix your problem. I haven't tested it yet on my system but I get the feeling this should work

  • Changing MDACH ( action control ) in PLAF table in Inbound CIF in ECC

    Hi Experts,
    We have a requirement wherein Planned Orders are coming from APO to ECC systems. There Order Category can be both 'EE' ( SNP Order ) and 'AI' ( PPDS Order ).
    We want to update MDACH field in PLAF based on the value of ATPCAT of order coming from APO system.
    We tried to leverage Enhancement CIFORD01 but i guess that can be used to change order data only and not updating fields of a ECC table.
    Inputs will be appreciated.
    Thanks
    Gaurav

    Hi Gaurav,
    Try with: CIFORD03 (EXIT_SAPLCORD_005).
    I have debbuged the CIF and it goes thru this exit.. I am not seeing the CIF going thru (EXIT_SAPLCORD_001) or (EXIT_SAPLCORD_002) that are from Enhancement CIFORD01.
    Kind Regards,
    Mariano

  • Cross reference data from 2 different ecc system.

    Hi Sdners,
    Iam working on a scenario where i have to get data from two different Ecc system,consolidate them and send it back to their respective system.
    But some refernce data in both the systems are different and when iam merging data from 2 system i have to maintain either of the reference data.But problem comes when i syndicate it back to ECC ,it cannot accept a new reference data.
    Please suggest me some answere how to proceed in such case.
    Its urgent.
    Points will be rewarded for Genuine answeres.
    Thanks in advance,
    Regards,
    Neethu.

    Hi,
    First enable keymapping property to YES  for the table which you want to do
    importing and syndicatig.
    Create two remote systems type inbound/outbound .
    Import the data from first remote system and map the corresponding fields.
    Don't forget to map the remotekey field which is on the destination side.Make clone
    of one of the dispaly field and map to the remote key field.
    After importing you can see the records from which remote system are imported
    using Edit Key Mappings option in DataManager.It shows that remotesystem
    name and corresponding remote key.
    Do the same for second remote system too.
    After merging data in data manager , you can see the merged record and see the
    two remote systems names and two remote keys by using Edit Key Mappings
    option so the merged record goes back to both remote systems when you syndicate
    the records.
    Syndicate the data from first remote system by selecting destination properties and
    output remote system property under map properties tab as your first remote
    system.
    Do the mapping for corresponding fields and don't forget to map the value field under
    remote key .Then MDM generates remote keys for only records belongs to your
    first remote system.You can see this in destination preview.It does n't genarate
    remote keys for second remote system.Then check the option Suppress records
    without key under map properties tab and execute the syndication.Finally we can
    see the accurate records.
    Do the same for second remote system too.
    Hope it helps
    Cheers
    Narendra

  • Crystal Report connecting Multple ECC systems

    Hi,
    I am working on crystal where I compare the data between to two diffrent databases(ECC tables). I am using SAP Table, function mudule option to create connection.
    I have built a main report against ECC system A and imported a sub report built on ECC system B. Now I see that connection in my main report is overwrting the connection in the sub report. If I change the connection in the subreport with set data source location it changes the connection of both sub report and main report. After I deploy this report to infoview, in cmc I see only one database connection.
    Is this a bug or can we have only one connection to ECC system per one crystal report even if it has sub reports?
    Thanks

    Yes that happens automatically, I just checked the same logic with universes built against oracle data source, I could see two coonections in the CMC. Its like its there is this issue when I am connecting to sap tables directly

  • RFC enabled FM to fetch partner details of vendor from ECC system

    Hi All,
    I am working on an enhancement in SRM system.the requirement is as follows.
    1.In the current SRM application, the invoicing party partner function does not exist.Because of this, the invoicing party cannot be populated on any external purchasing documents such as RFQ, PO, RO, contracts.
    2.This functionality exists in ECC. In ECC, the user can enter an invoicing party on a vendor master record.The invoicing party functionality will be deployed to SRM so that external purchasing documents are populated with the correct invoicing party.There is a standard vendor replication program for this...
    To accomplish the above said functionality, I have planned to do like this in SRM system....
    1.There is a BADI "BBP_DOC_CHANGE_BADI" with a method "BBP_PO_CHANGE ". This will get triggered when a PO is getting created or changed.
    2.In that there is a table called IT_PARTNERS which will have all the partner details in it.
    3.I will take the partner (vendor number i.e.,partner function is 0000019) and pass that value to an RFC enabled function module which will fetch the invoicing party from ECC system.
    4.Later that Invoicing party number is appended to the IT_PARTNERS so that it will be populated on any external purchasing documents.
    Here I want to know whether any standard RFC enabled function module which fetches the invoice party details from ECC system.
    Awaiting your answers...
    Thanks,
    Ravee..

    Hi. Just use function RFC_READ_TABLE and table WYT3.
    Regards,
    Dave.

  • Pass batch number from ECC system to GTS

    Hi Experts,
    I want to pass material batch number(MSEG-CHARG) to GTS system while creating the material document(GR) in ECC system. This batch number should be displayed in item level at custom declaration screen and should be stored at table /SAPSLL/CUSWLM.
    Could you please help me how to do this? actually at ECC side i m not getting the api where i can pass batch number. also at gts how to retrieve the same even if we able to pass the same from ECC
    Many Thanks,
    Prafull.

    Hi,
    i suggest you to have a closer look at the BAdI for Mapping and Enrichment of Data from Material Documents (MM0C) on ERP site and also at BAdI for Mapping External Data to Customs Declaration.
    You will find them by following thes paths in the IMG:
    In your SAP GTS System:
    -SAP Customizing Implementation Guide
    --SAP Global Trade Services
    ---SAP Customs Management
    Business Add-Ins for SAP Customs Management
    Copy External Data to Customs Declarations and Customs Shipments
    BAdI for Mapping External Data to Customs Declaration
    In your SAP ERP (feeder) System:
    -SAP Customizing Implementation Guide
    --Sales and Distribution
    ---Foreign Trade/Customs
    SAP Global Trade Services - Plug-In
    Change and Supplement Document Data for Transfer
    BAdI for Mapping and Enrichment of Data from Material Documents (MM0C)
    To display the (external data) Batch number on the User Interface on the customs declaration document,
    you must implement  BAdI for UI Control When Connecting External Applications to CD/CS
    regards,
    Ralf

  • Look for a table for a field in ECC.

    Hello expert,
            I want to enhance a datasource with a field,  I can find out the position of this field in the ECC system, how can I know which table this field is in?
    Many Thank.

    That's probably kept in the USRXX tables on the R/3 side of things.
    Rob

  • The webdynpro/ABAP (WDA) calling RFC enabled FM of other ECC systems

    The webdynpro/ABAP (WDA) has problem calling RFC enabled FM of other ECC systems.
    WDA expects all the ABAPs, RFC FMs  of remote system(DEV, QA..) to reside inside its own instance.
    It is hard to transport and maintain these ABAPs FMs into a portal ABAP WDA instance.
    Proxy generation at WDA client:
    =======================
    1. If we can make an XI enable  an ABAP or RFC enabled FM of the remote ECC,
    I think the XI proxy classes can be generated at the client WDA system.
    Other options?
    How do I do it?  Can you give some tips.
    2. How do I manually code the RFC Call to BAPI/FM from Webdynpro controller or other interface?
    I am stuck with the above as the webservice option is not available at our ECC server.  It does not have a java engine installed for webservice to be available.
    Can you help on the above 2 options?

    Hi Mike ,
    <b><b> Answer of 2.</b></b>
    How do I manually code the RFC Call to BAPI/FM from Webdynpro controller or other interface?
    I am doing same thing for my current SRM implementation.I am taking data to SRM server from another R/3 server .
    This is solution I have used
    1) First of all I have made ABAP connection in SM59 .
    Go to SM59 .In ABAP Connection creat ABAP connection with system with which u want communicate .
    Eg I am connection with Systems PB1.
    So i developed Connection call PB1CLNT800.
    2) In my requirement I have taken data in my context from another r/3,
    I have give called RFC in my supply function of node.
    Call to RFC is as usual.
    In my case,
    CALL FUNCTION 'RFC_MATNR'
    DESTINATION 'PB1CLNT800'
    TABLES
    IT_MATNR = IT_MATNR.
    Onwards I have read my itab IT_MATNR and populated data to context.
    Hope solution will serve your purpose.
    Give point if it works .If any problem i have other ways.
    Cheers
    Parry B

  • IDOC with extension from external ECC system

    Hello experts.
    I have a scenario where I need to receive an IDOC with extenstion from an external system.
    how can I define the xsd of that IDOC in my PI system?
    will I need to receive an xsd file from the external system and import it as an external defenition?
    how is it done? (this 3rd party doesn't have a PI system, so they can't export XSD like me)
    another option is to build a similar IDOC with extenstion in our SLD, and import it into the PI system... but it seems  a bit problematic.
    I'll be happy to hear suggestions from people who had to implement a similar scenario.
    thanks,
    Imanuel Rahamim.

    Hi,
    Three questions:
    1. how your external system will send to you the data: by an Idoc-XML file ? or by directly an IDoc (so with an ALE config) ?
    if it's ALE config, then you should have also a connexion to this Ext. ECC system, for instance to return back an acknowledgment. And so, if you have a connexion, you can import this IDoc into PI.
    If it's a file, they have to provide to you an XSD file, that you can use as External Def, and create a Service Interface. So it will be not really like an IDoc, but like all other message which look like an idoc.
    2.  with this ext. ECC system, do you have a logon connexion ?
    if yes, you can import this IDoc into PI.
    3. Do you have to send the same IDoc to your own ECC system ?
    if yes, that means the extension has to be developped in also in your own ECC. In that case, you will be able to import it PI and use it for source and target.
    > how is it done? (this 3rd party doesn't have a PI system, so they can't export XSD like me)
    you can find on SDN, some program to generate an XSD from a DDIC table/structure, but for complete IDoc, I don't know.
    Anyway, if it's really an ECC system, the better way to exchange data, it's to do an ALE config from their system to your PI, and no issue to import the IDoc def in PI.
    regards.
    Mickael

  • Rfc to ecc system

    I have a requirement to get list of planned orders used in the APO extract by doing rfc to ecc system.the plnum from table plaf,that we will get based on some selection criteria,based on this we have to take order no,production no,resource name,activity end date from u201C/SAPAPO/SEQ_AOEXT_STRu201D.This have to be done using bapi BAPI_MOSRVAPS_GETLIST2.How to do it?please suggest.all the info will be stored in a file.plz help.

    >
    Babli13 wrote:
    > I have a requirement to get list of planned orders used in the APO extract by doing rfc to ecc system.the plnum from table plaf,that we will get based on some selection criteria,based on this we have to take order no,production no,resource name,activity end date from u201C/SAPAPO/SEQ_AOEXT_STRu201D.This have to be done using bapi BAPI_MOSRVAPS_GETLIST2.How to do it?please suggest.all the info will be stored in a file.plz help.
    RFC_READ_TABLE "Read table entries from remote system table which is having max 40 fields
          REFRESH: OPTIONS, FIELDS, ITAB.
          CONCATENATE '' Orderno''''  '='  '100'
                                   'resource name'  '='  'Hello'
                                   'activity end date  '    '='  ''A'''
          INTO OPTIONTEXT SEPARATED BY SPACE.
          OPTIONS-TEXT = OPTIONTEXT.
          APPEND OPTIONS.
    CALL FUNCTION 'RFC_READ_TABLE' DESTINATION RFCSYS
               EXPORTING
                    QUERY_TABLE          = 'u201C/SAPAPO/SEQ_AOEXT_STR'
               TABLES
                    OPTIONS              = OPTIONS     "This option is nothhing but where COnditoon in select query
                    FIELDS               = FIELDS
                    DATA                 = ITAB             "the data will be returned to this table..
              EXCEPTIONS
                   TABLE_NOT_AVAILABLE  = 1
                   TABLE_WITHOUT_DATA   = 2
                   OPTION_NOT_VALID     = 3
                   FIELD_NOT_VALID      = 4
                   NOT_AUTHORIZED       = 5
                   DATA_BUFFER_EXCEEDED = 6
                   OTHERS               = 7.
          IF SY-SUBRC <> 0.
         ENDIF.
    Regards,
    Prabhudas

Maybe you are looking for

  • Using a bitmap object as a item renderer in a datagrid

    I have a UIComponent grabbed has a bitmap, and stored in an array collection. I want to display a thumbnail in a datagrid, I can make a itemRenderer for an image with a local or remote file as a source. But how do I use the bitmap in the array collec

  • IMac 10,1 screen flickers

    The screen flickers after I have been on the computer for 10-15 minutes.  Back in January, the hard drive failed and was replaced.  Is flickering a sign that the video display is about to die, or something less of a pain in the rear?

  • Best (or best for me) email client

    I've just started using my new MacBook Pro with OS 10.4, graduating from a PB G4. And I'm looking for guidance on the best email client to use with it. I abandoned Mail ages ago, because it didn't handle HTML - has that changed?* I abandoned Entourag

  • Portlet cannot be displayed due to unknown error

    In our application we are getting Error, "portlet cannot be displayed due to unknown error" from ALUI portal. There is no enough informaiton apart from this. This error is not consistent, can happen any time. Can you please advice what could be the c

  • Default Standard Text Key or Standard Text to first Operation of Order

    I would like to have a standard text key or standard text defaulted for the first operation of an order created via IW31 of certain order type. For example we have an order type called CORR for corrective orders.  When ever there is a break fix, the