Hide domain fixed values for future use

We have  a custom domain with 7 fixed values.These Fix values will display if we click on f4 help in the screen.I dont want 4th value and 5th value in the f4 search help button.whether it is possible to hide those values for future use. if we delete the fix values from the domain fixed value list..then it is effecting the past data.Please help me on this.

Hi Prashanth,
Use FM : DDIF_DOMA_GET  to get the fixed values for that domain in an internal table, then you can process that internal table according to your requirement and display only those values, in AT SELECTION_SCREEN ON VALUE_REQUEST event in the report.
I hope it resolves your problem.
Thanks,
Avinash

Similar Messages

  • SQL Server 2012 Management Studio: Creating a Database and a dbo Table. Inserting VALUES into the table. How to insert 8 Values for future use in XQuery?

    Hi all,
    In my SQL Server 2012 Management Studio (SSMS2012), I tried to create a Database (MacLochainnsDB) and a dbo Table (marvel). then I wanted insert 8 VALUES into the Table by using the following code:
    USE master
    IF EXISTS
    (SELECT 1
    FROM sys.databases
    WHERE name = 'MacLochlainnsDB')
    DROP DATABASE MacLochlainnsDB
    GO
    CREATE DATABASE MacLochlainnsDB
    GO
    CREATE TABLE [dbo].[marvel] (
    [avenger_name] [char] (30) NULL)
    INSERT INTO marvel
    (avenger_name)
    VALUES
    ('Hulk', 1),
    ('Iron Man', 2),
    ('Black Widow', 3),
    ('Thor', 4),
    ('Captain America', 5),
    ('Hawkeye', 6),
    ('Winter Soldier', 7),
    ('Iron Patriot', 8)
    I got the following error Message:
    Msg 110, Level 15, State 1, Line 5
    There are fewer columns in the INSERT statement than values specified in the VALUES clause. The number of values in the VALUES clause must match the number of columns specified in the INSERT statement.
    How can I correct this problem?
    Please kindly help and advise.
    Thanks in advance,
    Scott Chang
    P. S.
    The reason I tried to create the Database, dbo Table, and then to insert the VALUES is to learn the following thing:
    You can query the entire node tree with the following xquery statement because it looks for the occurrence of any node with the /* search string:
    DECLARE @x xml;
    SET @x = N'<marvel>
    <avenger_name>Captain America</avenger_name>
    </marvel>';
    SELECT @x.query('/*');
    You can query the avenger_name elements from the marvel_xml table with the following syntax:
    SELECT xml_table.query('/marvel/avenger_name')
    FROM marvel_xml;
    It returns the following set of avenger_name elements:
    <avenger_name>Hulk</avenger_name>
    <avenger_name>Iron Man</avenger_name>
    <avenger_name>Black Widow</avenger_name>
    <avenger_name>Thor</avenger_name>
    <avenger_name>Captain America</avenger_name>
    <avenger_name>Hawkeye</avenger_name>
    <avenger_name>Winter Soldier</avenger_name>
    <avenger_name>Iron Patriot</avenger_name>
    You can query the fourth avenger_name element from the marvel_xml table with the following xquery statement:
    SELECT xml_table.query('/marvel[4]/avenger_name')
    FROM marvel_xml;
    It returns the following avenger_name element:
    <avenger_name>Thor</avenger_name>

    Hi Scott,
    The master database records all the system-level information for a SQL Server system, so best practise would be not to create any user-defined
    object within it.
    To change your default database(master by default) of your login to another, follow the next steps so that next time when connected you don't have to use "USE dbname" to switch database.
    Open SQL Server Management Studio
    --> Go to Object explorer(the left panel by default layout)
    --> Extend "Security"
    --> Extend "Logins"
    --> Right click on your login, click "propertites"
    --> Choose the "Default database" at the bottom of the pop-up window.
    --or simply by T-SQL
    Exec sp_defaultdb @loginame='yourLogin', @defdb='youDB'
    Regarding your question, you can reference the below.
    SELECT * FROM master.sys.all_objects where name ='Marvel'
    --OR
    SELECT OBJECT_ID('master.dbo.Marvel') --if non empty result returns, the object exists
    --usually the OBJECT_ID is used if a if statement as below
    IF OBJECT_ID('master.dbo.Marvel') IS NOT NULL
    PRINT ('TABLE EXISTS') --Or some other logic
    What is the sys.all_objects? See
    here.
    If you have any question, feel free to let me know.
    Eric Zhang
    TechNet Community Support

  • Is there any RFC function module to read domain fixed value

    Hi,
    Is there any RFC function module to read domain fixed value from remote system in basis layer?
    As we cannot simply wrap DD_DOMVALUES_GET with a new RFC module,because remote system will not install our component, our wrap function module is not there.
    We may need a RFC fm from basis layer.

    HI,
    Try using Function Module:
    DD_DOMA_GET , If it is RFC enabled it can be used for reading the domain,
    Kindlly go through this link below:
    How to get "Fixed Domain Values" from other system by RFC-Call?
    Hope it helps,
    Regards
    Mansi

  • Fixed Values for Aggregates

    Hi, I'd like to know if anyone knows a way to have a range of fixed values for an aggregate?  I'd like to have the aggregate based on 0FISCYEAR 2003-2004.
    Any ideas, suggestions, workarounds?
    Thanks!

    Hi Kenneth,
    as it is not possible to have aggregates as you want, you can go with the following workaraound.
    Use Partinioning and use January 2003 to December 2004 as the partinioning parameters and use just 1 partition. With these settings you get 3 partitions for the cube. One for all data older than jan/03, one for all data younger than dec/04 and one for all data within your periods. For setting up the partitions the cube must be empty. Hope this helps
    regards
    Siggi

  • PriceSlider content item always having a fixed value for 'sliderMax' and 'sliderMax'

    Hi,
    I am using ATG-10.2
    I am trying to create the navigation with invoke assembler call (to contentCollection '/content/Shared/Guided Navigation') Everything goes well, except the price slider.
    sliderMin and sliderMax values are always having fixed values, even though there are products with higher prices than this range.
    Ex: This is how my content item looks like
    {enabled=true, @type=PriceSlider, name=Price, filterCrumb=com.endeca.infront.cartridge.model.RangeFilterBreadcrumb@d45e275, sliderMax=1500, sliderMin=0, priceProperty=sku.activePrice}
    But in this search result, there are product which have prices even beyond 10,000
    I hope that the properties I am accessing are correct (contentItem.sliderMin and contentItem.sliderMax).
    Does anyone has seen this before??
    Any solution to overcome this issue. ??
    NOTE: See the attached images here.
    https://qa.endecacommunity.com/questions/2429/priceslider-content-item-always-having-a-fixed-value-for-slidermax-and-sli…

    If you want to get better help post a [Short, Self Contained, Compilable and Executable, Example Program (SSCCE)|http://homepage1.nifty.com/algafield/sscce.html].
    Most of the code you posted is not relevant to your question/problem.
    Also you shouldn't name a JTextArea object jDescrLabel ?
    That's confusing for someone else reading your code.
    Why not use jDescrTextArea ?

  • Checking domain fixed values

    I have a screen field in a dynpro where the domain has a fixed value range. The values shows up in the F4 help, but I can't figure out the best way to validate it in the PAI short of hardcoding, which I'd like to avoid.
    Take for example a domain with possible values 'A', 'B', 'C', '1', '2' or '3'. These values pull through to the search help but I also need to validate manual user input against this list.
    I understand the DDIC attribute for a screen element can do this, but that's not an option in this case as the name of the field does not match the name of a dictionary field. Any other suggestions?
    Thanks

    >
    Chris wrote:
    > I have a screen field in a dynpro where the domain has a fixed value range. The values shows up in the F4 help, but I can't figure out the best way to validate it in the PAI short of hardcoding, which I'd like to avoid.
    >
    > Take for example a domain with possible values 'A', 'B', 'C', '1', '2' or '3'. These values pull through to the search help but I also need to validate manual user input against this list.
    >
    > I understand the DDIC attribute for a screen element can do this, but that's not an option in this case as the name of the field does not match the name of a dictionary field. Any other suggestions?
    >
    > Thanks
    If this field should only contain values from the domain fixed value range, why don't you make it into a drop down listbox field?  This would make manual input impossible and all they can do is select values from the drop down list.

  • Define Fixed Values for Texts

    Hello,
    Using customizing for text schema, it is possible to define fixed values for texts from SRM document.
    Nevertheless, when you define fixed values for a transaction type, field "Fixed Value for a Text" is a CHAR30 data type.
    Is there a way to add a customer field in order to use it in the drop-down list instead of the standard one ?
    Our aim is to have at header PO level a specific document text and to transmit it to R/3, but those texts can go to CHAR80.
    Previously, i tried to add my specific document text (using a specific search-help) into the text area (in this case, i don't have any fixed values) which is CONTAINER_LONGTEXT.
    But this field is an implementation class, and i don't know how to populate this area.
    Any suggestions are welcome.
    Regards.
    Laurent.

    Hi,
    I tried to update PO for its longtext (with standard function module) using obtained value with my search-help, but i did not succeed yet.
    Any ideas ?
    Regards.
    Laurent Burtaire

  • I keep getting This page has been reserved for future use when i try to login to the adobe business catalyst admin

    I'm trying to login to the adobe business catalyst for my website otterrise.co.uk.
    i keep getting
    This page has been reserved for future use
    I recently added the domain in site settings on the BC admin control panel and changed the nameservers with the registrar.
    is this only temporary? or do i need to upload the website again? (im uing adobe muse)
    Thanks

    Thanks for answering.
    i've used these three nameservers
    ns1.worldsecuresystems.com
    ns2.worldsecuresystems.com
    ns3.worldsecuresystems.com
    are they the correct nameservers to point to adobe business catalyst?
    i'll wait for 48 hrs... but just need to make sure im doing everything right.

  • How to make a photo STAY in the assets panel for future use for In browser editing?

    How to make a photo STAY in the assets panel for future use for In browser editing?
    When I delete a photo from a page, it does not stay in the assets panel. My client uses in browser editing daily. Once a week he changes a photo just for a day, then needs the previous photo to replace it. The original photo is not in the asset panel (or folder) for him to choose.
    When you upload a photo, it has an arrow in the asset panel. How do you use this as an asset?

    Sure ... right mouse click on  your page and choose 'Exclude Page from Menus' :-)

  • How do I drag an image or text box to the "workspace" off of my working file but where I can still see the image and text box for future use?

    How do I drag an image or text box to the "workspace" off of my working file but where I can still see the image and text box for future use?
    When I drag the item off of the trifold that I am creating, it just disappears but I still want to use it.  I just need to move it out of the way to modify other portions of the document.
    thanks,
    C

    Add another page below the current one to use as a storage area. You can't use the grey area around the page for storing items you want to use later.
    Go to the Pages Menu>Provide Pages Feedback if you would like to request this feature be added in future versions.

  • How can I export songs with full info (INCLUDING LYRICS) to file for future use? [x]

    Hi everyone,
    I got my new iPod touch 4th gen, and I spend literally all day to edit songs' info like Artist, Lyrics, Album... with like thousand songs.. Then I've tried to export them fully for future use as back up, but I could not find any option to do so. Exporting library and playlist only saves info for basic tags but no lyrics in it. So what should I do? I've tried iTunes Export and mp3Tag but I still could not do it.
    I would appreciate much any help for me to back up full information of songs for future use.
    Regards,
    [x]

    Thanks for the responses.
    I forgot to mention the dimensions I need the file to be at, sorry. Overnight Prints requires that the uploaded file be at 2.13 inches wide by 6.13 inches high (or 638 by 1838 pixels) at 300 dpi. I think I understand what Scott Falkner means by pixels are not a unit of measure. However, I have been using inches in Illustrator, with the file being set to the height and width (in inches) required by Overnight Prints.
    Here is what I have uploaded to Overnight Prints so far:
    - Illustrator file set to 2.13 inches wide by 6.13 inches high – Upload preview on Overnight Prints is correct size, but shows the bookmark as pixelated/blurry.
    - Saved above Illustrator file as copy: “Press Quality Preset” PDF – Upload preview on Overnight Prints is correct size, but the bookmark is still pixelated/blurry.
    - Exported same Illustrator file as a PNG (638 pixels wide by 1838 pixels high - 300dpi) – Upload preview on Overnight Prints is correct size, but shows the bookmark as pixelated/blurry.
    - Creating an Illustrator file at 638 by 1838 pixels makes any file that is uploaded preview on Overnight Prints as too large, but not pixelated/blurry (I think I now understand why, just covering all my bases).
    So, I guess my more specific question would be:
    How can I create a file that I can upload to Overnight Prints (TIF, PDF, JPG, EPS, PNG, or AI) that ends up at the dimensions (in inches) required, while not appearing (at least in the upload preview) as low resolution (pixelated/blurry)?
    Thanks in advance for any responses (especially to such a novice question).

  • HOw do I save a form once it is completed for future use in windows 7

    How do I save an adobe form once I have completed it for future use? I have windows 7 and the only option is to save a blank form.

    That could be caused by a couple of reasons.
    If it is an IRS form, they use a server side solution to enable forms so Reader users can save them. It's very expensive and word is that they have not updated this solution to work with the latest versions of Reader. So you would have to use the older version.
    With the new version of Acorbat, people can now enable forms so Reader users can save them (which is a much cheaper solution than the above scenario) but you need Adobe Reader 7 or better to use this function.

  • How do I make groups for texting multiple people at a time and retain that group for future use?

    How do I make goups, in Contacts, for texting multiple people at a time and retain that group for future use?

    How do I make goups, in Contacts, for texting multiple people at a time and retain that group for future use?

  • How do I preserve folder views for future use?

    When I open any folder it seems to use the view of the previous folder.  In windows 3.1, ME and XP I could set the view for each individual folder and it would be saved for future use.  I want the folders at the top of my stored image hierarchy
    to show me the list view and the folders below them that contain actual images to show me thumbnails.  Instead I have to reset them every time I open them.  Am I doing something wrong or have the MS(H)IT people screwed up this OS, too?
    I am sending this to "Sandbox forums" because I no idea where to send it.  Not one of the choices you offer make any sense to me.  I just want to make this benighted software easier to use.  If this comes to the worng place please forward
    it for me.

    Hello,
    This should have been asked in the
    Windows forum on Microsoft Community.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • HT3529 can you set up and save groups of more than 10 contacts for imessages for future use?

    can you set up and save groups of more than 10 contacts for imessages for future use?

    It can be done by creating a contact for that group which includes all their email addresses all separated by a comma or semicolon. You may have to format it just right depending on the email service you're using. Also, you will have to type this out in Notes first in order to be able to get the punctuation in there, then copy & paste the entire list into the email field of the new contact.

Maybe you are looking for