Sample example of Report in OSB

Hi can any one send the link for sample example of Report in message flow of OSB...Thanks in advance
Mani

Try to search on this forum. There were many examples here.

Similar Messages

  • Sample example of publish in OSB

    Hi can any body send links for sample examples for publish in OSB

    In OSB there are two types of services:
    Proxy Service - Used for inbound transport i.e. these services are either invokes my a message polled (reading a file, polling from DB, reading a message from JMS queue) or an external application sending a request to this service. A Proxy service is essentially like a service to start a message flow in OSB. Just like a web service.
    Business Service - Used for outbound transport i.e. these services make a call from an already running OSB message flow to an external entity(writing a file, insert in DB, Publishing a message on JMS queue) or making a call to an external application for ex calling an external web service. Business service in this sense is like a Web Service client.
    Hence to publish a message to JMS (an outbound operation) you will create a Business Service in OSB. SOA Suite is no where involved in this.
    To publish a message on JMS from HelloWorld Proxy you need to do following:
    1. Create a Business Service of messaging type and JMS transport.
    2. Create a HelloWorld Proxy which receives a message over HTTP. In the message flow of this Proxy create a Publish action(its an action to send a one way message to a Business/Proxy servicing from within a Proxy) in request pipeline or Route to action in Route Node and select the JMS Business Service as target.
    When you invoke the HelloWorld Proxy it will send a message to Business Service which will then publish the message on Queue.

  • For each sample example  in OSB without Split join

    Hi,
    Any body have sample example for For each in OSB without Split join......Thanks in advance

    I know this is an old thread, but I just ran into this same problem. Wow! That's a crappy 'feature'. I wasted 4 hours this morning on this thinking it was me doing something wrong in my xpath, but nope, you need to cast the counter to an int .......
    I hope they fix things like this in the next major release.
    Thanks for the solution.

  • Need example BDC reports in HR ABAP

    hi all,
         I need example BDC reports in HR-ABAP .both download and upload reports..
    I was tried but I'm not getting it , so please, any one send sample reports .
    Rewarded for helpful answers.

    Hi,
    Check these links
    BDC for infotype 0008
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/erphcm/employee%2bphoto%2bupload
    Search using "bdc" in this forum you will get lot of examples

  • XL Reporter Sample AR Aging Report by Transaction come up blank

    Hi,
    I am running B1 2007 with PL38.  I downloaded the sample AR Aging Report by transaction from SAP but when I generated the report, I get the worksheet with blank Data.  Can anyone make any suggestions.
    Regards,
    Peter To

    Peter,
    We're at PL41, but I had the same problem and contacted SAP Support.  After reporting the problem, SAP logged onto my database via a WebEx session, got into SQL Server Console, and modified a ixView in the database views. They had to increase the size of two Ref fields in the view. Once they did that, everything worked fine.
    You probably just need to open a message and get it scheduled.

  • Sample example for Agentry

    Hi,
    i am working on the Android Mobile Application Development based on SMP using Agentry Plugin.i am new to this environment, i want to know how it works,and need a sample example to understand the structure.as of now i don't want to connect with any back end services. simple example like creating hello world in java.
    so please guide me on this? is there any link or any sample program ?
    Message was edited by: Michael Appleby

    These documents might help you:
    How-to Build an Agentry based mobile app from scratch connecting to an SAP back-end Part1
    Agentry - Build your own Apps
    Regards,
    Midhun VP

  • Sample example for with check box in iterator.

    Hi,
    I have a requirement where 5 to line items would be displayed with an iterator.
    I am able to display the output with checkbox in the iterator.
    In the next page i need to display the check items.
    How do i identify the checkbox is checked or not.
    Would be greatful if u can provide an sample example.
    Promise to reward point
    Regards,
    Jose

    data: loc_table_event type ref to cl_htmlb_event_tableview.
    Data: loc_cnt type i,
             loc_indx type 1.
    describe TABLE int_table .
    loc_cnt = sy-tfill.
    call method cl_hrrcf_iterator=>get_tv_attr
        exporting
          p_tv_id               = 'TV'
          p_component_id        = me->component_id
          po_request            = me->request
        importing
          p_visible_first_index = me->visible_first_row
          pt_selected_keys      = me->lt_selectedkeytab
          po_tv_event           = loc_table_event.
    *loc_cnt have number of records in intarnaltable, that you displayed in Table view.
    loc_indx = 1.
    do loc_cnt TIMES.
    wf   = loc_table_event->get_cell_value(
                                             row_index     = loc_indx
                                            column_index  = 1 ).
    /*  by using this you can get the value of chexk box in to wf . if wf is 'X' then that record is selected.
      /* you can fetch the record form intarnal table by using index(loc_indx)
    loc_indx = loc_indx + 1.
    enddo.
    vijay

  • Need sample ALSB project migration to OSB 11g environment

    Hi
    I'm looking for sample ALSB project migration to OSB 11g environment and as well as steps to automate deployment of OSB 11g projects by using WLST
    Can some one please help me out in regards to the same
    Thanks
    Ram.S

    Please find the build.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <project name="ConfigExport">
    <property file="./build.properties"/>
    <property name="metadata.dir" value="${workspace.dir}/.metadata"/>
    <property name="domain.export.script" value="export.py" />
    <property name="domain.import.script" value="import.py" />
    <path id="library.osb">
    <fileset dir="${osb.home}/modules">
    <include name="com.bea.common.configfwk_1.6.0.0.jar"/>
    <include name="com.bea.core.xml.xmlbeans_2.2.0.0_2-5-1.jar"/>
    </fileset>
    <fileset dir="${weblogic.home}/server/lib">
    <include name="weblogic.jar"/>
    </fileset>
    <fileset dir="${osb.home}/lib">
    <include name="alsb.jar"/>
    </fileset>
    </path>
    <taskdef name="wlst"
    classpathref="library.osb"
    classname="weblogic.ant.taskdefs.management.WLSTTask"/>
    <target name="exportFromOSB">
    <wlst fileName="${domain.export.script}" debug="true" failOnError="false" classpathref="library.osb"
    arguments="${wls.username} ${wls.password} ${wls.server} ${export.project} ${export.jar} ${export.customFile}">
    <script>
    adminUser=sys.argv[1]
    adminPassword=sys.argv[2]
    adminUrl=sys.argv[3]
    exportJar = sys.argv[5]
    customFile = sys.argv[6]
    passphrase = "osb"
    project = sys.argv[4]
    connect(adminUser,adminPassword,adminUrl)
    domainRuntime()
    </script>
    </wlst>
    </target>
    <target name="importToOSB">
    <wlst fileName="${domain.import.script}" debug="true" failOnError="false" classpathref="library.osb"
    arguments="${wls.username} ${wls.password} ${wls.server} ${import.project} ${import.jar} ${import.customFile}">
    <script>
    adminUser=sys.argv[1]
    adminPassword=sys.argv[2]
    adminUrl=sys.argv[3]
    passphrase = "osb"
    project=sys.argv[4]
    importJar=sys.argv[5]
    customFile=sys.argv[6]
    connect(adminUser,adminPassword,adminUrl)
    domainRuntime()
    </script>
    </wlst>
    </target>
    <target name="exportFromWorkspace">
    <!--delete failonerror="false" includeemptydirs="true"
    dir="${metadata.dir}"/-->
    <java dir="${osb.home}/lib" classpathref="library.osb"
    jar="${eclipse.home}/plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar"
    fork="true" failonerror="true" maxmemory="768m">
    <jvmarg line="-XX:MaxPermSize=256m"/>
    <arg line="-data ${workspace.dir}"/>
    <arg line="-application com.bea.alsb.core.ConfigExport"/>
    <arg line="-configProject ${config.project}"/>
    <arg line="-configJar ${config.jar}"/>
    <arg line="-configSubProjects ${config.subprojects}"/>
    <arg line="-includeDependencies ${config.includeDependencies}"/>
    <sysproperty key="weblogic.home" value="${weblogic.home}"/>
    <sysproperty key="osb.home" value="${osb.home}"/>
    <sysproperty key="osgi.bundlefile.limit" value="500"/>
    <sysproperty key="harvester.home" value="${osb.home}/harvester"/>
    <sysproperty key="osgi.nl" value="en_US"/>
    <sysproperty key="sun.lang.ClassLoader.allowArraySyntax" value="true"/>
    <sysproperty key="osgi.bundlefile.limit" value="750"/>
    <sysproperty key="middleware.home" value="${fmw.home}"/>
    </java>
    </target>
    </project>
    With the target:importToOSB,I was able to successfully import into OSB11g environment
    but with target:exportFromOSB or exportFromWorkspace I'm unable to export from OSB11g environment
    to my local directory
    So my intention is to get the OSB11g exported into my local directory
    Can you please help me out in getting this resolved
    Thanks
    RS

  • Can i have a sample BSP INTERACTIVE Reports with step by step.

    Hi Friends,
    Can i have a sample BSP INTERACTIVE Reports with step by step.
    Moosa

    Hello,
    Please find the sample Code below.
    FIRST PAGE
    Layout Code.
    <htmlb:label for="emp" text="Employee id" width="10"/>
          <htmlb:inputField id="emp"  value="<%= w_input1%>"/>
          <p>
    <htmlb:label for="Employee Details"/>
           <htmlb:button   id = 'get'
                           text = 'Display'
                           on Click = 'OnInput Processing' />   <p>
    <h1>Employee Details</h1>
    <htmlb:tableView id="Employee"
                     table="<%= ZTABLE%>"  <- Give the table name
                     selectionMode = "lineEdit"
                     design="ALTERNATING">
    ONINITILIZATION EVENT.
    data:
      fs_yhtable like line of TABLE.
        select * from yhtable into table ZTABLE.
    ONINPUT PROCESSING CODE:
    * event handler for checking and processing user input and
    * for defining navigation
    class cl_htmlb_manager definition load.
    case event_id.
      when cl_htmlb_manager=>event_id.
      data: event  type ref to if_htmlb_data,
            fs_yhtable like line of t_yh1205,
            selrow type ref to cl_htmlb_tableview.
      event = cl_htmlb_manager=>get_event_ex( request ).
      selrow ?= cl_htmlb_manager=>get_data( request = request
                                            name    = 'tableView'
                                            id      = 'Employee' ).
      data: tv_data type ref to cl_htmlb_event_tableview,
             t_tab type int4_table.
    *        tv_data1 type ref to cl_htmlb_event_tableview.
      tv_data = selrow->data.
       t_tab = selrow->selectedrowindextable.
      if  event is not initial
      and event->event_name = 'tableView'.
        w_int = tv_data->rowselection.
        navigation->set_parameter( 'Employee' ).
        navigation->set_parameter( name = 'w_int'
                                   value = w_int ).
        navigation->set_parameter( name = 'table'
                                   value = table ).
        navigation->goto_page( 'second.htm' ).
      endif.
    endcase.
    SECOND PAGE CODE:
    LAYOUT CODE:-
    <htmlb:content design="design2003">
      <htmlb:page title = "Employee Details">
        <htmlb:form>
    <h1>Employee Details</h1>
    <htmlb:tableView id="Employee"
                     table="<%= t_yh1205%>"
                     selectionMode = "lineEdit"
                     design="ALTERNATING">
    </htmlb:tableView>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    Hope this is helpful.Let me know if you need any more help.
    Thanks
    kalyan

  • Toolbox tutorial and sample examples for OAF

    Hi all ,please help me to get Toolbox tutorial and sample examples for OAF , and Jdeveloper 9i download link,
    please give me to get the above stuff. Thanks
    Thanks & Regs

    Hi,
    Looks like you are not in 11.5.9, your instance is 11.5.10.
    You can download the Patch 4573517 Oracle9i JDeveloper with OA Extension for 11.5.10 CU2
    from metalink, search with platform as Windows Clinet 32 bit.
    Then you can develop pages for your instance.
    Btw: what is the output for the following query,
    Select bug_number from ad_bugs where bug_number in ('4334965','4125550','4676589','5473858');
    Thanks.
    With Regards,
    Kali.

  • API & sample examples for the data integration to Oracle WMS.

    Hi All,
    Is there any API support for the data integration to Oracle WMS?
    and after that, we want to take the data from WMS to Oracle E-Business Suite..
    Please send the link from where we can find the API and sample examples..
    Any help would be highly appreciated
    Thanks,

    Hi Sanjitanand,
    Thanks for your reply.
    What i are trying is;
    I want to develop generic interfaces using Oracle API; which will help us in sending the RFID related data to WMS and then to EBS.
    My input will be xml or flat files, i'll parse that; get the data and want to send this RFID data to WMS and from WMS to EBS..
    If you have any sample examples/ docs / code etc , pls send me same..
    Any help would be highly appreciated
    Thanks,

  • Enable/Disable Reporting in OSB using script.

    Hi,
    I have to enable/disable reporting in OSB proxy service using script like python,etc..
    Each and every time we create a session in console and activate the session.
    But as per our requirement, we need to do this activity using script in back end.
    Can anyone help on this.
    Thanks
    Rajesh

    Hi,
    I have to enable/disable reporting in OSB proxy service using script like python,etc..
    Each and every time we create a session in console and activate the session.
    But as per our requirement, we need to do this activity using script in back end.
    Can anyone help on this.
    Thanks
    Rajesh

  • Any Sample Examples on Web Center Sites .

    Hi ,
    can you please provide any sample example which gives end to end working on a website. I couldnt find even a single blog on this . please help us
    thank you,
    Sashank P.

    You should search for the old name ("FatWire").
    I found two resources - not exactly end-to-end, but they might be helpful:
    http://www.tomred.net/fatwire/
    http://www.sciabarra.com/fatwire/category/tutorial/

  • Need sample example

    Hello,
    I'm learning Portal. Please send me the link for sample example by using JSP,Servlet,Portal, and Database for beginning user? or would you please posted one sample pgm?
    Thank you
    Chockalingam

    Hi Chockalingam,
    I can direct you to 2 samples http://www.sagelogix.com/knowledge/portlets. The first sample is a simple Java standards based portlet example. The other is an example which demonstrates JSR-168/Velocity/Spring/Hibernate. Both examples come with an ant build script and you can use them as a basis for your own experimentation and development.
    -sean
    Solutions Architect
    www.sagelogix.com

  • Alv reports sample example req..

    can anybody help me out with a simple example regarding ALV Reports.(simple ALV Reports , Blocked ALV Reports & Hierarchy ALV Reports).
    or pls send me a word document regarding the same ..to [email protected]
    response is highly appreciated..
    bye--
    Pradeepa

    Following document should get you started.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e8a1d690-0201-0010-b7ad-d9719a415907">An Easy Reference For ALV Grid Control.pdf</a>
    tip : if you do a <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/advancedsearch?query=alv%20grid&cat=sdn_all">search for alv grid</a> on the sdn homepage, this is the first result.
    Message was edited by:
            Dries Horions

Maybe you are looking for

  • Sort Not working - Please help

    Hello,   I have design2003 parameter. Im displaying table with following logic. Problem is it is not activating SORT icon thats comes in table header text line which sorts the column. What could be wrong? Please help. <htmlb:tableView id             

  • Issue with fglrx after kernel upgrade

    Hello, I lost my 2D acceleration on both my monitors after the most recent kernel upgrade(2.6.26.2). I'm using the fglrx driver. [roberth@Magda ~]$ cat /var/log/Xorg.0.log | grep EE Current Operating System: Linux Magda 2.6.26-ARCH #1 SMP PREEMPT Sun

  • Flash Builder 4 beta 2 Debug deployment

    Flashbuilder hangs nearly very time I try and deploy (via debug) my _trivial_ application (see http://anirudhs.chaosnet.org/blog/2009.10.12.html for the tutorial i'm trying to follow). Flash builder goes in to a 'Building workspace' mode and stays at

  • Insertion of a special Character into a table

    Hi all, I came across a non keyboard character in an Oracle table (9i) and when i queried the table column with the following query Code: SELECT asciistr(col1) from test1; I got the output as \FFFD \02DC How could i insert the same character in my Or

  • DB13: Execute Redo log backup of remote Oracle 11g database fails

    Dear Experts, First of all I have to state I am not very experienced in administrating (Oracle) databases, but I would like to ask you all the following: We run two SAP Systems with each their own database on the same host: 1. SAP SRM ABAP system on