How we Use  business system

hi gurus,
we have following business systems.
1 web as abap.
2 web as java.
3 standalone.
4 third party.
5 business party(only for xi 2.0)
rite
my question is that where we use ,which business systm ,like for which scenerio ,which busines system we use?
pls guide me.
warm regards.

Hi,
Check with this Help file
http://help.sap.com/saphelp_nw70/helpdata/en/24/8fa93e08503614e10000000a114084/frameset.htm
Regards
Seshagiri

Similar Messages

  • How to Use a System Repair Disc to Restore Windows 7

    Hi ! Please start here!
    http://www.dummies.com/how-to/content/how-to-use-a-system-repair-disc-to-restore-windows.html
    http://forums.toshiba.com/t5/Computer-Troubleshooting/What-can-I-do-if-my-Windows-7-or-Windows-Vista...
    http://forums.toshiba.com/t5/Windows-8-Knowledge-Base/What-can-I-do-if-my-Windows-8-laptop-won-t-sta...
    http://pcsupport.about.com/od/toolsofthetrade/ss/windows-7-startup-repair_2.htm
    PS Please read all these links and then post back here with your complete model number found on the bottom of your laptop and complete information to what you have tried to get your PC working I would love to spoon feed everyone. It's just not possible.
    Dokie!!
    PS2 Now read this and see if any thing here helps.
    http://forums.toshiba.com/t5/Computer-Troubleshooting/FYI-Recovery-to-Factory-Settings-Toshiba/td-p/...
    I Love my Satellite L775D-S7222 Laptop. Some days you're the windshield, Some days you're the bug. The Computer world is crazy. If you have answers to computer problems, pass them forward.
    Attachments:
    Capture40.JPG ‏238 KB

    Hi! I found this on the form!
    http://forums.toshiba.com/t5/System-Recovery-and-R​ecovery/How-To-Understanding-System-Recovery-Optio​...
    I Love my Satellite L775D-S7222 Laptop. Some days you're the windshield, Some days you're the bug. The Computer world is crazy. If you have answers to computer problems, pass them forward.

  • How to use  Business Object like Vendor or PurchasingInfo

    Hi,
    How to use Business Object ( like Vendor or PurchasingInfo ) from my Object?
    For example:
    CLASS myEntity DEFINITION.
              PUBLIC SECTION.
                   METHODS: getVendor EXPORTING pVendor TYPE Vendor.
               PRIVATE SECTION.
               DATA: aVendor TYPE REF TO Vendor.
    ENDCLASS.
    CLASS myEntity IMPLEMENTATION.
    METHOD getVendor
               pVendor = aVendor .
    ENDMETHOD.
    ENDCLASS

    Hi,
    I am giving u a demo Program for ur doubt.
    REPORT demo_class_counter .
    CLASS counter DEFINITION.
      PUBLIC SECTION.
        METHODS: set IMPORTING value(set_value) TYPE i,
                 increment,
                 get EXPORTING value(get_value) TYPE i.
      PRIVATE SECTION.
        DATA count TYPE i.
    ENDCLASS.
    CLASS counter IMPLEMENTATION.
      METHOD set.
        count = set_value.
      ENDMETHOD.
      METHOD increment.
        ADD 1 TO count.
      ENDMETHOD.
      METHOD get.
        get_value = count.
      ENDMETHOD.
    ENDCLASS.
    DATA number TYPE i VALUE 5.
    DATA cnt TYPE REF TO counter.
    START-OF-SELECTION.
      CREATE OBJECT cnt.
      CALL METHOD cnt->set EXPORTING set_value = number.
      DO 3 TIMES.
        CALL METHOD cnt->increment.
      ENDDO.
      CALL METHOD cnt->get IMPORTING get_value = number.
      WRITE number.
    For more demo programs type 'abapdocu' in the command field
    U will be getting some demo programs.
    There select the abap objects.
    Regards,
    Jagadish

  • How to use Business process roadmap composer & Solman in Blueprint ?

    Hi experts,
    I am a support consultant and for the first time I am getting involved in Preparing Business Blueprint, So I want to know,
    How to use Business process roadmap composer & Solman in Blueprint ?
    Regards,
    Shakti

    Hi Shakti,
    This urls shoudl help you to understand better how it works:
    -http://service.sap.com/roadmaps
    -http://help.sap.com/saphelp_sm71_sp01/helpdata/en/46/210b6e218214dce10000000a155369/frameset.htm
    -http://help.sap.com/saphelp_sm71_sp01/helpdata/en/45/f6da633a292312e10000000a11466f/frameset.htm
    For further doubts check also the wiki page:
    -http://wiki.sdn.sap.com/wiki/display/SM/SolutionManagerImplementation
    Kind regards,
    Fabricius

  • How to use Operating System Commands while using define in sqlplus

    How to use Operating System Commands while using define in sqlplus . The Host OS is Linux
    define report_name=PROD_${host date "+%b"}.html
    The above is not working.
    The output should be 
    define report_name=PROD_JAN.html
    Regards,
    DB

    of course I was talking nonsense: the problem here is the mixing of bind variables and DEFINE variables.
    With the following changes the script should work (the conditions for begin_interval_time are perhaps not what you want):
    variable snap1 number
    variable snap2 number
    variable rptname varchar2(20)
    begin
    SELECT min(snap_id) into :snap1 FROM dba_hist_snapshot WHERE CAST(begin_interval_time AS DATE) >= SYSDATE-1;
    SELECT max(snap_id) into :snap2 FROM dba_hist_snapshot WHERE CAST(begin_interval_time AS DATE) >= SYSDATE-1;
    end;
    col file_name_value new_value report_name noprint
    select 'PROD_'|| to_char(sysdate,'MON') || '_' ||  to_char(sysdate,'DD') file_name_value  from dual;
    define  report_type  = 'html'
    define num_days=2
    define begin_snap=:snap1
    define end_snap=:snap2
    @@?/rdbms/admin/awrrpt.sql

  • Y AND HOW TO USE BUSINESS WORKPLACE

    Y AND HOW TO USE BUSINESS WORKPLACE
    IF U HAV SOME SNAPSHOT OR A SITE PLZ FWD ME
    POINT WLL B REWARDED
    REGARDS
    RONEI

    Hi,
    I am giving u a demo Program for ur doubt.
    REPORT demo_class_counter .
    CLASS counter DEFINITION.
      PUBLIC SECTION.
        METHODS: set IMPORTING value(set_value) TYPE i,
                 increment,
                 get EXPORTING value(get_value) TYPE i.
      PRIVATE SECTION.
        DATA count TYPE i.
    ENDCLASS.
    CLASS counter IMPLEMENTATION.
      METHOD set.
        count = set_value.
      ENDMETHOD.
      METHOD increment.
        ADD 1 TO count.
      ENDMETHOD.
      METHOD get.
        get_value = count.
      ENDMETHOD.
    ENDCLASS.
    DATA number TYPE i VALUE 5.
    DATA cnt TYPE REF TO counter.
    START-OF-SELECTION.
      CREATE OBJECT cnt.
      CALL METHOD cnt->set EXPORTING set_value = number.
      DO 3 TIMES.
        CALL METHOD cnt->increment.
      ENDDO.
      CALL METHOD cnt->get IMPORTING get_value = number.
      WRITE number.
    For more demo programs type 'abapdocu' in the command field
    U will be getting some demo programs.
    There select the abap objects.
    Regards,
    Jagadish

  • How to Use a System Repair Disc to Restore Windows 7 For Seniors For Dummies

    Hi I'm new to this forum and I haven't seen the proper place to post some thing like this. I'm going to post it here and staff can do what they wish with it.
    I can't understand why people aren't creating a System Repair Disc to Restore Windows 7. This is the best tool you can have. I have seen a ton of people posting here that can't boot into Windows 7. No mention of a repair Disc. Can you people not read?? This should be one of the first things to do after creating System Recovery Media(Mine requires 5DVD's). What is your thinking not to do these things?
    http://www.dummies.com/how-to/content/how-to-use-a​-system-repair-disc-to-restore-windows.html
    http://windows.microsoft.com/en-US/windows7/Create​-a-system-repair-disc
    PS I don't have any trouble. I just want people to please do these things and save your self a lot of grief, and make a back up image of your OS on a external drive
    Dokie!
    I Love my Satellite L775D-S7222 Laptop. Some days you're the windshield, Some days you're the bug. The Computer world is crazy. If you have answers to computer problems, pass them forward.

    Hi! I found this on the form!
    http://forums.toshiba.com/t5/System-Recovery-and-R​ecovery/How-To-Understanding-System-Recovery-Optio​...
    I Love my Satellite L775D-S7222 Laptop. Some days you're the windshield, Some days you're the bug. The Computer world is crazy. If you have answers to computer problems, pass them forward.

  • Should i use Business system or Business service for a 3rd party file sys?

    Hi Gurus
    My requirement is to send a file from 3rd party client system to SAP ECC system.
    I want to confugure a file sender CC to pickup the file and send it to ECC system thru proxy.
    Now, after going thru the SAP definitions of 3rd party Business system (if the system is present the landscape and technical details are available) and Business service (if system's technical details is not available because it is not present in the landscape. Only the interface details are available, for ex: external webservice), i am not sure which one to use.
    What is the use of using a 3rd Business system instead of using business service in my current situation?
    In both the cases, i can use a file sender CC and pickup the file from a folder using FTP protocol.
    What is the criteria based on which i need to take this decision?
    And finally, how are the system name & host name details, which we given during 3rd party technical system definition in SLD useful?
    Many Thanks
    Chandra

    Hi Chandra
    Its always preferred to use Business service for communication with systems outside the landscape. As it does not refer to any SLD components and safe to use on internet etc.
    What is the use of using a 3rd Business system instead of using business service in my current situation?
    If you want to use 3rd party system you need to define party based communication and it acts as a party in production environment. You can also create a Standalone sytem in SLD for your use. Standalone technical system mostly refers to standalone Java applications in landscape.
    n both the cases, i can use a file sender CC and pickup the file from a folder using FTP protocol.
    What is the criteria based on which i need to take this decision?
    If your communication is party based and the 3rd party you refer is a party for ERP then it make sense to use a third party communication and use party name as well.By this i mean business wise. Else its always good to use Business service.
    And finally, how are the system name & host name details, which we given during 3rd party technical system definition in SLD useful?
    To use this third party system you need to register products on TS else you will not be able to see any Interface etc while configuring in ID. you need to add all details to it in SLD.
    Thanks
    Gaurav

  • How to Remove Business System From SLD

    Hi Experts,
    I Created Business System For Web As ABAP.
    While Removing Business System From SLD Means I am Getting the Following Error.
    java.lang.NullPointerException at com.sap.sld.wd.businesssystem.BusinessSystem.removeXIIntegrationServer(BusinessSystem.java:497) at com.sap.sld.wd.businesssystem.wdp.InternalBusinessSystem.removeXIIntegrationServer(InternalBusinessSystem.java:474) at com.sap.sld.wd.businesssystem.BusinessSystemMainView.RemoveOk(BusinessSystemMainView.java:450) at com.sap.sld.wd.businesssystem.wdp.InternalBusinessSystemMainView.wdInvokeEventHandler(InternalBusinessSystemMainView.java:477) at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87) at com.sap.tc.webdynpro.clientserver.event.CustomEventProcessor.handleServerEvent(CustomEventProcessor.java:45) at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doHandleServiceEvent(WindowPhaseModel.java:362) at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:129) at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:344) at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processPhaseLoop(WebDynproWindow.java:355) at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:152) at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:298) at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:705) at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:659) at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:227) at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:150) at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:56) at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:47) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325) at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887) at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241) at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92) at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Please Let me know How to Remove it from SLD.
    Regards
    Khanna

    HI Khanna
    Delete the Business System in your IR and ID, if any interfaces are developed under this BS.
    See if any items in locked state...and also after deleting it...activate it and refresh the cache. this shud help
    If you deleted from everywhere then it should not give that message.
    Try after refresh cache using SXI_CACHE.
    Finally Delete the BS from SLD
    In general , that to be you are facing this type of problem only inthis situation , then you have to refresh SLD cache.
    See the below link
    /people/sravya.talanki2/blog/2005/12/02/sxicache--ripped-off - SXI_CACHE
    XI Runtime cache error: Cache contents are obsolete
    Cache Refresh - SAI_CACHE_REFRESH
    /people/sravya.talanki2/blog/2005/11/03/cache-refresh-errors--new-phenomena
    Cheers..
    Vasu
    <i>** Reward Points if found useful **</i>

  • How to create Business System

    Hi
    I have created a Business System in SLD... But in  Configuration time when i am trying to Assign Business System in my scenaro i am not getting the Business System which i have created in SLD... How can solve this problem... Pls help me
    Best Regards
    Ravi Shankar B

    Hi,
    It is always good to check the business system which you have created by using the filter option.
      you can do the above filter check option like...select business system tab and ener you business name in the filter text box and click filter button.If your business system is availabel you can able to see otherwise it will tell you search is not found.
        so,you have came to know that your business is availble in the sld which u have created...if u still not getting the business system refresh the cache so we will get it.
      hope u understand my explanantion.If you have still any problem please inform us so that we can able to reach you out with the correct solution.
    Thanks in Advacnce.
    chandu.

  • How PI uses technical system information in SLD

    Hi Experts,
    I know there are business system and technical system registered and associated in SLD.
    Especially for those SAP systems, in our normal PI scenario, how PI uses the technical information which was registered under Technical System in SLD since we need again configure the host/port and credentials details in the sender/receiver channel in ID.
    Or SLD is just one central place for collecting all the technical information together only for life cycle management?
    There is nothing more to do with the Tech System (SLD), PI only needs the business system in scenario.
    Please knidly share your opnion, thanks in advance.
    Best Regards,

    Hi Aditya,
    Let me provide an example to describe the need fot technical systems.
    Think of an outbound scenario : SAP ECC/CRM -> PI -> Third Party (ex: SOAP)
    Now just think how PI will identify what the sender is (ECC/CRM or 3rd party) if the TS is not registered in SLD? The Business Systems are logical systems whcih points to Technical Systems (application systems that are installed in system landscape). TS hold the information about the actual systems, its host, IP, clients etc.
    Now based on the source BS which points to TS, the target binding is done in Receiver Determination pipeline step. Now if there is no TS attached to the BS how can PI identify whether ECC or CRM is sending the data and hence will not be able to identify the relevant target for the source.
    Think of Business Systems as sitting on top of Technical Systems, and when the landsape details are not known for third party systems we use Business Component/Business Service.
    Cheers,
    Souvik

  • How to covert business system to business service

    I have, for example, business system (BSys1) in inegration directory and some scenarios that use BSys1...
    and now i need BSys1 to be business service (BServ1). Is it possible?

    Hi,
    You can transport the Same BS and Associated TS to QTY Server Itself.
    So wats the prob now???
    Check this
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9e76e511-0d01-0010-5c9d-9f768d644808
    Regards
    Seshagiri

  • Use BAM in ALBPM  --- How to use "Business Indicator variable" ?

    In ALBPM60_Studio_ReferenceGuide.pdf, there is text like that:
    Using Variables in BAM
    When creating a Project variable, you can define it as a Business Indicator variable. This allows the variable to be stored in BAM the database.
    When you add Business Indicator variable to your process, a column is added to the following BAM database tables:Workload, Task Performance and Process Performance. The name of this column is the Business Indicator name preceded by the prefix "V_".
    If you define a business dimension, the workload table contains one row for each possible value of this business dimension present in the process. Each of this rows will show the quantity of instances that match that business dimension.
    When you define a measurement business variable the sum of this variable's value for all in flight is stored into workload table. If business dimensions were defined as well, then this sum will be divided into as many rows as business dimension values present in flight instances.
    Task performance table stores one row for each instance that completes an activity. Each of these rows contains the value of dimensions and measurements at the time the instance completed the activity.
    In a similar way, process performance table stores one row for each instance that gets to the end activity. Each of these rows contains the value of dimensions and measurements at the time the instance completed the whole process.
    QUESTION:
    1. What's meaning is that writed in bold italic? (Can anybody give me a samaple?)
    2. How to use Range of Business Indicator variable?(When I set range in my sample,this varible can't save into BAM_WORKLOAD, BAM_TASKPERFORMANCE, BAM_PROCESSPERFORMANCE)
    Edited by just9doit at 01/15/2008 10:18 PM

    Hi Saket,
    Check the Tcode - BUPA_DEL.

  • How to add business systems into DIRECTORY?

    Hi,
    I have problem to add business system into Business Systems list in my scenarion in the Integration Directory. These systems are already in the SLD, but when I try to assign a business system, I have only choice to assign XI...
    How to solve this problem?
    Thanx 4 answers!
    Peter

    hi Peter,
    maybe your business systems are already inside ID?
    BTW
    did you assign you business system to a correct
    integration server? (when definig the business system)
    also remember to refresh SLD data cache from ID
    - environment
    - clear SLD data cache
    Regards,
    michal
    Message was edited by: Michal Krawczyk

  • Acknowledgements using Business Systems

    Hi:
    I am a XI developer, and I am dealing with a interface:
    SAP-(idoc)->  XI -
    (file)---->legacy
    I wanna have an acknowledgement from XI to SAP when the idoc have arrived to XI. My interface has Business Systems, we dont wanna Business services or BPM's.
    CAN I OBTAIN THIS ACKNOWLEDGEMENT FROM XI???
    thanks a lot

    See if this idea can be used...
    When the IDOC is received...you have configure to receiver systems.....
    the one would be the File....and the second one would be the same SAP business system which send it...and you have to map the receiver IDOC to aleaud01 idoc with appropriate message in it....
    1.IDOC --> XI --> map to file -- Send to legacy system.
    2.IDOC --> XI --> map to ALEAUD01 IDOC --> send to sap sending the IDOC.
    In the sending R/3 system, in the partner profile(WE20), you should maintain inbound parameters for ALEAUD01 idoc.
    Thanks,
    Renjith

Maybe you are looking for

  • How do I get Silverlight Plugin to work on new Macbook Pro?

    Got a new MacBook Pro and tried to watch Netflix but I was prompted to install the Silverlight Plugin. I have the Silverlight dmg on my desktop but when I open it, the only thing there is the pkg file. Please help!

  • Newbie question RE: Select common fields

    I have to select all common jobs from the emp table that are in dept's 10,20,30. Do I need to do a self join? Subquery? Any help will be greatly appreciate.

  • ITunes has been deleted

    My iTunes library has been deleted and seems to have been restored to its default settings (the last time I used it it was working fine). All my music is still on my iPod, so I was wondering if there is any way I can transfer the music back to my lib

  • New to 3550's

    I understand without SVI on each group of ports I can't route traffic through my Gig 0/1 connection. I need to be able to put the listed networks below all on my 3550 Version 12.1(22)EA1a switch. I have no problems adding the vlan's nor getting the t

  • HT1766 Backing Up

    where do my backed up files go in my computer?