Dynamic subscription of Topic "jmstopic/default/BPMMailsTopic"

Hi guys,
is it possible to subscribe a topic during the runtime (dynamically)?
I'm working with: SAP NetWeaver 7.3 (Java), JDK 1.6, NWDS 7.3 SP03.
In my coding, I'm using a Message Driven Bean with annotation to the BPMMailsTopic you can find under "SAP NetWeaver (Administration) --> Configuration --> Infrastructure --> JMS Server configuration --> jmstopic/default/BPMMailsTopic. On that topic, a component is defined, but no (durable) subscribers.
Many thanks and regards,
Cengiz

Marc,
I think I see what you're trying to do. You'll have to separate process that renders the LOV as a series of check boxes from the process that sets the checked values for each user.
Before the LOV is rendered on a page, make sure you set the session state value of the LOV item to a colon separated set of IDs based on your query:
SELECT mesg_id
FROM subscriptions
WHERE upper(network_id) = upper(:APP_USER)
If you have trouble, let me know, I'll try to come up with an example.
Sergio

Similar Messages

  • Subscriptions are recurring by default

    Dear Sir/Madam,
    I have subscribed the Unlimited World 1 month item since 25 Mar, However, I do not aware the subscription would allow auto re-charge / auto subscribe of the next month item.
    On 22Apr, I do not aware it has been auto subscribed and charge my credit card. So I made a manual payment again. There is no message warning me that the subscription has been settled automatically. And yet I have made the payment again and I only aware once I get the credit card bill.
    Now I check the payment history and I find on the same day there are two payment items on the same subscription. May I know if it is possible to reverse one of the transactions as it is double charging on the same thing?
    Thanks,
    Tobias

    Hi Tobias,
    Subscriptions are recurring by default as stated in terms of service, during payment flow, in email confirmation and on your account page under subscription settings
    Since you made manual payment subscription was extended by another month. If needed customer service can help with the order cancellation: https://support.skype.com/faq/FA1170
    Andre
    If answer was helpful please mark it with Kudos and if issue is resolved mark it with solution. This will help other users find this answer more easily. Thanks in advance!

  • Expiration of messages in JMSTopics / Queue Subscription to topics.

    Hi all,
    I tried to use topics in one of my OSB flows.
    i have 2 doubts in this regard.
    1. Is there a way in with i can subscribe my JMS queues to JMS topics?
    2. If in my OSB flow i subscribe directly to the topic(instead of my queue subscribing to topic and my OSB flow subscibing to queue), even after my flow has taken the message from the topic, the message is still retained in the topic. How do i get rid of these retained messages in the queue dynamically. I dont want to delete those messages manually.

    I'm not familiar with OSB particulars (this is a JMS forum -- OSB has its forum), but I can try answer your questions with respect to WL JMS only.
    1. There's no direct facility at the WebLogic Server layer for subscribing a queue to a topic. The standard approaches are to write a basic MDB for the purpose, or configure a Messaging Bridge.
    2. Are the messages in the subscription getting deleted? If not, then the problem is either in your app or at the OSB layer (failure to acknowledge/commit received messages). If so, then messages are likely accumulating in another subscription -- you can check for other subscriptions on the console, and keep in mind that distributed topics implicitly create subscriptions for forwarding messages between members. As you know, a message that is sent to a topic must be acknowledged/filtered-out/committed by all subscriptions before it is fully deleted.
    It would be interesting to know the details about your use case, as I suspect it is a fairly common one. In particular, why do want to subscribe a queue to a topic subscription in the first place? I can then forward your write-up to OSB and JMS Product Managers, which might help accelerate the release of certain features on our roadmap. (email tom . barnes at oracle . com)
    Tom

  • Reporting Services/Sharepoint 2013 dynamic Subscriptions.

    I am looking for a better solution to this problem.  What I have is about 200 reports and growing that are emailed on some schedule (most once a day as soon as possible). 
    This would mean about 200 sql jobs on the RS box, because each subscription create a sql job.  
    I am working on a data driven subscription that would create a schedule to run after the DW has finished processing. 
    I am noticing I am creating a lot of parameters.  I am also noticing that I will be creating some type of log table.  
    Reason is that I need to exec the jobs to run every say 5 min. 
    These jobs are looking at the DW log table to show its done and another log table to tell if they have ran or not for the day. 
    Thus the actual report will only email one time a day.  
    (not sure if someone has a better solution for this).    The solution at this point is create 1 new table to hold parameters that I will use for the subscriptions (for section to define a query to Retrieve Subscriber
    data).   The I will need a log table that I would populate once the report is actually sent.  
    Thus the real problem I have is that with 200 plus reports all trying to run at the same time. 
    In addition to AS trying to process and users all trying to run stuff. 
    To help balance this load I would rather have 1 or 2 jobs running on say the reporting services box or even the EDW box that just generates reports.  
    This way it runs the reports in a more serial manor.  
    I want to get this report from reporting services still.  
    What I am really looking for is how to dynamically exec all the pieces needed. 
    In other words build a table to hold all 200 reports and the metadata needed from them like format, to, cc, ect… 
    Then just create one job on RS that will exec code to loop through each report one at a time and create them. 
    I can have n number of job by just creating a grouping as well.
    Ken Craig

      The reports run 1x a day so taking the time to cashe them in SSAS or SQL (most come from sql) and then run them again in SSRS has just added load with no value.   Why hammer anything. 
    I have been digging more but still looking.  What I have found is that a job just loads a records into a table called AddEvent.  Something that picks up a record from that and runs it.  From what I can tell it uses the @eventdata to get the
    information out of the Subscriptions and Catalog table. 
    Not sure if I am on the right path but still thinking I need to take the 200 plus reports and load them into a table.  This would be all parameters and all subscription info.  Then have maybe just a couple jobs.  Example one job runs 175 reports
    and other runs 25.  I can group them how I like or add more jobs as I need to.  Including creating an order for them.  This way one job will run serial.  Thus allowing me to control the load on the SQL box and SSAS box.  Instead of
    having 200 queries all slamming sql server and/or SSAS at the same time.
    Ken Craig

  • Reducing the topics in default table of contents

    Hello- This one should be easy, but I can't figure it out.
    How do I reduce the number of topics in the default table of contents. For example, I want to get rid of all the level 2 subjects. For example:
    Summary 1
    Highlights 1
    Sub Highlights 1
    I'd like to get rid of the sub highlights... my table of contents is 2 pages for a 5 page document.
    Any thoughts?
    Thanks!

    Oh man... I'm an idiot... I found it.. was super easy in the TOC section. Didn't look in the document inspector sections...
    thx

  • Selective subscription using Topic

    Hi,
    I am a newbie in JMS and MDB programming using Queues/Topics. I want to know if the subscriber of a Topic can do selective subscription to a topic depending on a certain filter for the messages entered in the topic. So, if I have messages corresponding to, suppose ABC, PQR, XYZ, I want a subscriber to subscribe to messages for only ABC.
    Thanks for any help in advance!
    Neha.

    See this:
    http://forum.java.sun.com/thread.jspa?forumID=29&threadID=5213458
    TE

  • How to dynamically create sql statement for Defaulting Segment Values?

    Hi,
    Navigation:
    1) Descriptive/Segments
    2) Query for DFF to be modified
    3) Uncheck “Freeze Flexfield Definition”
    4) (B) Segments
    5) Segments Summary form opens
    6) (B) open - Segments form opens
    Now, here I want to specify Default type as "SQL Statement" and in the default value field I want to use SQL statement with parameters (to evaluate the default value).
    The parameters should be pass at runtime from the form in which we have this DFF. The parameters value should be one of the values which get evaluated at runtime in the form window.
    Please suggest how we can achieve this?
    Or is there any alternative to achieve this?
    Thanks!!
    Regards,
    Narender
    Edited by: Narender Singh on Mar 30, 2010 7:47 AM
    Edited by: Narender Singh on Mar 30, 2010 7:48 AM

    Jason,
    it is possible, though not so simple as with a report.
    What you need to do is to create a pipelined function, that returns your date and count data. This pipelined function can be the base of a pseudo-table, which can be used in a select. For the pipelined function you need to define types for one row and a table to define the return-type for your function:
    create or replace type calendar_row as object (date_time date, description varchar2(250));
    create type calendar_table as table of calendar_row;
    Then you can create the package with the function:
    ================================================
    create or replace package dyn_calendar is
    procedure set_query(i_query in varchar2);
    function view_source return calendar_table pipelined;
    end;
    create or replace package body dyn_calendar is
    v_query varchar2(100) := null;
    procedure set_query(i_query in varchar2) is
    begin
    v_query := i_query;
    end;
    function view_source return calendar_table pipelined is
    TYPE cursor IS REF CURSOR;
    c_cal cursor;
    v_date_time date := null;
    v_description varchar2(100) := null;
    r_cal calendar_row;
    begin
    open c_cal for v_query;
    fetch c_cal into v_date_time, v_description;
    loop
    exit when c_cal%notfound;
    r_cal := calendar_row(v_date_time, v_description);
    pipe row(r_cal);
    fetch c_cal into v_date_time, v_description;
    end loop;
    return;
    end;
    end;
    ================================================
    Now you can set query in a PL/SL region before the calendar:
    dyn_calendar.set_query(SELECT count(*), ' || :P8_SOURCE_DATE || ' FROM ' || :P8_SOURCE_TABLE || ' GROUP BY ' || :P8_SOURCE_DATE);
    and you can base your calendar on the query:
    select * from table(dyn_calendar(view_source))
    Good luck,
    Dik

  • Jax-ws: dynamic proxy-suppress weblogic's default ws-policy handling

    hi all,
    i am writing my own jax-ws client (dynamic proxy) to call a web service, secured by usernametoken profile.
    the wsdl of the web service do include the ws-policy information.
    sample client side code:
    URL url = new URL("path_to_wsdl_file");
    QName serviceQname = new QName("http://model/", "CalculationService");
    Service service = Service.create(url, serviceQname);
    //add resolver and jax-ws handler to add username token SOAPElement fragment to the SOAP message.
    the above code runs fine in J2SE 6.0 environment (without any weblogic-specific library).
    but when i run the above code in a servlet (running in weblogic), the above code fails with the following error:
    Exception in thread "main" javax.xml.ws.soap.SOAPFaultException: Unable to add security token for identity, token uri =http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken
    at com.sun.xml.ws.fault.SOAP11Fault.getProtocolException(SOAP11Fault.java:196)
    at com.sun.xml.ws.fault.SOAPFaultBuilder.createException(SOAPFaultBuilder.java:122)
    at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:119)
    at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:89)
    at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:118)
    at $Proxy23.add(Unknown Source)
    at client.ServiceLocator.main(ServiceLocator.java:32)
    it seems that the weblogic server will try to handle the ws-policy element (according to those in the wsdl), even though
    i have already added the username-token security header by my own code.
    As i don't add some weblogic-specific code (e.g. weblogic.wsee.security.unt.ClientUNTCredentialProvider), the web service call fails.
    is it possible to disable/suppress such behavior (weblogic runtime handle the ws-policy element) per web service call???
    (i don't want a server scope solution, as there may be other web service client running on the same weblogic server that rely on such behavior).
    i don't want to use weblogic's API (e.g. ClientUNTCredentialProvider) as i want my web service client be portable (username token is easy to be handled by my own code)
    thank you.

    Hi René ,
    i just use plain HTTP, not HTTPS.
    seems don't involve any certificate, am i right?
    in J2SE environment, i can run the webservice client without problem.
    but once i run the client in weblogic, the problem mentioned occurred.
    if i manually delete the ws-policy related tag in the wsdl file (i download it to local filesystem for testing), the client can run in weblogic too.
    so, think there is some setting in weblogic that try to handle the ws-policy by its so-called 'credential provider'(e.g. ClientUNTCredentialProvider ?)
    thank you.

  • There is no subscription promotion area in default Library view in V25 or V26

    In the new version, there is no subscription promotion area. But we like the subscription promotion. How can we implement that with version V25 or V26?  Is it possible to put that kind of promotion info into banner (left side)? and if I click the banner left side, it will trigger subscription dialog. I have no idea how to do it. Please help me. Thank you very much.

    OK, now I understand the question. Starting with v25, you can have either an entitlement banner or a subscription tile, but not both. If you would like to have both options again, you can file a feature request here: www.adobe.com/go/wish

  • Default Date Parameters for SSRS Subscription

    I have a SSRS 2008 R2 report running on a Sharepoint 2010 site.
    It has two date parameters (Beginning and Ending Date).
    The defaults of these dates are calculated correctly when running interactively.
    For example:
    =DateAdd("d",-28, Today)
    =DateAdd("d",-1, Today)
    However, when you create a subscription the defaults are based on when the report is submitted and not when the report is executed.
    Is there anyway to set a subscription to pull the default parameters every time when executed.
    Thanks in advance.

    Hi miguelh,
    Based on my research, if we specified the report parameters with “Use Report Default Value” is checked in the subscription, we could get the report from this subscription with the default value. The default values are based on the expression when the subscription
    is executed, rather than the time when we create the subscription. If today is 7/21/2014, the Beginning Date is 6/23/2014, Ending Date is 7/20/2014.
    So, please double check you have typed the expressions as the default values in the two date parameters and we have select the “Use Report Default Value” as the parameter values when creating the subscription .
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to use different default parameter value for different report subscriptions

    In ssrs is it possible to define different default parameter values for different subscriptions? In the following example I have a report which has two subscriptions with different start date and end date values:
    Report name – Testsubscription.rdl
    Subscription-1
    Input parameter (default values):
    start_date = first day of current Month
    end_date = till date
    Subscription-2
    Input parameter (default values):
    start_date = first day of current Quarter
    end_date = till date
    I know an alternative way of doing this would be to copy the rdl file with a different name but I am curious whether this can be done within a single report definition file. I am using SQL Server 2008 R2 Standard Edition.
    Thanks!
    spp

    Hi sppdba,
    As per my understanding, there is a report with two parameter: start_date and end_date, you want to configure subscription for the report, and set different default values for start date and end date. And you want to know if it is possible to achieve you
    goal by using a single report definition file.
    Since you are using SQL Server 2008 R2 Standard Edition, we need to achieve your goal by configuring two subscriptions for the report. For detail information, please refer to the following steps:
      1. In design surface, right click start_date and open Parameter Properties dialog box.
      2. In General pane, type Name and Prompt, set Data Type to Date/Time.
      3. Click Available Values in left pane, select Specify Values.
      4. Click Add button, in Label text box, type “First day of Current Month”, click (fx) button in Value section, then type the expression like below:
    =DateSerial(Year(Now()), Month(Now()), 1)
      5. Click Add button, in Label text box, type “First day of Current Quarter”, click (fx) button in Value section, then type the expression like below, then click OK.
    =DateSerial(Year(Now()), (3*DatePart("q",Now()))-2, 1)
      6. Right click end_date and open Parameter Properties dialog box.
      7. In Available Values pane, select Specify Values.
      8. Click Add button, in Label text box, type “Today”, click (fx) button in Value section, then type the expression =Today(), then click OK.
    Now that the parameters are created, we need to configure subscription for the report. For detail information, please follow these steps:
      1. Open Report Manager, and locate the report for which you want to create a new subscription.
      2. Hover over the report, and click the drop-down arrow.
      3. In the drop-down menu, click Manage. This opens the General properties page for the report.
      4. Select the Subscriptions tab, and then click New Subscription.
      5. Select the delivery extension and data source for the subscription.
      6. Select a method of delivery, then choose report delivery options.
      7. Specify conditions that cause the subscription to process and delivery to occur.
      8. Set start_date to First day of Current Month, end_date to Today, then click OK.
      9. Create a new subscription as step4 to 7, set start_date to First day of Current Quarter, end_date to Today, then click OK.
    The following screenshots are for your reference:
    For detail information about Creating Standard Subscriptions, please refer to the following document:
    http://msdn.microsoft.com/en-us/data/ms156307(v=sql.105)
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.

  • Publishing with TCS3 - how to set the default topic?

    Hi all,
    I am having a problem with the new Publishing function of FM10/TCS3. Here is how I proceed:
    1. Create a RoboHelp project.
    2. Create a link to the FrameMaker book and update (the link properties are set to generate a TOC).
    3. Tweak the import settings until layout fits.
    4. Select the generated TOC in the SSL and set the title page as default topic.
    5. Generate HTML help output and test.
    6. When all is fine, export isf file and close Robohelp.
    Now the idea would be that I can edit the book using Framemaker and generate HTML Help output without using Robohelp:
    1. Open Book in Framemaker and edit. I also need to edit the title page.
    2. Select File > Publish.
    3. Select the Robohelp projekt and isf file.
    4. Generate HTML Help.
    Result. Everthing works fine, except for the title page - the online help still displays the default topic at the state is had in the Robohelp project, before I edited the Framemaker file. When I select the title page manualy from the TOC, then the correct updated page is displayed. That means that both versions are contained in the CHM and the correct version is linked to the TOC, but the wrong version is set as default topic.
    Any solution to this? Otherwise I might file a bug report.

    Can you please elaborate the para below
    Everything works fine, except for the title page - the online help still displays the default topic at the state is had in the RoboHelp project, before I edited the FrameMaker file. When I select the title page manually from the TOC, then the correct updated page is displayed. That means that both versions are contained in the CHM and the correct version is linked to the TOC, but the wrong version is set as default topic.
    do you mean to say that you selected a different topic as default in the RoboHelp project and later while File Publish you changed the default topics - the question is from where did you do it (in RoboHelp project?) and this selecting from TOC is not clear (as default topic selection combo in SSL does not shows TOC but all the topics present).
    Secondly Did you used the same FM file set to create .isf from RoboHelp project that was used later for File Publish option or did you created a downsample of you FM file set in the RoboHelp project.
    One of the things I would suggest is that if you are that proficient with RoboHelp (the way you linked and did mapping and all) then why go to FrameMaker to Publish, as you can create the same output right there sitting the RoboHelp project (while you are creating the .isf - mapping that you require). It will give you more flexibility with respect to the output generation like applying a different CSS to all the topics before generating output
    one last explanation what seems to have happened in your case is that you selected a different topics (topics generated from the linked FM in RoboHelp project) and while publish the files used for output is the one generated through import of the FM book in the RoboHelp project (which is a different set of files) and thus the outputs default topics would be the one generated from your linked FM document (the one that you selected while creating the .isf file)
    If you use linked FM documents and generate online outputs from RoboHelp you would have a better control over these online outputs and for PDF you can always generate it from FrameMaker
    Hope this will help
    Ashish

  • Dynamic action - default values

    Hi guys,
    Anybody knows if it is possible to set a dynamic action in order to default P0001-WERKS field in the Infotype 0001?
    Thank you very much!

    So you mean to say, Action 0000 Infotype and Org Assignment 0001 infotype will have different values depending on Action Type??
    This is not at all possibleeeeee!!
    The WERKS that you enter in IT0000 stores in IT0001 but not in IT0000
    Regards
    ...Sadhu

  • Dynamic Topics in JMS

    Hi,
    I'm not sure if something like this is possible so I am looking for some guidance please.
    I need publish/subscribe functionality. I have countless number of Items/products/things that I would like users to be able to subscribe to. User sees an item and they "subscribe" to that item for notifications of any changes to that item.
    Subscribing to a JMS Topics seem to limited. It seems to only allow the user to: subscribe(SOME_TOPIC) Doing this the JMS Topic has no idea that the user really wants only notifications for a specific item (like ITEM_1 or ITEM_n).
    I don't see a way to dynamically create JMS Topics like subscribe(ITEM_1_TOPIC) and also subscribe(ITEM_n_TOPIC)Any help would be greatly appreciated.
    The implementation of the JMS MDB Topic would be same except for only the value passed in to the Topic's 'subscribe' method.
    Thanks,
    Jared

    I think what your question boils down to is whether you can call Session.createTopic(topicName) to create new topics on-the-fly. The JMS specification doesn't require this to be possible, but many vendors including Glassfish Message Queue do allow this.
    If your JMS provider doesn't allow dynamically-created topics you can achieve the same effect by using a standard topic name and then a message selector to "filter" the topic. A message selector allows the consumer to specify that they want to receive only those messages which match some specified condition based on a message property.
    Nigel

  • Duplicate Payment - Subscription Renewed - Need Re...

    I am having an issue with Skype and I have written to this community detailing them what happened. My problem was that on the 10th May 2014 I purchased a one month subscription from Skype.com.GBR with a reference number ****************5 and paid with my credit card for £9.19. Unfortunately my account was also debited with £11.50 for a purchase made at Skype Communication Luxembourg Lux with the same reference number and on the same date. Please I am using this medium to ask Skype to reimburse my money back into my credit card. I was only committed to my subscription which I had paid for and any other billing without my authorization should be treated as a crime. Please I need this money back without any delay.
    [Banking record redacted for privacy.]

    Hi, Hayesmann, and welcome to the Community,
    It is I who redacted the copy-and-paste of your banking record in order to maintain your privacy. 
    As is noted in the blue box which appears above where we type our posts on this message board,
    If you have a payment issue please contact Skype customer service as users here on the community can't help you with those. To help you find the right place for these types of questions please feel free to use the following links:
    Refund requests
    In other words, clicking on the request a refund blue type will take you to the instruction on how to contact Skype Customer Service to do just that - request a refund.   Our Community Guidelines remind us that the Community is not a branch of Skype Customer Service, so no account-related matters posted to a public website will be attended to by Skype Customer Service.
    This FAQ article explains that Skype subscriptions automatically renew by default; we need to cancel the subscription ahead of its renewal date if we do not wish the subscription to continue.  The subscription will continue to be active until the end of its term.  This FAQ article explains these details:
    https://support.skype.com/en/faq/FA10414/how-do-subscriptions-work
    You should be able to sign on to your account details and cancel the subscription which you no longer need.  You can also contact Skype Customer Service directly; the agents can cancel the subscription and issue the refund according to Skype's refund policy.
    Here is a link to the instruction on how to contact Skype Customer Service via their secure portal: Contact Customer Service
    Here are a few extra notes to guide you along the way ...
    You will need to proceed through each step, one at a time. Sign on to the Skype website as requested. Choose the subject and topic which most closely matches the item you need assistance with. Then, continue past Step 2 of the instruction where several articles from the FAQ library will appear for you to review, and proceed to Step 3, Continue Support Request (the blue "button" appears at the lower right corner of the website page). You may also skip through Step 4 where you will be referred back here to the Community; no need to do this as the Community is where you started. When you complete the web-form and click Submit, your information is relayed to Skype and you will receive a reply via e-mail unless you are transferred to start an instant message chat session with a Customer Service agent.
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

Maybe you are looking for

  • I want to know what can i do if i forgot the three account question?

    I redeemed $25 in my account by the app card, but i cant buy items in the games because it said that i need to answer the three questions. But i forgot the questions, what can i do for it? i want to know if i can use the money.

  • How to convert a black and white tif image to colour

    I want to convert a black and white tif image to colour. I opened it in Photoshop, changed the mode to RGB colour/8, saved it as psd, but when I use the Replace Colour dialogue box, I just get my colour showing as grey-scale. What's the correct way t

  • How is the design for this complex requirement ?

    Hi All, I have Customer hierarchy as follow : CustomerCategory CustomerType CustomerGroup Customer Discount can be given to a CustomerCategory, or CustomerType, or a CustomerGroup, or a Customer , or to ALL Customer. Discount is defined in a Promotio

  • How to configure Adobe LiveCycle designer on my SAP Server?

    Dear friends. I have installed SAP ECC 6.0 and Adobe LiveCycle designer ES 8.2 on my computer. Now I want to use Adobe LiveCycle designer in SAP by TCODE:SFP. Please tell me how to configure Adobe LiveCycle designer on my SAP Server in details.

  • Where can i find this slideshow template?

    I've seen this slide show interface on a few different sites: http://downtownrivals.com/store/DeasVail/Shirts/Girls/299 When you click on the images it darkens the screen and then brings up a flash slide show. I'm assuming that this is some sort of t