Global create activity with screenflow and constructor

Hi
Question 1) Is it possible to get data from database (Oracle) in constructor
Execute Screen flow in a row (One fer other) if yes how and if
not how can we do that?
Question 2) Explain how data can be displayed in JSP with BPM Object
Please give simple example.
Thanks in advance

Sorry, I'm not following what you're asking. Screenflows do not have constructors. Is it possible that you mean an instance variable BPM Object's constructor? If this is the case, I'd suggest you instead keep the BPM Object's constructor very lean.
You can run SQL from any Automatic task inside a Screenflow, any Automatic activity inside a process or BPM Object's methods that have their "Server Side Method" property set to "Yes". BPM Object constructors have their "Server Side Method" property set to "No" and cannot be changed. While you could invoke another method from the constructor that is server side, I would not recommend doing it. Almost always you'll want fresh data from the database displayed just prior to a presentation being displayed. If you populate information from a database inside your BPM Object's constructor, the information would be populated when the instance gets created in the Begin activity. If an instance takes 3 weeks to reach the 5th activity in the process, this same stale information populated 3 weeks ago when the object was initialized will be displayed in presentations shown in this activity. Presentations can have an initialization method (method run just before the presentation is shown). Consider using presentation initialization methods to retrieve the latest information from the database.
Hope this helps,
Dan

