Fax via SAP

Hi,
Is it possible to send a Fax from SAP R/3 without any additional software-licence costs?
Thank you.

Hi
Can send a fax with out any additional cost from sap
In SAP, we send different output types(read documents) for Inquiries, quotations, orders etc. to relevant partners (read contact persons) sold-to party, ship-to party etc. thru various transmission mediums like ex. Print, Fax, e-mail etc.
Output can be determined by using component output determination procedure. System should know from where the output is to be determined whether from IMG or from customer A/C group. This is depended upon the control that we can activate or deactivate in "Check access for condition type" in definition of the output.
Output Determination:
IMG > Sales and Distribution > Basic Functions > Output Control > Output Determination Output Determination Using the Condition Technique > Maintain Output Determination for Sales activities/ Sales Documents etc.
NACE tocde is used for Output Type, Condition Record, Procedures, and Access Sequence Configuration.
For example in NACE:
Choose application area as EF -> Click on Output Types pushbutton -> Check the Output Types and double click on Processing Routines option on the left pane of the window -> It will show you the transmission medium, program, and form.
You can maintain new entries here.
Similarly you would create condition records and access sequences.
Check the link
http://saptechsolutions.com/pdf/EnhancingOutputDetermination.pdf
Sail

Similar Messages

  • How to send fax thru sap system

    Hi all,
    I need to send a fax thru sap system. In the given parameter I need to give email address & fax number. The result is the content I shud receive as both email & fax.
    As far as email is concerned no problem. But I am not receiving the content fax. I am getting the following error as email. Pls find below the error message.
    Your message did not reach some or all of the intended recipients.
          Subject:     000000002008
          Sent:     4/5/2007 11:47 AM
    The following recipient(s) could not be reached:
          FAX3D2B918041396976@75 on 4/6/2007 2:31 AM
                The e-mail account does not exist at the organization this message was sent to.  Check the e-mail address, or contact the recipient directly to find out the correct address.The MTS-ID of the original message is:ADR32000000006890
    < sap.corp #5.1.1 SMTP; 553 <FAX=+918041396976@75>... only FQDN names will be accepted>
    The fax number I typed is +918041396976 but the system itself is adding @75 behind it. I am not getting the fax message.
    Can anyone help me in this regard.
    Thanks in advance.
    Vijay.

    Hi Vijay,
    The fax nio. parameter can be handled thru the program. I mean remove those extra characters... and try this code below for ref (its from sap-img.com)
    The following program shows you how to send a fax from within ABAP/4. The report is delivered
    in the standard system and is used in Transaction SCOM for the function "Send test fax".
    Only the method via the call of SAPscript with DEVICE='TELEFAX', described below, ensures the
    generation of a correct transmission request, independent of the R/3 release and of the used
    fax server solution and its configuration.
    The regular printing (for example, with NEW-PAGE PRINT ON...) on an output device created in
    the spool administration of the device class 'Telefax' does generally not work!
    REPORT RSKSENDF MESSAGE-ID SK.
    Test report to send a test fax
    sends a fax to the number <TO_CNTRY>-<TO_NMBER>
    containing an automatically generated message text.
    TABLES: USR03.
    PARAMETERS: TO_CNTRY LIKE T005-LAND1 OBLIGATORY,
    TO_NMBER LIKE TSP01-RQTELENUM OBLIGATORY,
    FROM_USR(30) TYPE C DEFAULT SY-UNAME,
    TO_RECIP(30) TYPE C DEFAULT SY-UNAME.
    SAPscript content ITAB
    DATA: BEGIN OF TEST_DOC OCCURS 10.
    INCLUDE STRUCTURE TLINE.
    DATA: END OF TEST_DOC.
    SAPscript header struct
    DATA BEGIN OF HEADER.
    INCLUDE STRUCTURE THEAD.
    DATA END OF HEADER.
    INITIALIZATION.
    get county from user addres in usr03
    system->user profile->user address
    check if not empty
    SELECT SINGLE * FROM USR03 WHERE BNAME = SY-UNAME.
    IF SY-SUBRC = 0 AND USR03-LAND1 <> SPACE.
    TO_CNTRY = USR03-LAND1.
    ENDIF.
    START-OF-SELECTION.
    PERFORM FILL_UP_TEST_DOC.
    PERFORM SHOW_TEST_DOC.
    AT PF08.
    PERFORM SEND_FAX TABLES TEST_DOC USING TO_CNTRY
    TO_NMBER.
    AT SELECTION-SCREEN ON TO_NMBER.
    PERFORM CHECK_NUMBER USING TO_CNTRY TO_NMBER.
    *& Form CHECK_NUMBER
    FORM CHECK_NUMBER USING
    COUNTRY
    NUMBER.
    DATA: SERVICE LIKE TSKPA-SERVICE VALUE 'TELEFAX',
    LEN LIKE SY-FDPOS.
    FIELD-SYMBOLS <P>.
    windows GUI push the ? from mandatory input instead
    of overwriting it
    LEN = STRLEN( TO_NMBER ).
    IF LEN > 1.
    SUBTRACT 1 FROM LEN.
    ASSIGN TO_NMBER+LEN(1) TO <P>.
    IF <P> = '?'.
    <P> = SPACE.
    ENDIF.
    ENDIF.
    official check FM
    CALL FUNCTION 'TELECOMMUNICATION_NUMBER_CHECK'
    EXPORTING
    COUNTRY = COUNTRY
    NUMBER = NUMBER
    SERVICE = SERVICE.
    on old 21?/22? release you may have to handle the
    exception
    because the Function uses RAISE instead of
    MESSAGE... RAISING....
    ENDFORM. " CHECK_NUMBER
    *& Form FILL_UP_TEST_DOC
    fills test text in itab TEST_DOC *
    real life example needs to get real life data *
    FORM FILL_UP_TEST_DOC.
    DATA: DATUM(12) TYPE C,
    UZEIT(10) TYPE C.
    SAPscript initialization
    of course, you may want to set a few parameter
    (FORM,LAYOUT,....)
    CALL FUNCTION 'INIT_TEXT'
    EXPORTING
    ID = 'ST '
    LANGUAGE = SY-LANGU
    NAME = 'FOO-BAR'
    OBJECT = 'TEXT'
    IMPORTING
    HEADER = HEADER
    TABLES
    LINES = TEST_DOC
    EXCEPTIONS
    OTHERS = 1.
    IF SY-SUBRC <> 0.
    MESSAGE A400 WITH 'INIT_TEXT'.
    ENDIF.
    PERFORM ADD_EMPTY_LINE.
    WRITE: SY-DATUM TO DATUM.
    WRITE: SY-UZEIT TO UZEIT.
    PERFORM ADD_LINES USING 'This is test Telefax'(001)
    DATUM UZEIT.
    PERFORM ADD_EMPTY_LINE.
    PERFORM ADD_LINES USING 'From: &'(002) FROM_USR SPACE.
    PERFORM ADD_LINES USING 'To: &'(003) TO_RECIP SPACE.
    PERFORM ADD_LINES USING 'Fax number: & &'(004)
    TO_CNTRY TO_NMBER.
    PERFORM ADD_EMPTY_LINE.
    PERFORM ADD_LINES USING
    'This is a test fax send by Report RSKSENDF'(005)
    SPACE SPACE.
    PERFORM ADD_LINES USING 'on SAP system & '(006)
    SY-SYSID SPACE.
    PERFORM ADD_EMPTY_LINE.
    PERFORM ADD_LINES USING
    'the quick brown fox jumps over the lazy dog.'(101)
    SPACE SAPCE.
    PERFORM ADD_LINES USING
    'THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG.'(102)
    SPACE SAPCE.
    PERFORM ADD_EMPTY_LINE.
    PERFORM ADD_LINES USING 'End of test'(007) SPACE
    SPACE.
    ENDFORM. " FILL_UP_TEST_DOC
    *& Form ADD_LINES
    printf a line an appends it in test_doc *
    --> cformat format.
    --> p1 param1
    --> p2 param2
    FORM ADD_LINES USING CFORMAT P1 P2.
    TEST_DOC-TDFORMAT = '/'.
    TEST_DOC-TDLINE = CFORMAT.
    IF TEST_DOC-TDLINE CA '&'.
    REPLACE '&' WITH P1 INTO TEST_DOC-TDLINE.
    IF TEST_DOC-TDLINE CA '&'.
    REPLACE '&' WITH P2 INTO TEST_DOC-TDLINE.
    ENDIF.
    ENDIF.
    APPEND TEST_DOC.
    ENDFORM. " ADD_LINES
    *& Form ADD_EMPTY_LINE
    appends an empty line to test_doc *
    FORM ADD_EMPTY_LINE.
    TEST_DOC-TDFORMAT = '/'.
    CLEAR TEST_DOC-TDLINE.
    APPEND TEST_DOC.
    ENDFORM. " ADD_EMPTY_LINE
    *& Form SHOW_TEST_DOC
    lists the test doc for aproval *
    *>>>> this is for fun only because PRINT_TEXT also
    offers a preview *
    FORM SHOW_TEST_DOC.
    FORMAT COLOR COL_BACKGROUND INTENSIFIED OFF.
    WRITE: / 'Test fax would look like this:'(020).
    ULINE.
    SKIP.
    LOOP AT TEST_DOC.
    IF TEST_DOC-TDLINE <> SPACE.
    WRITE:/ TEST_DOC-TDLINE.
    ELSE.
    SKIP.
    ENDIF.
    ENDLOOP.
    SKIP.
    ULINE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE: 'Press PF8 to send it'(021).
    ENDFORM. " SHOW_TEST_DOC
    *& Form SEND_FAX
    send fax by calling SAPscript *
    Note: Instead of using PRINT_TEXT you may also *
    call OPEN_FORM / WRITE_FORM_LINES / CLOSE_FORM, *
    this allows you to use a similar program structure *
    as with NEW-PAGE PRINT ON / WRITE / NEW-PAGE PRINT
    OFF *
    FORM SEND_FAX
    TABLES DOC2FAX STRUCTURE TEST_DOC
    USING COUNTRY
    NUMBER.
    DATA: SID(5) TYPE N.
    DATA BEGIN OF POPT.
    INCLUDE STRUCTURE ITCPO.
    DATA END OF POPT.
    DATA BEGIN OF PRES.
    INCLUDE STRUCTURE ITCPP.
    DATA END OF PRES.
    CLEAR POPT.
    POPT-TDCOPIES = 1. " one copy
    POPT-TDDEST = " done internaly by script,
    POPT-TDPRINTER = " do not fill !!!
    POPT-TDNEWID = 'X'. " do not reuse old spool request
    POPT-TDDATASET = 'TEST'(022). " fill as you want
    POPT-TDSUFFIX1 = 'FAX'(023). " fill as you want
    POPT-TDSUFFIX2 = SY-UNAME. " fill as you want
    POPT-TDIMMED = 'X'. " send now
    POPT-TDLIFETIME = 8. " keep 8 days in spool
    POPT-TDTELENUM = NUMBER. " number without country code
    POPT-TDTELELAND = COUNTRY. " country of recipient
    POPT-TDCOVER = 'test fax'(024).
    POPT-TDCOVTITLE = 'test fax'(024).
    POPT-TDIEXIT = 'X'.
    CALL FUNCTION 'PRINT_TEXT'
    EXPORTING
    APPLICATION = 'TX'
    ARCHIVE_INDEX = ' '
    ARCHIVE_PARAMS = ' '
    DEVICE = 'TELEFAX' "<<< here we say: fax it !
    DIALOG = 'X'
    HEADER = HEADER
    OPTIONS = POPT
    IMPORTING
    RESULT = PRES
    TABLES
    LINES = DOC2FAX
    EXCEPTIONS
    OTHERS = 01.
    do not bother with exception in sample code
    CANCELED = 01
    DEVICE = 02
    FORM = 03
    OPTIONS = 04
    UNCLOSED = 05
    UNKNOWN = 06
    FORMAT = 07
    TEXTFORMAT = 08
    EXTERNAL = 09.
    IF SY-SUBRC = 0.
    arriving here means we could send:
    SID = PRES-TDSPOOLID.
    IF SID > '00000'.
    MESSAGE S433 WITH SID.
    ENDIF.
    LEAVE .
    ELSE.
    do not bother with exception in sample code
    MESSAGE A400 WITH 'PRIN_TEXT'.
    ENDIF.
    ENDFORM. " SEND_FAX

  • Error when clicking send fax in SAP B1 2007A

    Hi,
    I'm trying to configure my client's SAP B1 server to be able to send faxes via SBOMailer and MS Fax. I read the guides and documentation.
    1. Does faxing only work strictly in the scenarios stated in the documentation?
    2. Will it work if:-
    a) The server has MS Fax and a fax modem installed; and
    b) I am logged in to the server via remote desktop; and
    c) I only configured the fax portion of the SBOMailer since I am not using the email function?
    Basically, in this scenario, the Service Manager, SBO Mailer, MS Fax, fax modem and SAP Client (because I am using remote desktop) are on the same machine.
    I am asking this because I keep getting the following error when I click send:-
    "Email address has not been defined for the sender. Cannot send email, SMS, or fax. , 'manager' [Message 3581-4]"
    I have checked the company details, business partner details and the fax console's "sender information". They all have email addresses and fax numbers keyed in.
    After a few minutes, the fax console shows that the system tried to dial to itself and so got a "no dial tone" error. The file that it sent only contained the Cover page and nothing else. What's going on?
    Can anyone out there help me?
    Regards,
    Jin Siang

    Hi,
    Thanks for your advice. That solved one part of the problem. Now the system states "Operation Completed Successfully." BUT nothing appears in the fax console outbox and sent folders. The SBOMailer and MS Fax do not seem to be communicating with each other.
    Email settings are blank because it is not used.
    For fax settings, I put:-
    Microsoft Fax Server: Server IP
    Fax Server Type: Microsoft Fax
    All tickboxes have been checked.
    Schedule settings: On specific date
    Connection settings: Correct login settings
    Database settings: Correct DB selected
    Any ideas, guys?
    Thanks,
    Chris.
    Edited by: Jin Siang Lee on Feb 18, 2009 10:38 AM
    Edited by: Jin Siang Lee on Feb 18, 2009 10:44 AM

  • Faxing via SMTP using Faxination 5 as the Fax Server

    Hi,
    I need to setup faxing from a ECC6 server using a Faxination 5 server.  Currently we have it setup OK using a 4.6C server but ECC6 doesn't work.....so I am looking for a work around.....this is were I hope you guys can help
    I was thinking of setting up Faxing via SMTP (using MS Exchange) and the Faxination 5 server, has anyone done this? Or know if it can be done using Faxination?
    Faxing is possible from Exchange using a Faxination Exchange connector and I have looked at the thread Extraneous "FAX=+" prefix when sending faxes via SMTP and it would appear that other people have set this up using different Fax software.  Does anyone know what format the fax server will be looking for?
    Many thanks
    Rob

    Hello,
    Basically the RFC interface of SAPConnect has not been changed, so your FAXServer should be able to handle RFC Faxing also in ECC6 Server.
    You can recheck the configuration. /* Or copy here the error message, so we can take a look at */
    The output formats can be set-up in the SAP System also for SMTP Faxing.
    I think the destionation format should only depend on your Fax server needs.
    Best regards,
    Dezso

  • Faxing from SAP

    I am using SAP Office to fax from SAP and this is going through RightFax. The faxing goes through except that the cover sheet has a whole bunch of German stuff in it like 'An/To/Pour' (for To) and 'Von/From/De' for From and some of the address stuff also has some German stuff in it - what setting do I have to do so that it prints in English only?
    Any help or pointers would be much appreciated.
    Thanks,
    Ravi.

    Hi William,
    We are using SAP ECC 6.0 and that's where I am trying to fax from. When I say SAP Office, I mean SAP Business Workplace (t-code sbwp). This then uses SAP Connect and then via RightFax to send the fax.
    Thanks,
    Ravi.

  • SSO to SAP via SAP Logon Group

    Hi,
    I've tried to configure SSO to SAP via SAP logon group. When trying this I'll get the following error:
    Connect to message server failed Connect_PM MSHOST=<server>, R3NAME=IB1, GROUP=IB1_Web LOCATION CPIC (TCP/IP) on local host ERROR The message received isn't from a message server. Are you really connected to the message server? Please check your connection parameters. (<server> / sapmsIB1) TIME Tue Dec 16 16:48:49 2008 RELEASE 640 COMPONENT MS (message handling interface, multithreaded) VERSION 4 RC -2
    I've also configured the file services under winnt\system32\drivers\etc on the BO server with the following line:
    +sapmsIB1      443/tcp     +
    Is there anything I'll have to configure too? Or what does this error mean? The server which I have tried to reach is a message server.
    Thanks in advice.
    Claudia

    HI Ingo,
    yes I can connect with SAP GUI via message server and application server. I can also connect with BO via sso to the application server. Only the message server failed.
    I have now found out that I had the wrong port. But also the right port doesn't work. I have tested the port with telnet. The port is reachable.
    Thanks
    Claudia

  • User is getting email delivery failure when processing via SAP as it tries to send an email to a user who have left the company

    Hi Experts,
    I need to remove a name on a group list in Outlook as the user is getting email delivery failure when processing via SAP (He sends the invoice for approval and emails get sent to different users for approval.) One of those users has left the company and so the user gets a email delivery failure error.
    How do I remove this user who is no longer with the company?
    The user is saying: When I approve an invoice in SAP it sends an email notification through outlook. One of those users is no longer with the company so it cannot deliver the notification, and in return send a delivery failure (in outlook). I am approving the invoices from my SAP Workplace inbox.
    How do we know what group the email is going to?
    Please let me know if you have seen this issue before. Greatly appreciate your help.
    Thanks,
    Asad

    Hi,
    Please check whether you are using a custom z program for sending emails of approved invoices to users. If yes then either the user email ids are hardcoded in the program else a ztable is maintained for them.

  • Error while attaching PDF to FI doc via SAP services

    Hi,
    I am calling SCMS_DOC_CREATE_FILES funtion module to attach PDF to FI doc via SAP services and SAP internally calling standard function 'HTTP_POST_FILESu2019 with RFC_DESTINATION u2018SAPHTTPAu2019 and returned error due to connection fail.
    RFC DESTINATION SAPHTTPA checked and   its working fine.
    call function 'HTTP_POST_FILES' destination rfc_destination
        EXPORTING
          uri                   = absolute_uri
          path                  = component_path
          proxy                 = proxy
          trace                 = http_trace
          prefix                = component_prefix
          user                  = user
          pwd                   = password
        IMPORTING
          status                = status_code
          stext                 = stext
          error                 = cerror
          etext                 = comp_err
        TABLES
          resp                  = response_entity_body
          resphead             = response_headers
          reqhead               = request_headers
          comp                  = components
          compx_255             = componentsx
        EXCEPTIONS
          system_failure        = 1  message msg
          communication_failure = 2  message msg.
         output:   Sy-subrc is 0 and status_code is '403'
    response_entity_body internal table return the below error information:-
    -     HTTP/1.1 403 Forbidden
    -     Server: Apache-Coyote/1.1
    -     X-ErrorDescription: Genuine channels operation exception: Can not connect to the remote host "gtcp://127.0.0.1:49008". System error message: No connection could be made because the target machine actively refused it 127.0.0.1:49008.
    -     Content-Type: text/html;charset=utf-8                           Date: Tue, 08 Nov 2011 21:36:02 GMT
    -     Connection: close
    Please help i am not to able find the reason why i am getting status_code is '403' and RFC failed.
    Thanks
    Sireesha
    Edited by: Sireesha_SAP on Nov 10, 2011 8:53 PM
    Edited by: Sireesha_SAP on Nov 10, 2011 10:16 PM

    Hi,
    I would like to know what font type, you are using in the forms.
    Ideally it should be HELVETICA .
    If you are using any other font in your style/form,try changing it to HELVETICA & Test.
    Also Check the OTF data at the call of gen. FM,before converting it to PDF.
    Regds,
    AS
    Edited by: abheesawant on Oct 12, 2011 7:48 AM

  • Access directory in remote server via SAP GUI

    Dear experts:
    My servers are with windows server 2003 OS, I want to access directories in a remote server via SAP GUI(in tcode AL11).
    I have shared the directory in the remote server, and grant full control authrization to everyone. Then I map a driver to the shared diretory on SAP server,and I can open the diretory successfully. But when I add this diretory to SAP-directories(through tcode AL11), I can't open it in SAP GUI, when I doudle click on this directory, the error message occurs on the status bar:"Wrong order of calls <- CALL opendir: Not a directory(,,..)"
    How can I fix this problem? Thanks!

    > I have shared the directory in the remote server, and grant full control authrization to everyone. Then I map a driver to the shared diretory on SAP server,and I can open the diretory successfully.
    Please note:
    Driver letters are user dependent. So if you map the drive as administrator or <sid>adm it's not available for user SAPService<SID> (the user running the SAP system).
    So the best thing to access directory is using UNC names like
    \\<servername>\<share>
    not drive letters.
    Markus

  • Fax via email

    I used to have phone service through a voip that offered virtual fax via email. Nice and easy. Now I changed to another provider (Vonage) and I discover that in order to receive faxes via email I need an application.
    All applications I found charge you monthly.
    I received maybe 5 faxes a month (4 of which are spam). So I do not intend paying a monthly fee. At the same time I have a nice and easy fax # and I want to keep that.
    What other solutions are there, please?
    Thanks a lot in advance for your courtesy in replying,
    Luigi

    sig wrote:
    http://www.efax.com/
    $14.99 per month after 30-days?
    The OP is looking for a free service.
    At that rate, Go Daddy's service is far cheaper at $6.99 per month.
    http://www.GoDaddy.com

  • Fax via Bluetooth on Blackberry

    I've googled and found instructions on how to fax via bluetooth according to this doc:
    http://docs.info.apple.com/article.html?artnum=301077
    But when I try to add the fax.ppd file, it isn't in the folder. I've tried to spotlight search for it, but it's no where on my computer. Does anyone know where to get this file. Or better yet, the proper way to fax via Bluetooth???

    I have not successfully faxed via my 8100 Blackberry. I haven't really found anything conclusive on the web that you can. Here is what I did try this weekend:
    * Blackberry 8100 on T-Mobile
    * No data services enabled
    * MacBook White running 10.5.4
    Steps...
    1) Paired cell phone to Mac.
    2) Sending files worked great (once I allowed it in the Mac firewall)
    3) I configured the BT connection from BT preferences on the Mac.
    4) I went to add a fax and BT was on the list. Also the blackberry had a separate line item as well.
    5) I added both (at different times) as a fax.
    6) I faxed a document.
    7) Fax monitor program started up.
    8) I saw some BT activity indicated by the BT icon in the menu bar at the top of OSX.
    9) fax monitor put the fax "on hold".
    That was as far as I got. Maybe this will help stimulate the conversation or help answer some questions. One thing I was unsure about was whether the blackberry port should be RS232 or Modem.

  • Integrating SAP-ERP system to SAP-SCM system via SAP-XI

    Hi All,
    My requirement is to make a scenario for Integrating SAP-ERP system to SAP-SCM system via SAP-XI,Sender side is IDOC Adapter and Receiver side is Proxy.As iam not aware of the scenario procedure can any body could explain briefly step-by-step on this.
    Thanks in Advance.
    ram

    Hi,
    Sender is IDOC so no need to take any communication channel & sender agreement in ID window. 
    Find below link of more information on IDOC configuration
    Introduction to IDoc-XI-File scenario and complete walk through for starters.
    Troubleshooting  File-to-IDOC Scenario in XI.
    Convert any flat file to any Idoc-Java Mapping
    IDOCs (Multiple Types) Collection in BPM
    Outbound Idoc's - Work around using "Party"?
    Troubleshooting  File-to-IDOC Scenario in XI.
    Proxy Configuration
    File to R/3 via ABAP Proxy

  • Route web shop requests via SAP PI

    Dear all,
    I am facing the following problem. My SAP system is connected with an E-Shop. So orders can be processed via SAP ITS by calling a BAPI in the ECC system. Several countries are operating on this ECC.
    In future, there will be a new ECC system, which will be used by some (but not all) of the countries. For that system, we also want to have an E-Shop for ordering.
    However, we can not used different shops, because the orderer can not know from which country (and therefore from which system) he is ordering. But it is importent that in each system, the correct orders are created.
    My question is now. Is it possible (technical feasibility, performance reasons), to route the ITS order request to a BAPI in the new system, which will distribute the orders for the old system with a synchronous client proxy call. This client proxy will basically call the corresponding BAPI in the old system, to process the order.
    I think might technically be possible, but I fear that reply time of the original request back to ITS (and the webfrontend) could be to long.
    Does anyone has experiences with such a scenario? Any ideas how we could distribute the orders in another (more simple) way?
    Thanks and best regards
    florian

    Hi Florian ,
    I think It is Verymuch Possible without hammering your Performance but in that case you should not call New System from old(Or vise-o-versa) but u must have some field in the field that will indicate whether order is to be generated from new system or old system .
    say if there is a parameter in payload "X" which stands for New ECC system
    then in id when we create Receiver Determination you can give condition if FieldName = x then system to be called will be New and in that give corresponding system name
    and in otherwise give another system name.
    But In this case you have to create two Bussiness System.
    Reward  points if Helpful
    Thanks
    Sunil Singh

  • Accessing Solution Manager CHARM Via SAP CRM

    Hi
    Is it possible to accces charm of soultion manager via SAP CRM
    If so how does it work and documentation are welcomed
    Thanks in advance
    R-K

    option 1
      > customise sap crm to cater for the external product in terms of what solution manager charm / service is currently doing for sap componet
        . Create all the status for this products eg: transport is in Dev for product A, Transprot is in QA for product A or product is in Prod then test and close the call
    > access solution manager from crm (NB: work center / service desk can be accessed through crm) the problem is WE NOT SURE OF CHARM
    > also customise crm to cater for IT related issues like broken laptop or netowrk cable not working or  IT related query,
    Option 2
    > intergrate the external product to solution manager o
    > Customise CHARM / service desk to cater for this external product in solution manager the way it does for sap components / ibase

  • GTS Communication via SAP XI

    Hi,
    we have a customer who will use GTS (Global Trade Service) for communicate with costum duty. This practise is called ATLAS Zoll and its typical german.
    Inside the GTS is a Seebruger converted delivered which sends data via EDIFACT and X.400 to the responsible authorities of our country.
    Because the client has also a SAP XI we thought about sending the data from GTS via SAP XI to the authorities, using additional Seeburger Adapter to have all the communication across the XI.
    Special about this is, the authorities have to give a kind of certificate for using SAP XI. There seems to be only a certificate for sending data directly via GTS to the authorities.
    Does anyone have some experience concerning this?! We have a partner that told me that he didn't hear of anything like this, just using GTS instead of SAP XI. Do i have to write an OSS?!
    best regards, Jens

    HI,
    I have not worked on this issue, but , i would like to ask you to refer the below links may be useful..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4f58802d-0a01-0010-e58b-d135f1b01dc5
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/eaf7e690-0201-0010-25bc-db30f0ef9fde
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/66094314-0401-0010-d4a3-a3c1a3246a44
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ffe6d390-0201-0010-d792-9f22c5112c4f
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/espackages/global%2bdata%2bsynchronization
    /thread/80685 [original link is broken]
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/3995b67a-0701-0010-4ab2-80dfcce8a444?prtmode=navigate
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0ab39290-0201-0010-8d9f-bf900163b1db
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/256b06ea-0201-0010-548a-f64ef19263c3
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3c508611-0501-0010-8f8b-8837bf3dda77
    Regards
    Chilla

Maybe you are looking for

  • HT2534 NONE button as one of the payment type option.

    Hi, I installed ITunes for windows and tried to download some free app but when I get to the payment type option I can see the NONE button. Kindly help!

  • Problem in fetching invoice data from VBRK table.

    Hi guys,           I am developing an ABAP program where I have to fetch the invoice data from VBRK and VBRP  based on the PO data or SO data in table LIPS. But I am not been able to link the two tables. Can anyone please suggest what are the PO and

  • CRMD_BUS2000115 mod

    Hello everyone, We are implementing CRM 4.0, EP 60 SP13 and we have a requirement to perform a custom freight calculation when creating a sales order. We will need to call a custom rfc on our ECC system. Can someone point me in the right direction as

  • Updating to 10.6.3 and endless problems

    I've been trying for the past three days to update my Macbook Pro (2009) to 10.6.3 from 10.5.8. The update failed to install (that the the error message, with about 10-11 minutes left in the install). I restarted from the install disk in safe mode an

  • Can I delete mdimport.crash.log??

    DiskInventoryX shows my mdimport.crash.log file to be upwards of 6GB. I know that mdimport is used for Spotlight, but I can't imagine that the crash log needs to be 6GB. Am I safe in deleting this log file? Thanks!