Forums : Enable Attachments for Private Messages

Hi
I have installed the Forums SP18 on EP7.
The Create New Thread option in Forums allows attachemnts option.
But the Create New Private Message Screen Does not allow attachements.
How to enable this option? Is it Supported ?
Regards
Rajendra

Dear
users with the necessary permissions can attach a file to a message.
Enabling Private Messages  setting following link will be useful for you
http://help.sap.com/saphelp_nw70/helpdata/en/44/9bbed088d53489e10000000a155369/content.htm
for Defining the Message Attachment Policy  ,this following link will be useful for you
http://help.sap.com/saphelp_nw70/helpdata/en/44/93780e2d206999e10000000a11466f/frameset.htm
Regards
Tushar Dave

Similar Messages

  • Enable routing for failed messages on receive port

    Hi,
    I have a receive port with a WCF-CustomIsolated receive location.
    On receive port I checked "Enable routing for failed messages".
    In pipeline settings I have set ValidateDocument to true.
    When a client sends me an incorrect schema, it receives a validation error (that happened in pipeline) and it's OK.
    But it's not routed as a fault message to message box.
    Could you help me why does it happen?
    Why "routing for failed messages" does not work in this case? And in what cases it should work?
    Thank you!

    Hi Vlad,
    Failed Message is created only when there are subscribers for it.
    Create a send port with following filter 
    ErrorReport.ErrorType=FailedMessage
    Please mark the post as answer if this answers your question. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Need help with Data Model for Private Messaging

    Sad to say, but it looks like I just really screwed up the design of my Private Messaging (PM) module...  *sigh*
    What looked good on paper doesn't seem to be practical in application.
    I am hoping some of you Oracle gurus can help me come up with a better design!!
    Here is my current design...
    member -||-----0<- private_msg_recipient ->0------||- private_msg
    MEMBER table
    - id
    - email
    - username
    - first_name
    PRIVATE_MSG_RECIPIENT table
    - id
    - member_id_to
    - message_id
    - flag
    - created_on
    - updated_on
    - read_on
    - deleted_on
    - purged_on
    PRIVATE_MSG table
    - id
    - member_id_from
    - subject
    - body
    - flag
    - sent_on
    - updated_on
    - sender_deleted_on
    - sender_purged_on
    ***Short explanation of how the application currently works...
    - Sender creates a PM and sends it to a Recipient.
    - The PM appears in the Sender's "Sent" folder in my website
    - The PM also appears in the Recipient's "Incoming" folder.
    - If the Recipient deletes the PM, I set "deleted_on" and my code moves the PM from Recipient's "Inbox" to the "Trash" folder.  (Record doesn't actually move!)
    - If the Recipient "permanently deletes" the PM from his/her "Trash", I set "purged_on" and my code removes the PM from the Recipient's Message Center.  (Record still in database!)
    - If the Sender deletes the PM, I set "sender_deleted_on" and my code moves the PM from the Sender's "Sent" folder to the "Trash" folder.  (Record doesn't actually move!)
    - If the Recipient "permanently deletes" the PM from his/her "Trash", I set "sender_purged_on" and my code removes the PM from the Sender's Message Center.  (Record still in database!)
    Here are my problems...
    1.) I can't store PM's forever.
    2.) Because of my design, the Sender really owns the PM, and if I add code to REMOVE the PM from the database once it has a "sender_purged_on" value, then that would in essence remove the PM from the Recipient's Inbox as well!!
    In order to remove a PM from the database, I would have to make sure that *both* the Recipient has "purged_on" value and the Sender has a "sender_purged_on" value.  (Lot's of Application Logic for something which should be simple?!)
    I am wondering if I need to change my Data Model to something that allows my autonomy when it comes to the Sender and/or the Recipient deleting the PM for good...
    One the other hand, I believe I did a good job or normalizing the data.  And my current Data Model is the most efficient when it comes to saving storage space and not having dups.
    Maybe I do indeed just need need to write application logic - or a cron job - which checks to make sure that *both* the Sender an Recipient have deleted the PM before it actually flushes it out of my database to free up space?!
    Of course, if one party sits on their PM's forever, then I can never clear things out of my database to free up space...
    What should I do??
    Some expert advice would be welcome!!
    Sincerely,
    Debbie

    rp0428,
    I think I am starting to see my evil ways and where I went wrong... 
    > Unfortunately his design is just as denormalized as yours
    I see that now.  My bad!!
    > the last two columns have NOTHING to do with the message itself so do NOT belong in a normalized table.
    > And his design:
    >
    > Same comment - those last two columns also have NOTHING to do with the message itself.
    Right.
    > The message table should just have columns directly related to the message. It is a list of unique messages: no more, no less.
    Right.
    > Mark gave you hints to the proper normalized design using an INTERSECT table.
    > that table might list: sender, recipient, sender_delete_flag, recipient_delete_flag.
    > As mark suggested you could also have one or two DATEs related to when the delete flags were set. I would just make the columns DATE fields.
    >
    > Once both date columns have a value you can delete the message (or delete all messages older than 30+ days).
    >
    > When both flags are set you can delete the message itself that references the sender and the message sent.
    Okay, how does this revised design look...
    MEMBER --||-----0<-- PM_DISTRIBUTION -->0-------||-- PRIVATE_MSG
    MEMBER table
    - id
    - email
    - username
    - first_name
    and so on...
    PM_DISTRIBUTION table (Maybe you can think of a better name??)
    - id
    - private_msg_id
    - sender_id
    - recipient_id
    - sender_flag
    - sender_deleted_on
    - sender_purged_on
    - recipient_flag
    - recipient_read_on
    - recipient_deleted_on
    - recipient_purged_on
    PRIVATE_MSG
    - id
    - subject
    - body
    - sent_on
    Is that what you were describing to me?
    Quickly reflecting on this new design...
    1.) It should now be in 3rd Normal Form, right?
    2.) It should allow the Sender and Recipient to freely and independently "delete" or "purge" a PM with no impact on the other party, right?
    Here are a few Potential Issues that I see, though...
    a.) What is to stop there from being TWO SENDERS of a PM?
    In retrospect, that is why I originally stuck "member_id_from" in the PRIVATE_MSG table!!  The logic being, that a PM only ever has *one* Sender.
    I guess I would have to add either Application Logic, or Database Logic, or both to ensure that a given PM never has more than one Sender, right?
    b.) If the design above is what you were hinting at, and if it is thus "correct", then is there any conflict with my Business Rule: "Any given User shall only be allowed 100 Messages between his/her Incoming, Sent and Trash folders."
    Because the Sender is no longer "tightly bound" to the PRIVATE_MSG, in my scenario above...
    Debbie could send 100 PM's, hit her quota, then turn around and delete and purge all 100 Sent PM's and that should in no way impact the 100 PM's sitting in other Users' Inboxes, right??
    I think this works like I want...
    Sincerely,
    Debbie

  • Re enable dequeueing for expired messages in AQ

    Dear all,
    I need to reprocess expired messages in an advanced queue.
    Is there a script that allows either to retry dequeuing or to re insert/enqueue again the messages?
    The creation script of the queue follows:
    BEGIN
      SYS.DBMS_AQADM.CREATE_QUEUE
        QUEUE_NAME          =>   'CC.PMTS'
       ,QUEUE_TABLE         =>   'CC.PMTS_DATA'
       ,QUEUE_TYPE          =>   SYS.DBMS_AQADM.NORMAL_QUEUE
       ,MAX_RETRIES         =>   0
       ,RETRY_DELAY         =>   0
       ,RETENTION_TIME      =>   0
       ,COMMENT             =>   'Comment'
    END;
    Thanks

    There is another forurm for AQ queries: https://forums.oracle.com/community/developer/english/oracle_database/advanced_queueing

  • Node crashes when enabling RDS for private interconnect.

    OS: oel6.3 - 2.6.39-300.17.2.el6uek.x86_64
    Grid and DB: 11.2.0.3.4
    This is a two node Standard Edition cluster.
    The node crashes upon restart of clusterware after following the instructions from note:751343.1 (RAC Support for RDS Over Infiniband) to enable RDS.
    The cluster is running fine using ipoib for the cluster_interconnect.
    1) As the ORACLE_HOME/GI_HOME owner, stop all resources (database, listener, ASM etc) that's running from the home. When stopping database, use NORMAL or IMMEDIATE option.
    2) As root, if relinking 11gR2 Grid Infrastructure (GI) home, unlock GI home: GI_HOME/crs/install/rootcrs.pl -unlock
    3) As the ORACLE_HOME/GI_HOME owner, go to ORACLE_HOME/GI_HOME and cd to rdbms/lib
    4) As the ORACLE_HOME/GI_HOME owner, issue "make -f ins_rdbms.mk ipc_rds ioracle"
    5) As root, if relinking 11gR2 Grid Infrastructure (GI) home, lock GI home: GI_HOME/crs/install/rootcrs.pl -patch
    Looks to abend when asm tries to start with the message below on the console.
    I have a service request open for this issue but, I am hoping someone may have seen this and has
    some way around it.
    Thanks
    Alan
    kernel BUG at net/rds/ib_send.c:547!
    invalid opcode: 0000 [#1] SMP
    CPU 2
    Modules linked in: 8021q garp stp llc iptable_filter ip_tables nfs lockd
    fscache auth_rpcgss nfs_acl sunrpc cpufreq_ondemand powernow_k8
    freq_table mperf rds_rdma rds_tcp rds ib_ipoib rdma_ucm ib_ucm ib_uverbs
    ib_umad rdma_cm ib_cm iw_cm ib_addr ipv6 ib_sa sr_mod cdrom microcode
    serio_raw pcspkr ghes hed k10temp hwmon amd64_edac_mod edac_core
    edac_mce_amd i2c_piix4 i2c_core sg igb dca mlx4_ib ib_mad ib_core
    mlx4_en mlx4_core ext4 mbcache jbd2 usb_storage sd_mod crc_t10dif ahci
    libahci dm_mirror dm_region_hash dm_log dm_mod [last unloaded:
    scsi_wait_scan]
    Pid: 4140, comm: kworker/u:1 Not tainted 2.6.39-300.17.2.el6uek.x86_64
    #1 Supermicro BHDGT/BHDGT
    RIP: 0010:[<ffffffffa02db829>] [<ffffffffa02db829>]
    rds_ib_xmit+0xa69/0xaf0 [rds_rdma]
    RSP: 0018:ffff880fb84a3c50 EFLAGS: 00010202
    RAX: ffff880fbb694000 RBX: ffff880fb3e4e600 RCX: 0000000000000000
    RDX: 0000000000000030 RSI: ffff880fbb6c3a00 RDI: ffff880fb058a048
    RBP: ffff880fb84a3d30 R08: 0000000000000fd0 R09: ffff880fbb6c3b90
    R10: 0000000000000000 R11: 000000000000001a R12: ffff880fbb6c3a00
    R13: ffff880fbb6c3a00 R14: 0000000000000000 R15: ffff880fb84a3d90
    FS: 00007fd0a3a56700(0000) GS:ffff88101e240000(0000) knlGS:0000000000000000
    CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b
    CR2: 0000000002158ca2 CR3: 0000000001783000 CR4: 00000000000406e0
    DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
    DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
    Process kworker/u:1 (pid: 4140, threadinfo ffff880fb84a2000, task
    ffff880fae970180)
    Stack:
    0000000000012200 0000000000012200 ffff880f00000000 0000000000000000
    000000000000e5b0 ffffffff8115af81 ffffffff81b8d6c0 ffffffffa02b2e12
    00000001bf272240 ffffffff81267020 ffff880fbb6c3a00 0000003000000002
    Call Trace:
    [<ffffffff8115af81>] ? __kmalloc+0x1f1/0x200
    [<ffffffffa02b2e12>] ? rds_message_alloc+0x22/0x90 [rds]
    [<ffffffff81267020>] ? sg_init_table+0x30/0x50
    [<ffffffffa02b2db2>] ? rds_message_alloc_sgs+0x62/0xa0 [rds]
    [<ffffffffa02b31e4>] ? rds_message_map_pages+0xa4/0x110 [rds]
    [<ffffffffa02b4f3b>] rds_send_xmit+0x38b/0x6e0 [rds]
    [<ffffffff81089d53>] ? cwq_activate_first_delayed+0x53/0x100
    [<ffffffffa02b6040>] ? rds_recv_worker+0xc0/0xc0 [rds]
    [<ffffffffa02b6075>] rds_send_worker+0x35/0xc0 [rds]
    [<ffffffff81089fd6>] process_one_work+0x136/0x450
    [<ffffffff8108bbe0>] worker_thread+0x170/0x3c0
    [<ffffffff8108ba70>] ? manage_workers+0x120/0x120
    [<ffffffff810907e6>] kthread+0x96/0xa0
    [<ffffffff81515544>] kernel_thread_helper+0x4/0x10
    [<ffffffff81090750>] ? kthread_worker_fn+0x1a0/0x1a0
    [<ffffffff81515540>] ? gs_change+0x13/0x13
    Code: ff ff e9 b1 fe ff ff 48 8b 0d b4 54 4b e1 48 89 8d 70 ff ff ff e9
    71 ff ff ff 83 bd 7c ff ff ff 00 0f 84 f4 f5 ff ff 0f 0b eb fe <0f> 0b
    eb fe 44 8b 8d 48 ff ff ff 41 b7 01 e9 51 f6 ff ff 0f 0b
    RIP [<ffffffffa02db829>] rds_ib_xmit+0xa69/0xaf0 [rds_rdma]
    RSP <ffff880fb84a3c50>
    Initializing cgroup subsys cpuset
    Initializing cgroup subsys cpu
    Linux version 2.6.39-300.17.2.el6uek.x86_64
    ([email protected]) (gcc version 4.4.6 20110731 (Red
    Hat 4.4.6-3) (GCC) ) #1 SMP Wed Nov 7 17:48:36 PST 2012
    Command line: ro root=UUID=5ad1a268-b813-40da-bb76-d04895215677
    rd_DM_UUID=ddf1_stor rd_NO_LUKS rd_NO_LVM LANG=en_US.UTF-8 rd_NO_MD
    SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us numa=off
    console=ttyS1,115200n8 irqpoll maxcpus=1 nr_cpus=1 reset_devices
    cgroup_disable=memory mce=off memmap=exactmap memmap=538K@64K
    memmap=130508K@770048K elfcorehdr=900556K memmap=72K#3668608K
    memmap=184K#3668680K
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000100 - 0000000000096800 (usable)
    BIOS-e820: 0000000000096800 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000e6000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 00000000dfe90000 (usable)
    BIOS-e820: 00000000dfe9e000 - 00000000dfea0000 (reserved)
    BIOS-e820: 00000000dfea0000 - 00000000dfeb2000 (ACPI data)
    BIOS-e820: 00000000dfeb2000 - 00000000dfee0000 (ACPI NVS)
    BIOS-e820: 00000000dfee0000 - 00000000f0000000 (reserved)
    BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)

    I believe OFED version is 1.5.3.3 but I am not sure if this is correct.
    We have not added any third parry drivers. All that has been done to add infiniband to our build is
    a yum groupinstall iInfiniband support.
    I have not tries rds-stress but rds-ping works fine and rds-info seems fine.
    A service request has been opened but so far I have had better response here.
    oracle@blade1-6:~> rds-info
    RDS IB Connections:
    LocalAddr RemoteAddr LocalDev RemoteDev
    10.10.0.116 10.10.0.119 fe80::25:90ff:ff07:df1d fe80::25:90ff:ff07:e0e5
    TCP Connections:
    LocalAddr LPort RemoteAddr RPort HdrRemain DataRemain SentNxt ExpectUna SeenUna
    Counters:
    CounterName Value
    conn_reset 5
    recv_drop_bad_checksum 0
    recv_drop_old_seq 0
    recv_drop_no_sock 1
    recv_drop_dead_sock 0
    recv_deliver_raced 0
    recv_delivered 18
    recv_queued 18
    recv_immediate_retry 0
    recv_delayed_retry 0
    recv_ack_required 4
    recv_rdma_bytes 0
    recv_ping 14
    send_queue_empty 18
    send_queue_full 0
    send_lock_contention 0
    send_lock_queue_raced 0
    send_immediate_retry 0
    send_delayed_retry 0
    send_drop_acked 0
    send_ack_required 3
    send_queued 32
    send_rdma 0
    send_rdma_bytes 0
    send_pong 14
    page_remainder_hit 0
    page_remainder_miss 0
    copy_to_user 0
    copy_from_user 0
    cong_update_queued 0
    cong_update_received 1
    cong_send_error 0
    cong_send_blocked 0
    ib_connect_raced 4
    ib_listen_closed_stale 0
    ib_tx_cq_call 6
    ib_tx_cq_event 6
    ib_tx_ring_full 0
    ib_tx_throttle 0
    ib_tx_sg_mapping_failure 0
    ib_tx_stalled 16
    ib_tx_credit_updates 0
    ib_rx_cq_call 33
    ib_rx_cq_event 38
    ib_rx_ring_empty 0
    ib_rx_refill_from_cq 0
    ib_rx_refill_from_thread 0
    ib_rx_alloc_limit 0
    ib_rx_credit_updates 0
    ib_ack_sent 4
    ib_ack_send_failure 0
    ib_ack_send_delayed 0
    ib_ack_send_piggybacked 0
    ib_ack_received 3
    ib_rdma_mr_alloc 0
    ib_rdma_mr_free 0
    ib_rdma_mr_used 0
    ib_rdma_mr_pool_flush 8
    ib_rdma_mr_pool_wait 0
    ib_rdma_mr_pool_depleted 0
    ib_atomic_cswp 0
    ib_atomic_fadd 0
    iw_connect_raced 0
    iw_listen_closed_stale 0
    iw_tx_cq_call 0
    iw_tx_cq_event 0
    iw_tx_ring_full 0
    iw_tx_throttle 0
    iw_tx_sg_mapping_failure 0
    iw_tx_stalled 0
    iw_tx_credit_updates 0
    iw_rx_cq_call 0
    iw_rx_cq_event 0
    iw_rx_ring_empty 0
    iw_rx_refill_from_cq 0
    iw_rx_refill_from_thread 0
    iw_rx_alloc_limit 0
    iw_rx_credit_updates 0
    iw_ack_sent 0
    iw_ack_send_failure 0
    iw_ack_send_delayed 0
    iw_ack_send_piggybacked 0
    iw_ack_received 0
    iw_rdma_mr_alloc 0
    iw_rdma_mr_free 0
    iw_rdma_mr_used 0
    iw_rdma_mr_pool_flush 0
    iw_rdma_mr_pool_wait 0
    iw_rdma_mr_pool_depleted 0
    tcp_data_ready_calls 0
    tcp_write_space_calls 0
    tcp_sndbuf_full 0
    tcp_connect_raced 0
    tcp_listen_closed_stale 0
    RDS Sockets:
    BoundAddr BPort ConnAddr CPort SndBuf RcvBuf Inode
    0.0.0.0 0 0.0.0.0 0 131072 131072 340441
    RDS Connections:
    LocalAddr RemoteAddr NextTX NextRX Flg
    10.10.0.116 10.10.0.119 33 38 --C
    Receive Message Queue:
    LocalAddr LPort RemoteAddr RPort Seq Bytes
    Send Message Queue:
    LocalAddr LPort RemoteAddr RPort Seq Bytes
    Retransmit Message Queue:
    LocalAddr LPort RemoteAddr RPort Seq Bytes
    10.10.0.116 0 10.10.0.119 40549 32 0
    oracle@blade1-6:~> cat /etc/rdma/rdma.conf
    # Load IPoIB
    IPOIB_LOAD=yes
    # Load SRP module
    SRP_LOAD=no
    # Load iSER module
    ISER_LOAD=no
    # Load RDS network protocol
    RDS_LOAD=yes
    # Should we modify the system mtrr registers? We may need to do this if you
    # get messages from the ib_ipath driver saying that it couldn't enable
    # write combining for the PIO buffs on the card.
    # Note: recent kernels should do this for us, but in case they don't, we'll
    # leave this option
    FIXUP_MTRR_REGS=no
    # Should we enable the NFSoRDMA service?
    NFSoRDMA_LOAD=yes
    NFSoRDMA_PORT=2050
    oracle@blade1-6:~> /etc/init.d/rdma status
    Low level hardware support loaded:
         mlx4_ib
    Upper layer protocol modules:
         rds_rdma ib_ipoib
    User space access modules:
         rdma_ucm ib_ucm ib_uverbs ib_umad
    Connection management modules:
         rdma_cm ib_cm iw_cm
    Configured IPoIB interfaces: none
    Currently active IPoIB interfaces: ib0

  • Private messaging...in a messenger

    hi friends...
    i am developing a lan messenger currently......but i am facing a problem...i hav developed the conference type messenger till now..means in one window all users online can send theie messages...now i want to go for sending the private messages....
    i hav used hashtable to display the ppl online in jlist....now i want to send private mesages to the users online....but donno which is the perfect way to approch it....pls help me here....after clicking the name on the list...the window for private messaging should be opened...at the both users end...how 2 approch it...

    user510497,
    Yes, an enterprise bean can have private methods.
    Good Luck,
    Avi.

  • Top Tip #3 - Private Messaging (PM's)

    What is Private Messaging?
    The Private Messenger facility allows you to send private notes to other members of the community. The term for Private Messages is often shortened to ‘PM’. PM's have two big advantages over email:
    - You don't need to know the other member's email address to send the note. (Neither do you have to reveal yours).
    - You can read and send private messages without leaving the community, making it easy to have a quick conversation with another community member.
    How do I use it?
    To use the Private Messenger, you must be registered and signed in. You'll see a Private Message icon at the top of your page which looks like a little envelope beside your name:
    If you have any new messages, you will see the number of unread messages next to the envelope icon:
    Click the message count or envelope icon to go to your Private Messages Inbox.
    Private Messaging Alerts:
    You are automatically set up to get email alerts for private messages.  This means you will be sent an email whenever you receive a new PM.  This is a great way of letting you know if someone has sent you a message. 
    A handy reminder if you have been browsing the community but have not been logged in. 
    Sending and Receiving Messages:
    How do I send a PM?
    1. Once signed in to the community click the message count or envelope icon to go to your Private Messages Inbox.
    2. Click Compose New Message.
    3. Enter the recipient's name in the Send to area.
    4. Enter the subject for the message in the Message Subject area.
    5. Type the reply in the Message Body editor.
    6. Click Send Message.
    How do I read a PM?
    1. When you receive a private message you will see ‘1 unread’ beside the envelope icon at the top right of the page when you are logged in. 
    2. Click on this icon and you will be taken to your private messages Inbox. 
    3. Click on the message you want to read.
    How do I reply to a PM?
    1. If you have just read the message you can click on the Reply button. 
    2. If you want to reply to a message at a later date, then you will need to go back to your messaging inbox, select the message as if you were reading it, and then click Reply.
    3. The recipient and subject are automatically entered for you, but you can edit them.
    4. Type the reply in the Message Body editor.
    5. Click Send Message.
    How do I see PMs I've sent to others?
    1. Log into the community and access your private messages as normal.
    2. You will see a tab for ‘Sent Messages’
    3. Click on this tab to view any messages you have sent.
    Retired BTCare Community Manager - StephanieG and SeanD are your new Community Managers
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

    As of now there is no way to do that, but some members - like myself - have their email addresses in their profiles. Clicking on the Apple ID gets you to the profile and if there is an addy listed, it will be there.

  • Private Messages in JIVE Forum

    Hi,
    I want to enable private messaging in JIVe Forum. I have done the required change of settings as mentioned under [http://help.sap.com/saphelp_nw04/helpdata/en/44/9bbed088d53489e10000000a155369/frameset.htm|http://help.sap.com/saphelp_nw04/helpdata/en/44/9bbed088d53489e10000000a155369/frameset.htm] . But there is no documentation on what other settings are necessary and how to use this feature. Please help.
    Thanks

    Hello,
    PFB some useful guides for Jive Forums:
    1. Jive Forum 5.5
    [Admin Guide|http://www.jivesoftware.com/builds/docs/forums/latest/documentation/forums-admin-guide.pdf]
    [Set Up Documentation|http://www.jivesoftware.com/builds/docs/forums/latest/documentation/index.html]
    2. Jive Forums 5.0x
    [Admin Guide|http://www.jivesoftware.com/builds/docs/forums/5.0.5/documentation/forums-admin-guide.pdf]
    [Set Up Documentation|http://www.jivesoftware.com/builds/docs/forums/5.0.5/documentation/index.html]
    Hope these would help.
    Regards,
    Shailesh

  • Is it prossible to private message a member of this forum?

    I am looking for help in designing a web site and wanted to private message a poster on this forum, but cannot figure out how. Is it prossible to private message a member of this forum?

    Hello jmt,
    In this context, I would like to specify clearly the way to write a private message, because you do not only have to look to the thread, you have to look for the poster. Simply in one of his threads.
    Step one (I "used" you):
    Click into the name and you will come to step two:
    No you have to click into "Private Nachricht senden" (something like "Send your private message") and the menu from below opens (see screenshot):
    Good luck!
    Hans-Günter
    P.S.
    I selected the setting to get a message, when a private messages for me arrives.

  • I have a private message at the Partner Support forums, but they are down!

    Hi there,
    This is probably not the right place to post this, but I have a problem with the partner forums -
    http://partnersupport.microsoft.com/en-us
    I've had an ongoing support incident open in a thread there for nearly 2 months now. I got an email today to say I've got a private message from MS waiting there.
    But when I go to view the thread I get an error page!
    This is getting ridiculous now, it seems that many Microsoft pages and services are falling over. My support request is about a problem with the partner benefits website not working (its been broken for 2 months).
    And now the support website is broken!!!
    Can someone please have a look as to why the
    http://partnersupport.microsoft.com/en-us page just displays "Oops! Something went wrong. Please try again. "????
    Thanks

    Yes, its working for me as well. I'd try replying to this thread to see if someone in partner support will respond. Partner support doesn't normally monitor this forum.
    http://partnersupport.microsoft.com/en-us/mpnpartnermem/forum/mpnpartpq-mpnpmgold/issues-with-the-microsoft-partner-network-website/b2f025e1-7947-4340-9a92-a73d88dc8f1c
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Where do we report abuse and harassment through forum Private Messages?

    Where do we report abuse and sociopathological harassment received through forum Private Messages?

    S.D.A. wrote:
    And all you do is repeat ad nauseum how bad the forums are.
    For the most part yeah, guess so. Which is pretty much 50%+ of the other posts here, your point being?
    Since you're bizzarely concerned about how I spend my time here outside of this forum, most of it is now reading.  Not that it's any of your business... I've assisted people plenty before but not much since they jived the forums up.
    I understood what you were trying to say. My main 'point' was that you hypocritically think you can make personal accusations of someone (in this thread above) being a sociopath without any sort of evidence or backing whatsoever and you see no problem with that, yet if others state a (much less offensive) opinion without full character references and footnotes you flip out on them and call them names.  There's a correct way to call a statement someone makes into question when you think it's wrong, without being insulting or condescending, and there's the a-hole way--you prefer the latter.
    The other point was that you only seem to attack people on this forum.  Since this is not a Social Flaming Network, could you stop that?  There's a difference between goofing off like 90% of the other people here and launching personal attacks towards others.  Didn't your momma teach you some manners when you were little?

  • Java Application for submission message in multiple forum at a time

    Hello,
    I want to build a Java desktop application by which I can be able to submit any message to my desired forum without login into the forum website. My application will be able to send the same message to as many forum I specify.
    I have not yet started to work on it. So, I need ideas regarding the following topics-
    1. Is the message we submit in any forum same to any mail we generally use for email? if yes, hoe can I understand what protocol(SMTP, POP3, IMAP) is used in any website? If no, what is that kind of mailing for posting message in a forum and where is it stored?
    2. What should be my steps for building such application?
    3. Is there any Java API / technology that can help me?
    If you have done something like my project, please provide me some code for starting. And, please help me on this regard with your ideas.
    With Thanks-
    aynhq

    aynhq wrote:
    Hello,
    With a grateful heart I would say, I thank you for your mmessages. But, You have taken the problem I specified as an evil concept.
    Here I should mention that I have registration with more than one hundred forums. I have premium membership and secured password. In those forums I usually submit my writing for the other member in those forum.
    Sometimes I need to submit same writings to all the forum. And I manually enter into those websites using my username & password and then submit the writings. You must admit it is a time consuming process. So, I want to develop this programm that would help me to send messages using my username and password. In fact necessity is the mother of invention.
    One thing must be mentioned here that I don't have intension to use this program as a spam or something you are thinking of. Any way, if you don't understand my goal please ask me. But I need help on this concept. Better you suggest me some way how to solve my problem.
    With Thanks-
    aynhqYou sound like a parrot.
    Now go away.

  • How to search for a message or thread with a known message ID in forum?

    How to search (or "swich") to a thread with a known ID ? The "Search
    Message" yields no results when searching for a message ID. Is there a
    other proper way for referencing a thread or message?

    If you want to keep the threads for yourself, you can use your favorites menu or the site's bookmarks option.
    If you have to transfer the number to some one else, the URL format looks fairly simple -
    http://  forums.ni.com/ni/board/message?board.id=board number\name&message.id=your number.
    if you enter the same board, you will have the board number. This doesn't look like a particularly convenient way, but I don't have a problem with copying and pasting URLs.
    The other option would be to do a search, but that is not guranteed to give you an exact answer.
    Try to take over the world!

  • May I send private messages to a friend in this forum?

    I can;t find this function.
    Will it be added?
    Solved!
    Go to Solution.

    click on the members name to call up their profile and you will see, near the top on the right, send this user a private message. Another option would be to click on the envelope at the top of the page; this is white and open when no new messages are there, gold and closed when you have a new message.
    Hope this helps
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • I cant send MMS using my iphone 5s . it keep on prompt me a msg "MMS Messaging needs to be enabled to send this message", but inside "setting/message" there's no button for me to ON the SMS/MMS. pls help. Thks

    I cant send MMS using my iphone 5s . it keep on prompt me a msg "MMS Messaging needs to be enabled to send this message", but inside "setting/message" there's no button for me to ON the SMS/MMS. pls help. Thks

    @Dmitriy Buldakov, have you found the solution to the issue yet? I have the same problem, no option to turn on MMS in my iPhone settings. I checked the settings on my friend's iPhone, which has the same iOS version as me (8.1.1), and the option is there. It's really annoying...

Maybe you are looking for

  • Connecting a Iiyama 27' monitor to an iMac

    After checking with the supplier that it would work with my very recent iMac (OS 10.9, 4 Gb graphic card) , I bought a Iiyama 27 inches monitor with a 2560x1440 pixel resolution to use as a second monitor in dual mode. I tried to connect this monitor

  • Macbook pro 13 inch glassreplacement

    Granddaughter has a Macbook pro 13 in.the new unibody design, the glass is cracked can I get just the glass replaced as the computer still works?

  • Using Workflow

    Hi, I'm new to the Oracle Workflow process. I was wondering if it would make sense to use the WorkFlow Engine along with a J2EE application in the following scenario. * After user sends his information (from a web page), an email needs to be sent * T

  • Fcoe for ethernet AND san

    I'm having a bit of a brain fart.... I see that you can create an "unified" uplink from the 6248s to an upstream Nexus 5k.  Can I use this single uplink for both VSAN and VLAN traffic, or si the best practice to separare them into an Ethernet uplink

  • SSAS Cube - Level Metric

    Hi Team, How can I create Measure on Field1 (Device_ID) based on Field2(Device_Type) of same Dimension. I want to create few Measures as given below. Measure 1 : Count (Distinct  Devices_Id ) Which are Type 0 Measure 2 : Count (Distinct  Devices_Id )