Quest

Hi,
What is the main diff between  Select options and ranges?
Thanks in advance
Rgds
venugopal

Both SELECT-OPTIONS & RANGES works for the same purpose.  They both are used for the range selection from selection screen.  The main diff. between them is, while we use SELECT-OPTIONS system implicitly creates the select options internal table which contains the fields of SIGN,OPTION,LOW & HIGH.  But in case of RANGES, this internal table should be defined explicitly.
Have a look at below link.
<a href="http://www.sap-img.com/abap/difference-between-select-options-ranges.htm">Difference between select-options and ranges</a>
I hope it helps.
Best Regards,
Vibha
*Please mark all the helpful answers

Similar Messages

  • How to get the groups a computer is member of in AD with Quest Powershell?

    Hi all
    I would need a script in Quest PowerShell that gathers the groups that multiple computers are member of in Active Directory. I have this script, but what it does is to get USERNAMES from a .txt file and then display the groups
    each user is member of in AD. I couldn't modified it so instead of USERNAMES in the txt file I can put computers name, here's the code:
    $out = @()
    Get-Content M:\Tools\Reportes_Power_Shell\Contenedor_Power_Shell\Users.txt | ForEach {
    $date = (Get-Date).ToString()
    $username = $_
    $displayName = (Get-QADUser $username -Properties DisplayName).DisplayName
    $groups = Get-QADMemberOf $username | Sort-Object Name
    ForEach ( $group in $groups ) {
    $obj = New-Object -TypeName PSObject
    $obj | Add-Member -MemberType NoteProperty -Name Date -Value $date
    $obj | Add-Member -MemberType NoteProperty -Name UserName -Value $username
    $obj | Add-Member -MemberType NoteProperty -Name DisplayName -Value $displayName
    $obj | Add-Member -MemberType NoteProperty -Name GroupName -Value $group.name
    $out += $obj
    $out | Export-CSV M:\Tools\Reportes_Power_Shell\Reportes_de_Power_Shell_y_AD_Info\Users_Memberships.csv
    Thanks!

    I did it but didn't work out, I get this error:
    Get-QADMemberOf : Ambiguous identity: <NAME OF THE COMPUTER>.
    At line:5 char:30
    +     $groups = Get-QADMemberOf <<<<  $username | Sort-Object Name
        + CategoryInfo          : NotSpecified: (:) [Get-QADMemberOf], IdentityException
        + FullyQualifiedErrorId : Quest.ActiveRoles.ArsPowerShellSnapIn.BusinessLogic.IdentityException,Quest.ActiveRoles.
       ArsPowerShellSnapIn.Powershell.Cmdlets.GetMemberOfCmdlet
    I can't help with Quest, but here's an example using the AD module:
    Get-Content .\computerList.txt | ForEach {
    $computerName = $_
    $props = @{
    ComputerName = $computerName
    Groups = ''
    try {
    $details = Get-ADComputer $computerName -Properties memberOf -ErrorAction Stop
    $props.Groups = (($details.memberOf | ForEach { (Get-ADGroup $_).Name }) | Sort) -join ','
    } catch {
    $props.Groups = 'ERROR'
    New-Object PsObject -Property $props
    } | Select ComputerName,Groups | Export-Csv .\GroupList.csv -NoTypeInformation
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • EZ Quest Firewire 400 ext drive works in 10.4 (PPC) but won't mount in 10.6 (Intel)

    I have an EZ Quest external FireWire 400 drive.  Was working fine on my MDD Mac running OS X 10.4.11.  NOW, when I hook it up to my iMac running OS X 10.6.8, it will not mount.  Tried different ports.  Tried device on and off at boot.  Doesn't show up on desktop or in sidebar of finder window or in System Profiler.  Drive powers up, but won't mount.  Please help.  Thanks.  Dennis

    I have the same problem.  Two different EZQuest Quad interface drives suddenly won't mount on my 2010 iMac (Core Duo) via the firewire 800 or 400 ports.  If I use a USB cable, both drives mount as normal, but I need the Firewire 800 ports to stream audio samples for Logic.
    Both of these drives were working fine for over a year until I upgraded recently to 10.6.8 on the iMac and then tried to use one of the drives yesterday with a new 2012 MacBook Pro (10.7.4).  The drive mounted once on the MacBook Pro, then disappeared and now will not mount on either the MacBook Pro or my iMac.
    I tried resetting the PRAM and SMC on the iMac, but the drives still won't mount via firewire. The fact that both EZQuest drives still mount via USB indicates this is a firewire problem particular to Mac OS 10.6.8 and 10.7 rather than an external drive problem.   It also seems that many people are experiencing this regardless of the external drive brand.   Does anybody know how to fix this?

  • Can't record or set reminder on 037 Quest

    I can Watch Quest but I can't record anything or set reminders. Quest+1 and all other channels ok as far as I can see. When I press Record or try to set a reminder literally nothing happens. Change channel and its fine.
    17.10.0
    2.4.0
    910
    92
    DTRT2100
    Tried a restart and a rescan. Nothing changed.
    Solved!
    Go to Solution.

    I did raise an issue with Youview --
    https://community.youview.com/youview/topics/youview-epg-fault-quest
    I'm fairly certain that the root cause is incorrect EPG data for this channel but the Youview box appears to rely a lot on accurate EPG data so when its wrong the impact on Youview users appears more significant than other platforms.

  • How can I keep track of ans of quest ???? [Struts]

    hi,
    I am trying to develop Question-Answer pages using struts.
    The problem is when user selectes the right option(radio button) of different different quest. how can i keep track of these selected radio buttons ???
    I mean how can i trace the value of selected radio button corresponding to its quest. in my ActionForm and ActionClass.
    //loop for all questions
    <logic:notEmpty name="QUEST_LIST">
         <logic:iterate id="list" name="QUEST_LIST"  indexId="sno">     
         <tr>
              <td><%=(sno.intValue()+1) %>
              </td>
              <td> <bean:write name="list" property="QUESTION" />
              </td>               
         </tr>
         <tr>//loop for all options of corresponding question
    <logic:iterate id="OptionList" name="list" property="OPTION_LIST">
              <td> 
              </td>
              <td><INPUT type="radio" name="<bean:write name="list" property="QUESTION_ID" />" value="<bean:write name="OptionList" />">
                   <bean:write name="OptionList" />
              </td>
              </logic:iterate>
         </tr>     
         <tr><td> </td>
         </tr>
         </logic:iterate>
    </logic:notEmpty>Now my problem is in statement.....
    INPUT type="radio" name="<bean:write name="list" property="QUESTION_ID" />" value="<bean:write name="OptionList" />">
    if I hardcode the valueof "name" attribute then only one radio button is selected from all the question, so i created it dynamically using quesID.
    now its working fine only one radio can be selected for each quest. BUT how I set the values of these selected radio button in my ActionForm and get it into ActionClass
    I hope u understand what i am trying to say.....
    Please help me......

    hi,
    try "last" in the client's terminal. is this what you are looking for?
    cheers,
    Michael.

  • How to automate dates in a Quest Powershell script?

    Hi
    I have this script:
    Add-PSSnapin Quest.ActiveRoles.ADManagement
    Get-QADUser -SizeLimit 0 -CreatedAfter (Get-Date 12/12/2013) -CreatedBefore (Get-Date 13/12/2013) -IncludedProperties Name,WhenCreated,DisplayName,EMail,EmployeeID,StreetAddress,WebPage,SamAccountName,ParentContainer,Title |
    Select-Object  Name,WhenCreated,DisplayName,EMail,EmployeeID,StreetAddress,WebPage,SamAccountName,ParentContainer,Title,@{Name = "Creator Username"; Expression = { $_.Security.Owner }},@{Name = "Creator DisplayName"; Expression
    = { (Get-QADUser $_.Security.Owner).DisplayName }} |
    Export-CSV D:\Tools\Reportes_Power_Shell\Reportes_de_Power_Shell_y_AD_Info\Reporte_Diario_Completo.csv
    I need to automate the dates from a day before, instead of me doing it manually I want the script automatically to put the date before, for example if today is December 13th I want the script to make a report from the day before, so it would be December
    12th. The idea is to automatically run it with Windows Task Scheduler when i'm out of the office so when I get back it's done. So I suppose that the script also has to gather the time in hour and minutes, after midnight it would be another day. I don't know
    if I made myself clear, if I need a report from December 12th, the script has to wait after December 12th at 23 hour, 59 minutes and 59 seconds, and after a second make the report so it can gather the information of the entire day.
    Thanks!

    Hi
    Thanks for your help, I'm getting this error with that script:
    Get-QADUser : Cannot bind parameter 'CreatedAfter'. Cannot convert value "[datetime]::Today.AddDays" to type "System.Da
    teTime". Error: "String was not recognized as a valid DateTime."
    At line:1 char:26
    + Get-QADUser -CreatedAfter <<<<  [datetime]::Today.AddDays(-1) `
        + CategoryInfo          : InvalidArgument: (:) [Get-QADUser], ParameterBindingException
        + FullyQualifiedErrorId : CannotConvertArgumentNoMessage,Quest.ActiveRoles.ArsPowerShellSnapIn.Powershell.Cmdlets.
       GetUserCmdlet
    Could you help me?

  • ?  How to I open Quests in TapFish 2

    How do I open Quests in Tap Fish ? 

    Ken,
    Thanks for coming back.  Am I to believe that the CS6 on my computer which
    is the latest up dated version and the one that has been there all along is
    the one I am to use until CC is released?  If so that's fine and I then
    would assume that I will get some kind of notice when the CC version is
    released for download.
    Bob

  • Creating report with multiple queries in clear quest

    Hi,
    I am new to reports and currently working with creating reports that connect to clear quest(CQ).
    I have successfully created several reports, that connect to the CQ, but they all have data from only one query.
    Now I am trying to create a slightly complex report where I need to fetch data from multiple queries. All these queries use 2 parameter to filter their data. I have dynamic cascading parameters to get them. When just connecting they all work ok. I used the link tab to link them to two fields of one query, to make sure that they all filter to fields from same query.
    The problem is when I drop the fields from the various queries on the form, the data is fetched multiple times.
    I also played with links to make them outer links but in that case I get error and unable to run the report completely.
    Any ideas on how to work with multiple queries and provide same parameters to all of the queries?
    Thanks in advance.
    -PAP

    - How do I make sure that the relationship is not one to many?
    You don't. That's the nature of the data. For example a single person can order multiple items. A simple one to many relationship.
    - In the link tab, I can only point to queries, is there a way I can point the fields to report params?
    You should be seeing tables... I think you're having a tough time with the basic terminology.
    - How does these Enforce Joins (4 options) work.
    There is rarely if ever any reason to switch from the default "not enforced". Leave it alone. The only one you'll touch 90% of the time is the Join Type.
    PAP,
    Based on the questions you're asking, it sounds like you are missing some major database fundamentals. My suggestion would be to step away from CR for the time being and read a little bit about relational databases (what makes them relational) and database normalization. This will also give you an idea about the various join types and when to use one over the other.
    You can know every feature and function in CR, but until you have at least a basic knowledge of how data relates, you'll never pull in the data you need.
    Jason

  • How do I delete quests sing in from my iPad  tablet

    Delete quest from iPad tablet sing in

    I don't know what you mean by 'quest'? And, I assume you mean tablet 'sign in' and not 'sing in'. Please explain what you mean.

  • Hello I have just updated my iphone 5 and it keeps requesting 2 old email addresses from I quests my old laptop any idea how to stop this ? Thanks

    Hello I have just updated my iphone 5 and it keeps requesting 2 old email addresses from I quests my old laptop any idea how to stop this ? Thanks

    Log out of the old ID, then login using the new one with the correct pw.

  • Has any one got Titan Quest to work with Bootcamp?

    I'm trying to get Titan Quest to work with Bootcamp on my MacBook and even though the min. requirements ask for 64MB it doesn't work. Something about “can't initialize graphics engine.“
    If anybody has got it to work, I'd appreciate the info.

    could be the intel GMA 950 is not suppoerted by titan quest.
    Try visit titan quest official sites, maybe they offer patch or updater for make it working for newer or unsupported chip set.
    Good Luck.

  • 9i replication vs. quest shareplex

    what are the pros and cons to replicating 9i databases using oracle's replication features versus using quest software's shareplex product?

    I used Quest shareplex before. It is easy to set up. No primary key is needed. I used shareplex to replicate
    ~ 1500 tables. All I need is to put 1500 tables in a config file.
    If I use oracle replication, I will have to use set_columns procedure for all tables. I was told you have to have primary key on your table or use set_columns procedure. In my case, there are so many tables, I don't know which column I have to use in set_column procedure. It will be a lot of work to identify all columns and run set_columns procedure for each tables.
    Shareplex read logfile to replicate the data.
    Oracle replication use internal trigger to replicate data.

  • Quest Tool Guide

    Hi gurus,
    In Quick Guide to Installing the SAP Best Practices Baseline Package it says; Please refer to “Quick Guide to Quest Tool”. But I couldn't find this guide neither in service.sap.com nor in SDN.
    Any suggestions?

    Hi
    Bc set is avilable on service market place you download this file and than you found the method and i am sending you a link its give you help This link is for retail.
    http://help.sap.com/bp_retailv1500/Retail_IN/html/Retail_toc.htm
    http://help.sap.com/bp_retailv1500/Retail_IN/index.htm
    Reward point if helpful
    Thanks
    Pankaj Kumar

  • Help me  in info abt   tools -- ReqPro, Clear Case, Clear Quest, Remedy...

    Please help me with the links and details to find complete information of tools (ReqPro, Clear Case, Clear Quest, Remedy.) which are used for tools used for Application Development and Maintenance process on internet as soon as possible.
    plzzz....

    Please help me with the links and details to find complete information of tools (ReqPro, Clear Case, Clear Quest, Remedy.) which are used for tools used for Application Development and Maintenance process on internet as soon as possible.
    plzzz....

  • Quest: using ClamAV - Setting

    Hi at all,
    have a short quest, what is the right setting for ClamV for Mac? and is ..
    ClamAV good for Snow Leopard protection?
    Sorry for poor and simply english
    Thanks a lot

    I'm not sure what setting you're referring to. ClamXav is probably the least obtrusive AV software for the Mac... whether it's the best, I don't know. It's the one I usually recommend to folks that want AV software, since it's free and stable.
    Note that AV software is not a particularly big need on Macs. See my [Mac Virus guide|http://www.reedcorner.net/thomas/guides/macvirus>.

  • Quest to lower dv5-1000 series temps

    temps were taken from core temp software
    original idle temp 106 F
    original load temp 130-140 F
    using stock 492314-001 heat sink on intel dv5-1132us
    using copper shim and thermal grease with original heat sink
    idle temp 103 F
    load temp 130-140 F
    using dv6 heat sink 512830-001 plus shims and thermal grease
    idle temp 89-91 F
    load temp 115-128 F (the 128 was maxing out both cores converting video for an hour)
    notes the dv6 heat sink looks like cheap garbage next to the dv5 heat sink. The casting is rough, and so is the heat tube. the fan has fewer fins on it, but the fins are wider. 
    however.. if you take the fan out of the heat sink casing, the casing has an extra layer of cooling fins on the dv6 model. 
    i havnt tried it yet, but i suppect the dv5 fan itself may be slightly more effient when the laptop is not on a hard surface, just because the fins on the fan are raised from the bottom of the casing.
    i ended up using an almost paper thin shim above the cpu, just because the copper pad on the heat sink was pretty rough compared to the dv5 one. I also used a thicker shim above the gpu to make up for my cpu shim and to have the heat sink actually touch the gpu.
    the dv6 fan is slightly louder, could be also be because i used a old fan, not a new one.. I expect it will be much more difficult to blow out the heat sink on the dv6 version with a can of air, sence it has more fins inside the case. I actually cleaned it in the sink before i put it in, (very full of dust and crud).
    my quest continues...

    i have also noticed the broadcom wifi card in the dv5-1132us was getting very hot, and being placed under the hard drive, was making the hard drive over heat.
    I replaced the broadcom unit with an intel 5100.  hard drive temps are back to normal.

Maybe you are looking for

  • How to use a bind variable in XE for accessing data from different sources

    Hi, I am new to XE and trying to create an application like this: (region source) Select * from v$session@:P1_DATABASE ; My intention is to give the name of the database at runtime to fetch the relevant data. But I am getting error like this 1 error

  • Error When I Try To Open Form ?

    Hi all, When i try to open my form in form builder 6i the error occure Oracle Forms Designer has encountered a problem and needs to close. We are sorry for the inconvenience. Error Signature AppName: ifbld60.exe     AppVer: 6.0.8.7     ModName: ora80

  • Extracting a csv file into a Z directory in AL11 via Open Hub

    Hi All, After reviewing alot of treads  I am able to etracte a .csv file via Open Hub Destination into DIR_HOME in AL11. But, My requirement is to create the file in AL11 directory "ZBIWCOPA" and this directory is available in all systems in the land

  • Issue in getting data from popup?

    i hav created a popup window called simpleWindow, and a custom event to retrieve data from the popup called "popupMessage" in follwing way. simpleWindow.addEventListener("popupMessage",windowClose); In popup i call the dispatchEvent in following way

  • JMenuBar Height

    Dear All, is there any way to increase the height of JMenuBar..? and Here i am using JFrame with JMenuBar i tried setSize() API but its not happing..! Thank you Balasundaram L