Jms/xbusResources-jms.xml - how OSB creates internal JMS queue?

Hi there,
In a project I have 3 proxy services, 1 dispatch request to the other 2 routing directly to them and with no Business services.
One of these 2 is an HTTP, the other is a JMS. On this last I actually make a publish action along the pipeline and looks it doesn't require the JNDI name in the action itself, simply the proxy name or reference.
Now in my local box it works, in JIT it doesn't. The only difference I can see is on the jmsResource tab:
my local
local-sso-audit-1142838076     Queue     local-sso-audit     local-sso-audit-1142838076     wlsbJMSServer
local-sso-auditRequest33430637     Queue     local-sso-auditRequest     local-sso-auditRequest33430637     wlsbJMSServer
local-sso-mail26453307     Queue     local-sso-mail     local-sso-mail26453307     wlsbJMSServer
and in JIT none of the above is present.
I guess these are internal queue created by OSB on deployment, but why should have not created in JIT??
Thanks in advance

Hi Alesandro,
Do you get any exception back?
Did you set QualityOfService=Exactly-Once in the Routing options inside your Publish action? This will make the exception visible.
Regards,
Fabio.

Similar Messages

  • How to create internal table for a structure in BSP

    hi ,
    I have created a Structure in BSP.I want to create an internal table for that Structure. But in my coding ie.
    <% data: begin of itab_1 .
                     include type zuvendstr.
                     data:end of itab_1.
                     data wa_str like line of itab_1.
                     loop at itab_1 into wa_str. %>
                    <tr>
                     <td><%=wa_str-name%> </td>
                           <%endloop.%>
    In this zuvendstr is Structure ,wa_str is workarea and itab_1 is an Internal table.But it is showinng an error that itab_1 is unknown.But we cannot define internal tables for an Structure in Page Attributes.So,please resolve how to create internal table for Structure in BSPS

    Hi,
    You can define itab_1 like this (assuming zuvendstr is a structure type):
    DATA: itab_1 TYPE TABLE OF zuvendstr.
    Regards,
    Tanguy

  • How to create internal table storing instances of ABAP class

    Hi experts, any one knows how to create internal table storing instances of ABAP class or alternative to implement such function?

    Hi
    Please see below example from ABAPDOCU, this might help you.
    Internal Table cnt_tab is used to store class objects.
    Regards,
    Vishal
    REPORT demo_objects_references.
    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: cnt_1 TYPE REF TO counter,
          cnt_2 TYPE REF TO counter,
          cnt_3 TYPE REF TO counter,
          cnt_tab TYPE TABLE OF REF TO counter.
    DATA number TYPE i.
    START-OF-SELECTION.
      CREATE OBJECT: cnt_1,
                     cnt_2.
      MOVE cnt_2 TO cnt_3.
      CLEAR cnt_2.
      cnt_3 = cnt_1.
      CLEAR cnt_3.
      APPEND cnt_1 TO cnt_tab.
      CREATE OBJECT: cnt_2,
                     cnt_3.
      APPEND: cnt_2 TO cnt_tab,
              cnt_3 TO cnt_tab.
      CALL METHOD cnt_1->set EXPORTING set_value = 1.
      CALL METHOD cnt_2->set EXPORTING set_value = 10.
      CALL METHOD cnt_3->set EXPORTING set_value = 100.
      DO 3 TIMES.
        CALL METHOD: cnt_1->increment,
                     cnt_2->increment,
                     cnt_3->increment.
      ENDDO.
      LOOP AT cnt_tab INTO cnt_1.
        CALL METHOD cnt_1->get IMPORTING get_value = number.
        WRITE / number.
      ENDLOOP.

  • How to create internal table dynamically based on a table entry

    hi Experts,
      I have table yprod_cat. It has product categories.
      In my ABAP program I need to create internal table dynamically based on the number of entries in the table.
      For example:
      If the table has 3 entries for product category
      1. Board
      2. Micro
      3. Syst
    Then create three (3) internal tables.
    i_board
    i_micro
    i_syst
    How can we do this? Any sample code will be very usefull
    Thanks & Regards
    Gopal
    Moderator Message: No sample codes can be given. Please search for them or work it!
    Edited by: kishan P on Jan 19, 2011 4:22 PM

    Our APEX version is 4.2We are using below SQL query to display radio groups dynamically..
    SELECT APEX_ITEM.RADIOGROUP (1,deptno,'20',dname) dt
    FROM dept
    ORDER BY 1;
    Created a form using SQL type and given abouve SQL query as source.. But when we run the page, there were no radio groups displayed in the page..
    Below is the output of the query..
    <input type="radio" name="f01" value="10" />ACCOUNTING
    <input type="radio" name="f01" value="20" checked="checked" />RESEARCH
    <input type="radio" name="f01" value="30" />SALES
    <input type="radio" name="f01" value="40" />OPERATIONS
    >
    If Tabular Form:
    Edit Region > Report Attributes > Edit Column > Change the Column type to "Standard Report Column"
    If normal Page Item:
    Edit Page Item > Security > Escape special characters=No.
    Pl read the help on that page item to understand the security risk associated with =NO.
    Cheers,
    Edited by: Prabodh on Dec 3, 2012 5:59 PM

  • How to create internal links with pages...?

    I'm thinking of taking all my class notes with the computer and I wanted to know if Pages can create internal links (to other documents, or to another point in the same document). Or is there a better application to do this?
    iMac   Mac OS X (10.4.9)   17'' 2GHz PPC G5

    Although I really haven't used it, this seems to be a very cool feature.
    Call up Pages Help and search for "link". You will be rewarded with several hits, one of which is 'Creating a hyperlink to a bookmarked location in a document' with step-by-step guidance on using the Inspector for hyperlinks and bookmarks.
    MacBook Pro   Mac OS X (10.4.9)  

  • How to create internal table in Adobe form - SFP transaction?

    How shd i create an internal table under Global data ???
    Regards,
    Gurmukh singh

    you can create the inernal table using the table types.
    assume you want to create the Inernal table of type SFLIGHT, then you can create in this way...under the global Defintions.
    VARiABLE NAME       Type Assignment      Type name
    IT_SFLIGHT                TYPE                       SFLIGHT_TAB1
    IT_VBAP                    TYPE                       VBAP_TT
    you can populate these tables using the Initialization->Code Initialization.
    for more details Check here..
    https://www.sdn.sap.com/irj/sdn/adobe

  • How to create internal table dynamically?

    hi all
    I have a particular internal table in memory area( thru EXPORT TO MEMORY ID ....)
    how can i create an internal table of this type in another program at runtime  ?
    this internal table need not be a data dictionary type.
    i.e., i need to create an internal table of type which
    is stored in a particular memory-id.
    Regards,
    Naveen........
    null

    Hi,
    Check this code :
    TYPE-POOLS: slis.
    FIELD-SYMBOLS: <t_dyntable> TYPE STANDARD TABLE, 
                    <fs_dyntable>,                    
                    <fs_fldval> type any.             
    PARAMETERS: p_cols(5) TYPE c.   
    DATA:        t_newtable TYPE REF TO data,
                 t_newline  TYPE REF TO data,
                 t_fldcat   TYPE slis_t_fldcat_alv,
                 t_fldcat   TYPE lvc_t_fcat,
                 wa_it_fldcat TYPE lvc_s_fcat,
                 wa_colno(2) TYPE n,
                 wa_flname(5) TYPE c. 
    * Create fields .
      DO p_cols TIMES.
        CLEAR wa_it_fldcat.
        move sy-index to wa_colno.
        concatenate 'COL'
                    wa_colno
               into wa_flname.
        wa_it_fldcat-fieldname = wa_flname.
        wa_it_fldcat-datatype = 'CHAR'.
        wa_it_fldcat-intlen = 10.
        APPEND wa_it_fldcat TO t_fldcat.
      ENDDO. 
    * Create dynamic internal table and assign to FS
      CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
          it_fieldcatalog = t_fldcat
        IMPORTING
          ep_table        = t_newtable. 
      ASSIGN t_newtable->* TO <t_dyntable>. 
    * Create dynamic work area and assign to FS
      CREATE DATA t_newline LIKE LINE OF <t_dyntable>.
      ASSIGN t_newline->* TO <fs_dyntable>.
    DATA it_fieldcatalog TYPE lvc_t_fcat.
    DATA lr_table TYPE REF TO data.
    FIELD-SYMBOLS <lt_table> TYPE table.
    *-- Import the fieldcatalog
    IMPORT it_fieldcatalog TO it_fieldcatalog
           FROM MEMORY ID 'CREATE_DYNAMIC_TABLE'.
    IF sy-subrc <> 0.
      EXIT.
    ENDIF.
    *-- Create the dynamic table with the field catalog as structure
    CALL METHOD cl_alv_table_create=>create_dynamic_table
      EXPORTING
        it_fieldcatalog           = it_fieldcatalog
      IMPORTING
        ep_table                  = lr_table
      EXCEPTIONS
        generate_subpool_dir_full = 1
        OTHERS                    = 2.
    IF sy-subrc <> 0.
      EXIT.
    ENDIF.
    *-- Convert the reference into a table
    ASSIGN lr_table->* TO <lt_table>.
    IF sy-subrc <> 0.
      EXIT.
    ENDIF.
    *-- Export the created table so that the function module can import it
    EXPORT lt_table FROM <lt_table>
           TO MEMORY ID 'CREATE_DYNAMIC_TABLE'.
    Regards
    L Appana

  • How to create Internal Order with LKD status

    Hi All Experts ,
    Can anybody tell me how can we create IO directly in LKD status ? Or it is manual acitivity by clicking on Set / Rest button and then check LKD and save. I tried in KOT2_OPA but not no any option found. If any experts can guide for the following configuration would be great.
    1 ) Is it possible to create IO with LKD status directly ?
    2 ) Where that configuration needs to be done ?
    3 ) What is significance of JEST Table relating to Internal Order ?
    Exprerts help would be great !
    Regards,
    Sharvari Joshi.

    Hi Ajay,
    It worked fine exactly. Thank you !
    Can we have facility to create IO with LKD ststus in System Status ?
    Is it true that there are only 4 SAP Standard system status CRTD, REL, CLSD, TECO.
    Is it possible to add LKD in that ? When I clicked on to the up / down arrow I am getting only these four values.
    Can we define additional values to this point ?
    Regards,
    Sharvari Joshi.

  • How to create internal fields dynamically

    Hi,
    I am getting the data from MARA table to an internal table. Now I have to show the data according to month wise, like if same material is created in may and just, i have to show that material in may and june like below.
    material | may | june |
    m1        |    10 |     5 |
    m2        |    20 |   15 |
    I have to show this report in ALV.
    so how can i get the month columns dynamically for each month?
    i.e., when month is changed it has to create a new month.
    Plz suggest me.
    Regards,
    Dhanunjay

    REPORT ztest.
    *** Tables
    DATA: LT_DATA type ref to DATA.
    DATA: LT_FIELDCATALOG type LVC_T_FCAT.
    *** Structure
    DATA: LS_FIELDCATALOG type LVC_S_FCAT.
    *** Data References
    DATA: NEW_LINE type ref to data.
    *** Field Symbols
    FIELD-SYMBOLS: <FS_DATA> type ref to DATA,
                   <FS_1> type any table,
                   <FS_2>,
                   <FS_3>.
    LS_FIELDCATALOG-FIELDNAME = 'MANDT'.
    append LS_FIELDCATALOG to LT_FIELDCATALOG.
    LS_FIELDCATALOG-FIELDNAME = 'CARRID'. "Fieldname
    LS_FIELDCATALOG-INTTYPE = 'C'. "Internal Type C-> Character
    append LS_FIELDCATALOG to LT_FIELDCATALOG.
    LS_FIELDCATALOG-FIELDNAME = 'CONNID'.
    LS_FIELDCATALOG-INTTYPE = 'N'.
    append LS_FIELDCATALOG to LT_FIELDCATALOG.
    LS_FIELDCATALOG-FIELDNAME = 'FLDATE'.
    LS_FIELDCATALOG-INTTYPE = 'D'.
    append LS_FIELDCATALOG to LT_FIELDCATALOG.
    LS_FIELDCATALOG-FIELDNAME = 'PRICE'.
    LS_FIELDCATALOG-INTTYPE = 'P'.
    append LS_FIELDCATALOG to LT_FIELDCATALOG.
    LS_FIELDCATALOG-FIELDNAME = 'CURRENCY'.
    LS_FIELDCATALOG-INTTYPE = 'C'.
    append LS_FIELDCATALOG to LT_FIELDCATALOG.
    assign LT_DATA to <FS_DATA>.
    call method cl_alv_table_create=>create_dynamic_table
         exporting
           it_fieldcatalog = LT_FIELDCATALOG
         importing
           ep_table = <FS_DATA>
         exceptions
           generate_subpool_dir_full = 1
           others = 2
    if sy-subrc <> 0.
    endif.
    *** So <FS_1> now points to our dynamic internal table.
    assign <FS_DATA>->* to <FS_1>.
    *** Next step is to create a work area for our dynamic internal table.
    create data NEW_LINE like line of <FS_1>.
    *** A field-symbol to access that work area
    assign NEW_LINE->*  to <FS_2>.
    *** And to put the data in the internal table
    select MANDT CARRID CONNID FLDATE PRICE CURRENCY
      from SFLIGHT
      into corresponding fields of table <FS_1>.
    *** Access contents of internal table
    loop at <FS_1> assigning <FS_2>.
    assign component 1 of structure <FS_2> to <FS_3>.
    write: / <FS_3>.
    endloop.

  • How to create internal type

    Hi all,
    I created a normal table 'ZNLMEVENTS' with 4 fields. I entered data. Now i created a function module with below code. Problem i have is i get only one record inspite of having more rows. How to get all rows shown.. i came to know its possible thru making the table as internal. I dont know how to do that. kinldy help me.
    FUNCTION ZNLM_ALARAMEVENTS.
    ""Local Interface:
    *"  EXPORTING
    *"     VALUE(ALARMEVENTS) TYPE  ZNLMEVENTS
    select * from znlmevents into table alarmevents.
    ENDFUNCTION.
    I am very new to ABAP language.
    Thanks,
    Raghavendra

    Hi Rob,
    I changed it as you told but still i get only one record. Please see the code below. kindly let me know where i am doing wrong.
    FUNCTION ZNLM_ALARAMEVENTS.
    *"*"Local Interface:
    *"  TABLES
    *"     VALUE(ALARMEVENTS) TYPE  ZNLMEVENTS
    select * from znlmevents into alarmevents.
    endselect.
    ENDFUNCTION.
    Thanks,
    Raghavendra

  • How to create internal order using bapi_internalorder_create

    Hi,
        Am new to bapi , i need complete procedure regarding internal order creation using bapi function module
    BAPI_INTERNALORDER_CREATE
    If any body have steps regarding create plase forward to my mail [email protected]
    Thanks&regards,
    Arun.k

    Arun,
       Just Pass the required data as an ordinary Function module.It will create the internal order .
    DATA : I_MASTER_DATA like BAPI2075_7,
                E_MASTER_DATA like BAPI2075_2,
               EXTENSIONIN like BAPIPAREX  occurs 0 with header line,
               ORDERID like  BAPI2075_2-ORDER,
               TESTRUN like BAPI0012_GEN-TESTRUN,
               SRULES like BAPI2075_6
                              occurs 0 with header line,
                 RETURN like BAPIRET2
                      occurs 0 with header line.
    CALL FUNCTION 'BAPI_INTERNALORDER_CREATE'
           exporting
             I_MASTER_DATA = I_MASTER_DATA
             TESTRUN = TESTRUN
           importing
             E_MASTER_DATA = E_MASTER_DATA
             ORDERID = ORDERID
           tables
             SRULES = SRULES
             RETURN = RETURN
             EXTENSIONIN = EXTENSIONIN
           exceptions
             OTHERS =  1
    Pls. reward if useful.

  • How to create internal links to a particular part of a page in iweb 08

    Hello,
    Can anyone help me create hyperlinks to a particular part of a page in iWeb 08? I've tried and tried and failed and failed!
    Many thanks and best,
    Rudy

    Jumping in here ... sorry to be dim but I may need an even more rudimentary explanation as I'd really love to have the scrolling functionality on my site.
    1. Where exactly do you place the 'HTML Snippet' on your page? Does it matter? Is it only one HTML Snippet or do I have to do one for each internal link I want on the page?
    2. Am I just typing a list of Y coordinates here: anchors.push(Y coordinate) ? So if I want the first link on the page to scroll down to 'Y 431 px' then I would replace 'anchors.push(0)' with 'anchors.push(431)' ? And then the next one the next Y coordinate and so on?
    Again - apologies for not getting what I'm sure is something very simple but I do appreciate it.
    This is the page I'm trying to do it for (with the hyperlinks as I understand I'm supposed to do them and an html snippet on the page ... obviously not functioning correctly): http://www.calderastrategy.com/Site/Services.html
    Thanks very much

  • How to create internal links?

    I would like to link the pages within my website. What is the best way of doing this?
    Many thanks.

    In the Inspector's Link tab, select +“Enable as a hyperlink,”+ from the +Link To+ pop-up menu and then choose +"One of My Pages"+ from the Page pop-up menu — read more in this Apple doc:
    http://docs.info.apple.com/article.html?path=iWeb/2.0/en/6825.html
    Or this one:
    http://support.apple.com/kb/HT1106

  • Event video: how to create "internal bookmarks"

    Dear all,
    Is there anyway to do the following with an event video placed in one slide?:
    For the student (at run time) to place "sensitive points (I could name them "bookmarks")" within an event video and:
    a) jump directly to them (without having to watch the previous part of the video sequentially)
    b) link them and manage a comment (or any other Captivate run time interaction) so to see, manage the comment (or each time the video reaches that bookmark
    c) link to them an object of the slide
    Thanks

    Dear all,
    Is there anyway to do the following with an event video placed in one slide?:
    For the student (at run time) to place "sensitive points (I could name them "bookmarks")" within an event video and:
    a) jump directly to them (without having to watch the previous part of the video sequentially)
    b) link them and manage a comment (or any other Captivate run time interaction) so to see, manage the comment (or each time the video reaches that bookmark
    c) link to them an object of the slide
    Thanks

  • How to create the EVENT_QUEUE queue

    I ran these statements, according to the Developer's Guide, expecting a WMSYS EVENT_QUEUE to be created.  I can see that WMSYS.WM$EVENT_QUEUE_TABLE (by dbms_aqadm.create_queue_table)
    was created, and there are several associated WMSYS tables and views, but I cannot find the queue itself.
    EXECUTE DBMS_WM.SetSystemParameter ('ALLOW_CAPTURE_EVENTS', 'ON');
    EXECUTE DBMS_WM.SetCaptureEvent ('ALL_EVENTS','ON');
    Any ideas?
    Oracle 11.2.0.3 EE

    Hi,
    The queue wmsys.wm$event_queue should already exist.  Those procedures only allow the queue to be used.  They are not intended to create any objects. I would recommend to run the following
    SQL> select * from dba_queues where owner='WMSYS';
    That should return 2 rows.  If it does not, then you might need to reload Workspace Manager.
    Regards,
    Ben

