Need ability to group forums into logical groups as a user.

As heavy reader & contributor of the CRM forums, there are getting to be so many forums it is difficult to look through and assist on so many column headings.  Plus I believe the more novice users frequently submit their question in the wrong forum.
I would love to group (Personalize) these topics to see all new post or limit my searches to these forums.  It is still o.k. if I post a question to where it has to be in a specific forum.
Customer Relationship Management (CRM) - General & Framework
CRM Webclient UI
CRM Web Channel E-Commerce, E-Marketing & E-Service
CRM 7.0
CRM - Interaction Center
CRM Sales

Hi Faisal,
Thank you very much for your prompt reply. With your suggestion, I do figure out where my problem is. I did set the control flag in my ldapAuthenticator "OPTIONAL". However, it appears that the DefaultAuthenticator is given as "REQUIRED" by default.
Once I changed it to be "OPTIONAL", it works.
Thanks again.
John

Similar Messages

  • Divide the Logic Forum into Logic 9, Logic 8, Logic 7, Express etc

    It would be nice if the forum was divided into user groups by software number.
    I spend a lot of time looking for L9 stuff. And I'm sure L7 and L8 people tire of reading threads about L9.

    Apple just did the opposite a short while ago and merged all the Forums into this one so I doubt they will reverse that decision.

  • I need to show grouped id and only the max order value for each unique id

    select distinct 
    Table1.id,
    Table1.id +' - '+ Table1.VisitNumber +' : '+ Table1.Priority as UidVisitKey,
    Table1.VisitNumber,
    DATEDIFF(d, [dob],[Visite_dte])/365.25 as Age_On_Visit,
    Table1.Priority,
    Table1.OrderOfVisit,
    Table1.OrderOfVisit + ' - ' + Table1.Notes AS VisitNote, 
    Table1.Visitor_FName,
    Table1.Visitor_SName,
    Table2.dob,
    Table2.sex,
    Table1.Visit_dte,
    into #Temp1
    FROM         Table1 INNER JOIN
                Table2 ON Table1.id = Table2.id
    WHERE Table1.LeaveDate IS NOT NULL 
    and Table1.LeaveDate  between DATEADD(mm,-1,DATEADD(mm,DATEDIFF(mm,0,GETDATE()),0)) 
    and DATEADD(ms,-3,DATEADD(mm,0,DATEADD(mm,DATEDIFF(mm,0,GETDATE()),0))) 
    select #Temp1.id, max(#Temp1.[OrderOfVisit]), #Temp1.VisitNote 
    from #Temp1
    group by #Temp1.id, #Temp1.OrderOfVisit, #Temp1.[VisitNote]
    ORDER BY #Temp1.id
    drop table #Temp1
    ---I need to show grouped id and only the max OrderOfVisit for each unique id, and the VisitNote for each OrderOfVisit
    ----------------need help-------------

    Sounds like this
    select distinct
    Table1.id,
    Table1.id +' - '+ Table1.VisitNumber +' : '+ Table1.Priority as UidVisitKey,
    Table1.VisitNumber,
    DATEDIFF(d, [dob],[Visite_dte])/365.25 as Age_On_Visit,
    Table1.Priority,
    Table1.OrderOfVisit,
    Table1.OrderOfVisit + ' - ' + Table1.Notes AS VisitNote,
    Table1.Visitor_FName,
    Table1.Visitor_SName,
    Table2.dob,
    Table2.sex,
    Table1.Visit_dte,
    into #Temp1
    FROM Table1 INNER JOIN
    Table2 ON Table1.id = Table2.id
    WHERE Table1.LeaveDate IS NOT NULL
    and Table1.LeaveDate between DATEADD(mm,-1,DATEADD(mm,DATEDIFF(mm,0,GETDATE()),0))
    and DATEADD(ms,-3,DATEADD(mm,0,DATEADD(mm,DATEDIFF(mm,0,GETDATE()),0)))
    select id,OrderOfVisit,VisitNote
    from
    select #Temp1.id, #Temp1.[OrderOfVisit], #Temp1.VisitNote,ROW_NUMBER() OVER (PARTITION BY #Temp1.id ORDER BY #Temp1.[OrderOfVisit] DESC) AS Seq
    from #Temp1
    )t
    WHERE Seq = 1
    ORDER BY id
    drop table #Temp1
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Need to use Group By but only want to group some of the columns not all

    Hello all! I am having some issues here. I am rather new to SQL and I am getting stuck with grouping. I have the query below but I only want to group by these columns, instead of all the columns in my select statement.
    ah.fund,
    ah.dept,
    ah.org,
    ah.acct,
    t.fund,
    t.dept,
    t.org,
    t.acct
    This will eventually go into Oracle reports builder. Is there any way I can archive this at all? The query will return all the t for a given time period, but they need to be grouped by the fully qualified account number which consists of the fund, dept, org and acct columns.
    Thanks in advance!
    SELECT ah.fund,
         ah.dept,
         ah.org,
         ah.acct,
         LPAD(ah.fund,3,0)||LPAD(ah.dept,2,0)||LPAD(ah.org,4,0)||SUBSTR(ah.acct,1,2) acct_no,
         LPAD(ah.fund,3,0)||LPAD(ah.dept,2,0)||LPAD(ah.org,4,0)||ah.acct acct_no1,
         t.fund,
         t.dept,
         t.org,
         t.acct,
         t.ACTIVITY_DATE,
         t.TYPE,
         t.AMT,
         t.description,
         t.TRANS_NO,
         t.RECEIPT_NO,
         DECODE(t.PO_NO,NULL,t.JOURNAL_NO,t.PO_NO) J_NO,
         DECODE(t.WARRANT_NO,NULL,t.WIRE_NO,t.WARRANT_NO) W_NO,
         t.VENDOR_NO,
         v.name||' ' ||v.first_name name,
         MIN(ah.eod_date)
    FROM ah,
         t,
         v
    WHERE ah.fund BETWEEN SUBSTR(:p_acct_from,0,3) AND SUBSTR(:p_acct_to,0,3)
         AND ah.dept BETWEEN SUBSTR(:p_acct_from,4,2) AND SUBSTR(:p_acct_to,4,2)
         AND ah.org BETWEEN SUBSTR(:p_acct_from,6,4) AND SUBSTR(:p_acct_to,6,4)
         AND ah.acct BETWEEN SUBSTR(:p_acct_from,10,5) AND SUBSTR(:p_acct_to,10,5)
         AND FLOOR(ah.acct/10000) IN (6,8)
         AND SUBSTR(ah.acct,3) != '000'
         AND ah.eod_date BETWEEN :p_from_date-1 AND :p_to_date
         AND t.fund (+) = ah.fund
         AND t.dept (+) = ah.dept
         AND t.org (+) = ah.org
         AND t.acct (+) = ah.acct
         AND TO_DATE(t.activity_date, 'dd-mon-yy') >= TO_DATE(:P_FROM_DATE,'dd-mon-yy')
         AND TO_DATE(t.activity_date, 'dd-mon-yy') <= TO_DATE(:P_TO_DATE,'dd-mon-yy')
         AND t.type IN( 'PI','JE','PR','VD','VU','AC','AD')
         AND (
              (:p_year = TO_CHAR(CURRENT_DATE,'YYYY')
              AND (t.po_no IS NULL
              OR (select TO_CHAR(open_date,'YYYY') FROM r WHERE po_no = t.po_no ) = TO_CHAR(CURRENT_DATE,'YYYY') ) )
              OR ((select TO_CHAR(open_date,'YYYY') FROM r WHERE po_no = t.po_no ) = :p_year )
    AND v.vendor_no (+) = t.vendor_no
    GROUP BY ah.fund,
         ah.dept,
         ah.org,
         ah.acct,
         t.fund,
         t.dept,
         t.org,
         t.acct,
         t.ACTIVITY_DATE,
         t.TYPE,
         t.AMT,
         t.description,
         t.TRANS_NO,
         t.RECEIPT_NO,
         DECODE(t.PO_NO,NULL,t.JOURNAL_NO,t.PO_NO),
         DECODE(t.WARRANT_NO,NULL,t.WIRE_NO,t.WARRANT_NO),
         t.VENDOR_NO,
         v.name||' ' ||v.first_name
    ORDER BY LPAD(ah.fund,3,0)||LPAD(ah.dept,2,0)||LPAD(ah.org,4,0)||SUBSTR(ah.acct,1,2),
         LPAD(ah.fund,3,0)||LPAD(ah.dept,2,0)||LPAD(ah.org,4,0)||ah.acct;

    In reports builder you can group the columns without having to group it in your query. It is also known as the break report which contains multiple groups in its data model.
        |            Q_1               |
                      |
                      |
        |       GRP_department         |
        | dept_no                      |
        | dept_name                    |
                      |
                      |
        |         GRP_employee         |
        | emp_no                       |
        | emp_first_name               |
        | emp_last_name                |
        | emp_middle_name              |
        | emp_date_of_birth            |
        | ...                          |
        ------------------------------

  • What connectors do I need for my ipad so I can connect it to my apogee duet 2 interface essentially using the ipad as an instrument utilizing a few of the synth and drum machine apps to record tracks into Logic on my Mac?

    Ok, so I completely feel like this is a stupid question for those of you already in the know and recording tracks onto your Computers DAW from instrument apps on the iPad and other i devices. I can not seem to find out exactly what connector or unit I need to be able to connect and use my ipad as a instrument to record tracks onto logic. I have an ipad2 that I want to connect to my apogee duet 2 interface which is obviously connected to my Mac. I know Logic comes with plenty of drum and synth options but I still want to be able to use beatmaker, jam up pro and the sunrizer synth apps on some of my tracks. I do have the camera conversion adaptors. So my question is, do I just run from the camera adapter in the ipad into the midi port on my apogee interface? (I'm new to and still learning about midi) Or is there a special 30 pin cable I need to get that runs from the ipad into the XLR or quarter inch in the break out cables on the apogee? I did find one cord out there that plugged into the ipad and had left and right XLR connectors but my duets break out cable only has two inputs each is their own channel. Also , if the cable I need isn't midi  and does connect to the breakout cables, do I set it as an instrument or as a mic in the apogee software? Or am I completely way off base and needing something different all together. Any help would be much appreciated!
    I have a fare amount of experience when it comes to recording, set up and the flow of standard instruments, using external hardware and plugins. But the last few weeks I spent a lot of time programming some great beats in beatmaker on my ipad and I want to track them into Logic. It seemed like no matter how I worded the questions when researching what I thought was and should be simple to figure it out, it just took me to answers I wasn't looking for. Thank you ahead of time. Like I said I'm just starting to get out of my comfort zone and learn about midi and the more digital side of things. So sorry about any ignorance concerning that side of things.

    The new Apogee Duet for iPad and Mac, is compaible with iOS devices and includes a USB Midi input. This sounds like the perfect solution for your workflow.

  • Need help in group left report

    i need help in group left report
    i am making group left report in which all group data on top is repeating as many time as detail record is .
    for axampel
    if
    group record:
    fielda fieldb field c
    fielda fieldb field c
    fielda fieldb field c
    fielda fieldb field c
    detail record :
    fieldd fielde feildf
    fieldd fielde feild
    fieldd fielde feild
    fieldd fielde feildf
    how i can show group record on top once and on each group record show detail record belong to master record.
    plz help me
    A.R

    I think you Should go for Group above report...
    and if you want group left only and also want to display master once then
    put all master fields above but yeah take care of it's master repeting frame
    it should not change...
    and if you want i can send you an example...
    Enjoy Oracle...

  • I need to send group email and forward group email?

    I need to send group emails and forward group emails and dont find that capability with ipad or iphone

    There are quite a few group emailing apps available, but most will not allow you to forward an email, as they can only send new emails written within their own app.
    MailShot Pro, uniquely, adds group email to your device so you can send to your groups directly from the standard Mail app. This allows you to forward an email, with any attachments intact, right from Mail.
    Find out why quarter of a milllion users are now using our MailShot apps at jo.my/mailshot (iTunes link). A free version is also available to try, limited to a few small groups of contacts.
    Peter
    Soluble
    Disclosure: I am the developer of MailShot, and may receive benefit from any sales.

  • Help needed for pickup group configuration

    I have been handed the task of configuring a pickup group and the setting on a MDs phone and Secretary and need some help please.
    There is a Pickup group that a user is already a member of. She is now also secretary to a General Manager and needs to be able to pick his calls up. I have added the GM as and extra line on the secretary's phone but now when the GM's phone rings, all the people in the pickup group can't tell whether it's the secretary's phone ringing or the GM's. Obviously the people in the pickup group don't want to be picking up the GM's calls so is there another way around this or is there a way that on the secretary's phone, her ringtone and the GM's ringtone can be different?
    I have tried adding Audio and Visual Alert to the pickup group but no one in the pickup group wants to know who is calling who so I think they just need to be able to differentiate between the secretary and the GM by the sound of the ringtone….
    I hope that makes sense!!
    Many Thanks!
    Adam

    the second line you put on the secretary's phone is that a shared line?
    I would set it up as being just that, and make sure the ring setting is flash only. That shared line (i.e. the GM's extension) should not be part of a pickup group.
    try that and see how get on

  • AR I Need To Make Group or batch for some of transactions that imported ??

    Hi,
    In Receivables i need make a group or batch for some of invoices that imported from another system (Point of sales)
    what functionality or responsibility make this function like batch but i need to import some invoice fo batch not create batch and create invoices
    Thanks,
    Mohamed Gamal

    I think it's better to start with Ubuntu or another user-friendly distro than try your hand at Arch. A lot of the things you talk about reveal a lack of knowledge about the inner workings of Linux (no offense; that's just how it is). Linux distros are extremely modular, and GUIs are interchangeable. Aesthetics, therefor, are as well. You can install Ubuntu, OpenSuSE, Fedora and Arch and get them to look identical.
    As for creating your custom distro, I am not sure distros would like you to strip logos and stuff (which, for consistency, at some point, might also involve copyrights - you do not want your boot logo to say 'Customix - (c) Ubuntu Canonical' or something).
    If there are projects around that allow you to change the aesthetics (which seems to be mostly what you're after), then by all means use those . Hacking scripts etc. for consistency can be a tedious job, if you are not comfortable with command line tools. It will only be harder to (re)brand Arch since it comes with the minimal amount of branding required upstream.
    The DE menus are ordered by XDG standards. It's fully automatic. If you want to change that, you need to hack the .desktop files.
    Last edited by .:B:. (2012-01-16 19:51:01)

  • Formula: Rolling 6 Months from CurrentDate & With the ability to Group

    Can someone please provide a date formula that will give me the ability to group on the results?  Ultimately seeking to create a rolling 6 month group from CurrentDate.  For example: If today was 11/21/2008, the formula would result with a 6 finite groups of 6/21, 7/21, 8/21, 9/21, 10/21, & 11/21.  Thanks in advance for your assistance.

    Try to use the record selection formula like this
    month({date field})>=month(currentdate)-6 and year({date field})=year(currentdate)
    Now greate a group on date field and use monthly.
    Regards,
    Raghavendra

  • I am running Logic Pro 9.1.7, and I use a Roland RD700GX keyboard to input midi data into Logic.  How do I set up Logic to record the Roland's own internal Grand Piano sounds into Logic, while retaining the ability to make midi edits? By Eggie

    I am running Logic Pro 9.1.7 on a mid-2011 Intel iMac running OS10.7.4. I use a Roland RD700GX as my midi input keyboard.  How can I set up Logic to record The RD700GX's own internal Grand Piano sounds, while retaining the ability to take advantage of Logic 9's midi editing capabilities. I am a relative newcomer to Logic, and I haven't been able to find an answer in The Logic 9 User Manual. A step by step procedure would be much appreciated. Thank you.
    Eggie0379

    Create a new External Midi Track, set the MIDI port to the one being connected to teh RD700. Now,create a new Software Instrument track. Select the external instrument plug-in. Set the MIDI destination and the audio input inside the Plug-in. Now, you can record the MIDI notes and hear the sound of the RD700. Once you've editied, you can bounce the track.
    Best,
    DaCaptain

  • Need help importing session from Korg Triton Extreme into logic

    I am trying to import a full midi session that was sequenced on my Triton into Logic Pro9.  The problem I'm having is that when I record in, all 16 midi channels are sending to one Logic midi track.  Is there a way to import the full midi session into logic so I can edit the session in logic on the 16 individual tracks? Any help would be great!

    I think the triton can save standard midi files. Importing that file into logic would be the best and cleanest solution.
    Cheers,
    Jazz

  • What peripherals do you need to turn your iPhone into a conference room speakerphone?

    What peripherals do you need to turn your iPhone into a conference room speakerphone system?
    If you buy a separate conference mic and a speaker, can they somehow work together off the iPhone headphone jack like a huge set of group earphones?  What if you want to connect 2 mics and a speaker?
    Do you have to be very careful that they can all be attached somehow at the same time?
    Are there reasonably priced conference room speakerphone peripherals the work well together that you would recommend?
    Steve

    Why don't you contact Apple and find out?  Certainly if you can find your way around the internet to have been able to find this forum, you can certainly find the number for AppleCare.

  • I can record midi data from my Mason & Hamlin Piano Disc Pro Record through my MOTU Traveller into Logic but Logic won't send midi data out to the MOTU Traveller to the Piano Disc player

    Hello All,
    I can record midi data from my Mason & Hamlin Piano Disc Pro Record through my MOTU Traveller into Logic Pro 9.1.8  but Logic won't send the midi data back out to the MOTU Traveller and thus to the Piano Disc player. I got it to playback one time but have no idea how and when it did it was looping or something because the velocity was way high coming back in and the damper pedal was slamming down. When I play a key on the piano the midi "in" light on the Traveller lights up. When I play the track back on my computer no lights blink on the Traveller and when I did the apple midi studio test in utilities when I play a key I get the confirmation signal noise and the Traveller blinks when I click on the down arrow of the Traveller in the Apple midi studio test the midi out light on the traveller never lights and the signal light on the piano does not blink either. No outbound signal at all...
    I have messed with every possible parameter I can find and and have had help from one of Piano Disc's premier editors but no luck. The piano was prepped for me on Logic so it would work with my studio.  I'm positive it's my fault and I'm overlooking something really simple and stupid but what!??!
    Somebody please help.  Thank you all in advance for ANY ideas you might have!

    Blues Piano,
    I'm not sure if this will be a help or not.  I'm so Logic Pro wet behind the ears that I make newbies look experienced.  However, I'm not expecting many on the Apple support forums have a PianoDisc system, much less one with the new optical record strip.  While I don't have any record strip on my PianoDisc, I do have a PianoDisc iQ that's only a month old.  I've been playing converted paper scrolls from hundred year old player pianos through it via the MIDI in port of the PianoDisc CPU.  I've found I have to open the MIDI file in Logic Pro (10.0.4) then go to <Track><New External MIDI Track> then copy the existing track to that new external track.  Only then can I see in the Track inspector (defaults left side of screen with the Icon for the instrument) the "Port" parameter.  Then I can select my external MIDI device in that Port selector. 
    I've also encountered problems with the PianoDisc not using enough force on the notes or using too much force.  To get around this problem, until I understand Logic better, I've been setting minimum and maximum volicities.  To do that I right click on the track and select "Select All."  Then I right click again and select "MIDI" then "MIDI Transform"  then "Velocity Limiter."  In the resulting pop up window in the center is a drop down and you can play with the velocity from "MIN" to "MAX" along with "ADD" "SUBTRACT" etc. 
    I hope this helps.  I envy you your Mason & Hamlin.  If you need more help on this just email me at pfleischmann at mac dot com.

  • Need to join paths together into a single path

    I have this image which is currently composed of separate paths.
    Is there a way using pathfinder, effects>pathfinder, livepaint or some other way to group all of these together so all I have is the outline of the entire object pictured below?  I'm working with programmers who need the actual paths merged into one big path (preferably dropping all of the stuff in the middle, though that's not absolutely necessary) - it's not good enough just to select all the individual paths, hit group, and name that layer; paths have to be joined.
    Looked like Illustrator could do this easily, but I haven't used the program that much and I'm probably missing something simple.
    Thanks for any help.

    I got it to work again in one case but not another.
    When it works, the Expand button stops being grayed out in the pathfinder section, and upon hitting expand, a compound path is generated which has the paths I need.
    EDIT --- ok, figured it out for real now.
    Need to select several paths which are not yet in a group (doesn't work if they are grouped to start with)
    Then Alt Click on the Unite function under Pathfinder Shape Mode
    Then Expand under Pathfinder - and you're left with the compound path comprised of all the original parts (which is what I needed)
    Thanks for the help.

Maybe you are looking for

  • Moved page no longer displays Master Page elements.

    After moving a page in my document the master page elements no longer display on screen or in print. If I move the page to a different location in the document the master displays but if it is in the specific position that it needs to be it will not

  • Acrobat 9 changes print orientation

    Acrobat 9 has suddenly started changing the orientation when printing - sometimes it prints in landscape instead of protrait - sometimes in portrait orientation but rotated 90 degrees counterclockwise.  Any ideas on why this is happening?

  • How to create co version (VERSI) in table TKVSt

    hi,      i have to create the version(VERSI) for co, which will store in table TKVST.please provide the tcode for creation. thank you.

  • Imovie 11 Crashes in Mountain lion Please help

    Hi all, i have a big problem with imovie 11 and i have this crash reports.. Sorry for my english i'm from beglium Thanks for the help Crash reports Process:         iMovie [653] Path:            /Applications/iMovie.app/Contents/MacOS/iMovie Identifi

  • HT203477 Event missing in FCPX 10.1

    I have an event that's not showing up in FCPX, but it is there in the Finder, along with a CurrentVersion.fcpevent file The media from this event is not showing as 'missing' (red) in the project, but simply as blank (black) clips, so re-connecting do