How to have logical expression with value '*' not wildcard '*'

Hi ,
    I have requirement where i have to filter records based on a field with value  EQ '' but strangely it is taking wildcard '' in the production system. In the Dev system it is taken as exact value '' but behaves as a wild card in prod system. Please advice a sure shot change which will work in both the environment as i am on a strict deadline for this. Will a usage of CONSTANT work ? Constant : val   type c value "".
Regards
Tashi

Hi,
Check the bellow code which will help you in using wild card in searcg help.
DATA: ls_selopt         TYPE ddshselopt,                                  
        ls_t006a          LIKE t006a.                                        
TYPES:lv_range          TYPE char45.
CALL FUNCTION 'F4UT_PARAMETER_VALUE_GET'
      EXPORTING
        parameter         = lc_old_mat
      IMPORTING
        value             = lv_dummy
      TABLES
        shlp_tab          = shlp_tab
        record_tab        = record_tab
        selopt_tab        = lt_sel_opt
      CHANGING
        shlp              = shlp
        callcontrol       = callcontrol
      EXCEPTIONS
        parameter_unknown = 1
        OTHERS            = 2.
    IF sy-subrc <> 0.
      EXIT.
    ELSEIF NOT lv_dummy IS INITIAL.
      lv_old_filled = 'X'.
    real backend system ?
      MOVE 'I'          TO ls_old_mat_ranges-sign.
      MOVE 'EQ'         TO ls_old_mat_ranges-option.
      MOVE lv_dummy(10) TO ls_old_mat_ranges-low.
      APPEND ls_old_mat_ranges TO lt_old_mat_ranges.
    ELSEIF NOT lt_sel_opt[] IS INITIAL.
      lv_old_filled = 'X'.
      LOOP AT lt_sel_opt INTO ls_sel_opt.
      no select in case of 'all systems'
        IF ls_sel_opt-low EQ '*'.
          DELETE lt_sel_opt.
        ELSE.
        wildcards
          MOVE-CORRESPONDING ls_sel_opt TO ls_old_mat_ranges.
          APPEND ls_old_mat_ranges TO lt_old_mat_ranges.
        ENDIF.
      ENDLOOP.
    ENDIF.
Regards,
Goutam Kolluru.

