Enhance a datasource with BWA1 in CRM

Hi there,
can anybody tell me how i can change the selection option (from A to P) in the extractstructure in BWA1. Although I am in the change mode, it is not possible to change this field.
Probably, this is a very simple question with an equal simple answer.
Please let me know if you can help me.
Kind regards,
Harald

Hi Bhanu,
I already noticed this option, but I wondered if it was not possible to change the datasource as you can do this in the logistic cockpit. I think that it is a great mis if you should copy a datasource every time you want to add a field which is in the extractstructure but not in the datssource.
Something in me says that it should be possible to change the datasource. Don't you think???
Regards,
harald

Similar Messages

  • Enhance purchasing datasource with movement type

    Hi
    I need to enhance purchasing data source with movement type ( BWART). Can you please suggest me if any standard datasource ( Purchasing ) having this info. I can see that field is present in EKBE table, but how to link EKPO and EKBE table as there are many keys in EKBE table.
    Regards
    Kamal

    Hi
    you need to check the requirement first prior to addressing this issue.
    Purchasing Document will not have the Movement type field. It exists in the Inventory transaction.
    Table EKBE is the History table for Purchase documents. IF you check this table carefully you will see that the Material documents against every Purchase document are stored in this table. The Movement type field in the EKBE table refers to the Material document.
    So if you try to link BKART with Purchasing document # then you may have one or more than one BKART number against one Purchasing document.
    If yoou need the Purchasing document with BKART then it is essential to consider all the keys in EKBE.
    Cheers
    Umesh

  • Enhancing Text Datasource

    Hi
    I want to enhance 0STOR_LOC_TEXT datasource with 0COUNTRY and country key. but, can i use them as a navigational attribute in the report, after adding into 0STOR_LOC_TEXT ?
    Regards
    Anuja

    Hi Anuja,
    For making any infoobject as navigational you need to do following setting
    1)Infoobject should be navigational as master data infoobject.
    2)infoobject should be navigational at data target level(it can be your DSO,Cube,multiprovider).
    Please do above setting at your data model then only you can use that infoobject as navigational at report level.
    Hope it will helpful to you.
    Regards,
    Ganesh Bothe

  • CRM Service - enhance BC datasource

    hi
    i enhanced the extract structure of a CRM BC datasource (the one of item service processes).
    i added two fields via transaction RSA6.
    i mapped the fields  via BWA1.
    i run RSA3 and (obviously) the fields are not filled.
    i wrote the code in CMOD (passed the value 1 to the field).
    the added field is filled correctly with this value.
    now my question is: can i assign the fields normally, via CMOD?
    could this create problems?
    thanks and best regards,
        Stefania

    Hi,
    i need to add SCAPPTSEG-TST_FROM and SCAPPTSEG-TST_TO (we have customized the date scheme in CRM and i found that these information are in the two field of the SCAPPTSEG )
    I think that the datasource read this table...
    Thanks!

  • Steps to enhance a datasource from SAP CRM

    Dear Forum,
    Could you please provide me with some document to enhance a datasource from SAP CRM. Is it any different from enhancement of datasource from ECC datasources,
    Thanks and regards,

    Hi,
    please look this:
    Business Intelligence How-to Guides for SAP NetWeaver 2004 [original link is broken]
    or here: How-to Guides for SAP NetWeaver Business Warehouse  7.0 [original link is broken]
    Creating a datasource for generic extraction
    regards
    CSM Reddy

  • Abap Code TO ENHANCE DATASOURCE with KEY FIELD OF SOURCE TABLE

    Dear Friends, Please help me to resolve this important issue at my end.
    <b>Requirement</b>:  enhance the STRUCTURAL data source which is
    based on the table VISTSU , now this table has a <b>key INTERNO</b> (Data Element : SECAINTRENO) which i want to enhance in datasource 
    SGONR = STRUCTURAL NUMBER present in extract structure of datasource
    Solution: I am not able to see any records for zzinterno enhance field in datasource rsa3 (Extractor CHECKER). Can u help me correct the ABAP code or tell me the way to pull the records for ZZINTERNO from VISTSU table.
    Thanks
    Poonam Roy
    ABAP Code
    data: l_s_REIS_STRUCTURAL_ATTR like REIS_STRUCTURAL_ATTR.
    case i_datasource.
    WHEN '0STRUCTURAL_ATTR'.
    loop at C_t_data into l_s_REIS_STRUCTURAL_ATTR.
    l_tabix = sy-tabix.
    clear  I_VISTSU .
    select single * from VISTSU  into i_VISTSU  where SG0NR = l_s_REIS_STRUCTURAL_ATTR-SGONR.
    if sy-subrc = 0.
    l_s_REIS_STRUCTURAL_ATTR-ZZINTRENO = I_VISTSU -INTRENO.
    modify C_t_data from l_s_REIS_STRUCTURAL_ATTR index l_tabix.
    endif.
    endloop.
    endcase.

    Try the below code.
    data: l_s_REIS_STRUCTURAL_ATTR like REIS_STRUCTURAL_ATTR.
    data: temp_interno like VISTSU -INTRENO.
    data:  h_tabix LIKE sy-tabix.
    case i_datasource.
    WHEN '0STRUCTURAL_ATTR'.
    loop at C_t_data into l_s_REIS_STRUCTURAL_ATTR.
    MOVE SY-TABIX TO H_TABIX.
    clear temp_interno.
    select single INTERNO from VISTSU into temp_interno where SG0NR = l_s_REIS_STRUCTURAL_ATTR-SGONR.
    if sy-subrc = 0.
    l_s_REIS_STRUCTURAL_ATTR-ZZINTRENO = temp_interno.
    endif.
    modify C_t_data from l_s_REIS_STRUCTURAL_ATTR index H_TABIX.
    ENDLOOP.
    ENDCASE.
    Regards, Siva

  • ENHANCE DATASOURCE with key field of source table

    Dear Friends, Please help me to resolve this important issue at my end.
    <b>Requirement</b>:  enhance the STRUCTURAL data source which is
    based on the table VISTSU , now this table has a <b>key INTERNO</b> (Data Element : SECAINTRENO) which i want to enhance in datasource 
    SGONR = STRUCTURAL NUMBER present in extract structure of datasource
    Solution: I am not able to see any records for zzinterno enhance field in datasource rsa3 (Extractor CHECKER). Can u help me correct the ABAP code or tell me the way to pull the records for ZZINTERNO from VISTSU table.
    Thanks
    Poonam Roy
    ABAP Code
    data: l_s_REIS_STRUCTURAL_ATTR like REIS_STRUCTURAL_ATTR.
    case i_datasource.
    WHEN '0STRUCTURAL_ATTR'.
    loop at C_t_data into l_s_REIS_STRUCTURAL_ATTR.
    l_tabix = sy-tabix.
    clear  I_VISTSU .
    select single * from VISTSU  into i_VISTSU  where SG0NR = l_s_REIS_STRUCTURAL_ATTR-SGONR.
    if sy-subrc = 0.
    l_s_REIS_STRUCTURAL_ATTR-ZZINTRENO = I_VISTSU -INTRENO.
    modify C_t_data from l_s_REIS_STRUCTURAL_ATTR index l_tabix.
    endif.
    endloop.
    endcase.

    Try the below code.
    data: l_s_REIS_STRUCTURAL_ATTR like REIS_STRUCTURAL_ATTR.
    data: temp_interno like VISTSU -INTRENO.
    data:  h_tabix LIKE sy-tabix.
    case i_datasource.
    WHEN '0STRUCTURAL_ATTR'.
    loop at C_t_data into l_s_REIS_STRUCTURAL_ATTR.
    MOVE SY-TABIX TO H_TABIX.
    clear temp_interno.
    select single INTERNO from VISTSU into temp_interno where SG0NR = l_s_REIS_STRUCTURAL_ATTR-SGONR.
    if sy-subrc = 0.
    l_s_REIS_STRUCTURAL_ATTR-ZZINTRENO = temp_interno.
    endif.
    modify C_t_data from l_s_REIS_STRUCTURAL_ATTR index H_TABIX.
    ENDLOOP.
    ENDCASE.
    Regards, Siva

  • Need help with enhancement with CIC0 in CRM

    HI
    Anyone knows any enhancement points or BADI with transaction CIC0 of the Locator?
    Any help is appreciated!
    Points will be given for useful info.
    Thanks!

    Hi,
    There is a BAdI BUS_LOCA_HIDE_SEARCH which can be used to hide unnecessary search types and search ids.
    In case you would need to enhance the locator with new search types and Ids I can help you with some documents for this. Let me know you e mail id for this.
    Regards,
    Sudheer.

  • Enhancing Master Data Attribute Datasource with a Key Figure

    Hi All,
    I need to add key figure 0PRICE as a display attribute of characteristic 0XYZ.
    I enhanced the datasource 0XYZ_ATTR, by adding an append structure to BIW_XYZ. Do I need to add a currency field to the append structure? Where do I reference this currency field? Your input is greatly appreciated. Thank you.
    Juice

    Yes, you need to include a currency field, at least when you get to the BW side (mapping) ... In this case, if you use 0PRICE, you need to include 0CURRENCY...
    You can either assign it in the ABAP routine for the InfoObject Attributes in CMOD or once you do the mapping in BW... Either as a fixed value or transferred from R/3, if you added it to the enhance structure and assigned a value to it in your CMOD include...
    0MATERIAL is a good reference to look at for this kind of scenario...

  • Delta in enhanced 0HR_PT_1 DataSource

    Hi gurus,
    I have a problem with enhanced 0HR_PT_1 DataSource.
    There are some fields added to the extractor structure and one of these fields (ZNIEOB) should be the base for delta queue.
    Unfortunatelly the delta mechanism doesn't work as it should - the changes in ZNIEOB field don't generate delta records.
    How should I modify the extractor to make the delta work?

    Hi,
    Please check if pseudo delta helps:
    dummy delta/pseudo delta
    -Vikram

  • Enhancment of datasource related query

    Hi BW Guru's
    I have datasource which having 100 fields and enhanced the same with few more new fields.But i required 60 of the existing as well new fields in BW.How would i select those fields in the datasource and get it the same in to BW.
    Please some one could help me in this scenario.
    Regards
    Prasad

    Hi Aryan,
    I think you can go to RSA6 and select your data source and bring it to change mode. Then you can simply check the HIDE boxes for those fileds which you don't want to bring to BW. Then save your changes. After that go to RSA3 and check whether your changes have populated there. Once you are done with that just replcate your data source and follow the same process.
    Regards,
    Jack...

  • XML scheme and Web services enhancement for MS Word integration in CRM 2007

    Hi,
    I am trying to use the Template designer and the web services tool in order to create a MS Word template for the quotation.
    We have created a new web service, using the Web Service Tool
    (transaction BSP_WD_CMPWB, type WS_DESIGN_TOOL). I can use this web service when creating a quotation word template and everything works fine.
    I need to enhance the web service with some custom fields and logic. I found the blog:
    Web-services enhancement for MS Word integration in CRM 2007
    /people/community.user/blog/2008/11/18/web-services-enhancement-for-ms-word-integration-in-crm-2007
    The blog describe how to enhance the web service, extend the output
    structure etc.
    We have done all the steps in the blog, and everything looks fine. When
    we test the web service, using the Web Service Navigator, all the new
    fields we added to the output structure are displayed. The WSDL
    document also looks fine, displayed from the Web Service
    Administration.
    The problem occur when try to create the word template using the
    Template Designer. The XML scheme is not displayed in the word
    document. This only happens if we use an enhanced web service.
    Anyone familiar with this issue?
    Kind regards,
    Johan Wigert

    Hi,
    You may have to upgrade your MS word 2003 to MS Word 2007.
    Before you do that please opening View > toolbars > Task Pane and check if you can get XML Schema from the web service.
    Regards,
    Sandeep Chavan

  • Outlook 2013 with Dynamics 2013 CRM Plugin extremely slow

    I have recently upgraded my Dynamics CRM server from 2013 to 2013 SP1
    All of my user machines (VDI) have office 2013 with the Dynamics CRM 2011 plugin installed (I previous had Dynamics CRM 2011 on a seperate server, but 2013 was released before we set it up and so I removed the old 2011 server).
    The website has a GlobalSign SSL against it and runs fine internally and externally. I also have a terminal server running Server 2012 with Outlook 2013 and the Dynamics CRM 2011 plugin and this also runs fine.
    My machine was running fine but I decided to upgrade the Outlook plugin to 2013 and that's where my problems started. I removed the 2011 plugin (and even followed the detailed guide on how to completely remove it) and then installed the 2013 plugin.
    It installed fine but when I use it, it is ridiculously slow. For example, I highlight an email and then click "Track" in the tool bar. What should happen is the little icon of the blue/green people should appear next to it and then the options for
    "Convert To" text should be available, but they are not. The button at the top changed to read "Untrack" but that's it, making it completely unusable. If I go an make a tea, and then come back and then go an make another tea, sometimes
    it will have updated by the time i get back, but generally it does not. I can close and re-open outlook and still the icon does not display next to the email. Interestingly although the button at the top reads "Untrack" which indicates that it is
    being tracked, the pane at the bottom reads "This email is not being tracked in CRM".
    Now, if I logon to the terminal (RDS) server (that I mentioned above) everything works fine and Outlook updates immediately, all the machines are on the same VLAN and so I should be able to rule out firwall issues (that terminal server is still running the
    2011 plugin) so that would indicate that this is a problem with my machine. I created a fresh machine and installed that same applications and the same problem was had, so that now indicated that its a problem with the plugin perhaps or something very specific
    to my setup.
    I had tried to download and install SP1 for Dynamics CRM 2013 for Outlook but on 2 separate machines I received the same error when installing
    The log for my attempt last night shows:
    23:11:44| Info| Refreshing previous hotfix ARP entries
    23:11:44| Info| Writing registry entry SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\KB2466084_Client_1033
    23:11:44| Info| Writing registry entry SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\KB2466086_Client_1033
    23:11:44| Info| Writing registry entry SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\KB2547347_Client_1033
    23:11:44| Info| Writing registry entry SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\KB2556167_Client_1033
    23:11:44| Info| Writing registry entry SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\KB2567454_Client_1033
    23:11:44| Info| Writing registry entry SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\KB2600643_Client_1033
    23:11:44| Info| Retrieving current hotfix ARP entries for 0c524d20-1409-0060-8a9e-0c4c490e4e54
    23:11:44| Info| Retrieving entry KB2466084_Client_1033
    23:11:44| Info| Retrieving entry KB2466086_Client_1033
    23:11:44| Info| Retrieving entry KB2547347_Client_1033
    23:11:44| Info| Retrieving entry KB2556167_Client_1033
    23:11:44| Info| Retrieving entry KB2567454_Client_1033
    23:11:44| Info| Retrieving entry KB2600643_Client_1033
    23:11:44| Info| Retrieving entry KB2888948_Client_1033
    23:11:44| Info| value 'RegistryLocation': ''
    23:11:44| Info| value 'HelpLink': 'http://support.microsoft.com/kb/2888948'
    23:11:44| Info| value 'ParentKeyName': 'Microsoft Dynamics CRM 2013 for Microsoft Office Outlook'
    23:11:44| Info| value 'UninstallString': 'C:\Windows\\$CrmUninstallKB2888948_Client_1033$\CrmUpdateWrapper.exe /uninstall'
    23:11:44| Info| value 'NoRemove': '0'
    23:11:44| Info| value 'ParentDisplayName': 'Microsoft Dynamics CRM 2013 for Microsoft Office Outlook'
    23:11:44| Info| value 'NoRepair': '1'
    23:11:44| Info| value 'DisplayVersion': '6.0.0000.0809'
    23:11:44| Info| value 'Publisher': 'Microsoft Corporation'
    23:11:44| Info| value 'DisplayName': 'Service Pack 1 for Microsoft Dynamics CRM for Outlook (KB2888948)'
    23:11:44| Info| value 'NoModify': '1'
    23:11:44| Info| Retrieving entry KB2941390_Client_1033
    23:11:44| Info| value 'HelpLink': 'http://support.microsoft.com/kb/2941390'
    23:11:44| Info| value 'UninstallString': 'C:\Windows\\$CrmUninstallKB2941390_Client_1033$\CrmUpdateWrapper.exe /uninstall'
    23:11:44| Info| value 'DisplayName': 'Service Pack 1 for Microsoft Dynamics CRM for Outlook (KB2941390)'
    23:11:44| Info| value 'NoRemove': '0'
    23:11:44| Info| value 'NoRepair': '1'
    23:11:44| Info| value 'RegistryLocation': ''
    23:11:44| Info| value 'NoModify': '1'
    23:11:44| Info| value 'ParentDisplayName': 'Microsoft Dynamics CRM 2013 for Microsoft Office Outlook'
    23:11:44| Info| value 'DisplayVersion': '6.1.0000.0581'
    23:11:44| Info| value 'Publisher': 'Microsoft Corporation'
    23:11:44| Info| value 'ParentKeyName': 'Microsoft Dynamics CRM 2013 for Microsoft Office Outlook'
    23:11:44| Error| System.Exception: Action Microsoft.Crm.UpdateWrapper.MspInstallAction failed. ---> System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
    at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
    at Microsoft.Crm.Setup.Update.HotFixArpEntryHandler.<>c__DisplayClass7.<RemoveSupercededEntries>b__5(ArpEntryDescriptor entry)
    at System.Linq.Enumerable.WhereListIterator`1.MoveNext()
    at Microsoft.Crm.Setup.Update.HotFixArpEntryHandler.RemoveSupercededEntries(IEnumerable`1 arpEntries, Version minimumVersionToKeep)
    at Microsoft.Crm.UpdateWrapper.MspInstallAction.Do(IDictionary parameters)
    at Microsoft.Crm.Setup.Shared.CrmAction.ExecuteAction(CrmAction action, IDictionary parameters, Boolean undo)
    --- End of inner exception stack trace ---, Error, RetryCancel, Option1
    23:11:50| Info| InputResult: Cancel
    23:11:50| Info| CrmAction execution time; MspInstallAction; 00:01:12.9310905
    23:11:50| Error| Install exception.System.Exception: Action Microsoft.Crm.UpdateWrapper.MspInstallAction failed. ---> System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
    at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
    at Microsoft.Crm.Setup.Update.HotFixArpEntryHandler.<>c__DisplayClass7.<RemoveSupercededEntries>b__5(ArpEntryDescriptor entry)
    at System.Linq.Enumerable.WhereListIterator`1.MoveNext()
    at Microsoft.Crm.Setup.Update.HotFixArpEntryHandler.RemoveSupercededEntries(IEnumerable`1 arpEntries, Version minimumVersionToKeep)
    at Microsoft.Crm.UpdateWrapper.MspInstallAction.Do(IDictionary parameters)
    at Microsoft.Crm.Setup.Shared.CrmAction.ExecuteAction(CrmAction action, IDictionary parameters, Boolean undo)
    --- End of inner exception stack trace ---
    at Microsoft.Crm.Setup.Shared.CrmAction.ExecuteAction(CrmAction action, IDictionary parameters, Boolean undo)
    at Microsoft.Crm.UpdateWrapper.HotfixMspInstaller.Install()
    at Microsoft.Crm.Setup.Shared.ComposedInstaller.InvokeInstall(Installer installer, IDictionary stateSaver)
    at Microsoft.Crm.Setup.Shared.ComposedInstaller.InternalInstall(IDictionary stateSaver)
    at Microsoft.Crm.Setup.Shared.ComposedInstaller.Install(IDictionary stateSaver)
    at Microsoft.Crm.UpdateWrapper.UpdateSetup.Install(IDictionary data)
    at Microsoft.Crm.Setup.Shared.SetupBase.ExecuteOperation()
    23:11:50|Verbose| Method exit: Microsoft.Crm.UpdateWrapper.UpdateSetup.ExecuteOperation
    23:11:50| Info| failed.
    23:11:50| Info| Setup did not complete successfully.
    Action Microsoft.Crm.UpdateWrapper.MspInstallAction failed.
    The given key was not present in the dictionary.
    23:11:50| Error| Setup did not complete successfully.
    23:11:50|Verbose| Method exit: Microsoft.Crm.UpdateWrapper.UpdateSetup.RunInternal
    23:11:50|Verbose| Update Not Completed
    23:11:50|Verbose| Update Not Completed
    23:11:50| Info| Service Pack 1 for Microsoft Dynamics CRM for Outlook (KB2941390) was not completed successfully because of the following problems:
    Action Microsoft.Crm.UpdateWrapper.MspInstallAction failed.
    The given key was not present in the dictionary.
    23:11:50| Info| ActivatePage(HotfixFinishPage)
    I also tried manually installing Rollup 2 before installing SP1 but I still get the same error.
    Now I'm not sure if the Outlook plugin update is going to fix the problem, so as it stands I have 2 problems:
    Very very slow Outlook CRM Plugin when updating emails and icons
    Cannot install 2013 CRM SP1 for Outlook
    So, I'm stumped, and this is really holding me back. I will post any updates here, but if anyone has any ideas, please let me know.

    I have Outlook 2013 with the CRM 2013 Outlook client and it was running fine until about a week ago.  I ran windows update and suddenly everything stopped working. I am going to try to uninstall all the updates until I determine which one is the cause
    of the problem.  It would be nice if MS tested before releasing updates...
    Ken Compter

  • Problem in creating a generic datasource with infoset

    Dear Expert,
      I have to create a generic datasource with infoset. I linked the infoset with a test program below. In the program, I have one selection option, which is s_order. After creating an infoset and a datasource, this selection option 'SELECT_S_ORDER' is added to my extract structure. However, after try filtering with this SELECT_S_ORDER, it doesn't filter data at all. Why? I want to filter data with my s_order.
    REPORT  ZBI_DS_TEST.
      tables: vbak.
    * DATA
      field-symbols: <vbak>  type vbak.
      data:   t_vbak      type table of vbak,
                w_vbak     type vbak,
                t_vbak2    type table of vbak,
                w_vbak2    type vbak.
    * SELECT-OPTIONS
      selection-screen begin of block b1 with frame title text-001.
        select-options:  s_order   for  vbak-vbeln.
      selection-screen end of block b1.
        start-of-selection.
    * <Query_head>
       perform sub_select_data.
       loop at t_vbak into w_vbak2.
         move-corresponding w_vbak2 to vbak.
    * <Query_body>
       endloop.
    *&      Form  sub_select_data
    *      Select data
    FORM sub_select_data .
        select *
        into    table t_vbak
        from   vbak
        where vtweg = 'IP'.
    ENDFORM.                    " sub_select_data

    What do you mean by linking program with infoset?
    Do you get the field in your RSA3 Tcode?

  • ECC 6.0 integration with Microsoft Dynamics CRM

    Hi All
    I am working on a ECC 6.0 integration with Microsoft Dynamics CRM. I need to send the customer master data, va01/va02, vl01n/vl02n/ vf01/vf02 to CRM system. One option I have is to send in the form of IDOC with TRFC - TCP/IP. But looks like this needs a middleware like Biztalk.
    Is there a way I can send this data using a Internet service in ECC 6.0 ??? As this would cut the cost of the Biztalk.
    I really appriciate your thoughts on this. We don't have XI either.
    Thanks a lot
    Van

    HI Van Dan Jan,
    We have just implemented integarion of SAP with Microsoft stack (Microsoft CRM, Share point and Axapta), But in all integration BizTalk as a middleware used.
    There is two way requirements :
    1. whenever Most of the control are at the Microsoft level like : Customer creation, Creation of orders, which need to be synchronus activity we have used RFC which internally calls BAPI. (So SAP adapter Configured at BizTalk). and whenever Biztalk receives request file from CRM or share point to there location they call SAP RFC's.
    2. When DATA is needed from SAP to microsoft stack like to syncronize the missing transaction like customer pad and all.
    Scheduled job at BizTalk end which call SAP to get the DATA via RFC mode :
    In SAP we have two things
    1.  if DATA size is small (below 2 MB) like  in last 1 hrs what are the sales contract created in SAP that need to updated in Microsoft other system than Biztalk will trigger a job at 1 hr interval or on deemand to get the detail which directly we pick from data base or using BAPI to get the detail via RFC.
    2. If Data Size is large (more than 2 MB)  like total transation happened in a day for all customers: then we wriiting the data in OS or application server  and that job also get initiated from Biztalk end by sending any parameter to SAP.
    advantage of using BizTalk is most of the control you can give it to them so they can run there job on deemand basis.
    There is a something known as web service we can use to avoid Interfacing tool, but I dont have much Idea about that,
    and  please check how many interfacing point is there with SAP in your project, because if Interfacing points are more then I think it is not good to write a web services for so many things.
    do let me know if you need further information.

