How do I get started on buisness objects

Hi,
Please provide some link to useful knowledge repository about buisness objects. I want to learn buisness objects from scratch.
Amitabh
Edited by: Amitabh Bachhan on Nov 21, 2009 3:16 PM

Hi
what is your background?
Regards,
Stratos

Similar Messages

  • How do I get a variable, or object from ABAP STACK.

    Hey Gurus,
    How do I get a variable, or object from ABAP STACK.
    Example: I start my FM. I can see in the ABAP STACK the variable I need. I can see the object; I could use to get my variable. I need to use it in my FM; however I need to reference it in the run time. How do I do that?
    Is there a method I can use for reading ABAP STACK?
    Do I just use command: get reference of u2026?
    Does anyone have an example code?
    Basis version 7
    Thanks in advance
    Martin

    Ah, you mean you want to access a variable from another program in the call stack, yes?  You can do this using field symbols, but please don't try to change a value while doing this, it could really screw things up. 
    this example, is using two programs, where the second is accessing variables of the first program.  Basically just notice that we are using the program name and the variable name when assigning the field symbol.
    report zrich_0006 .
    tables: mara.
    parameters: p_matnr type mara-matnr..
    data: matnr type mara-matnr.
    data: imarc type table of marc with header line.
    matnr = p_matnr.
    select * from marc into table imarc up to 10 rows
                   where matnr = p_matnr.
    perform in in program zrich_0007.
    report zrich_0007 .
    *       FORM in                                                       *
    form in.
      data: field(50).
      data: xmarc type marc.
      field-symbols: <matnr>.
      field-symbols: <imarc> type marc_upl_tt.
    * Assign an individual variable
      field = '(ZRICH_0006)matnr'.
      assign (field) to <matnr>.
    * Assign an internal table
      field = '(ZRICH_0006)IMARC[]'.
      assign (field) to <imarc>.
    * Write out your data
      write <matnr>.
      loop at <imarc> into xmarc.
        write: / xmarc-werks.
      endloop.
    endform.
    Regards,
    Rich Heilman

  • How do I get to the request object in a webflow.

    How do I get to the request object in a webflow.
    I created a input process and one function it needs to do is create a cookie.
    Problem is I don't have a response object.
    How do I create/get the response object so I can create a cookie.
    Thanks
    Michael C Ford
    ------------------ Code Line ------------------------------------
    public Object process(HttpServletRequest req, Object requestContext)
    throws ProcessingException
    // get the pipeline and namespace info for the process
    PipelineSession pSession = null;
    String namespace = null;
    String username = req.getRemoteUser();
    pSession = getPipelineSession(req);
    namespace = getCurrentNamespace(pSession);
    /* ***** DO THE INITIAL CREATE OF THE BEAN *** */
         try {
              Properties props = new Properties();
              props.put(
                   Context.INITIAL_CONTEXT_FACTORY,
                   "weblogic.jndi.WLInitialContextFactory");
              Context ctx = new InitialContext(props);
              Object homeObject = ctx.lookup("com.??.??PortalMgr");
              SeechangePortalMgrHome seechangePortalMgrHome =
              (SeechangePortalMgrHome) javax.rmi.PortableRemoteObject.narrow(
                                                      homeObject,
                                                      SeechangePortalMgrHome.class);
              SeechangePortalMgr portalMgr = seechangePortalMgrHome.create();
    /* Set the initail user */
    portalMgr.setUser(username);          
              UserRuntime userRuntime = (UserRuntime)portalMgr.getRuntimeObject();
              System.out.print("Run Time User is " + userRuntime.getUserName());
              System.out.print("Run Time User is " + userRuntime.getOrgSeq());
    // ** cookies for Actuate XXX=(customer sequence ID), YYY=ZZZ is a dummy per
    their requirement
              Cookie cCustSeqNumber = new Cookie("XXX",userRuntime.getOrgSeq());
              Cookie cPassword = new Cookie("YYY","ZZZ");
              cCustSeqNumber.setPath("/");
              cPassword.setPath("/");
              ??response.addCookie(cCustSeqNumber);
              ??response.addCookie(cPassword);          
         } catch (Exception ee) {
              System.out.print("Unable to create Portal Manager" + ee);
    // at this point we add the logic to produce the bean
    return "success";

    Thanks
    Just what I needed, except I needed to caste response.
    Michael C
    "Daniel Selman" <[email protected]> wrote:
    Michael,
    // get the HttpServletResponse from the HttpServletRequest
    HttpServletResponse response =
    equest.getAttribute( WebflowConstants.HTTP_SERVLET_RESPONSE );
    Cookie cPassword = new Cookie("YYY","ZZZ");
    cCustSeqNumber.setPath("/");
    cPassword.setPath("/");
    response.addCookie(cCustSeqNumber);
    response.addCookie(cPassword);
    You HAVE the HttpServletRequest...
    public Object process(HttpServletRequest req, ObjectrequestContext)
    throws ProcessingExceptionMake sense?
    Dan
    "michael C Ford" <[email protected]> wrote in message
    news:[email protected]...
    How can I get to the response this way ?
    this just stored the response as an attribute did it now ?
    If I don't have it, how can I use it in a setAttribute ?
    Sorry just a little slow
    I can't do this can I ?
    request.setAttribute(WebflowConstants.HTTP_SERVLET_RESPONSE,response);
    Cookie cPassword = new Cookie("YYY","ZZZ");
    cCustSeqNumber.setPath("/");
    cPassword.setPath("/");
    response.addCookie(cCustSeqNumber);
    response.addCookie(cPassword);
    "Daniel Selman" <[email protected]> wrote:
    Michael,
    I found this handy snippet in our code:
    // Put the httpServletResponse into the request, this is done
    in
    case IPs want to
    // use the response to deposit cookies. The IPs maynot howeverwrite
    // anything to the response as this will cause an
    IllegalStateException
    request.setAttribute(WebflowConstants.HTTP_SERVLET_RESPONSE,
    response);
    So, the HttpServletResponse is bound into the HttpServletRequest usingthe
    key, WebflowConstants.HTTP_SERVLET_RESPONSE.
    Magic!
    Sincerely,
    Daniel Selman
    "michael C Ford" <[email protected]> wrote in message
    news:[email protected]...
    How do I get to the request object in a webflow.
    I created a input process and one function it needs to do is create
    a
    cookie.
    Problem is I don't have a response object.
    How do I create/get the response object so I can create a cookie.
    Thanks
    Michael C Ford
    ------------------ Code Line ------------------------------------
    public Object process(HttpServletRequest req, Object
    requestContext)
    throws ProcessingException
    // get the pipeline and namespace info for the process
    PipelineSession pSession = null;
    String namespace = null;
    String username = req.getRemoteUser();
    pSession = getPipelineSession(req);
    namespace = getCurrentNamespace(pSession);
    /* ***** DO THE INITIAL CREATE OF THE BEAN *** */
    try {
    Properties props = new Properties();
    props.put(
    Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory");
    Context ctx = new InitialContext(props);
    Object homeObject = ctx.lookup("com.??.??PortalMgr");
    SeechangePortalMgrHome seechangePortalMgrHome =
    (SeechangePortalMgrHome) javax.rmi.PortableRemoteObject.narrow(
    homeObject,
    SeechangePortalMgrHome.class);
    SeechangePortalMgr portalMgr = seechangePortalMgrHome.create();
    /* Set the initail user */
    portalMgr.setUser(username);
    UserRuntime userRuntime = (UserRuntime)portalMgr.getRuntimeObject();
    System.out.print("Run Time User is " + userRuntime.getUserName());
    System.out.print("Run Time User is " + userRuntime.getOrgSeq());
    // ** cookies for Actuate XXX=(customer sequence ID), YYY=ZZZ isa
    dummy per
    their requirement
    Cookie cCustSeqNumber = new
    Cookie("XXX",userRuntime.getOrgSeq());
    Cookie cPassword = new Cookie("YYY","ZZZ");
    cCustSeqNumber.setPath("/");
    cPassword.setPath("/");
    ??response.addCookie(cCustSeqNumber);
    ??response.addCookie(cPassword);
    } catch (Exception ee) {
    System.out.print("Unable to create Portal Manager" + ee);
    // at this point we add the logic to produce the bean
    return "success";

  • I'm planning on making my own Podcast channel for my world of warcraft videos, how to I get started?

    I'm planning on making my own Podcast channel for my world of warcraft videos, how to I get started? I'm using my MacBook, Mac OS X (10.6) for my video editing and using my HP Pavilion, Windows 7, g6t-2000 Notebook PC 64-bit for my video recording.

    You may find my 'get you started' page on podcasting helpful.
    http://rfwilmut.net/pc
    It's written with audio podcasts in mind but will explain the general principles for you - ths concept of a 'feed' is the same for audio and video.
    You should also check this Apple Tech note for information about formatting video
    http://www.apple.com/itunes/podcasts/specs.html#formattingvideo

  • Hi, I want to install my lightroom version on a new mac pro. How do i get started. Can't find it on this site. Thx

    I have a new mac book pro and wan't to install my version of lightroom 5 from my old pc to the new one.
    How can i do that? Can't find it here on the site? Thx
    [email protected]

    Hallo, I installed the program as you said. Everything ok.
    When i have to give my serialnummer, it is not accepted. Code is not valid he said
    1160-4008-7475-7547-5706-0812
    Op 21-sep.-2014, om 17:44 heeft Rikk Flohr <[email protected]> het volgende geschreven:
    Hi, I want to install my lightroom version on a new mac pro. How do i get started. Can't find it on this site. Thx
    created by Rikk Flohr in Photoshop Lightroom - View the full discussion
    www.adobe.com
    Hit the Download link at the bottom the page.
    Hit Lightroom
    Hit Free Trial
    When you are done downloading, launch, and enter your serial number from your previous installation.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6749435#6749435
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Photoshop Lightroom by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Adobe CreatePDF - How do I get started?

    How do I get started in Adobe CreatePDF

    Good day,
    Great question!  To get started with Adobe CreatePDF, you must first get logged in to the service.  You can log in to the service by visiting: http://createpdf.acrobat.com/signin.html and entering your Adobe ID (the email address you used to subscribe to the service) and your password.
    Once you're logged in, you'll be presented with several options:
    Select the option you'd like to use.  If you click 'Convert a File to PDF', you'll be presented with a prompt to select a file from your hard drive to submit to the CreatePDF service.  The 'Combine Files to PDF' is similar, but allows you to select existing PDF files or documents that still need to be converted.  The 'Export PDF to Word/Excel' button will allow you to convert existing PDF files you may have back to Word or Excel documents.  Lastly the 'Print to PDF Setup' button will bring you to instructions on how to install the Adobe CreatePDF desktop printer (Windows-only) to help with converting files types not specified on this list here: What file formats does Adobe CreatePDF support?
    If you have any questions, please let us know!  We're happy to help!
    Kind regards,
    David
    Acrobat Community Manager
    Adobe Systems

  • HT4059 How do I get started on downloading a book on my iPad? Kindle edition? . I don't want to buy a book just pay for rental?

    How do I get started on downloading a kindle book on my iPad? I don't want to buy one.

    Ask your local library if they offer electronic books for checkout and if so what system they use. Then you can look to see if there is an app for that system available for iOS devices. As RG said, neither Apple nor Amazon offer electronic books on a rental basis other than Amazon's Kindle textbook rental.
    Regards.

  • How can I get a count of objects in the near cache? (Extend client)

    Hi,
    I'm trying to figure out how to get the count of objects in my near cache (from c++ client). Knowing the size of the near cache is a key factor when optimizing configurations for performance.
    However if I call size() on the cache handle I get the count of objects in the cache (ie the cluster). How can I get a count of objects in the near cache?
    Thanks
    Rich Carless

    H Rich,
    It may not be ideal, but I think you may be able to infer the size by using the HeapAnalyzer (http://download.oracle.com/docs/cd/E15357_01/coh.360/e15728/classcoherence_1_1lang_1_1_heap_analyzer.html) facility, specifically the "class" based HeapAnalyzer. Its Snapshot representation http://download.oracle.com/docs/cd/E15357_01/coh.360/e15728/classcoherence_1_1lang_1_1_class_based_heap_analyzer_1_1_snapshot.html provides a mapping between class name and ClassStats (http://download.oracle.com/docs/cd/E15357_01/coh.360/e15728/classcoherence_1_1lang_1_1_class_based_heap_analyzer_1_1_class_stats.html) which provides information on how many instances of a given class type are in memory. Note the reported counts are process wide but if your key or value type are distinct you may be able to infer your answer. I realize this is rather complex, my only other suggestion would be to just make some guesses on size and see how they effect performance.
    Mark
    Oracle Coherence

  • I just got an Iphone 4. How do I get started using it?

    I just got an Iphone 4. How do I get started using it?

    Start here:
    http://manuals.info.apple.com/en_US/iphone_user_guide.pdf

  • Downloaded 64 bit....how do I get started ?

    Downloaded 64 bit TRIAL ....how do I get started ? now that the software is loaded.... The help just takes me back to you.

    Hi Charlie5773,
    Please let me know the name of the software you need help in getting started with.

  • Just got an I pad how do I get started?

    just got an ipad. how do I get started?

    Hi,
    See Here for Getting Started:
    http://www.apple.com/support/ipad/
    You may need this Too:
    Ipad User Guide
    http://manuals.info.apple.com/en_US/ipad_2_user_guide.pdf
    Cheers,  

  • How can I get started if I am not an advanced user but still want to config ATS660 external trigger?

    There r 2 groups VIs provided by the company: easy VIs and advanced VIs. And set external trigger VI is in the latter one. The manual indicates that only the person who r very familar with the ATSApi Application Programming Interface should attempt using the Advaced VIs. Unfortunately I am not that kind of advanced user. If I want to learn all these stuff(like how to call the VIs in correct order), how can I get started?
    I will be really appreciated if I can get some help here.  all I have now is the ATS660 User Manual and ATS-VI Software Manual. I wonder if there should be other useful manuals, like NI-DAQ user manual that can help to understand how to call/config the device in right order.
    Thank u in advance.
    Dyna----an eager learner

    ya, u r right. That was what happened to me.
    The company is Alazartech. This is a PCI waveform digitizer.
    I've visited the www.alazartech.com , and found no further info about how to call this subVIs in correct order. So I am asking here , hope that any one is familiar with this stuff.
    Anyway, thank u for ur reply.
    I will keep focusing here and expecting some replies.
    Dyna

  • How do I get started?  I can't find any link that starts icloud.

    I want to get my new iphone synced up with my computer and other devices?  I have read that icloud is the way to do this.  how do I get started?  I can't find any link that starts icloud.

    Start here:
    http://www.apple.com/icloud/get-started/
    Comprehensive Help pages:
    http://help.apple.com/icloud/

  • I am a new user, how do I get started?

    Hi guys! I am a new Mac owner and am new to iChat.. How do I get started and what are the differences between this and skype, and what are the benefits over skype?
    Thanks a million!
    -Jo

    Hi,
    Welcome to the    Discussions
    This Link has a second menu under the iChat icon
    http://www.ralphjohns.co.uk/versions/ichatvers4/howtos4.html
    See Also iChat 101
    Work through the menu Left to right.
    Differences.
    You can use an AIM valid name from AIM or Apple and a Jabber ID (Many Public Jabber servers or a GoogleMail ID enabled for Talk).
    This will give you access to Buddies on two of the major IM services.
    The Video Quality is generally better in iChat.
    On an Intel Mac iChat 5 uses 30 Frames a sec even down to the first MacBook Pros that are 3 and 1/2 years old.
    The Pic size can vary depending how fast the processor is but the general size is 640 X 480 pixels (0.3 megapixels)
    The Internal iSights of later Macs can produce a higher resolution but iChat sticks (where it can) to this size
    It is backwards compatible with iChat 2 through 4 and AIM (On an PC) from AIM 5.5 through to the current AIM 7.2.x.x (Although success and quality can vary depending on how the Buddy is also set up).
    iChat always uses a set of dedicated ports to Video or Audio Chat and does not resort to using common Mail App ports or the web browsing port to get around any firewall.
    Video and Audio Only Chat are Peer-to-Peer connections.
    These last two make iChat more secure.
    iChat to iChat you can Video up to 3 other people at once or 9 others in a Audio Only chat.
    You get iChat Screen Sharing (with an Audio chat from iChat 4 onwards
    You get iChat Theatre for displaying Pics or other File's documents as the "video"
    Other than that they apps that can text or do Video or Audio Chats
    8:55 PM Thursday; December 2, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • New to this trial how can I get started?

    I just signed up for this trial version of Adobe Audicion. The systems takes you trough many loops, how can I get started? Hopefully before the trial period ends..

    Where are you having problems? Does it install OK?

Maybe you are looking for

  • Purpose of keeping original IP for server?

    What is the purpose of keeping your source IP address .for example i see this in our config policy-map type loadbalance first-match NEW-CLIENT class NEW-CLIENT1     serverfarm New CLIENT1     insert-http Client-IP header-value "%is" we are doing SNAT

  • Scheduled start and Finish date .

    Hi Everyone, I am facing a problem in dates in creating a process order in Production . In the tcode COR1, when input the BASIC START DATE manually, the BASIC FINISH DATE ,scheduled start date and finished dates should get calculated automatically  a

  • Export to PDF vs. printing

    In my file I am going to set it up for both online PDF usage and as a printable book.  Here are the questions and I am using CS4. In my InDesign file I am using a blue color to denote an internal link, i.e.: My link to My link text anchor.  This is f

  • Referring to Cursor Row and Column in Dynamic SQL

    I have a procedure that dynamically reads a schema name and table name from an input table. The code then needs to loop through all rows and columns of each table and output the data. I'm 95% done with what I want to accomplish, but there is one smal

  • Can't seem to find a power supply on the apple site

    Hi there, Could someone direct to where I can buy a power supply for a 23" Aluminum Cinema Display? Mine unfortunately has passed away and I can't find that part on the apple site. Have a meeting at the Genius bar today but a friendly salesperson tol