Send BP changedOn date to external system

Hi CRM Technical Experts,
I am using bapi crmxif_partner_save_m01 to send create and change of BP to external system as Idoc. I also need to send changed on date and user id, if changes are made to bp. but I could't find appropriate fields in bapi. Idoc contains only create date and time.
Is there anything with bdoc to send or how is it works.

hi
Mehar
We need to customize the settings in Middleware for data integration between CRM and a external system
this can be done through XIF adapter
please navigate through IMG as follows..
IMG --> Customer Relationship Managment --> CRM Middleware and Related Components --> Exchanging Data with External Components --> XIF Adapter Setup --> Outbound/Inbound Direction
hope it clarifies
Venu

Similar Messages

  • Send R/3 data to external system

    Hi Guru's,
    how to send R/3 data to external system (Oracle databse).
    thanks in advance.
    Ramu.

    Refer to this link
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0cc5049-5837-2b10-8ca5-f0e948762522
    it is a very good document on IDOCs
    or you may search for this in
    sapbrain.com or
    thespot4sap
    or even within SDN you may search for IDOCs you will get lots of info
    Regards,
    Anil

  • Send HU structure to an external system through an idoc

    Hi,
    I need to send the description of an HU (Sub HUs and materials to an external system).
    Do you know if there is any standard idoc type allowing to do that.
    I tried to use idoc HU_CREATE or HU_PROCESSOUTPUTDIRECT but I think none of them will allow me to do that because there is no function module in outbound mode that I can use with them/
    Any ideas?
    Thanks in advance.
    Regards

    Hi,
    In order to send data to external system and if you have an middleware used in your landscape then
    create logical system for that system and associate the port with RFC destination (based on middleware used type 3 ot type t) can be used and idoc can be sent to middleware and middleware can take care of sending the data to the external system by converting it into required  format..
    These are normal scenarios for which Middlewares are used for integration..
    HTH
    Rajesh

  • Getting data from external system

    Hi,
    What other methods that are used to get data from external system to BW? I know that DB Connect is one of the methods. Also, falt files is one of them.
    Thanks,
    RT

    Hi,
    Is there a BAPI that I can look at and start programming to get data from Informatica?
    Right now we are using CSV files. Would anyone have sample code for the doing this using BAPI? Appreciate any.
    Is there any How to paper to do this?
    Thanks,
    RT
    Message was edited by: Rob  Thomas
    Message was edited by: Rob  Thomas

  • Addition data send in XML po to external system In SRM 7

    Hi Expert
    How we can add/ Modify data for XML PO Which sending for external system Via PI .
    we need to add additional data to the XI system in XML format in PO . How we can add the code to this.
    One more issue is like we are not able to debug the BADI BBP_SAPXML1_OUT_BADI.
    Request to reply for this

    Hello sharad,
    Please find the sample coding.
    METHOD if_ex_bbp_sapxml1_out_badi~purchaseorder.
    DATA: l_str(40) TYPE c,
            ls_partner TYPE bbps_pdext_partner,
            ls_item TYPE bbps_pdext_po_item_d,
            ls_proxyitem TYPE bbpx1_purchase_order_item,
            ls_partner_item TYPE bbpx1_po_ship_to_location,
            ls_fdspartner TYPE bbpx1_po_ship_to_location,
            ls_telephone TYPE bbpx1_address_telephone,
            ls_check  TYPE BBPX1_ADDRESS,
            ls_fax TYPE bbpx1_address_facsimile,
            ls_email TYPE bbpx1_address_email,
            l_index TYPE i,
           lt_table TYPE TABLE OF ztest_db,
           ls_table TYPE ztest_db,
            l_flag TYPE c,
            ls_dfkkbptaxnum  TYPE dfkkbptaxnum,
            lt_telephone     TYPE bbpx1_address_telephone_tab,
             lt_check                TYPE BBPX1_ADDRESS,
            lt_email       TYPE bbpx1_address_email_tab,
            lt_name        TYPE bbpx1_person_name,
            ls_name         TYPE bbpx1_person_name,
            lt_street       TYPE bbpx1_address_physical_address,
            ls_street       TYPE bbpx1_purchase_order_party,
            ls_details        TYPE  bbpx1_purchase_order_item,
            lt_ship        TYPE BBPX1_PO_SHIP_TO_LOCATION,
            ls_ship        TYPE bbpx1_po_ship_to_location.
      LOOP AT cs_purchase_order_message-purchase_order-item INTO ls_proxyitem.
        l_index = l_index + 1.
        LOOP AT it_item INTO ls_item WHERE number_int = ls_proxyitem-id-value.
          LOOP AT it_partner INTO ls_partner WHERE p_guid = ls_item-guid.
            IF ls_partner-partner_fct = '00000712'.
              ls_proxyitem-zzxyz = ls_partner-zzxyz.
             ls_proxyitem-zzxyz = 'Test'.
              ls_fdspartner-buyer_id = ls_partner-partner_id.
             concatenate ls_partner-NAME ls_partner-NAME_2 into l_str separated by space.
              APPEND ls_partner-name TO ls_fdspartner-address-organisation_formatted_name.
              APPEND ls_partner-name_2 TO ls_fdspartner-address-organisation_formatted_name.
             ls_fdspartner-ADDRESS-ORGANISATION_FORMATTED_NAME = l_str.
              ls_fdspartner-address-physical_address-country_code = ls_partner-country.
              ls_fdspartner-address-physical_address-region_code-list_id = ls_partner-region.
              ls_fdspartner-address-physical_address-street_postal_code = ls_partner-postl_cod1.
              ls_fdspartner-address-physical_address-city_name = ls_partner-city.
              ls_fdspartner-address-physical_address-street_name = ls_partner-street.
              ls_fdspartner-address-physical_address-care_of_name = ls_partner-c_o_name.
              ls_fdspartner-address-physical_address-district_name = ls_partner-district.
    *-- Populate telephone number
              ls_telephone-number-subscriber_id = ls_partner-tel1_numbr.
              ls_telephone-number_default_indicator = 'true'.
              ls_telephone-number_usage_denial_indicator = 'false'.
              APPEND ls_telephone TO ls_fdspartner-address-communication-telephone.
    *-- Get Fax details
              ls_fax-number-subscriber_id = ls_partner-fax_number.
              ls_fax-number_default_indicator = 'true'.
              ls_fax-number_usage_denial_indicator = 'false'.
              APPEND ls_fax TO ls_fdspartner-address-communication-facsimile.
    *-- Get Email details
              ls_email-address-value = ls_partner-e_mail.
              ls_email-address_default_indicator = 'true'.
              ls_email-address_usage_denial_indicator = 'false'.
              APPEND ls_email TO ls_fdspartner-address-communication-email.
              ls_proxyitem-zfinal_destination = ls_fdspartner.
              MODIFY cs_purchase_order_message-purchase_order-item INDEX l_index FROM ls_proxyitem.
              CLEAR ls_fdspartner.
            ENDIF.
            IF ls_partner-partner_fct = '00000027'.
              ls_proxyitem-zzcxyz = ls_partner-zzcxyz.
              MODIFY cs_purchase_order_message-purchase_order-item INDEX l_index FROM ls_proxyitem.
              l_flag = 'X'.
            ENDIF.
          ENDLOOP.
          IF l_flag IS INITIAL.
            READ TABLE it_partner INTO ls_partner WITH KEY partner_fct = '00000027'.
            IF sy-subrc = 0.
              ls_proxyitem-zzclxyz = ls_partner-zzclxyz. " custom field
              MODIFY cs_purchase_order_message-purchase_order-item INDEX l_index FROM ls_proxyitem.
            ENDIF.
          ENDIF.
        ENDLOOP.
      ENDLOOP.
    ENDMETHOD.
    Edited by: S Neelima on Apr 14, 2011 11:17 AM

  • Send production order changes to external system IDOC

    Hi,
    I need to send production order changes to an an external system. I understand that I can trigger idocs using t-code POIT.
    but my requirement is when a order is changed, i want to trigger an IDOC to external system with the new PO data...how can I achieve this

    Hi Swathi,
    A very high level idea.
    You can use the user exit..."LXCO1U06" and call the transaction POIT in back goround and submit the idoc. This exit is used @ save of TA code CO02. Moreover as the production order can be changed through several transactions like COHV, CO40, COOIS etc....you have to check whether this exit would be applicable for all transaction.
    Regards,
    Chinna

  • Problem while sending HL7 ACK to HL7 external system

    Hello,
    I am facing a problem with GlassFish ESB.
    The product version indicated in the IDE is: NetBeans IDE 6.1 (Build 200810140114). I have not yet tested the current version.
    My problem is as follow:
    - I have 2 service assemblies, one is File BC > HL7 BC and the other HL7 BC > BPEL with Database WSDL as partners.
    - It seems everything is doing OK. The HL7 file is read by File BC, then sent to HL7 BC, retrieved by the second HL7 BC, fed to the BPEL, and finally queries are executed. Then an ACK message is generated and an error occurs. Here is the stacktrace:
    HL7BC-I0155: Sent HL7 request to HL7 External System :MSH
    EVN|A01|2008090801529|||JavaCAPS6^^^^^^^USERS
    PID|1||A000010^^^HosA^MR^HosA||Noseda^Arthur^^^^^||19460101123045|M|||7 South 3rd Circle^^Downham Market^England - Norfolk^30828^UK^||||||||A2008090801529
    PV1|1|I|^^^|I|||FUL^Fulde^Gordian^^^^^^^^^^MAIN|||EMR|||||||||V2008090801529^^^^VISIT|||||||||||||||||||||||||2008090801529
    HL7BC-I0117: Received a message in HL7 binding 68899546013632-10229-134707429449130110
    HL7BC-I0137: Pattern for message exchange ID 68899546013632-10229-134707429449130110 is http://www.w3.org/2004/08/wsdl/in-only
    HL7BC-I0135: Constructing the ACK message with version ID HL7v231
    HL7BC-I0162: Creating ACK Builder object of class com.sun.jbi.hl7bc.extservice.ack.HL7v231ACKBuilder
    HL7BC-I0136: Constructed ACK message to be send to the sender MSH
    MSA|AA|CTLID_2008090801529
    HL7BC-I0129: Sending ACK back to the sender
    HL7BC-I0141: MLLPEncoder.setStartBlockChar():Value is set as :  (in decimal ascii).
    HL7BC-I0143: MLLPEncoder.setEndDataChar():Value is set as :  (in decimal ascii).
    HL7BC-I0142: MLLPEncoder.setEndBlockChar():Value is set as :
    (in decimal ascii).
    HL7BC-I0144: MLLPDecoder.setStartBlockChar(): Value is set as :  (in decimal ascii).
    HL7BC-I0146: MLLPDecoder.setEndDataChar(): Value is set as :  (in decimal ascii).
    HL7BC-I0145: MLLPDecoder.setEndBlockChar(): Value is set as :
    (in decimal ascii).
    HL7BC-I0160: Sending HL7 message acknowledgement to HL7 External System :MSH
    MSA|AA|CTLID_2008090801529
    ERREUR :  'HL7ENC-E0027: Element: MSH.11 must occur at least 1 time(s)'
    HL7BC-W0126: Unable to decode the message due to error=[javax.xml.transform.TransformerException: org.xml.sax.SAXParseException: HL7ENC-E0027: Element: MSH.11 must occur at least 1 time(s)]
    ERREUR :  'HL7ENC-E0027: Element: MSH.11 must occur at least 1 time(s)'
    HL7BC-E0209: Failed to process the message exchange with ID 68899546013632-10229-134707429439760109 and exchange pattern http://www.w3.org/2004/08/wsdl/in-only due to error: HL7BC-W0121: Unable to process message exchange 68899546013632-10229-134707429439760109, end point com.sun.jbi.hl7bc.EndpointImpl@8cce44 and operation {http://j2ee.netbeans.org/wsdl/HL7v22_Feeder_CA/HL7v22_Feeder_CA_HL7_ANY_HL7Out}hl7wsdlOperation.
    java.lang.Exception: HL7BC-W0121: Unable to process message exchange 68899546013632-10229-134707429439760109, end point com.sun.jbi.hl7bc.EndpointImpl@8cce44 and operation {http://j2ee.netbeans.org/wsdl/HL7v22_Feeder_CA/HL7v22_Feeder_CA_HL7_ANY_HL7Out}hl7wsdlOperation.
            at com.sun.jbi.hl7bc.OutboundMessageProcessor.processOneWayOutbound(OutboundMessageProcessor.java:851)
            at com.sun.jbi.hl7bc.OutboundMessageProcessor.processMessage(OutboundMessageProcessor.java:301)
            at com.sun.jbi.hl7bc.OutboundAction.run(OutboundAction.java:66)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
            at java.lang.Thread.run(Thread.java:619)
    Caused by: javax.xml.transform.TransformerException: org.xml.sax.SAXParseException: HL7ENC-E0027: Element: MSH.11 must occur at least 1 time(s)
            at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.java:720)
            at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.java:313)
            at com.sun.jbi.hl7bc.util.XmlUtil.transformToDOMResult(XmlUtil.java:268)
            at com.sun.jbi.hl7bc.OutboundMessageProcessor.getDOMResult(OutboundMessageProcessor.java:2187)
            at com.sun.jbi.hl7bc.OutboundMessageProcessor.start2WayChannelWithExtSystem(OutboundMessageProcessor.java:1723)
            at com.sun.jbi.hl7bc.OutboundMessageProcessor.processOneWayOutbound(OutboundMessageProcessor.java:825)
            ... 5 more
    Caused by: org.xml.sax.SAXParseException: HL7ENC-E0027: Element: MSH.11 must occur at least 1 time(s)
            at com.sun.encoder.hl7.runtime.provider.UnmarshalAdaptor.throwException(UnmarshalAdaptor.java:1181)
            at com.sun.encoder.hl7.runtime.provider.UnmarshalAdaptor.parsePseudoGroup(UnmarshalAdaptor.java:771)
            at com.sun.encoder.hl7.runtime.provider.UnmarshalAdaptor.parseFieldCompSubcomp(UnmarshalAdaptor.java:490)
            at com.sun.encoder.hl7.runtime.provider.UnmarshalAdaptor.parseParticle(UnmarshalAdaptor.java:340)
            at com.sun.encoder.hl7.runtime.provider.UnmarshalAdaptor.parseSequence(UnmarshalAdaptor.java:571)
            at com.sun.encoder.hl7.runtime.provider.UnmarshalAdaptor.parseParticle(UnmarshalAdaptor.java:351)
            at com.sun.encoder.hl7.runtime.provider.UnmarshalAdaptor.parseSegmentOrPseudo(UnmarshalAdaptor.java:532)
            at com.sun.encoder.hl7.runtime.provider.UnmarshalAdaptor.parseParticle(UnmarshalAdaptor.java:342)
            at com.sun.encoder.hl7.runtime.provider.UnmarshalAdaptor.parseSequence(UnmarshalAdaptor.java:571)
            at com.sun.encoder.hl7.runtime.provider.UnmarshalAdaptor.parseParticle(UnmarshalAdaptor.java:351)
            at com.sun.encoder.hl7.runtime.provider.UnmarshalAdaptor.parse(UnmarshalAdaptor.java:306)
            at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transformIdentity(TransformerImpl.java:637)
            at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.java:708)
            ... 10 more
    Accepted the message in DBBC Binding.
    HL7BC-I0139: Set message exchange status to ERROR for message exchange ID 68899546013632-10229-134707429439760109 and exchange pattern http://www.w3.org/2004/08/wsdl/in-only
    FILEBC-W00708: One-Way Inbound MessageExchange for service: {HL7v22_Feeder_CA}casaService1, endpoint: casaPort1, operation: {http://j2ee.netbeans.org/wsdl/HL7v22_Feeder_CA/HL7v22_Feeder_CA_HL7_ANY_HL7Out}hl7wsdlOperation, was returned with status=ERROR. If Re-delivery is configured, message will be re-sent.
    FILEBC-E00767: Provider for service [{HL7v22_Feeder_CA}casaService1] endpoint [casaPort1] responded with an error status. Error detail is: HL7BC-W0121: Unable to process message exchange 68899546013632-10229-134707429439760109, end point com.sun.jbi.hl7bc.EndpointImpl@8cce44 and operation {http://j2ee.netbeans.org/wsdl/HL7v22_Feeder_CA/HL7v22_Feeder_CA_HL7_ANY_HL7Out}hl7wsdlOperation.I wonder if the MEP could be the reason. I think I chose in-only, and for the ACK to be sent, it could be necessary to go for in-out. Yet, what's puzzling me is the error message: MSH.11 must occur at least 1 time(s). Could it be that the ACK is badly generated? In the input (ADT) HL7 this field is populated with a P.

    Sadly, the reason was nothing but the Oracle JDBC driver. While it was correctly working as far as NetBeans is concerned, it was not for GlassFish. Hence, with the bubbling up exception mechanism, the stacktrace I got. Problem solved, but nasty error message.
    Thanks anyway.

  • Getting campaign data from external system to display campaigns/offers

    Hi,
    I have to find a solution for a campaign requirement for my company.
    The user centric campaigns are managed by a external system provider who process billing statements (eg if you see your paper credit card statement, you see special offers, campaigns in your paper statement.)
    On similar lines we have to show/build the campaign in our WLP application. The campaign data is hosted in external systems.
    We have to think of a generic reciever in WLP which can get the external campaign data and based upon that it can display right campaign to logged in users.
    Any ideas, leads. Has somebody implememted such a feature.
    Any help will be appreciated

    Hi Vishnu,
    OK, I see now. You don't want a pluggable user profile data source, you want a pluggable campaign rule and pluggable campaign content. I don't think there is such a thing as a framework for plugging an external campaign into Oracle WebLogic Portal.
    I don't think you can plug an external campaign rule into the Oracle WebLogic Portal rules engine but you can make Oracle WebLogic Portal see external user profile data and external content. So, 2 of the 3 ingredients for the campaign are easy enough to make available to the portal. I would guess that you either need to transform the campaign definition into the proper XML document for consumption by the portal's rules engine or you need to evaluate the campaign on the external system and have the results available to the portal via a mechanism like UUP.

  • PI sheet data from external system for GI and GR

    Hi Gurus,
    I need a help to set up a PI sheet related config (type 2 or 3 of CRD), wherein I will get the GI and GR related information from the external system , eg Bar code scanner and some PC automation etc.
    Regards,
    Amol Kale

    Hi,
    I am not sure of the usage of the RFC's in this context.
    If you want to read a file from the application server, use the OPEN DATASET, READ and CLOSE DATASET commands.
    You can find more help on this here
    http://help.sap.com/saphelp_nw04/helpdata/en/79/c554dcb3dc11d5993800508b6b8b11/frameset.htm
    You can upload the entire file into a internal table which a a field of string data type and after that loop at the table and process the data according to your logic (Either length delimited, ',' delimited.
    Ig you want to do this remotely, you can put all this logic in the function module and make it remote enabled.
    Regards,
    Ravi
    Note : Please mark the helpful answers

  • Which idoc type allows to send plant/sloc info to external system?LOISM001?

    Dear EDI Experts,
    we are looking for a solution for the following issue:
    An external system (Mobile solution) shall get plant/stock info from SAP ERP.
    Process:
    1.Plant/Slocation is NOT empty, e.g. Material 1100 -> 100 PC
    2. Stock is posted to Pant/Sloc, e.g. Material 1110 -> 50 PC + Mat. 1200 -> 80 PC
    For the stock movement idocs can be generated BUT we need ALL stock of Plant/Sloc in idoc
    -> 100 PC of 1100
    ->  50 PC of 1110
    -> 80 PC of 1200
    As far as I know NO standard IDOC type exists which offers to transfer such info.
    I came across the LOISM001 (to be triggered via transaction POIT) idoc which may meet the requirments. BUT it creates an idoc per material.
    Questions:
    1. LOISM001: Is there any chance to combine all materials of a plant/storage location to ONE idoc?
    2. Any other idoc type suitable and how to trigger automatically?
    Many thanks
    Regards
    JW
    Edited by: Jens Wolf  on Jul 1, 2008 3:34 PM

    Hi !
    You may check out the PROACT01.
    It's designed to transmit stock data.
    Hope that helped a bit.
    Rainer

  • Sending and getting data from external file.

    I'm running it in actionscript 1  and 2 since 3 wouldn't work when getting data from external media. I'm  trying to find out how to post data to a PHP file and getting from that  file I'm trying to make the flash for something that works like a game  but differently. Since I just found out how to make the HTML stuff show  up but a lot of times, some of my text will not appear so I don't know  what's going on.
    Does anyone know how to send and get data both at the same time from a sample file?
    The sample file is example.php
    It has to sent information like ID and NAME
    and it has to get information like Description and userID

    Ned Murphy wrote:
    The tutorial I pointed you to does provide the visuals you requested, both the AS code and sample PHP code, so I can't see where your learning by visuals aspect holds up.... your approach sounds more like you want someone to hand you a tailored solution that you won't need to learn from.  Visuals require reading and doing.  If that fails to get absorbed or you couldn't understand/revise it, what could anyone else prepare for you that would work better?
    I did the tutorial and everything but every time I press the button or even load it, it keeps on saying undefined. I like the have a sample FLA file so I can figure things out. I did everything from the site but it won't work out for me.
    I did step 5 too because it was almost all that I was looking for but it won't even work. keeps on saying undefined. I would show you but webcam max won't work and I can't show you an example.
    EDIT:
    You know it's frustrating when I don't know how the heck I'm supposed to do this stuff. I read the whole dang thing and I still can't get this dang thing working.
    I did everything. EVERYTHING. I just don't get this crap.

  • Passing data to external system

    Hi all,
    Please let me know if anyone faced this type of problem. Here i explined what is the issue exactly.
    1)i am getting unit of measurement "c (degree celsius) in the result character structure in BAPI function module.
    2) when ever passing these values(Unit of measurement) to external system(like some screen) in that it is displaying as "GC"
    but "c( degree celcius as stored in t006 table(in sap) as GC).
    3) how can i show this GC as "c(degree celsius) in external system.
    Please assist me if anyone across this type of problem.
    Thanks
    Raju

    Hi Raju,
    This is due to conversion exit. You can check the domain of the unit field. There is a field for conversion exit.
    You can copy this and check in SE37 for the corresponding function module. There will be two function modules with the following pattern.
    CONVERTION_EXIT_ABCD_INPUT
    CONVERTION_EXIT_ABCD_OUTPUT
    Where ABCD is the name of the convertion exit.
    Using this function modules you can convert the unit of measure from 'C' to 'GC' and vice versa.
    Kindly reward points if your question is answered.
    Thanks
    Vinod

  • Integrate HR OM master data to external system HRMD_A / HRMD_B / HRMD_ABA ?

    Hi,
    I would like to setup hr master data distribution using PI to external non SAP system. after i have searched from the document there are 3 idoc HRMD_A, HRMD_ABA and HRMD_B. Please advise which message type more suitable for my scenario ?
    Thank you and Best regards
    Fernand

    Hi,
    The difference is in the segments that each one includes, you can check it in transaction WE30 for example for
    the IDOC Type HRMD_A07 (which is linked to HRMD_A)vs. the IDOC type HRMD_ABA05 (which is linked to HRMD_ABA)
    The first one manages more record, therefore you can send more infotypes. This is because its manages all the standard OM information.
    The HRMD_ABA is more used if your destinatio is a CRM or SRM system which requires less data.
    Regards,

  • Taking time data from external system(KRONOS) into SAP

    Dear Friends,
    I have to intergrate my time managemnt to time recording machine(KRONOS) am not aware about that it's sap certified or not .How we can access the data from that machine and insert in sap tables that means we have to communicate sap to non sap system.I don't have to use the BDC because i have to update our table according to machine shall i go for IDOC and EDI.In that case which IDOC or EDI i have to use .I have to create the INBOUND interface for that .Kindly help me am stuck
    thanks
    sandeep dabral

    Hi Sandeep,
    You require a abap guy along with a basis person. Below steps are required.
    Step 1: The third party ll specify the file format in which they are going to send the data.
    Step 2. You need to check with the basis or a third tool to upload the file into SAP application directory tcode al11.
    step 3: Then the ABAP guy will write a interface program using this BAPIs to upload the data in to catsdb.
    Step 4. Then functional testing and bug fixing and finially sheduling the inteface job in Production.
    Br/Manas

  • How to send price condition changes to external system

    Hi all,
    By using trans: VK11/VK12 we may add and change pricing conditions for a particular condition type.
    We want to send to PI changes beeing made (for amount, date interval, e.t.c...). Our condition type is ZPRB, involving the following table to be changed: A090, A662, A677, A663 (in addition to KONH/KONP).
    We thought we could program changes/insertions in the process to a new table refering the changes, and use a proxy call to be triggered upon this table, but unfortunately these transactions (VK11/VK12) does not contain any User Exit. So we have to make changes to the standard SAP if we go for that solution.
    My question is therefor: Is there a better way of transferring the price changes made by these transactions (ALE/Changepointer, BAPI, IDOC, e.t.c...).
    Please advice and describe what is the best solution?
    Best regards
    Leif Lohne.

    Good idea. Doing this exposed 2 problems:
    1 - First problem: The program changes in the midi file work from logic, but not when the midi file is played from a Mainstage external instrument channel strip. So it seems that Mainstage is stripping out the program changes. (Any note play information in the midifile is played from Mainstage, but not the program changes.)
    2 - Second Problem: The sys ex event instruction (I typed in manually in the event editor in logic) to change performance modes on the external keyboard is not working from logic either... So I must be doing something wrong?  I have to create the sys ex event manually, since the external keyboards I'm using don't transmit mode changes for me to record into a midifile. In this case, I'm using a Yamaha S90ES, and manually created the sys ex event in logic for mode change to Voice:
    Yamaha S909ES Voice mode:  $F0 $43 $11 $7F $01 $0A $00 $01 $00 -$F7+
    However, the mode does not change when the file is play back from logic...
    Sure appreciate your help...

Maybe you are looking for

  • No sound, ecept whem plug speakers in

    I know this subject or a similar subject has been touched on quite a bit, but I couldn't find anything that directly correlated to my problem. I have no sound on my power mac g-5 except when I plug in external speakers. I tried to look into the audio

  • How to create the Certificate Store

    Dear Friends: I am a newbie to Crypto.. I want to know whether Java supports development of a Certificate Store. Mail me the source code. [email protected] Regards Ritesh

  • Confirm Shockwave player file version by looking at a file version?

    When I go online it says I have Shockwave Player 11.5.2r602.  But I can't see to locate a file anywhere on my computer that when I look at it's file version, it shows that.  Does anyone know how I can verify the shockwave player version of a computer

  • Unable to start EHPI on Windows

    Hello All, Good day. We are currently configuring our SAP ERP 6.0 into Enhancement Package 4. We're not able to start the EHPI using http://<localhost>:4239, it doesn't launh the EHPI gui. I have used jce_policy-1_5_0.zip (note 1240081) since this is

  • SANDBOX is in which server?

    Hi Any one pls let me know, in which server SANDBOX exists? I know that Landscape = Dev --> QAS --> PROD servers. But how Sandbox is categorised among these servers?