Customization of Message Board

Hi,
Is it possible to configure the message board and discussion forum to be item specific? eg. one message board for one item, one forum for one item.
Or, any other possible ways to get that.
Thanks and Regrads,
Minn Nay Chi

Hi Yannick,
I mean item likes product. In my case, product owner owns many products and wants to create one message board per product.
Thanks
Minn Nay Chi

Similar Messages

  • Message Board task flow customization

    Hi,
    I am using webcenter PS3 jdeveloper 11.1.1.4.0 version.
    I am creating an application in which I am using default task flow of message board-quick view in jdeveloper for a webcenter application. Now i want to customise its UI as well as functionality (for that i followed this pdf- "owcs-r11-custom-taskflow-wp-129672.pdf" ) but its of no use.
    can any1 please suggest any way to do the same.

    If you want full control over the UI you can create a data control out of your discussion service connection and create your own taskflows.
    Just right click the discussions connection in JDeveloper and select "Create data control". The rest is just plain old ADF.

  • How to Customize the Message "No Row Returned" from a Report

    Hi,
    I've been trying to customize the Message "No Row Returned" from a Report.
    First i followed the instructions in Note:183131.1 -
    How to Customize the Message "No Row Returned" from a Report
    But of course the OWA_UTIL.REDIRECT_URL in this solution did not work (in a portlet) and i found the metalink document 228620.1 which described how to fix it.
    So i followed the "fix" in the document above and now my output is,..
    "Portlet 38,70711 responded with content-type text/plain when the client was requesting content-type text/html"
    So i search in Metalink for the above and come up with,...
    Bug 3548276 PORTLET X,Y RESPONDED WITH CONTENT-TYPE TEXT/PLAIN INSTEAD OF TEXT/HTML
    And i've read it and read it and read it and read it and can't make heads or tails of what it's saying.
    Every "solution" seems to cause another problem that i have to fix. And all i want to do is customize the Message "No Row Returned" from a Report. Please,...does anyone know how to do this?

    My guess is that it only shows the number of rows it has retrieved. I believe the defailt is for it to only retrieve 50 rows and as you page through your report it retrieves more. So this would just tell you how many rows was retireved, but probably not how many rows the report would contain if you pages to the end. Oracle doesn't really have a notion of total number of rows until the whole result set has been materialized.

  • With Reports 10G can you customize you message and stop formatting?

    Oracle, states to come here for answer. they said, OTN should be able to help.
    If any one knows how this can be done can you please help me out?
    thanks,
    We were told this was fixed with 10G so we upgraded to 10G. We have a
    report and we want it to execute if it's less than 10 records if not we want a
    message to come up that the report needs to be scheduled.
    Well we run the report and it displays exceeded record count but the format
    still runs so no time saved on the web.
    If the record count was exceeded we want to HALT the system and not go any
    farther.
    Now if we could modify the system message 1825 we would be o.k. But we don't
    know if that is going to work. If we could change the message we would be
    o.k. with that. that would mean changing the system codes though.
    ### How is the Report being called (Command line, URL or via Oracle Forms): ###
    If false comes back in the beginning then we don't want any report formatting
    to be done. Right now the format is done it seems but no data is displayed
    because criteria isn't met.
    So we dont wnat the formatting to be run when criteria isn't met. But for
    some
    reason it still runs and takes time.
    See we have some reports on the web that can only be ran by date range right
    now the clients can only run the reports for a 6 months range.. Well some
    clients have a lot smaller record count. So we want to change the way the
    reports are ran to a records count. If the count is large than said amount
    then a message comes up that states the report has to be scheduled. If the
    amount is under said amount then the report runs.
    So at this time in the report we do a count then we move onto will the report
    run or not if over the amount we want to abort the process but we don't want
    the client to see the abort. We definately don't want the client to sit and
    wait for the format to run when NO Data is to be returned.
    ### Error messages and error scenario: ###
    So what we want is too see a message "Schedule the report count exceeded" and
    NO formatting done. If under amount we want the report to run.
    ### Provide a detailed step-by-step description of your problem or question: ###
    Or is there a way to customize the messages the client / users will see. And
    no formatting time for no records returned.
    Contact me via : E-mail -> [email protected]
    Text continued in next action...
    20-SEP-04 18:39:53 GMT
    Text continued from previous action...
    20-SEP-04 19:18:51 GMT
    New info : Is there a way if the error messages have to come up that we can
    hide the message or have another screen cover that error message something to
    cover the message so that the user doesn't see the error message.
    20-SEP-04 19:30:23 GMT
    Hi Darlene,
    Thank you for using MetaLink. Iam currently working on a very critical issue.I shall review/research your issue at the earliest opportunity and w
    ill update the SR / call you as soon as we have relevant information. Thank you
    for your patience.
    Best Regards,
    Seema,
    Oracle Support Services
    STATUS
    =======
    @WIP -- Work In Progress
    20-SEP-04 19:30:30 GMT
    Email Update button has been pressed: Sending email to [email protected]
    21-SEP-04 00:32:18 GMT
    Hi Darlene!
    If you are calling the report from a form, try using the EXIT_FORM line in your code.
    Thanks and Regards,
    Seema
    21-SEP-04 00:33:01 GMT
    Email Update button has been pressed: Sending email to [email protected]
    21-SEP-04 14:09:20 GMT
    New info : We will try it and let you know.
    21-SEP-04 14:19:04 GMT
    New info : We are not calling the report from a form so this won't work. Any
    other way. We are needing to do this badly.
    21-SEP-04 14:39:06 GMT
    New info : Can I get detailed steps about how to customize the system message
    or hide the message when we abort the report?
    21-SEP-04 15:38:39 GMT
    Hi Darlene!!
    As talked to you on phone, here are the steps for you to try.
    The below has been run as a test case using emp table in scott schema of a database
    1) create a summary coloumn say cs_1 in the data model.
    2) point the function to count.
    3) Point the source to what ever's count you want it to be pointed to(say empno of emp table of
    scott schema)
    4) create a user parameter say NO_ROWS
    5) in its property palette make its data type number and initial value as 1
    6) I had teh following query for my report:
    select empno, ename from emp
    where rownum <= :no_rows
    This means that the report that will be generated will consist of a total no of NO_ROWS(that we
    shall be specifying at run time). The before report trigger(mentioned in 7 below) shall assure
    that whenever we specify NO_ROWS greater than 5 then the report will display a customized pop up
    message.
    7) create a before report trigger as:
    function BeforeReport return boolean is
    user_excp EXCEPTION;
    begin
    if :cs_1 >5 then
    raise user_excp;
    return (false);
    else
    return true;
    end if;
    EXCEPTION
    WHEN user_excp then
    SRW.MESSAGE(30, 'Data is more please schedule this report:');
    raise SRW.PROGRAM_ABORT;
    return (false);
    end;
    This way when u run a report, an argument is asked whether how many rows do you want to be
    displayed as in the parameter NO_ROWS. then you specify the number. If that number is greater
    than 5(in this case, due to if :cs_1 > 5 then....) then it will pop up a message saying "Data is
    more please schedule this report:"
    In case you do not want to specify NO_ROWS..then you need not put that and modify the report
    query as "select empno, empname from emp;" i.e. without where clause.
    21-SEP-04 16:49:30 GMT
    New info : we will try this then update the TAR.
    21-SEP-04 16:58:09 GMT
    ok you update the tar when you try the above steps.
    STATUS:
    @CUS
    23-SEP-04 02:16:00 GMT
    New info : Information from the person that did this suggestion step by step.
    I tried this step by step, but unfortunately, it doesn't work the way we want.
    First with this suggestion, the user needs to choose how many records they
    want
    to get, or we default a number of records, in order to run the report. The most
    important thing is, whenever you specify the statement return false or raise
    SRW.PROGRAM_ABORT in the before report trigger, the system message will pop up.
    I really hope that people from Oracle would let us know how to customize the
    system message or hide it.
    23-SEP-04 14:23:04 GMT
    New info : I just thought that we have some sort of message, which I guess is
    from the database, when we do claim search on client inquiry. I am just
    wondering if we could try the same thing to the report.
    The some sort of message looks like this on dev box:
    Your search exceeded 5000 records and will surpass the capabilities of this
    connection. Please narrow the search criteria and resubmit.
    It's just a thought, not sure if it's going to work.
    When could we have the DBA Make this change. The servlet.properties???
    23-SEP-04 17:30:55 GMT
    REQUESTED INFORMATION PROVIDED
    ===============================
    Hi Darlene,
    Thank you for providing the requested information. I am currently reviewing/resea
    rching the situation and will update the TAR / call you as soon as I have additi
    onal information. Thank you for your patience.
    Best regards,
    Ajit
    STATUS
    =======
    @WIP -- Work In Progress
    23-SEP-04 18:04:31 GMT
    UPDATE
    =======
    Hi Darlene,
    We cannot modify the system messages nor do I think there is a method to hide the system message. The message that was coming is
    due to the raise srw.program_abort command, which is the element through which
    we can abort the program.
    Thanks
    Best Regards
    Ajit
    @CUS
    23-SEP-04 18:29:26 GMT
    New info : Can you please look into a way that we can get something to work?
    23-SEP-04 18:49:28 GMT
    Hi Darlene,
    I am sorry to say that but I don't think there is any any workaround to this because the system message is what is generated by the oracle reports i
    nternally. Still if you wish you may refer to the otn discussion forum which is
    maintained by teh product management group and post a new thread on it. the link
    to the forum is Reports
    Also since nothing can be done on our side I don't see any reason to keep this TAR open an
    d if you wish we can soft close this.
    Thanks
    Regards
    Ajit.
    New info : Shouldn't there always be a way to do something? I don't understand
    why we were told in 10G that this could be done and now we are told it can't.

    K T wrote:
    Yep - not nice...unless you do a TE 'Get Info' in the Finder and √ the 'Open in 32-bit mode' box and try again...then, all seems well in snow leopard land.
    Really? I figure since I have a Core Duo chip, everything always opens in 32-bit mode. In any case, I did file a bug report and will give your suggestion a try later today.

  • How to Customize Error message in JXL

    Hi All,
    I want to customize error message in JXL. I.e. When we apply number validation to a cell and if you enter invalid data MS-Excel shows error message saying that "The value you entered is not valid". But I want to customize this message to "Data should be a decimal number". Can anyone help me how to acheive it. Thanks in Advance.
    Thanks
    Venkat.

    Thx alot...!! for all your valuable replies.
    And, I found a way to achieve my requirement in a declarative way.
    I just created an entity validator on EmployeeEO.
    - Rule_Type: Key Exists
    - Rule Definition:
    - Validation Target Type: Entity Object
    - Association Name : <Select Assiociation created > "EmpDeptFK"
    - Failure Handling:
    - Error Message: "Invalid Deparment ID {0} Entered. Please enter a valid Department ID."
    - Message Token for "0": Department ID
    And It fulfilled my requirement.

  • With new Safari 1.3.2 update, I cannot post on message board...

    I am a member on PBS.com. Since the Safari update, yesterday, I can no longer post to the message boards. There are others who are also having this problem. I can post on other message boards, but I can no longer post on this particular website.
    Can anyone tell us what we need to fix or change?
    you can e-mail me at
    [email protected]
    Thank you.

    More than likely your real problem is that you're still running 10.3 and a very old version of Safari, which has numerous issues that have been addressed since that time. One of those issues is JavaScript, which is used by iWeb for photo galleries, which I believe is what you're publishing.
    If that's the case, you need to upgrade to at least 10.4.11 so you can use the latest version of Safari, 3.1.2. You'd have to buy a retail box, since the installation disc for your newer iMac is machine-specific, so that won't work, and if it would, it would still be illegal. After you upgrade, you could then run Firefox 3 as well, but iWeb will need to be modified in order for the photo galleries to show up correctly on Firefox 3. This is not an Apple or Mozilla issue; it's a problem with a JavaScript library used in iWeb.
    If you do that, here's a link to the original topic where the solution was mentioned for modifying iWeb: <http://discussions.apple.com/thread.jspa?threadID=1563823>
    Mulder

  • Iphone 3G no longer receiving photos on text message board

    Have plenty of space available but I can no longer receive photos while texting.  I am able to send photos to any phone. I deleted many photos from pic gallery but photos still will not come to my text message board.  Is there something I may have to do in order to receive photos again.  I have had no problem receiving photo into my text messages since I had the phone.  I list reception about 3 weeks ago.  Anyone?..........

    Hi elizabeth1002,
    If you are having issues receiving photo or MMS messages on your iPhone, you may find the troubleshooting steps outlined in the following article helpful:
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Regards,
    - Brenden

  • Windows 8 Release Preview message board

    A message board for discussions about the Microsoft Windows 8 Release Preview and Consumer Preview editions is now live.  Please use that board to discuss experiences, offer tips, and ask questions about using Preview editions of the Windows 8 operating system on Toshiba computers.
    We have no statements at this time regarding release timing, upgrade availability, or models on which Windows 8 will be supported by Toshiba. But don't let that stop you from sharing your experiences and expertise!
    Jim

    Hi,
    Uninstall the current driver for the Synaptics TouchPad and restart the system.
    Resource:
    Uninstalling Software in Windows 7
    Uninstall or change a program in Windows 7
    Install the latest Synaptics TouchPad driver from here (ver 16.0.1.0).
    Restart the system and check the result.
    ** Say thanks by clicking the "Thumb up" icon which is on the left. **
    ** Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue. **

  • Pdf File download from a message board

    I can open pdf attachment on my favorite message board, but how can I store it on my iPad for viewing when I am not in WiFi range (at the race track)?

    Albert1956-
    I know a round-about way to do this using the GoodReader App.  In Safari, press and hold on the link to the PDF.  Select Copy from the menu that appears.
    Then go to the GoodReader App, select Web Downloads in the right side of the screen and then select Enter URL.  The window where you would enter the URL should contain the just-copied URL.
    Once downloaded into GoodReader, you can read it there.  You also have the option to E-Mail the file, which can then be opened in iBooks.
    Fred

  • What is the best way to create a message board in Dream Weaver CS3?

    I need to create a simple message board in Dream Weaver CS3. Any ideas or tutorials that you know of?

    Even a simple BB would require really advanced coding skills with server-side scripts,  databases, JavaScript,  not to mention a good deal of experience with web server security.
    Ask your hosting provider if they support 3rd party products like VBulletin or  phpBB.
    Nancy O.

  • I can't type on message boards in text box!!

    I can't type in message boards or forums text boxes. I have a macbook air, using safari, have disable pop up blocker. What do I do!??!

    Do you have Java and Javascript turned on?

  • How do I create a message board/forum using forms in Dreamweaver?

    I want to create a forum or messageboard using the form in Dreamweaver but I don't know how to do it. Is there any guidance on how I could create a message board or forum on Dreamweaver?

    I don't think it can be done with just dreamweaver,
    You will have to download something like PHPBB,
    If you have a host with fantastico deluxe you can easily set up a forum
    with it.
    Daniel

  • I'm having three issues: spellcheck goes off, lastpass not working on all sites, and message boards not working correctly

    I'm having three issues with Firefox. I had the latest 10.1, and I just tried Aurora, but that didn't solve my issues.
    1) Spell checker keeps going off on messages boards. This happens frequently on 247 sports boards. I enable spell check, make a post, and it's off again when I make another post.
    2) On the same 247 board, when I make a post (by clicking the "post reply" button, nothing happens. To get it working I actually have to quit the site and go back in.
    3) LastPass plugin is no longer working on all sites. Site like Facebook and Yahoo all of a sudden Lastpass doesn't recognize as having usable fields.

    Hi,
    Please check if this happens in a [https://support.mozilla.org/en-US/kb/Managing-profiles new profile]. If it's okay, you can later [https://support.mozilla.org/en-US/kb/Recovering%20important%20data%20from%20an%20old%20profile?s=profile&r=1&e=sph&as=s copy the needed personal data] from the old profile. Firefox stores your personal data and settings in another location separate from its [http://kb.mozillazine.org/Installation_directory files/folder]. A new profile would have the default Firefox settings ('''Tools''' ('''Alt''' + '''T''') > [https://support.mozilla.org/en-US/kb/Options%20window '''Options'''], and [http://kb.mozillazine.org/About:config about:config] ), and usually would also be empty of any '''Extensions''' and themes ('''Appearance''') in Tools > Add-ons) and their settings. Also, a new profile would have no previous stored website data/settings etc., ('''Tools''' > [https://support.mozilla.org/en-US/kb/Clear%20Recent%20History '''Clear Recent History''']).
    [https://support.mozilla.org/en-US/kb/Profiles?s=profile&r=2&e=sph&as=s Profiles Howto]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder & Files]
    [http://kb.mozillazine.org/About:config_entries about:config Entries]

  • How can I create a message board page?

    Does anyone know how to create a message board page?
    Thanks.

    Forumotion definately. You can do so much with their forums from template editing, theme uploading, pure HTML page creating...they are the best i have been with.
    If you haven't got much time, and want to see what the new phpbb3 can offer, just try it out on this host : free forum hosting

  • How do  I set up a message board?

    Hi, I'd like to add a message board to my site similar to
    this one...
    http://forums.livewire-records.com/list.php?f=1
    I've never done one before, so does anyone know the easiest
    way to do this? I don't know php so I don't want to have to work it
    up from scratch. Is there some kind of "plug and play" way to put
    up a message board?

    Well, there are arguments for each. phpBB tends to be the
    most popular with arguably the largest community. However, it's
    previous version was very susceptible to hacks because it was so
    common although that was one of the areas they drastically improved
    on by completely rewriting their script from the ground up for
    version 3. I would say their Admin CP is one of the better looking
    ones.
    Simple Machines has a fairly strong community as well. They
    are in the process of going from version 1 to 2 right now which
    marks some major improvements. This project is *not* open-source
    even though it is free to download and use.
    myBB I would say right now has the most to gain from a new
    version. Their Admin CP is the worst of the 3 right now, although
    the next version currently in beta does show a lot more promise for
    this board. They are open-source like phpBB and the community is
    good.
    So just to simplify what I stated. phpBB is the only one that
    has completed their transition to the next version. Both SMF and
    myBB are currently both transitioning to newer versions. All of
    these have community based support. SMF is the only one of the
    three that has paid services because they are the only project that
    is not open-source. So they do have staff on hand if you choose to
    pay for yearly support which is a plus for them. The rest expect
    you to handle it on your own or ask community members for help.
    My best suggestion to you since they are free is to download
    and try them for yourself. They all have installers which make the
    setup process fairly easy. And if they have a demo of the next
    version which SMF does and myBB has a link to a demo (
    http://beta.mybbfans.com/mybb_140b/
    ). Just ignore waiting for the registration email even though it
    says you will get one. Once you register you should be able to log
    in and make yourself an admin to see it for yourself.

Maybe you are looking for

  • App hits a point and stops downloading

    Hi guys, Trying to download "NeverWinter Nights 2" through the App Store, once it hits the 43.88MBs of 4.33GBs it stops and doesn't download any more. Tried restarting the laptop, deleting the app, etc. and nothing seems to do the trick! Any suggesti

  • Javascript is not working in the published file

    Hi , I using the javascript in the captivate 5.5 to generate the text from variable in the textbox. It is working when I press the F12 button, But it is not working in the Published file. I called the function in the button and I written the script i

  • Subcontracting PO - Batch number to be made mandatory for the components

    Hi All, I have a situation in Subcontracting PO. The components which are sent to vendor need to be updated with Batch number. Is there any User Exit  / Configuration available, which can provide a error message to the user when ever he tries to save

  • PlayOnLinux - Access violation at address 00001F70.

    I've tried to install several games using PlayOnLinux, and they all have this same problem. I've tried with Heroes of Might and Magic III Complete, Fallout, Planescape: Torment, and Jagged Alliance 2. I've tested all the POL scripts in Linux Mint 17.

  • Event handling for textfields

    I would like to make ONE event-handler for users who - presses Return/Enter from a field or - uses the mouse to jump to another field or - uses the tab-key to jump to another field. Can this be handled by using only one event-handler, ex. focusLost ?