Are Pipelines mandatory when using an IP?

Thanks for all the help so far, but I still have one more question regarding using
IPs.
Now, I have my IP working fine. However, is it mandatory to have a Pipeline after
that. Can't I simply have my IP go back to the originating page when I have any
exception (invalidform), or to the next page in the flow if all was good.
Thanks
Ashish

Tanya -
There are no examples of how to setup a set of IP, on a portlet that has multiple
pages. Can u help with that. See my other post please.
Thanks a ton.
Ashish
"tanya" <[email protected]> wrote:
>
you can order your nodes any way you want...as long as the ebcc allows
you to do
this (ie exception events can only go to exception nodes)
if you look here, you'll see an example of an IP going to a JSP and a
pipeline.
http://e-docs.bea.com/wlp/docs70/dev/navigate.htm#1003298
you might want to just take a look at the sample apps that come w/ your
install
to get familiar w/ this stuff.
if you point the ebcc to this project, you'll be able to see lots of
example webflows:
<install-dir>\samples\portal\sampleportalDomain\beaApps\sampleportal-project\sampleportal-project.eaprj
hope that helps,
tanya
"Ashish Gupta" <[email protected]> wrote:
Thanks for all the help so far, but I still have one more question regarding
using
IPs.
Now, I have my IP working fine. However, is it mandatory to have a Pipeline
after
that. Can't I simply have my IP go back to the originating page when
I have any
exception (invalidform), or to the next page in the flow if all wasgood.
Thanks
Ashish