Similar Messages

  • I have just bought a 2011 iMac (2.5 ghz, 4gb) and logic express 9, and when i installed logic and tried to run it i had a message saying 'you can't use this version of the application logic express with this version of Mac OS X. How do i sort this out!?

    I have just bought a 2011 iMac (2.5 ghz, 4gb) and logic express 9, and when i installed logic and tried to run it i had a message saying 'you can't use this version of the application logic express with this version of Mac OS X. How do i sort this out!? It is very frustrating as the main reason i have bought  a mac is to use logic! Any help would be great as i am a complete novice when it comes to Macs!

    You're probably on OS X Lion?
    I had the same problem as you. I used Software Update to update Logic Express to the latest version, and then it ran without any problems.

  • HT5312 So I have a problem with iTunes not letting me download anything without first responding to some security questions which I don't remember setting up, how can fix it? Oh, and it won't let me reset the questions either!

    So I have a problem with iTunes not letting me download anything without first responding to some security questions which I don't remember setting up, how can fix it? Oh, and it won't let me reset the questions either!

    If you mean that you aren't getting the reset link, then from the page that you posted from :
    Note: The option to send an email to reset your security questions and answers will not be available if a rescue email address is not provided. You will need to contact iTunes Store support in order to do so. 
    You can contact iTunes Support in your country via this page : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps half-way down the HT5312 page that you posted from to add a rescue email address for potential future use

  • How to install Logic Express 9 without disc

    Hi,
    I am awaiting arrival of my Retina MacBook Pro, I have logic express 9.1.0 on disc, I was just wondering how I am able to install logic express (as it is not in Mac App Store) and use my serial??
    Regards,
    David

    If you have another computer with an internal drive you can enable "DVD or CD Sharing" to install to your RMP:
    http://support.apple.com/kb/HT5287?viewlocale=en_US&locale=en_US
    You could also use an external drive, e.g. Apple's Superdrive:
    http://store.apple.com/us/product/MD564ZM/A?fnode=5f

  • Logic Express with MBox

    Can someone please help.Can I use Logic Express with an MBox and if so how.

    Hey Roma,
    welcome to the forum!
    Assumming you had the drivers installed, (in Logic) go to the audio menu>audio hardware & drivers>Driver (change from built in audio to Digidesign HW (MBox), Relaunch, that's it.
    ((Click on (say) audio 1 (to select track) Press R to arm it and you shoud now have sound level on metters. Don't forget the I/O in logic is audio 1 = input 1, audio 2 = input 2, audio 3 = input 1, audio 4 = input 2 and so on (by default))
    Kiddly regards,
    Jorge

  • Logic express 9 will not work on Lion

    and the update cannot find the app in Applications. also the icon of LE9 has a grey circle with a line through it
    Please help!

    Hi
    You need to be running version 9.1.4 or later with Lion OS
    http://support.apple.com/kb/HT4807
    For the updaters to work, the Logic Express application must be:
    a) Named "Logic Express" with no numbers or spaces at the end of the name
    b) Inside the Applications folder, but not inside any other subfolder
    CCT

  • How to Ugrade Logic Express

    I have Logic Express 7.0.1
    How do I upgrade to 7.1 and 7.2?
    Thanks
    Rob

    Buy it for a small fee from an Apple Store if you can find one stocking it. They pulled it due to lack of stocks a while ago, which started a "Logic 8?' swoonfest, but I gather it is still available.
    You will need to send your original DVD in as proof of ownership afaik.
    Paul.

  • HT204150 I linked my outlook express with icloud, not realizing it would change my outlook express contacts.  I deleted email addresses from my iphone which in turn deleted them from my PC.  Is there any way to get these addresses back?

    I linked my outlook express with icloud, not realizing it would change my outlook express contacts.  I deleted email addresses from my iphone, not wanting them there which in turn deleted them from my PC.  Is there any way to get these addresses back? Seems I no longer have an outlook contacts list.

    It's Outlook, not Outlook Express (different program) and if you have now deleted them from iCloud and do not have a backup they are gone.

  • IF_IXML : How can i add encoding with value UTF-8 to the document object??

    Hi
    i want to create a xml file with the following content:
    <?xml version="1.0" encoding="UTF-8"?>
    <OpenSearchDescription xmlns="http://...."> 
    </OpenSearchDescription>
    i did this with the if_ixml interface and rendered the content in a file 'D:\usr\sap\IFD\DVEBMGS01\log\TEST_out.xml
    <?xml version="1.0"?>
    <OpenSearchDescription xmlns="http://...."> 
    </OpenSearchDescription>
    BUT the document attribut(?) encoding="UTF-8"?> is missing!
    How can i add encoding with value UTF-8 to the document object?? it should look like:
    <?xml version="1.0" encoding="UTF-8"?>
    *here is my coding.
    TYPE-POOLS: ixml.
    CLASS cl_ixml DEFINITION LOAD.
    DATA: lo_ixml           TYPE REF TO if_ixml,
          lo_streamfactory  TYPE REF TO if_ixml_stream_factory,
          lo_document       TYPE REF TO if_ixml_document,
          lo_parent         TYPE REF TO if_ixml_element,
          lo_ostream        TYPE REF TO if_ixml_ostream,
          lo_renderer       TYPE REF TO if_ixml_renderer,
         lv_rc           TYPE i.
    lo_ixml = cl_ixml=>create( ).
    lo_streamfactory = lo_ixml->create_stream_factory( ).
    lo_document = lo_ixml->create_document( ).
    lo_parent = lo_document->create_simple_element( name   = 'OpenSearchDescription'  "root node
                                                    parent = lo_document ).
    lo_parent->set_attribute_ns( name   =  'xmlns'
                                 value  = 'http://....' ).
    *rausrendern in file
    lo_ostream = lo_streamfactory->create_ostream_uri( system_id = 'D:\usr\sap\IFD\DVEBMGS01\log\TEST_out.xml' ).
    lo_renderer = lo_ixml->create_renderer( ostream  = lo_ostream
                                            document = lo_document ).
    lv_rc = lo_renderer->render( ).
    Thanks for help
    Britta

    Use the following code:
    set an document encoding
      l_encoding = l_ixml->create_encoding( character_set = 'UTF-8'
                                            byte_order = if_ixml_encoding=>co_none ).
      l_success  = l_ostream->set_encoding( encoding = l_encoding ).
    create a xml renderer
      l_renderer = l_ixml->create_renderer( document = l_doc ostream  = l_ostream ).

  • Digital outs in Logic Express with 828 or 002 rack

    Can someone tell me if it is possible to use the digital ins and outs of either my MOTU 828 or DIgi 002 rack with LE? It's no where as easy as Pro tools or DP!!

    Forgive my naivety... when you say "digital outs" are you talking about SPDIF? Does this mean I can't run Logic Express with an interface connected to the SPDIFs on my G5? Only Pro? Or am I off the mark?
    Thanks!

  • I have ongoing problems with "application not responding" in various programmes, ie Word, Excel, Illustrator, Photoshop, iPhoto etc. I recently subscribed to CC but the problem still persists. Any advice please?

    I have ongoing problems with "application not responding" in various programmes, ie Word, Excel, Illustrator, Photoshop, iPhoto etc. I recently subscribed to CC but the problem still persists. Any advice please? This applies to my iMac and my macbook air! I'm using OSX Version 10.9.3

    Hi Shauneenb,
    Welcome to the Apple Support Communities!
    If you are having issues with multiple applications becoming unresponsive I would suggest the steps in the following article, including starting in safe mode.
    OS X Mavericks: If an app freezes or quits unexpectedly
    http://support.apple.com/kb/PH13975
    I hope this helps,   
    -Joe

  • How to have a table with table headers eventhough table is into Scrollpane?

    How to have a table with table headers eventhough the table is placed in the scrollpane?
    This is because when i place my jtable into the scrollpane the table headers aren't showed.
    I have read that i need to override:
    configureEnclosingScrollPane() from jtable.....and with:
    JViewport viewport = scrollPane.getViewport();
    viewport.getView()
    i think that i can reach it....but i don't know how to integrate it...to reach to have my jtable into a jscrollpane wiht the same headers of my jtable......
    Could somebody help me please?......
    Thanks,
    Mary

    How to have a table with table headers eventhough the table is placed in the scrollpane?
    This is because when i place my jtable into the scrollpane the table headers aren't showed.
    I have read that i need to override:
    configureEnclosingScrollPane() from jtable.....and with:
    JViewport viewport = scrollPane.getViewport();
    viewport.getView()
    i think that i can reach it....but i don't know how to integrate it...to reach to have my jtable into a jscrollpane wiht the same headers of my jtable......
    Could somebody help me please?......
    Thanks,
    Mary

  • How do I fix issue with computer not authorized yet when authorized it indicated already authorized?

    How do I fix issue with computer not authorized yet when I go to I-Tunes to authorized it indicated already authorized?

    I updated to iOS 5.0.1 days ago and didn't receive that notification until just now...
    This time I synced new photos I took yesterday, and it gave me the:
    "iTunes Sync: 54 items could not be synced. See iTunes for more information"
    Perhaps it kicks off when new items get synced.
    I've decided to rent a movie yesterday. Once it gets deleted, I'm curious to see if it jumps to 55 items.

  • Help! Logic Express 8 does not work on my Mac Pro with OS 10.5.1

    Hello, I hope somebody around here is able to help me.
    I have got a new Mac Pro with one Quad core processor since yesterday and it works fine except for Logic Express 8 (version 8.0.1). Whenever I start Logic the program crashes as soon as "Core Audio initialisieren" is shown in the display. I have tried to reinstall the program, deleted it completely and installed it again. It is always the same.
    Has anyone else experienced this problem? What can I do about it? I am a musician and I really need Logic Express to run.

    Confused. 10.6 is DVD based. Only Lion and above are downloads.
    And best install is not to upgrade. Do a clean install  - on another drive.
    Corrupt partition tables or bad sectors or no room to adjust the partitions or the directory is corrupt.
    ERASE the drive if Repair Disk didn't work.

  • How do I write harmonies with different note values?

    I'm new to GarageBand and have been working with the score on the software grand piano.  At first, I'll write a melody line and then go back to add harmony.  When I try to add a harmony that has a different rhythm, GarageBand automatically changes the melody to match the rhythm of the harmony.  I'm trying to write the parts in the same staff so that the piano part can all be printed on the same page.  Any thoughts/help on how to write the piece with different rhythms in one measure?

    Have you tried to click the clef to get two lines of notation? I enter the chords in the bass clef line, if I need a different rhythm, for example: Or make the edits in piano roll.

Maybe you are looking for