Maybe you are looking for

  • Front end and conc manager issue post db upgrade

    Hi, We have upgraded our database from 10.2.0.4 to 11.2.0.1. Our ebs application is on 12.0.6. Also the architechture is : DB+Conc on one node and Web+Forms on the other. We are not able to get the front end.Also concurrent managers arent cmg up ( Wh

  • MacBook Pro w/10.6.8 requires me to sign in twice at initial log-in screen before loading

    My MacBook Pro w/10.6.8 requires me to sign in twice at initial log-in screen before loading.. In addition, after Safari 5.1.7 has been open for a few hours the browser stops loading pages and then the entire computer  freezes and I have to do a forc

  • Lightroom does not create a background layer when editing in Photoshop - on Mac.

    Thought this was a Photoshop problem.  When I select a portion of an image in Photoshop (which has come from Lightroom) and press Delete, it no longer brings up the Fill dialog; it just deletes the pixels. After some discussion on the Photoshop forum

  • How to Include the Infocubes in a Multiprovider..!!

    Hello Experts, Question is related to multiproviders. I have some 20 to 30 of the infocubes in Dev System. I have 2 multiproviders in the same system. I come to know..some of the infocubes missed out in multiproviders. I tried to add those missed inf

  • Can I use RAW files in Premiere Pro on Mac?

    Help Please on Mac and Im on Mac and Do Time Lapse , I use Lightroom to proceDo Time Lapse , I use Lightroom to process and Batch Process, Is there any way to use Raw files from Lightroom to Premier Pro to make my Time Lapse, I saw there was a Plug i