How to force BDC to accept individual selection array entries in a pulldown

I'm calling the HUMO transaction from an ALV program passing the handling unit single values (RSCSEL-SLOW(01, 02, 03...09)).  When you execute the transaction, at the initial selection screen, the Handling Unit box appears empty.  However, if you click to open the box for the single values, ranges, excluded single values, excluded ranges, you see the values in the single values.  At that point, you must click on the slider bar to get them accepted.  You can then execute the HUMO transaction so that it will use the single values.  If you don't step in and click on the boxes, the transaction will not see them.
Is there something that can be passed that will force the transaction to recognize those values without having to click on them?
thx
Mike DeGuire

Naresh,
Thx for the tip.  When the code runs, it populates the field beautifully, but when you press the execute button, it returns without executing the transaction.  I've put your code in a test program:
report z_test_print_barc.
tables vekp.
select-options r_hnum for vekp-exidv.
SAP DEveloper NEtwork tip
   ranges: r_hnum for vekp-exidv.
   loop at h_lenum.
     r_hnum-sign   = 'I'.
     r_hnum-option = 'EQ'.
     r_hnum-low    = h_lenum-lenum.
     append r_hnum.
   endloop.
    submit rhu_help with selexidv in r_hnum
    via selection-screen
    and return
    exporting list to memory.
I populate the select-options r_hnum with some data from the clipboard and when the submit is executed, it populates the screen, but  will not execute the transaction.
Ideas?
thx,
Mike