Maybe you are looking for

  • What and where is my product keys?

    I need to record my product keys for our auditors and of course possible reinstallation. I have many new computers the surreal numbers.  It appears that Lenovo now does not put a sticker on any of their workstations.  I did find a command that seems

  • Replacing imac 24" mid 2007 hard drive

    hello everyone recently my imac 24" mid 2007 320gb 2gb ram mac hard drive completely failed i have tried everything it starts up sometimes then freezes other times it doesnt even recognise the hard drive so i am currently using it through a boot on a

  • Populate data in dropdown

    Hi All, I am trying to populate values in dropdown by calling BAPI. I have only one view in my applicaiton. I created a model in custom controller and bind it to   the model. I defined the context (model node) in view controller same stucuture in cus

  • Non DB item in a base table block, gives frm-40202 error.

    Dear All, We are using forms6i as a front end. To simulate the error, consider the following example. 1.Create a multirecord emp block. 2.Add a non database item in the base table block. 3.Assign any value to the non database item, in the when new re

  • HP Pavilion A6603W Graphics card upgrading help.

    Current Graphics card: GeForce 7100 / nForce 630i (integrated into motherboard as a chip) Power supply#: ATX-250-12Z-REV-D7R  (250 Watts I believe?) Computer Model: ( HP Pavilion A6603W)  Problem: Trying to figure out which is the best graphics card