Similar Messages

  • How can i set songs within a playlist, or an entire playlist, so that they are not included when using the shuffle function on IPOD Classic? Is this possible?

    How can i set songs within a playlist, or an entire playlist, so that they are not included when using the shuffle function on IPOD Classic?
    Is this possible?

    You can set any song to Skip when shuffling.
    In your iTunes Library, highlight the song and right-click/Get Info. On the Options tab is the Skip when shuffling box. Select that and then Sync the iPod with your Library.

  • Cursors are not closed when using Ref Cursor Query in a report  ORA-01000

    Dear Experts
    Oracel database 11g,
    developer suite 10.1.2.0.2,
    application server 10.1.2.0.2,
    Windows xp platform
    For a long time, I'm hitting ORA-01000
    I have a 2 group report (master and detail) using Ref Cusor query, when this report is run, I found that it opens several cursors (should be only one cursor) for the detail query although it should not, I found that the number of these cursors is equal to the number of master records.
    Moreover, after the report is finished, these cursors are not closed, and they are increasing cumulatively each time I run the report, and finally the maximum number of open cursors is exceeded, and thus I get ORA-01000.
    I increased the open cursors parameter for the database to an unbeleivable value 30000, but of course it will be exceeded during the session because the cursors are increasing cumulatively.
    I Found that this problem is solved when using only one master Ref Cursor Query and create a breake group, the problem is solved also if we use SQL Query instead of Ref Query for the master and detail queries, but for some considerations, I should not use neither breake group nor SQL Query, I have to use REF Cursor queries.
    Is this an oracle bug , and how can I overcome ?
    Thanks
    Edited by: Mostafa Abolaynain on May 6, 2012 9:58 AM

    Thank you Inol for your answer, However
    Ref Cursor give me felxibility to control the query, for example see the following query :
    function QR_1RefCurDS return DEF_CURSORS.JOURHEAD_REFCUR is
    temp_JOURHEAD DEF_CURSORS.JOURHEAD_refcur;
              v_from_date DATE;
              v_to_date DATE;
              V_SERIAL_TYPE number;
    begin
    SELECT SERIAL_TYPE INTO V_SERIAL_TYPE
    FROM ACC_VOUCHER_TYPES
    where voucher_type='J'
    and IDENT_NO=:IDENT
    AND COMP_NO=TO_NUMBER(:COMPANY_NO);
         IF :no_date=1 then
                   IF V_SERIAL_TYPE =1 THEN     
                   open temp_JOURHEAD for select VOCH_NO, VOCH_DATE
                   FROM JOURHEAD
                   WHERE COMP_NO=TO_NUMBER(:COMPANY_NO)
                   AND IDENT=:IDENT
              AND ((TO_NUMBER(VOCH_NO)=:FROM_NO and :FROM_NO IS NOT NULL AND :TO_NO IS NULL)
              OR (TO_NUMBER(VOCH_NO) BETWEEN :FROM_NO AND :TO_NO and :FROM_NO IS NOT NULL AND :TO_NO IS NOT NULL )
              OR (TO_NUMBER(VOCH_NO)<=:TO_NO and :FROM_NO IS NULL AND :TO_NO IS NOT NULL )
              OR (:FROM_NO IS NULL AND :TO_NO IS NULL ))
                   ORDER BY TO_NUMBER(VOCH_NO);
                   ELSE
                   open temp_JOURHEAD for select VOCH_NO, VOCH_DATE
                   FROM JOURHEAD
                   WHERE COMP_NO=TO_NUMBER(:COMPANY_NO)
                   AND IDENT=:IDENT               
              AND ((VOCH_NO=:FROM_NO and :FROM_NO IS NOT NULL AND :TO_NO IS NULL)
              OR (VOCH_NO BETWEEN :FROM_NO AND :TO_NO and :FROM_NO IS NOT NULL AND :TO_NO IS NOT NULL )
              OR (VOCH_NO<=:TO_NO and :FROM_NO IS NULL AND :TO_NO IS NOT NULL )
              OR (:FROM_NO IS NULL AND :TO_NO IS NULL ))     
                   ORDER BY VOCH_NO;          
                   END IF;
         ELSE
                   v_from_date:=to_DATE(:from_date);
                   v_to_date:=to_DATE(:to_date);                         
              IF V_SERIAL_TYPE =1 THEN
                   open temp_JOURHEAD for select VOCH_NO, VOCH_DATE
                   FROM JOURHEAD
                   WHERE COMP_NO=TO_NUMBER(:COMPANY_NO)
              AND IDENT=:IDENT                         
                   AND ((voch_date between v_from_date and v_to_date and :from_date is not null and :to_date is not null)
                   OR (voch_date <= v_to_date and :from_date is null and :to_date is not null)
                   OR (voch_date = v_from_date and :from_date is not null and :to_date is null)
                   OR (:from_date is null and :to_date is null ))     
                   ORDER BY VOCH_DATE,TO_NUMBER(VOCH_NO);     
              ELSE
                   open temp_JOURHEAD for select VOCH_NO, VOCH_DATE
                   FROM JOURHEAD
                   WHERE COMP_NO=TO_NUMBER(:COMPANY_NO)
                   AND IDENT=:IDENT                         
              AND ((voch_date between v_from_date and v_to_date and :from_date is not null and :to_date is not null)
                   OR (voch_date <= v_to_date and :from_date is null and :to_date is not null)
                   OR (voch_date = v_from_date and :from_date is not null and :to_date is null)
                   OR (:from_date is null and :to_date is null ))     
                   ORDER BY VOCH_DATE,VOCH_NO;          
              END IF;
         END IF;               
         return temp_JOURHEAD;
    end;

  • Items in shared mailbox are not visible when using cached mode in Outlook 2013

    Hi all,
    When using Outlook 2013 working with the users own mailbox works great, but when a user connects an additional mailbox to its mailbox, this mailbox is shown correctly, but it contains no items. The folder list is shown correctly, but there are no items to be
    seen.
    These users (I have seen it with 3 different users and 2 shared mailboxes already) have full access to these mailboxes (Exchange 2010), but somehow the items aren't shown... When these users turn off cached mode, it works fine and when they use Outlook 2010
    it also works fine, but using Outlook 2013 with cached mode will only show their own items and not the items in an additional shared mailbox.
    What is the cause of all this?
    Kind regards,
    Erik

    Maybe something interesting...
    When looking at article http://support.microsoft.com/kb/982697/en-us
    I saw that Outlook 2013 by default caches everything and that's what I wanted. I tested however adding this regkey to see what happened and after that the email shows up in the mailboxes... Somehow the mail from shared mailboxes doesn't want to be
    cached...
    Does anyone know what this could be? I want everything to be cached, also the shared mailboxes but somehow this doesn't work and it does when using Outlook 2010....

  • Enterprise DNS servers are not responding when using Windows NLB with Direct Access 2012

    Hi
    We have installed Direct Access 2012 as one server installation:
    - Two network cards. First one in DMZ and second one in internal network
    - Two consecutive IP addresses configured in DMZ because of Teredo
    - PKI because of Win7 Clients IPSec
    - Our corporate network is native IPv4 so we use DNS64/NAT64 and DA-server is configured as DNS
    - DA-servers are VMWare virtual machines 
    One server installation works fine and now we want to use Windows NLB as load balancing. NLB installation goes fine too,
    but problem is DNS. If we still try to use DA-server as DNS there comes error message below
    None of the enterprise DNS servers 2002:xxxx:xxxx:3333::1 used by DirectAccess clients for name resolution are responding. This might affect DirectAccess client connectivity to corporate resources.
    When trying to configure DNS using Infrastructure access setup, DNS cannot be validated when using DA-servers DIP or cluster VIP. Only domain local DNS looks to be ok but those have no IPv6 addressess. So how DNS should be configured when using multicast
    NLB? 
    Tried to remove name suffix then adding again => Detect DNS server => DA-server IPv6 address found => validate => The specified DNS server is not responding...
    Then tried to ping detected address => General failure
    NLB clusters are configured as multicast and static ARPs are configured too. Both clusters can be connected from those subnets as they should be. 
    Any clues how to fix this?
    ~ Jukka ~

    Hi,
    Your question falls into the paid support category which requires a more in-depth level of support.  Please visit the below link to see the various
    paid support options that are available to better meet your needs.
    http://support.microsoft.com/default.aspx?id=fh;en-us;offerprophone
    Regards,
    Mike
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Use of FI-CA Mandatory when using IS-Media solution?

    We are implementing ECC6 with an IS-Media add on for newspaper and magazine distribution (MED_PDEX).  I would like to know if it is mandatory to use FI-CA as out accounts receivable solution, or if we can still use the more traditional FI-AR.  I am assuming that since FI-CA is associated with most IS-Media solutions than we must use it but I would like confirmation on this point.
    Thanks and regards,
    Julian Morrissy

    Hello,
    FICA -The Contract Accounts Receivable and Payable component is a subledger developed for industries with a large customer base and a correspondingly high volume of documents to post. This includes insurance companies, utilities, telecommunication, and public service companies.
    Functionality wise there is difference between FICA & FI-AR. It all depends on your business requirements.
    If it is only recording of Payments, DME file generation, Dunning means, FI-AR is suitable....but there are other things like Payments, Returns, Refunds, Dunning letters, Items submitting to third parties for collection <collection agency>, FADD <Fixed amount Direct Debit> {Payment Schemes}, VADD <Direct Debit>....you have to go for FICA.....
    Furthermore there is a contract accounting with no specific line of business (FI-CAX).
    Hope this helps
    Rgds
    Rajendra
    Edited by: rajendra mukhyaprana on Apr 24, 2008 12:32 PM

  • Help topics are not displaying when using Windows 7 / IE 9 / RH10

    We recently upgraded our library from RH8 to RH10.  Also used a trial version of  RH9 in this process. Now when we compile several of the projects have issues where help topics do not display when selected in the TOC or when a link to the topic is clicked within another internal topic. It is in a continous loop in the browser (like it is trying to load).  If you right-click on the topic it displays (we are currently using this as the work-around).  Anyone else having this problem?? I saw something similiar for Windows8/IE10, but the fix does not apply here (http://forums.adobe.com/message/5138909#5138909#5138909).

    Hi,
    I (April) apologize I have been OOO and have not been able to respond to your replies.  
    Let’s start over. 
    We have an issue where help topics do not display when selected in the TOC or when a link to the topic is clicked within another internal topic. It is in a continous loop in the browser (flickering like it is trying to load). If you right-click on the topic it displays (we are currently using this as the work-around).
    We use Windows 7, IE9 and RH10 for all our projects. (Recently upgraded from RH8 to RH10)
    Turns out the problem is not isolated. I have run across it in at least one other project, which leads me to think it also occurs in others.
    "Does this only occur when the help is called from your software? Is it OK if you double click the start page?"
              No. I it ALSO occurs when launched from the start page. 
    Have you tried deleting the CPD file and reopening Rh and the project?
              Yes, without success.
    Are you using any redirects?    
              Per (Adrienne), “I am not using any redirects. I encounter this issue only in IE. If I paste the .htm into a Firefox browser, the help displays as it should.” 
              I will add that the project also displays incorrectly in Google Chrome.
    Thanks  April

  • Retro entires in HR Forms are not printed when using device type ZHPP3005

    Hi All,
    We are doing a HCM implementation. We are using HP P3005n printer and ZHPP3005 device type to print our HR forms. We are using ZCalibri font.These are smartforms. Everything was printing perfectly.
    Then there were retro calculations made to these forms.Strangely, the forms doesn't display these retro entries in the print preview using ZHPP3005 device type. Only the retro entries throughout the form are not printing. All other entries get printed.
    When we use device type HPLJIIID, we get these retro entries printed in our form however the format of the form gets changed.
    Now, we want to use device type ZHPP3005 and get these retro entries printed. How would we achieve this? Is this a device type issue? Or, anything needs to be done in the smartform? Why is this issue?
    Please help. Quick response will be appreciated. We are nearing our Go Live date and needs this resolved immediately.
    Thanks in Advance.

    Hi,
    Check the assigned page format to your custom device type. Try to assign all the page format which are available for
    HP*** which you gives you desired result.
    Regards,
    Vamshi.

  • What are the tarrifs when using a BT Broadband Hub...

    Hi.
    I'm trying to find out exactly how much calls will cost if I get BT BB and make calls using the hub phone. The info on the website, here, is very basic:
    http://www.productsandservices.bt.com/consumerProducts/displayTopic.do?topicId=27273&s_cid=con_FURL_...
    For example, it says "All UK* Evening and Weekend calls are included at no extra cost". Assuming that that means evening and weekend calls up to one hour long are free, do I pay for calls made at other times of the day? And are those at the normal BT tarriff?
    So, it's really just like an additional line but with no extra line rental? (but perhaps with cheaper international calls).
    Am I correct?

    page 31 in this might help
    http://www.productsandservices.bt.com/consumer/consumerProducts/pdf/UKInternationalprices.pdf
    BT Broadband Talk call prices
    The prices for BT Broadband Talk calls to UK local and national
    numbers beginning with 01, 02, 03 and 056, (not including
    calls to internet service providers) and to BT Broadband
    numbers beginning with 055114, 055116, and 055554
    depend on your choice of plan and the time period in which
    you make the call.
    Calls are charged as follows:
    Evening and Weekend Plan - during the Evening and Weekend
    periods each call is charged at 0 pence for the first hour and
    6.40 pence per minute thereafter. Call made in the Daytime
    period are charged at 6.40 pence per minute throughout.
    Anytime Plan - each call is charged at 0 pence for the first
    hour and 6.40 pence per minute regardless of when the call is
    Calls to the Channel Islands, calls to non-BT 055 (excluding
    those listed above) numbers and calls from Northern Ireland to
    fixed phones in the Republic of Ireland, are not charged at
    these rates. Details of these and all other calls not specified
    above are set out elsewhere in this guide.
    If any post helps tick the star box on the left
    Just cause Im paranoid dont mean they are not out to get me

  • Business area is mandatory when creating cost center

    Hi ,
    I have an error while creating cost center. business area is a mandatory field when I am trying to create cost center. I want to make it ( business area ) optional . How it is ?
    Thanks

    hi
    Go to OBC4 select your Field sataus varient in that select G004 ,double click on G004 in that Additional Account assigenment Select Business Area As Optional.it will work
    if your problum is solved pls assign me points
    Regards
    ramana

  • Tabs are not stable when using t:panelTabbedPane

    Hi
    I am using the t: panelTabbedPane for one of my screen and i divided into 4 different tabs.
    Each and every tab consists of Apply, Save, Cancel and Pagination controls.
    When I am performing action in first tab and going to the second tab clicking on pagination the page is navigating into the first tab because we are performing action previously there.
    If suppose I am performing action in another tab at that time it is going to the previously action performed page.
    So what can I do to resolve the issue?
    Thanks in advance.
    Regards,
    Satish

    It seems to be time for the old divide and conquer approach.
    Zip up the project so you have a copy that cannot accidentally be opened and worked on. That gives you a copy that you can safely revert to later if needed. Save the zip file somewhere safe.
    Then create another copy of the project so that you have two copies that can be worked on.
    Open Copy 1 and delete half the topics. Ignore any broken links reported. Generate the help from that copy.
    Open Copy 2 and delete the other half of the topics. Generate the help from that copy.
    It should be the case that one copy is now OK and one still has the problem.
    Trash the good copy and then create a second copy of the copy with the problem.
    Repeat the process until you have located whatever is causing the problem.
    The process takes less time than you might think.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Specific changes are left undetected when using proxy indirection

    Hello!
    Recently, the following issue have been identified:
    ObjectReferenceMapping together with ProxyIndirectionPolicy and *UnitOfWorkValueHolder fails to identify specific changes - setting a reference to 'null' when the attribute's value was not instantiated previously.
    Detailed description:
    Consider we have 2 objects: A and B, and A has OneToOneMapping to B and uses ProxyIndirection.
    In initial moment we have A1 that references B1 in DB.
    Then we register A1 for modification. What we have in memory in UnitOfWork? Something like the following:
    A1(Clone) with attribute for B reference uninstantiated;
    A1(Backup) with <null> reference for B, as the attribute is expected to be retrieved when we access B from A1(Clone).
    Then we set reference in A1(Clone) for B to <null>.
    This change then will not be identified during commit phase, because of the result of getAttributeValueFromObject both for B reference in A1(Clone) and A1(Backup) is <null>. This part is clearly visible from the ObjectReferenceMapping.compareForChange method code:
    if ( !owner.isNew() ) {
    backUpAttribute = getAttributeValueFromObject(backUp);
    if ( (backUpAttribute == null) && (cloneAttribute == null) ) {
    return null;
    Accessing the B field in A1(Clone) fixes the problem, because in this case backUpAttribute value is initialized through *UnitOfWorkValueHolder.
    So it seems the part should be reworked to handle such cases, it seems reasonable that fields in backup clones that are using proxy indirection should be initialized even if not accessed to contain all required information to allow correct comparision in such cases.
    Can somebody from TopLink team comment this?
    Thanks,
    Sergey

    This does appear to be an issue. I will log this problem internally, you may want to follow it up with support.
    A work around is to instantiate the proxy in your set methods.
    i.e.
    public void setAddress(Address newAddress) {
    if (this.address != null) {
    this.address.hashCode();
    this.address = newAddress;
    }

  • Help topics are not displaying when using Windows 8/IE 10

    I have a WebHelp system created in RoboHelp 7. When opening that Help from our application using Windows 8 with Internet Explorer 10 and allowing blocked content, the Help topics do not display in the right pane when clicking a topic from the Contents in the left pane. Below are the steps:
    1. Open the Help system from the Help menu within the application.
    2. The Allow Blocked Content displays and I allow it.
    3. The Help opens and if I click a topic from the TOC in the left pane, the topic doesn't display in the right pane.
    A workaround we found was to widen the left pane and the topic then displays. Also, if you don't allow blocked content, this issue doesn't happen. However, I need to allow blocked content in order for PDFs within the Help to open properly and also because the Search doesn't display without allowing blocked content.
    We also tested this with a Help system that was created using Robohelp 9 and have the same issue. I'm wondering if RoboHelp 10 would solve this problem.
    Does anyone know if IE 10 requires Help systems to be created in RoboHelp 10 to work properly, at least when allowing blocked content?

    It seems to be time for the old divide and conquer approach.
    Zip up the project so you have a copy that cannot accidentally be opened and worked on. That gives you a copy that you can safely revert to later if needed. Save the zip file somewhere safe.
    Then create another copy of the project so that you have two copies that can be worked on.
    Open Copy 1 and delete half the topics. Ignore any broken links reported. Generate the help from that copy.
    Open Copy 2 and delete the other half of the topics. Generate the help from that copy.
    It should be the case that one copy is now OK and one still has the problem.
    Trash the good copy and then create a second copy of the copy with the problem.
    Repeat the process until you have located whatever is causing the problem.
    The process takes less time than you might think.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Constraints are not created when using a cart

    Hi all,
    I have created a cart in SQL Developer with all the tables from HR schema. If I apply the cart to my database cloud service the tables and data are there but most of the constraints are missing.
    In log I can see error messages like:
    Error starting at line 5 in command:
    ALTER TABLE "EMPLOYEES" ADD CONSTRAINT "EMP_DEPT_FK" FOREIGN KEY ("DEPARTMENT_ID")
          REFERENCES "DEPARTMENTS" ("DEPARTMENT_ID") ENABLE
    Error report:
    SQL Error: ORA-02270: no matching unique or primary key for this column-list
    02270. 00000 -  "no matching unique or primary key for this column-list"
    *Cause:    A REFERENCES clause in a CREATE/ALTER TABLE statement
               gives a column-list for which there is no matching unique or primary
               key constraint in the referenced table.
    *Action:   Find the correct column names using the ALL_CONS_COLUMNS
               catalog view
    Primary key constraints are completely missing in the log.
    I have tried it with option "Disable constraints before loading data" checked and unchecked.
    How can I transfer the schema (tables, data, constraints) to my cloud service. I don't want to create the constraints manually because I have a web service which is based on the exact structure of HR schema in my local database.
    Kind regards
    Juergen

    You should actually look at the headers first, IMO. Not knowing "what is going on in there" is a very bad reason to discard that solution. The Content-Type header is meant to indicate exactly the type of content you are getting (your want the text/html mime-type).
    Not all servers report the correct content type all the time in this header so it won't be a 100% solution.
    BTW, the Aperture project is specifically intented to extract content and metadata from various sources, including websites. You might be able to use that.

  • Users with a https home page are not redirected when using web-passthrough on WLC 5508

    I have a Cisco 5508 running version 7.0.116.0.  This controller hosts an open public wifi that requires users to accept a terms agreement via a Web-Passthrough setup that redirects them to the terms splash page.  For most people this works without any issue.  However, if a user has their homepage for their default browser set to a https site, such as https://www.google.com, then they are never redirected to the terms splash page.  The page will just spin and spin until finally they get a timeout error.
    Has anyone else had this experience?  If so did you find a solution or is this some sort of short coming of the controller?
    Any and all comments/information is appreciated!
    Thanks,
    Jim

    This is a known issue (see bug ID CSCar04580).
    CSCar04580 Bug Details
    web auth (redirect) doesn't work when client users a https url
    Symptom:A client whose home page is an HTTPS (HTTP over SSL, port 443) one will never
    be redirected by Web Auth to the web authentication dialog. Therefore, such
    a client will not know to authenticate, and will fail to connect to the
    network.
    Workaround:The client should attempt to open any HTTP (port 80) web page.

Maybe you are looking for

  • Creating PDF forms in LiveCycle Designer 8.0

    I post detail at Software nha khoa Group Question on a quirk I have noticed when creating a form using LiveCycle Designer 8 and was wondering if there was a way to change this. I will use a Text Field for an area where I want the person who will fill

  • Cannot TYPE in Windows 2008 remotre server.

    I cannot TYPE in Windows 2008 remotre server. I can open, close, save and ctrl+alt+delete to open the task manager, but that's it because I cannot type. When I close the remote connection everything else works just fine.

  • InDesign 2014 seems not to be recognized by Windows 7 anyone have this problem?

    All my InDesign files show the unrecognized file icon.  I can open the file if I drag and drop but not if I double click the icon.  I tried open with and selected browse and InDesign but it did nothing as did properties for the file association.  Any

  • Over riding "inbuilt audio" for the audio out put in the easy set up?

    Hi all. I just got hold of Final Cut express and I can not get audio to come out of my external audio interface( MOTU 2408 III). I have noticed that the default setting in the easy set up is for inbuilt audio. How do I over ride this? Thanks, Spigg P

  • Move to a tab in Firefox

    The below script will open Google News in a new tab. Now if I want to do the inverse, the script will continue to open new tabs. But I just want to go back and forth between the two. I do not really care how this is accomplished. I could close the ol