Similar Messages

  • How to force IE7 to accept transparency for an iframe ?

    When using Firefox, the following iframe is transparent by
    default :
    <div id="mainContent">
    <iframe src="shop/index.php" name="main" width="820"
    height="550" frameborder="0" id="if_main"></iframe>
    </div>
    However, the same iframe is displayed in white (not
    transparent) wih IE7.
    Is it a solution to force IE7 to accept transparency for the
    iframes ?
    Thank you in advance for your help.
    PS: the allowtransparency option doesn't work !

    It works. Try this:
    <iframe src="shop/index.php" name="main"
    allowtransparency="true"
    width="820" height="550"
    frameborder="0" id="if_main"></iframe>
    Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com

  • How To Enable a List Box To accept  Multiple Selection

    Dear all,
    How can I enable a List box to accept multiple selection.If any body can please help me.
    Thanks a bunch in advance
    Regards
    Rakesh

    The only problem is, the XML form data only contains the first selection made. All others are discarded. This is the first thing I've ever done with the Life Cycle Designer but the product seems somewhat in a version 1 state. Lots of features but no depth. Any suggestions about the XML?

  • How to force Outlook's Junk email fitler to not filter Exchange 2010 SP1 accepted domains?

    Hello,
    I wonder if there really is no way how to reach the result described in the title question. Because
    http://support.microsoft.com/kb/2458522 says:
    This issue occurs because of a functionality change that is introduced in Exchange Server 2010 SP1. In Exchange Server 2010 SP1, domains that are configured as accepted domains are no longer allowed in the junk email lists of a mailbox.
    So please tell us Microsoft how can we force Outlook to accept internal domain as a trusted senders and not apply Junk email filter on it?
    There was already a long discussion about the steps here
    http://social.technet.microsoft.com/Forums/en-US/outlook/thread/15f857c6-0ed4-4004-9d90-cb5d16361752 so please don't offer anything described there.
    Thank you,

    Trying to deal with the Outlook Junk Email Filter is not very easy and had been a pain in the butt.
    The ONLY way to ensure the Outlook 2010 Junk Email filter honors "white listed" emails is to stamp the email with SCL -1. Setting a transport rule will do that but it is not very flexible. 
    I was able to resolve these issues by simply enabling the Exchange 2010 Anti-Spam agents on each hub transport server. We have no Edge Server but we use a couple of Ironports at the gateway which provide the bulk of AntiSpam. We didn't think we would
    need the Exchange AntiSpam so we hadn't initially enabled. After months of trying to resolve people's complaints of emails from internal system ending up in Junk, this solution worked for us.
    This is the order in which it was done.
    1. We set the receive connectors for the internal systems for bypassing Anti Spam. We basically have 2 receive connectors, one for internal system with no relay, and one for internal systems who are allowed external relay.
    Get-ReceiveConnector "server\name of the recieve connector" | Add-ADPermission -User "“NT Authority\Anonymous Logon”  -AccessRights ExtendedRight
    -ExtendedRights ms-exch-bypass-anti-spam
    Note: If you use SMTP Authentication, Exchange will only mark the emails as "Internal" and not assign a SCL of -1. It can only be on anonymous connections.
    Note: We have a separate receive connector for the Ironports delivering external email that will not bypass Anti-Spam. These emails will receive a SCL rating of 0-9
    2. We set the global SCL to 6 (default is 4). You can set it to whatever you want.
    Set-OrganizationConfig -SCLJunkThreshold 6
    So basically, any email tagged with SCL 7-9 will be moved to Junk by Exchange.
    3. Set-ContentFilterConfig -SCLQuarantineEnabled $False -SCLDeleteEnabled $False -SCLRejectEnabled $False
    We don't want delete, reject or quarantine anything on Exchange. Just move email to Junk folder if SCL 7-9 and have user deal with it.
    4. Set the Internal SMTP Servers by adding each Exchange server's IP Address to the Global Transport Settings. I used EMC, Organization Config, Global Settings, Transport Settings properties, Message Delivery tab. Do NOT add any other "internal" servers
    here, only the Exchange servers.
    5. Then we installed the AS agents on each HT Server.
    Starting with the first server
    Stop MSExchange Transport service
    D:\Program Files\Microsoft\Exchange Server\V14\Scripts>.\install-AntispamAgents.ps1
    After installation, disable all the agents except for Content Filtering Agent. This agent has to be enabled for Exchange to stamp the email with SCL -1. I used EMC, Organization Config, Hub Transport. You will see a new tab called Anti-Spam. Disable everything
    except Content Filtering.
    Start MSExchange Transport service.
    Repeat on each HT server. (You won't have to repeat the disabling of the agents as that is a global setting)
    6. You can add global safe senders by doing the following.
    $list = (Get-ContentFilterConfig).BypassedSenders
    $list
    $list.add("[email protected]")
    $list.add("[email protected]")
    Set-ContentFilterConfig -BypassedSenders $list
    The message headers are stamped with
    For emails sent through the Internal connector
    X-MS-Exchange-Organization-Antispam-Report: MessageSecurityAntispamBypass
    X-MS-Exchange-Organization-SCL: -1
    OR
    For external emails from a safe sender
    X-MS-Exchange-Organization-Antispam-Report: ContentFilterConfigBypassedSender
    X-MS-Exchange-Organization-SCL: -1
    OR
    For all other external emails
    X-MS-Exchange-Organization-SCL: 0
    Good Luck. This has basically stopped all the calls about "legitimate" email in Junk Email folder.

  • I want to share my itunes with my daughters iPad, we have different usernames, how am I able so she can select tunes individually to transfer

    i want to share my itunes on my I mac with my daughters iPad, we have different usernames, how am I able so she can select tunes individually to transfer to her ipad

    You can sync multiple I tunes account from the same mac.  You will need to authorize the account on the mac.  Then you can share tunes and books across devices.  just take you time when you connect and make sure you are setting up the sync criteria for the right device. 
    If you share apps, the originating itunes account goes with the app, so updating can get problematic, but it is pretty seamless with tunes and books. 
    You can also sync photos from the same master i photo system.
    On each devise, you identify what you want to sync, and I tunes will remember them as seperate entries, so the next time you plug it, it will be starting from what you selected last time.

  • How do I select all clips in a large project with out individually select each clip?

    I have a large project with ~1000 clips (still jpgs).  My question is how do I select all of the clips without individually selecting each clip?

    Chris
    Thanks for the reply with additional information.
    The suggestion given would be applicable to your Premiere Elements 12 on Windows 7.
    As an aside, have you updated 12 to 12.1 yet? If not, please do so using an opened project's Help Menu/Update. The major perk of the update
    is that it corrects an Expert workspace Text/Style issue. There are other less defined advantages included.
    Please let us know if the suggestion for Select All worked for you.
    Thanks.
    ATR

  • How can I text an entire group without individually selecting each contact.

    How can I text an entire group without individually selecting each contact.

    How can I text an entire group without individually selecting each contact.

  • How to force the "Bluetooth Communicat​ions Port" to be one of COM1 to COM8 ports?

    Dear Lenovo Community, Happy Holidays to you all and wish you a great happy new year. Recently purchased a Bluetooth OBDII device and have difficulty making it to work with its provided software on my T61 (running original XP Home). My short story and question/problem is that I can open "My Bluetooth Places" and pair with the OBDII device as an "OBDII SPP Dev", but my T61 assigns serial port COM19 to it. The OBDII software which came with the device only can let user set to one of the COM1 to COM8 ports and in the properties of Bluetooth pairing, there is no way that I can select which COM port to use. I looked at the Device Manager and I do see these COM port assignments: COM4,5,6,7: Sierra Wireless (the HSDA modem in the laptop which I have never used BTW) COM 9,10,11,12,13,14,15,16,17: Bluetooth Serial Port COM 18, 19: Bluetooth Communications Port and I don't see anything for COM1,2,3, and 8 My question is how to force the computer/OS to assign one of the COM1 to COM8 ports to my device upon pairing? Can I disable the Sierra Wireless model from the COM ports list and hope this will happen? Thanks for your help and inputs beforehand. Regards, AL

    Hi, AL_K
    Have you attempted to change the port number in device manager itself? If you navigate to Device Manager and open the list of Ports, you can right-click on the device you wish to assign a different port number. After right-clicking, click Properties. There should be a tab called Port Settings. In here, you should find a setting to manually assign a port number.
    Good luck, and let me know how it goes,
    Adam
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution!" This will help the rest of the community with similar issues identify the verified solution and benefit from it.

  • How can you find out an individual image size from multiple images on a canvas

    This is probably a really really simple question but I can't for the life of me find how I can find out an individual image size from multiple images on a canvas. eg I have 3 photos i want to arrange 1 large and the other two next to it half the size. How can I edit individual image size on the canvas as when I select the image on a sperate layer I want to resize it just resizes the entire canvas and not the individual image
    Thanks

    I want to know they exact dimensions though. You can get them by dragging to the 0,0 corner and then reading off of the ruler scale on the sides but its fiddily as you have to zoom right in and work it out. I know in photoshop there is a ruler but is there any other way in Elements?

  • Please  Help me How write the BDC program for the MIGO inbound Delivery

    Please help me how to write bdc program for the MIGO Inbound Delivery in 4.7EE Version. Please help me.
    Not in LSMW.  Required call transaction or Session Method. Please help me.
    Mohan

    Run transaction BAPI . Select Logistics Execution/Shipping/InboundDelivery/SaveReplica.. You can use function module BAPI_INB_DELIVERY_SAVEREPLICA in your ABAP program.

  • How do I add text to individual slides in slideshow to make a caption?

    How do I add text to individual slides in a slideshow in order to make a caption on each slide?

    It will depend on the theme you are using for the slide show.
    For some themes you can add custom text or metadata to the slide as captions, for example the "Classic" theme.  Use the "Selected Slides" tab and enable "Text".

  • My husband and I have done the recent update and we now share contacts and safari bookmarks.  How do I go back to individual users?

    My husband and I have done the recent update and we now share contacts and safari bookmarks.  How do I go back to individual users?

    LLL2012 wrote:
    Yes it is the same and it is greed out so it can't be changed there.
    Go to Settings\Mail, Contacts, Calendars\Add Account  (select iCloud)
    You can create a new account here  ("Get a Free Apple ID" at the bottom) or switch it to another existing account you may have (separate from your Husbands).
    Once you tie your phone into the separate account you can go back and delete your Husbands on your phone.

  • How to force english language for VC BI Iview

    Hi,
    All developments in BI system are english so when users launch VC BI Iview from the portal what ever the logon language in the portal we would like that users get results in english.
    In the VC iview, for parameter Forced Request Language we select value English but it doesn't work.
    We don't find other iview parameter which allows to do that.
    With BEX WEB template iview, we can do that by setting LANGUAGE=EN for parameter Application Parameters in the
    iview.
    Do you know how to force English language for VCBI Iview ?
    Thanks in advance for your help.
    Mai

    Hello,
    If you use Delta Links between your portal objects (role, workset, page, iview), make sure that the Forced Request Language is set to "English" on the linked iView (which is only accessible from the page, from the workset, from the role...)
    Regards
    Arnaud

  • How to display data from Database individually??? Anyone can help ?

    HI,
    i i had select a row of data from database using ,
    /* Query * From Table RESOURCEORDER where po = selected no and project = selected project */
         public ResultSet getAllData() throws SQLException
         getConnection();
         Statement stmt = conn.createStatement();
         ResultSet rs = stmt.executeQuery("SELECT * FROM RESOURCEORDER WHERE PROJECT = '" + getSelProject() + "' and PURCHASEORDERNO = '" + getPo() + "'" );
         return rs;
    After that , how do i display the data individually ?
    Eg select data is ('projectA','7891203-1', '10-4-2005','lcd',2000,'121-45217-8','electrical','pending','donwong')
    i want to display them individually, like this in a page
    Projectname: /* should display the Project A*/
    P.O no:
    Date:
    Order:
    Cost:
    Acc no:
    Type:
    status:
    Orderedby:
    Can anyone help ? cos i'm new to JSP ......Thanks alot!!!!!
    Regards,
    khim

    I assume PO being a unique key, will always return 1 row from db.
    public String[] getAllData() throws Exception
    getConnection();
    Statement stmt = conn.createStatement();
    ResultSet rs = stmt.executeQuery("SELECT * FROM RESOURCEORDER WHERE PROJECT = '" + getSelProject() + "' and PURCHASEORDERNO = '" + getPo() + "'" );
    String [] returnValue = new String[9];
    while(rs.next())
    returnValue[1] = rs.getString("colname");
    returnValue[2] = rs.getString("colname");
    ///and so on
    return returnValue;
    }Once you get that you could individually view it by setting a loop to run through the returned array.
    Hope it helps

  • How to force OSX to connect to a specific Access Point i.e. manually choosing beetween different APs with the same SSID?

    My office room is near different APs with the same SSID, my Snow Leopard selects automatically to join the AP with stronger signal.
    But this AP isn't running well, so I want to force my mac to join a AP with weaker signal.
    (I've the same troubel as described in https://discussions.apple.com/message/6470508#6470508)
    Note that I'm a guest user and I hanen't access to APs, so I cannot change their SSID.
    Any idea how to force Mac to join a specific AP?
    Thanks,
    adso

    My office room is near different APs with the same SSID, my Snow Leopard selects automatically to join the AP with stronger signal.
    But this AP isn't running well, so I want to force my mac to join a AP with weaker signal.
    (I've the same troubel as described in https://discussions.apple.com/message/6470508#6470508)
    Note that I'm a guest user and I hanen't access to APs, so I cannot change their SSID.
    Any idea how to force Mac to join a specific AP?
    Thanks,
    adso

Maybe you are looking for

  • CoreServices.framework for the device profile

    I am trying to recompile my project to deploy it to the device ( first time). However CoreServices.framework is showing in red, and my project does not compile, complaining about: #error "Unknown architecture." in FixMath.h . Is there a different nam

  • Updating a custom table

    I am trying to update a custom table in BW with the following statement. UPDATE customtable FROM TABLE ITAB1. itab1 has entries but the customtable is not getting updated do i need to use any commit statement for that.

  • An error occurred saving the images to the chosen file location

    I am trying to save the scans from my HP Officejet 6500.  I receive the following error message: An error occurred saving the images to the chosen file location. I have Win 7. I can scan and save if I choose to use the picture option but I can't use

  • Can't purchase from the iTunes store - "unknown error (-450048)"

    I can connect to/browse the store fine, but I get this message every time I try to purchase/pre-order something: "We could not complete your iTunes request. An unknown error occurred (-450048)." "There was an error in the iTune store. Please try agai

  • Two Macs using separate Time Capsules on same network - The operation couldn't be completed. (OSStatus error 2.)

    Six hours of configuration and I'm out of ideas. Here's the layout: Cisco Cable Modem connects to my ISP. It uses DHCP to distribute IP addresses which is necessary as ethernet throughout the house is piggybacked on coax and the ethernet to coax adap