Similar Messages

  • Create Activity with Campaign and Activity Result

    Hi everybody!
    I'm developing a report and I would like to create an activity in CRM passing values to field Campaign and Result (Activity Result).
    Thanks in advance for your tips and suggestions..

    You can do this with the CRM_ORDER_MAINTAIN FM. Sorry, but I do not know by heart where the two fields are stored, but if you like to know use CRM_ORDER_READ to access a known activity and check where your data is stored.
    Hope this helps,
    Kai

  • Create activity with more than partner and send email to all of them

    Hello All,
    I am working on CRM 5.0 activity management I want  to create activity with more than activity partner and send email to all of them
    Regards
    Khaled Fahim

    hi
    you can achieve this easily by creating a partner determination procedure in which you will be having more than one partner function having the function category as activity partner.
    once you created the PDP just attach this to the transaction and then call the procedure when you are actually creating an activity.
    for sending mail you can use FM
    SO_SEND_MAIL_DOCUMENT_AP1
    this is just one way
    another way is which stephen suggests
    you can use the personalised mail form functionality ,this is good in a way u neednt do any coding it will solve ur purpose in standard way.
    another way is when you create campaign and when an inbound activity is created for the every survey response
    this way you can send multiple mail and also for more than one or even n number of activity partners ,we can create the activity for the same
    best regards
    ashish

  • Create View  with Force and No Force

    Can Anyone Tell me how to create view with force and no force i have very little idea about this

    This is the syntax.
    CREATE [OR REPLACE] FORCE VIEW view
    [(alias[, alias]...)]
    AS subquery
    [WITH CHECK OPTION [CONSTRAINT constraint]]
    [WITH READ ONLY [CONSTRAINT constraint]];You can see interesting threads about this topic here.
    Re: Creating view forcibly
    Creating View forcefully
    Cheers
    Sarma.

  • HT201365 hello sir i purchase second hand iphone4s now my iphone ask for activation with id and password i contact with previous owner and use that id and password but that also not work what i do ola help me

    hello sir i purchase second hand iphone4s now my iphone ask for activation with id and password i contact with previous owner and use that id and password but that also not work what i do ola help me i try all other method restore ' upgrade etc but none work plz say what i do if u find some solution tham msg me on [email protected]

    First, we're not Apple here (Apple does not participate in this forum).  We're only users like you.
    The previous owner has not given you the correct ID and password for you to use.
    If the iphone has iOS version 7, then read through the following...
    http://support.apple.com/kb/HT5818

  • Hello sir i purchase second hand iphone4s now my iphone ask for activation with id and password i contact with previous owner and use that id and password but that also not work what i do ola help me i try all other method restore ' upgrade

    hello sir i purchase second hand iphone4s now my iphone ask for activation with id and password i contact with previous owner and use that id and password but that also not work what i do ola help me i try all other method restore ' upgrade etc but none work plz say what i do if u find some solution tham msg me on
    iPhone 4S

    oenkz33 wrote:
    this does not help at all for the second owner, after making the first owner id with careless, sorry for my english ...
    Careless? Possible, but unlikely. Most likely the phone was stolen from the first owner. It would be a VERY careless iPhone owner who did not erase their personal information from a phone before selling it, and to do that it is necessary to disable Activation Lock. In most places in the world knowingly using stolen property is a crime, so the fact that the phone doesn't work may be the least of one's risks.

  • Create Window with Textbox and Button For getting Input Value

    Hi All,
    I have create plugin application but i want to take input from user. Therefore i want to create window with textbox and button.
    please may i get solution...

    Or if that's all you need to do, just use JavaScript or a form.

  • Can anyone recommend an alternative software programme to Pages? I have an OS X 10.7.5 macbook pro, so I am unable to get it. I want a programme that I can create docs with pictures and text on, invitations, posters etc. Many thanks in advance-..

    Can anyone recommend an alternative software programme to Pages? I have an OS X 10.7.5 macbook pro, so I am unable to get it. I want a programme that I can create docs with pictures and text on, invitations, posters etc. Many thanks in advance…..

    LibreOffice

  • I am creating webpages with frontpage and trying to make collapsible lists. The lists collapse and work correctly in "preview" mode, but do not work when accessed through firefox or explorer 8. Does anyone know what I am doing wrong?

    I am creating webpages with frontpage and trying to make collapsible lists. The lists collapse and work correctly in "preview" mode, but do not work when accessed through firefox or explorer 8. Does anyone know what I am doing wrong?

    Welcome to the 'wonderful' world of HTML5 e-learning.
    In my view, from the issues I am seeing everywhere, HTML5 output from rapid e-learning tools such as Captivate is not ready for the kind of mobile device e-learning you want to develop.
    Sorry to be pessimistic, but you may need to consider going back to the drawing board and coding it from the ground up.

  • Create dll with arrays and call it

    I am trying to create dll with labview in order to pass a 2d array to the main program. The problem is that I don't really know how to create the function to call it (I don't know much about pointers)
    The function I have created to call the dll is void Untitled1(TD1Hdl *Array1) which is suposse to return the array created on it.
    For example, in the program attached, how should I do to pass the array to another program using dlls?
    Thanks a lot,
    Juanlu
    Attachments:
    Untitled 1.vi ‏7 KB

    The code you've provided doesn't do anything (just a control wired to an indicator) so I'm not sure what you're asking here.
    If I understand correctly, you want to build a DLL from your LabVIEW VI.  From what language will you call that DLL?  There is no standard way to pass a 2-D array.  If you can convert to a 1-D array, you can use a simple pointer.  With a 2-D array, you're stuck with LabVIEW's array representation (the TD1Hdl type), which means that whatever code calls that function will need to understand the LabVIEW data type and how to manipulate it.

  • Create website with IDCS3 and SiteGrinder?

    Media Lab's SiteGrinder is an amazing product for easily converting Photoshop designs into working websites without any knowledge of coding. Unfortunately, I have much more experience with InDesign than with Photoshop, but as it's possible to import InDesign files into Photoshop, I'm wondering if I can go this route with my InDesign designs, rather than learn how to use Photoshop more extensively. Has anyone here created a website with InDesign and SiteGrinder, with minimal Photoshop "intervention"?

    > Are you referring to everything crowding and overlapping when the text is enlarged? Isn't that a common problem with all sites?
    It's common -- far too common -- but not inevitable. It's bound to happen with SG, though, because they carve up the layout into fixed size chunks and then use absolute positioning, so there's no way for the containers to accommodate changes in font size except by crashing into each other, or growing scroll bars, which is only sometimes going to work. For the same reason -- starting with a single Photoshop image -- they can't identify headings or lists, so the pages aren't properly accessible to some assistive technology. If you don't care about accessibility, you should realize that this also means that they become hard or impossible for search engines to analyze, so people aren't going to find your site so easily.
    But I guess this discussion is a bit out of place on an InDesign forum. To get back to that, if you wanted to start in InDesign, the best thing to do is use XML export to get properly marked-up XHTML, and then lay it out with CSS. There's a good piece about doing this somewhere over on InDesign Secrets -- I don't have the exact URL to hand. But you would have to learn some CSS to do that. It seems that you are determined to go with SiteGrinder, though, so I can only recommend that you try things like changing the font size, and checking it with different browsers, so that you don't end up with something too awful. But if you do find the time to read, for example, Zeldman's book on Designing with Web Standards, you'll end up better at making sites than if you don't.

  • Creating model with Control and Design LV2009

    Hello,
    I'm trying to make a PI control model with Control and Design in labview 2009. I'm tyring to create the following transferfunction:
    D(z)=Kp+((Kp*Ki)/(1-z^-1))
    But labview adds by itself an extra z^-1 in the Numerator
    See the attachment what I have tried. I first want to create 1+(1/(1-z^-1)). What I'm I doing wrong ?
    Greetz,
    Jeroen
    Attachments:
    model.jpg ‏50 KB

    Jeroen,
    The two expressions "1+(1/(1-z^-1))" and "(2-z^-1)/(1-z^-1)" are equivalent to one another.  They just have the terms rearranged.  Since LabVIEW expresses a transfer function as a numerator and denominator, it is drawing the function as "(2-z^-1)/(1-z^-1)".  You aren't doing anything wrong.
    Chris M 

  • I have created video with music and pictures.  I have exported it. But all that shows is the music no pictures.  I have done this before and it worked ok.  Am I missing something?

    I have created a video with pictures and music.  When i export it, it goes into a MP4 video.  which I have done before and it worked ok.  Now the only thing on the MP4 video is music but not my pictures.
    I am very new to this and have taught myself everything so far.  I have no technical understanding.  So please make any answers as basic as you can.
    Many thanks.

    I am using standard photoshop cs6.
    Regards
    Clifford Marker
    Director – Clifford Marker Associates.
    Email :  <mailto:[email protected]> [email protected]
    Tel : 0208 504 2570
    Tel : 07539 833852
    9 Warners Close, Woodford Green, IG8 0TF
    Web :  <http://www.cliffordmarkerassociates.com/> www.cliffordmarkerassociates.com
    CMA Logo
    This communication and any attachments are confidential and may be protected from disclosure. We endorse no advice or opinion contained in this communication that is not the subject of a contract between the recipient and ourselves. If you have received it in error please notify us immediately and note that any storage, use of disclosure is strictly prohibited and maybe unlawful.
    Whilst we check the communications we send for virus infection, we accept no responsibility for any loss or damage caused to your systems by this communication.
    Those communicating with us by electronic mail will be deemed to have accepted the risks associated with interception, amendment, loss and late or incomplete delivery. They will also be deemed to have consented to you intercepting and monitoring such communications.

  • Create Report with CR4E and XML Data Source

    Hi all,
    I have a problem when create a report with CR4E that should use a XML data source. It is not possible to choose fields from the field explorer, because ther are no fields from the XML-file. Is there a general problem when using an ODA data source in CR4E?  At the moment I can only create reports with a database as data source.
    Please help me with a tip.
    Thanks
    Arnold

    Hi,
    After Installing CR4E Version 2  the code snippet for creating a XML-report not works as JSP. Has anywhere a hint to resolve the problem or a complete JSP-file?
    reportClientDocument = new ReportClientDocument();
    java.lang.NoClassDefFoundError: com/crystaldecisions/reports/common/data/CrystalResultSet
         com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.<init>(Unknown Source)
         org.apache.jsp.XMLDataSource_jsp._jspService(XMLDataSource_jsp.java:64)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    Thanks
    Arnold Meier

  • How to create table with rows and columns in the layout mode?

    One of my friends advised me to develop my whole site on the
    layout mode as its better than the standard as he says
    but I couldnot make an ordinary table with rows and columns
    in th layout mode
    is there any one who can tell me how to?
    thanx alot

    Your friend is obviously not a reliable source of HTML
    information.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Mr.Ghost" <[email protected]> wrote in
    message
    news:f060vi$npp$[email protected]..
    > One of my friends advised me to develop my whole site on
    the layout mode
    > as its
    > better than the standard as he says
    > but I couldnot make an ordinary table with rows and
    columns in th layout
    > mode
    > is there any one who can tell me how to?
    > thanx alot
    >

Maybe you are looking for

  • How can I get the rotation information of my wrists in Kinect for Windows v2 ?

    Hi,all Assuming we make human wrist as the coordinate origin point of a three-dimensional space Cartesian coordinate, then when moving the wrist freely, what is the wrist rotation information in the coordinate system? Can kinect V2 describe it just l

  • Can I open InDesign CS files in InDesign CS6?

    I have an imac running OS X (10.8.2) with 2.7 GHZ intel core i5    If i buy indesign CS6 will it open my old indesign CS files

  • External Drive oddities

    I've got an external portable drive that I've been using both as a backup and my iTunes library. Yesterday, my internal drive necessitated a wipe, and after checking my backup to make sure it was up to date, I did as such using my TechTool Pro eDrive

  • Debug Weblogic 10.0 with 2-Way SSL: Error 401--Unauthorized

    Hi, I am working on Weblogic 10.0 with 2-Way SSL configuration. User uses X.509 certificate to login into the system. I have a default UserNameMapper which maps the CN to the a user name in the LDAP user store. User can login without problem. But aft

  • Some PDF pages are opening blank!

    I can't open some PDFs in Lion because all pages are coming blank. Is it a new chapter of the Adobe vs. Apple battle, or can I open those documents other way?