Custom Prompts with manual input for filtering

Hi,
In Bex I need a user prompt which can accept only 1 of 3 possible manual input values:
   Flash
   Actual
   blank
If the input value is Flash, then filter Version = 'ZFL'
If the input value is Actual, then filter Version =  '#'
If the input value is blank, then filter Version = 'XYZ'   (goal here is to filter out all values)
Can this be done via Replacement Path processing, or should it be via CMOD assuming that's possible?
Thanks in advance!

Hi ,
If  Flash ,Actual ,blank are one info  object values
then create a charecterstic variable with user entry default with Single value then automatically it takes only one value.after this restrict flash with ZFL,version with # & blank withXYZ.
If  Flash ,Actual ,blank are not one info  object values u will go for customer exit.
Hope this helps.
Thanks,
sai.

Similar Messages

  • Hi- Iphone 5 wont charge using power cable or USB...I am using a genuine apple charger/cable..this started after I was prompted with new update for IOS 7.

    Hi- My  Iphone 5 wont charge using power cable or USB...I am using a genuine apple charger/cable..this started after I was prompted with new update for IOS 7 yesterday. My phone is dead and wouldnt power up ..have tried resetting using itunes but i doesnt detect the phone and..pressing sleep/home button doesnt do anything

    Update
    I guess that it just had a bad connecting port on the phone itself, no clue why it wouldn't work when plugged in both ways other than there is actually some differentiating between the two sides.

  • [SOLVED]Bash cli input truncated after customizing prompt with colors

    Here is my customized prompt (two lines) in ~/.bashrc (colors defined):
    PS1="${CYAN}┌─${NC}\u@\h ${LIGHTBLUE}\w${NC}\n${CYAN}└─{${NC}\@${CYAN}}──${LIGHTCYAN}>${NC} "
    It looks like this:
    ┌─ssri@host ~/Projects/cairo-dock
    └─{10:26 AM}──>
    Now, when I have a long entry (removing multiple packages, ie pacman removal of cairo-dock-bzr & cairo-dock-plugins-bzr), the input entry does not extend to the edge of my konsole window (80x33).  Insteads it stops halfway and continues onto the second line.  Since this prompt takes up two lines, the second line portion of the prompt is now overrunned and the entry is considerably garbled:
    ┌─ssri@host ~/Projects/cairo-dock
    -plugins-bzr ─> pacman -R cairo-dock-bzr cairo-dock-
    I'm wondering how I can extend keyboard entries towards 80 columns(?) and allow extended entries to continue onto a third line (rather than the second).
    Thanks
    Last edited by ssri (2010-06-26 21:03:27)

    I didn't have "\]" from before
    BEFORE
    BLACK='\e[0;30m'
    BLUE='\e[0;34m'
    GREEN='\e[0;32m'
    CYAN='\e[0;36m'
    RED='\e[0;31m'
    PURPLE='\e[0;35m'
    BROWN='\e[0;33m'
    LIGHTGRAY='\e[0;37m'
    DARKGRAY='\e[1;30m'
    LIGHTBLUE='\e[1;34m'
    LIGHTGREEN='\e[1;32m'
    LIGHTCYAN='\e[1;36m'
    LIGHTRED='\e[1;31m'
    LIGHTPURPLE='\e[1;35m'
    YELLOW='\e[1;33m'
    WHITE='\e[1;37m'
    NC='\e[0m' # No Color
    AFTER
    BLACK='\e[0;30m\]'
    BLUE='\e[0;34m\]'
    GREEN='\e[0;32m\]'
    CYAN='\e[0;36m\]'
    RED='\e[0;31m\]'
    PURPLE='\e[0;35m\]'
    BROWN='\e[0;33m\]'
    LIGHTGRAY='\e[0;37m\]'
    DARKGRAY='\e[1;30m\]'
    LIGHTBLUE='\e[1;34m\]'
    LIGHTGREEN='\e[1;32m\]'
    LIGHTCYAN='\e[1;36m\]'
    LIGHTRED='\e[1;31m\]'
    LIGHTPURPLE='\e[1;35m\]'
    YELLOW='\e[1;33m\]'
    WHITE='\e[1;37m\]'
    NC='\e[0m\]' # No Color
    RESULT = entries are still truncated
    Last edited by ssri (2010-06-26 18:18:43)

  • Manual input for Date offset Buckets in Due date analysis 0FIAR_C03

    Hi Experts,
    I have a requirement where i need to provide a manual input selection to fill offset values of dates for due date analysis.
    For example, current standard report 0FIAR_C03_Q0005 provides data with buckets of 0 days, 1-30 days, 31-60 and so on. Instead of this we need to define this bucket as manual input field and based on that the due date report should fetch the data like as if a user enters 7, 14, 21, 28 and so on till last option as 999 in 6 to eight variables provided than the report should come in buckets of 0-7, 8-14, 15-21 and so on.
    How can i achieve this with BEx.
    -Kushal

    I'm considering you are running this report on a daily basis. Under this assumption, you may create a Key Date Varaible in BEx Query Designer. SAP BEx offers a very useful concept called Key Date. Purpose of Key Date is to execute your report as of today's date (sy-datum) based on a variable. You may create variables also on 'Key Date' & use this variable as subsequent your offsets in the row/col structure. This gives you a better leverage from ABAP side. For such bucket scenarios, your defined variable will give you option to choose input date which can be customized to choose sy-datum as the current date.
    There's no necessity for user to define bucket limits for each level. As per the statements, its obvious the values are multiple of ZOFFSET (The offset provided by users). We can use a simple Customer Exit Variable. We need to first capture the value of ZOFFSET:7. Using CMOD, we can write the custom exit returning a value which gives the bucket range. Another input also must be passed to the exit program to capture 'How many lines you need to process/iterate?'. Say, you create a small formula variable to capture the # of slabs: ZSLABS.  I've just written a basic skeleton. Pls. incorporate your requirements as necessary.
    CASE I_VNAM
    WHEN 'XXXX'.     
         IF I_STEP=2 +(i.e.after popup!)+
              READ TABLE I_T_VAR_RANGE INTO L_S_RANGE WITH KEY VNAM='ZOFFSET'.
    FOR (ZTEMP_I=0; Z_TEMP_1 <= ZSLABS; ZTEMP_I++)
         IF SYSUBRC=0
              CLEAR L_S_RANGE.
              L_S_RANGE-LOW = LOC_VAR_RANGE-LOW(8).      +This is YYYYMMDD+
                        ZOFF_PREV = L_S_RANGE-LOW + 1.
              ZOFFSET = ZOFFSET * ZTEMP_I.
                   IF(ZOFFSET) IS INITIAL.     
                        L_ST_RANGE-HIGH = SY-DATUM.
                        L_S_RANGE-LOW+6(2) = ZOFFSET.          +Just filter only DD from YYYYMMDD+
                   ELSE     
                        L_ST_RANGE-HIGH = ZOFF_PREV.
                        L_S_RANGE-LOW+6(2) = ZOFFSET.
                   ENDIF.               
              L_S_RANGE-SIGN='I'.
              L_S_RANGE-OPT ='B'.
              APPPEND L_S_RANGE TO E_T_RANGE.
    END FOR +(Not sure about For loops; but you may similar logic using normal do/while loops too...)+     
    ENDCASE
    There may be a few errors in code. Pls. review them & let me know your comments. 
    Typos regretted. Thanks!
    Edited by: Arun Bala G on Oct 16, 2010 12:44 AM

  • Issues with signal input adaptive filtering, it won't filter the added noise from the input waveform

    Hello,
    I have an issue with my adaptive noise cancellation program. Essentially I want to input a custom wav add noise to it and then filter the noise away in order to gain the custom wav again.
    While doing so I want to read the learning curve and read the adaptive coefficients. Unfortunately I have an issue when it comes to the filtering of the custom wav+noise. It won't filter the signal at all.
    It would be helpful if someone could have a look at it and possibly help me out.
    Thanks!
    Attachments:
    Testing.vi ‏59 KB

    Hey Jan,
    Thanks for the reply. I am currently using the Adaptive Filter Toolkit in order to obtain those VIs. The VIs which are in use are the LMS Adaptive Filter ones. 
    I figured there might be an error with the input of the array. This VI requires a DBL Array but it seems like it can not process it. 
    The "Get Wavefirn Components" works better now but I still have an issue with a time. I put a 9s wav file in but it only computes it in a very short time and I can not play the file while it is computing.
    I added the modified program to the attachments. 
    This program is ought to read a waveform file add noise to it and then use an adaptive filter in order to get the orginal waveform back again and if possible either store or play the final waveform. 
    Thanks for your help.
    Attachments:
    Testing.vi ‏62 KB

  • Custom Component with xfaForm input

    Hi. I'm trying to create a custom component that takes as one of its inputs either an xfaForm, a Document containing XML, or an xml variable. So my service method has a variable called data which is just an Object. When I pass in the xfaForm I get a class cast exception when casting the object to the XFARepositoryFormInstance class. I even print out the object and it shows me that its an XFARepositoryFormInstance. Do I have to do something special to work with an xfaForm inside the component? It seems like some sort of class loading issue or something.
    I'm stuck. Anybody have thoughts?
    Thanks,
    Bryan

    I'm unstuck :)  The key to getting this to work is to import the packages you are going to use in your component.xml.
    So, for me..I had to add the following:
            com.adobe.idp.workflow.dsc.type
            com.adobe.idp.taskmanager.form
            com.adobe.idp.taskmanager.form.impl
            com.adobe.idp.taskmanager.form.impl.xfa

  • Creation of Custom IDoc with Message control for sales Order

    Hi all,
    I am trying to create custom Outbound IDoc with message control.
    I wrote the code in a function module and i want to register that function module. (as in inbound registration of function module as in BD51).I am not knowing if that registration is necessary for outbound Idoc, if so in which transacition?
    Please list me the steps to create a custom IDoc for Message control.
    Thanks in advance,
    Regards,
    John.

    Hi,
    You need to use FM : MASTER_IDOC_DISTRIBUTE to create outbound idoc.fill the data in the tables EDIDC,EDIDD and generate the IDOC.
    check this link:
    Re: Master_IDoc_Distribute
    and use transaction : WEDI for IDOC configurations.
    here you will have all the transactions(step by step) to set the outbound IDOC configurations.
    Regards
    Appana

  • CS5 custom build with GTX 285 for long-form 4k projects

    I've been researching nonstop for several days, and it's time to ask for your expert opinions.  I would appreciate any help.
    I'm ordering a new system for Production Premium CS5, and mostly I will use Premiere Pro CS5 to edit long-form projects (huge timelines with thousands of clips) of Red 4k footage.  It's a feature film with only a few F/X shots, but we'd like to do as much F/X, sound mixing, and color correction in CS5 as possible.
    Here is what I'm considering:
    CUSTOM BUILD from CYBERPOWERPC (about $1950 including items not listed):
    OS:  Windows 7 Professional x64
    CPU: Intel® Core™ i7-930 2.80 GHz 8M Intel Smart Cache LGA1366
    HDD: 1TB SATA-II 3.0Gb/s 16MB Cache 7200RPM HDD (Single Hard Drive)
    MOTHERBOARD: * (3-Way SLI Support) GigaByte GA-X58A-UD5 Intel X58 Chipset SLI/CrossFireX Ultra Durable™3 Mainboard DDR3/1600 ATX Mainboard w/7.1 Dobly Audio,eSATA,Dual GbLAN, USB3.0, 2 x SATA-III RAID,IEEE1394a,4 Gen2 PCIe,2 PCIe X1 &1 PCI [+132]
    MEMORY: 12GB (2GBx6) DDR3/1600MHz Triple Channel Memory Module [+219] (Kingston HyperX)
    SOUND: Creative Labs SB X-Fi Xtreme Audio 24-BIT PCI Sound Card [+48]
    VIDEO: Nvidia GeForce GTX 285 (I will have to take out their card and install this myself for GPU acceleration)
    1.  Do you see any poor or strange decisions?
    2.  I liked that mobo because of the chipset's possibilities and because it has 1394 for old-style DV capture.  Plus it has 8 SATA 2.0's, 2 SATA 3.0's, 2. eSATA 2.0's, and 2 USB 3.0's for huge/fast storage options in the future.  Is there some better alternative if I'm keen to have at least one of each of these formats?
    3.  I'll clone their 1TB OS drive onto a smaller 250GB drive to use as the OS drive, then use their 1TB drive as part of a 2TB RAID 0 video storage.  Will using the mobo's raid controller or some type of virtual RAID (like I did in Xp64) be fine, or do I need a separate RAID controller (like I had in the late 90's).
    4.  What do you think about that processor and RAM for what I'm doing?  Any reason to prefer 2 Quad-Core's (if dual processors are even compatible with CS5)?  Please let me know if the current configuration will lag with huge timelines with thousands of 4k clips.
    5.  Maybe I don't need the Creative sound card and could just use the mobo's sound?
    6.  Will it be simple for me to remove their graphics card and install an Nvidia GeForce GTX 285 myself?
    7.  The Nvidia GeForce GTX 285 seems like a good fit for GPU acceleration for me since I'm not expecting to have 4+ layers of videos, though I will be doing multiple effects on 1 or 2 layers.  Would having a Quadro FX give any advantage over the GTX 285 for huge timelines with thousands of 4k clips?  Or any advantages for any other use?
    8.  The GTX 285 has 2 DVI's as its only connectors (plus something that looks like S-video).  Can I use one DVI for my workstation and one DVI for monitoring video in realtime on an HDMI/DVI-equipped LCD TV or professional HD video monitor.  Any problems with viewing/outputting my 4k video in HD in realtime?  What is the best setup to view your video on an external monitor?  Back in the CS2 days I used a 1394 through a camcorder into an analog professional monitor, but that's not going to be HD, plus I heard there's a sync problem these days.
    Thanks for your advice.

    Thanks for your advice, everyone! 
    I'm gaining a lot of knowledge, but I have some followups so I'll break it down into subcategories and hopefully you can chime in on one or more topics.
    To give more info about my daily use and purpose:
    --smoothly edit huge amounts of RED 4k footage/clips and view the video externally in as high a resolution as possible (2k or minimum of 1k).
    ---no reason to have more than 3 layers visible at a time.
    --the vast majority of the time only 1 video layer (with video effects) will be visible, with perhaps a handful of fades/dissolves during the entire 2-hour feature. 
    --I don't mind if it takes slightly more time rendering DPX files at the end, but I don't want any hiccups and never want to render during day-to-day editing and monitoring.
    GRAPHICS CARD and VIDEO MONITORS
    1.  I'm pretty much set on the GTX 285, but I wondered if for my purposes I'd get any significant benefit from the Quadro FX 5800 (+$2000-$2600) or the GTX 480 (+$100)?  Either in speed of playback or in output to external video monitors. The 5800 has 4GB RAM versus the GTX 285's 1GB, and the GTX 480 has 1.5 GB.   Does this RAM matter for what I'm doing or are the cores much more important?  Also, if I chose the GTX 480 then I'd have to pray that everything would be stable with a MPE/CUDA/GPU-acceleration hack, or hope Adobe comes through with full support of that card.
    2.  What is the 3rd output on the GTX 285?  There are two DVI outputs and then something that looks like S-Video.  Is it S-video out? Or an HD audio out that travels alongside the DVI output to an external video monitor?
    3. Does it slow down the system to send the video at 1k or 2k to an external video monitor since you'd be using both DVI outputs simultaneously?
    RED 4k PLAYBACK and RAM vs CPU
    1.  For day-to-day editing, I'm fine scaling to 1/4 resolution if necessary and monitoring video externally at 1k or 2k.  Would my current system already achieve that smoothly?
    2.  From what I've gathered here and elsewhere, for better 2k or 4k playback it might be better to spend extra on CPU rather than RAM.  I could spend
    --$1000 more for 24GB RAM (instead of 12GB)
    --$290 more for an i7 975 Extreme 3.33 GHz 8M Cache
    --$686 more for an i7 980x Extreme 3.33 GHz 12M cache.
    Given my needs and the current total system cost of $1950, which of these 3 would you choose?  Or should I stay with the cheaper i7 930 2.8 GHz and overclock (which I've never done before).
    ECBowen:
    It sounds like you've used a system similar to what I'm buying to playback RED 4k on a timeline in full, 1/2, and 1/4 scale.  I'd greatly appreciate if you could clarify YES/NO for which are possible to have SMOOTH PLAYBACK with your 980x/12GB RAM/GTX 285 system.  I know it's a lot to ask, but it would make me feel so much better about this big purchase:
    -full scale 4k of 1 layer with 0 video effects
    -full scale 4k of 3 layers with 0 video effects
    -full scale 4k of 1 layer with 3 video effects
    -full scale 4k of 3 layers with 3 video effects (NO, right?)
    -1/2 scale of 1 layer with 0 video effects
    -1/2 scale of 3 layers with 0 video effects
    -1/2 scale of 1 layer with 3 video effects
    -1/2 scale of 3 layers with 3 video effects
    -1/4 scale of 3 layers with 3 video effects
    RAID CONTROLLER
    1.  I won't use the virtual/software controller.  The GigaByte UD5 says it has RAID 0, 1, 5, 10.  Does that mean it has an onboard hardware controller that I can configure in Windows 7 or using some software supplied with the mobo?

  • EDID file for SONY KDL40-XBR2 with HDMI input (for W510)

    Hello community,
    Please does anybody has a configured EDID monitor file for a SONY  KDL40-XBR2 LCD TV? I'm using the HDMI input with a DisplayPort - HDMI cable and the image is awful. The monitor driver in Windows 7 is "Generic PnP Monitor" and it's pretty old. The problem is the text: fonts are pretty ugly...
    I would like to over ride the settings using the NVidia control panel but don't have a valid EDID file configured for HDMI input.
    I use right now the VGA port on my SONY  KDL40-XBR2 and the image quality is better and the fonts are fine.
    Can someone please provide a hint here?

    Of course, SONY is not providing generic INF monitor files for their line of LCDTV's... no wonder they are going down!

  • Formula date variable ,which is processing by 'Customer exit' with ready in

    Hi ,
    I need to create 1 variable which takes date from user and do some calculation.irrespective of any date char.
    so I have created Formula date variable ,which is processing by 'Customer exit' with ready input .
    But when selection screen pop up date formula variable comes with the format yyyymmdd.
    but i need dd.mm.yyyy. i have checked my profile and it is dd.mm.yyyy.
    Waitin for reply

    Hi Babu
    Did you get the answer to the query....if yes please drop me a mail on this as I have the same requirement and thanks in advance...
    my id   [email protected]
    REgards
    Amit

  • Custom component with additional tags

    Hi. I need to write complicated custom JSF component.
    I know how to write simple custom components, and receive String variables from tag attributes e.g.
    https://github.com/devalentino/temp/blob/master/src/main/java/net/monopolyclub/components/component/UserData.java
    But now I need to write custom component with additional tags (for example like dataTable and column tags).
    How can I write such component? How can I receive collections in my component? How can I work with additional tags in my component.
    for example I need something like:
    <m:chat>
         <m:tab value="#{UserList}" />
         <m:message value="#{MesageMap}" />
    </m:chat>
    where UserList - Collection with current users and MessageMap is Map with User as key and message as value.

    Iam using pt:ptdata.joincurrcommunitydata
    here is some code
    <pt:ptdata.joincurrcommunitydata pt:id="menutabsjoin" />
    <pt:logic.foreach pt:var="temp2" pt:data="menutabsjoin">
    <span class="CommunityPage">
    <pt:core.html href="$temp2.url" pt:tag="a">
    <pt:core.html pt:tag="img" src="$temp2.img" alt="$temp2.title" border="0" align="absmiddle" height="$temp2.imgheight"      width="$temp2.imgwidth" />
                        <pt:logic.value pt:value="$temp2.title" />
                             </pt:core.html>
                             </span>
                             </pt:logic.foreach>
    But the URL that is generated is not having the CommunityID, hence it errors out saying object not found.
    Any help would be appreciated?
    Thanks
    kartik

  • Correct Input for RV_MAT_SUB_SAVE  FM

    Hi All,
    Can anyone please help me with the input for FM RV_MAT_SUB_SAVE? We just want to update VB13 with correct auto sublinkage for old and new material.
    But due to wrong input or wrong sequence of materails passed to the FM RV_MAT_SUB_SAVE we are not able to get success.
    I need your urgent help.If you can provide a sample code that will be a great help.
    Thanks,
    Aritra Dasgupta.

    Hi Aritra;
    data: begin of xkondd occurs 100.
    include structure konddvb.
    data: end of xkondd.
    data: begin of ykondd occurs 100.
    include structure konddvb.
    data: end of ykondd.
    data: begin of xkonddp occurs 100.
    include structure konddpvb.
    data: end of xkonddp.
    data: begin of ykonddp occurs 100.
    include structure konddpvb.
    data: end of ykonddp.
    data: begin of time_vake_db occurs 10.
    include structure vakedb.
    data: end of time_vake_db.
    data:    xvake type standard table of vakevb with header line
    initial size 50.
    data: boole_t like boole value 'X'.
    call function 'RV_MAT_SUB_SAVE' in update task
    exporting
                 use_outbound_call = boole_t
    tables
                 x_konddvb         = xkondd
                 y_konddvb         = ykondd
                 x_konddpvb        = xkonddp
                 y_konddpvb        = ykonddp
                 db_time              = time_vake_db
                 db_xvake           = xvake.
    Regards.
    Özgün

  • Any way to automate input for input prompts

    Hi all,
    For times when there is a input prompt, is there any method/way we can direct pass it in via unix scripting or sql script? Specially for password change in this scenario, which is database's default prompting.
    Eg. I wanna change a user password. however there will be an input prompt. any way I can automate the input passing in? I understand that we can use "alter user" , but I am trying to stick to using password [username] to perform the change.
    SQL> password [username];
    password:
    Thanks in advance.
    Eugene

    yea, I was planning to the thing as you mentioned
    pass the username, old_password and new_password as parameters, and change the password without stopping for any manual input.
    Reason being my current environment is using password [username] to change password, and I try to my very best to minimise changes. I am trying to come up with the script which is capable of minimising manual entry, by issuing prompts from my script and execute any sql activity from there automatically. I have idea on how to get it work if I apply the alter user convention, just wanna check whether is there any way to do it the password [username] approach.
    Eugene

  • Error while adding a custom field with Input help via AET

    Hi All,
    I need to add two custom field under Service orders at Item level in component BT140I_SRVP.
    One field is required to have the input search help f4 and autopopulates the second field
    I am able to add one field(not requiring help) successfully through AET .
    I have created one Zsearch_help in se11 and its successfully running  and Autopopulating seocnd field while I am testing it
    While adding second field through AET,I need to enter following details as -
    field label,search relevant ,serach help etc.
    When I type the name of my 'Zsearch_help' against field search help it gives me following error
    'Search help is not compatible'.
    Secondly,not getting getter and setter methods for the attrributes in BTAdminI.
    Last,please tell me if i create zhelp and activate it,would it automatically appear in the list on AETwhile assiging it to input field?
    Please help me out.Kindly be detailed as I am new to SAP CRM.
    Thanks,
    Shivani

    The question is answered in CRM 7.0 forum:
    Getting error while adding a custom field (with input help) through AET

  • Custom action with XML type input and output parameter.

    Hi,
    I want to develop custom action with xml type input and/or output parameter.
    Is there sample code for java side. How is the definition of input and/or output parameter and set/get methods?
    does it need special .jar file to develop custom action like this?
    Thanks.

    Cemil - yes, you can use XML data types.  Use the class
    com.sap.lhcommon.xml.XMLDataType
    for your parameter type.  Here is a snippet from a custom action we use to log XML (instead of just returning the #text node like the default logger does):
    public class XMLLogger extends ActionReflectionBase
        private String source;
        private String eventType;
        private String textMessage;
        private XMLDataType xmlMessage;
        public XMLLogger()
            log = new Logger("UserLog");
            source = DEFAULT_SOURCE;
            eventType = TYPE_INFO;
            textMessage = "";
            xmlMessage = new XMLDataType();
        public XMLDataType getXmlMessage()
            return xmlMessage;
        public void setXmlMessage(XMLDataType xmlMessage)
            this.xmlMessage = xmlMessage;
        public void Invoke(Transaction transaction, ILog ilog)
            StringBuffer sb = new StringBuffer();
            sb.append('[');
            sb.append(source);
            sb.append("] ");
            sb.append(textMessage);
            sb.append(XMLUtils.convertXmlToString(xmlMessage));
    XMLUtils is a helper class we wrote - it's just a bunch of standard Java XML boilerplate code.  The important part you need to know is XMLDataType.getDocument() will return an org.w3c.dom.Document.
    I hope that was enough information to help.
    -tim

Maybe you are looking for

  • Storage of IDOC definitions in Integration Repository

    Hi there, I'm trying to define development standards for the use of XI and I can't seem to find any recommendation for the storage of SAP interface definitions (IDOCs, RFCs, etc)within the Integration Directory. We have an environment with multiple S

  • Applying OIM Connector Patches

    I currently have OIM 9.1 with connector version 9.0.4.1 and what to apply connector patch 7017816 to correct an issue with the AD password sync loop issue. Are there any special instructions somewhere on how to apply the patch? If I attempt to instal

  • Please help - iMovie doesn't playback sound

    Hi guys, I don't know what to do, I've done everything. I've selected different outputs, tried different inputs including external audio interfaces. The input is currently on the internal microphone and I can see a signal everytime I talk on the "voi

  • Recovering emails from backup

    how can i import emails from a backup on external HD? i just reistalled osx so all time machine options aren't available as there is no information to be backed up yet. i've recovered emails before and it put them in their own folder in mail. cant re

  • Per swf per instance, per thread,  is it?

    When there are multiple .swfs  in one web page,  if there will be multiple instaces of flashPlayer -- and run in multiple thread?