Adding selection Parameters to the POP-UP Screen

Hi my requirement is i need to add all the line items netweight and gross weight and need to show the total line items in a pop up window when i press enter after entering the line items in ME21N.
Here iam using the user exit : EXIT_sapmm06e_016 .
It is working fine But now i need to add selection parameters in this pop up window.
The two selection parametes are Shipping Point and Shipping Condition.
So how to add selection parameters in POP UP Screen and how it will be updated in ME21N Line items,.

in ur custom defined screen, you can add the selection parameter which wouldbe called within ZXM06U41.
Validate ur entries.. and you can make use of BAPI/ BDC to update those details in ME21N

Similar Messages

  • Printer Information from the pop-up screen

    Hi,
    On the SAP screen I work, we have an option to print (button called)  "print form".
    When clicking on this button, a pop-up screen is displayed to select the print devices and then
    option print the list of documents displayed on that screen.
    How do I get the information as which printer is selected on this pop-up screen ?
    Also,
    It would be helpful, if some one would tell me how to get the status of the printing job.
    If there was an error while printing or is it successfull ?
    Regards,
    Vijaya

    Go to SYSTEM --> SPOOL REQUESTS and you will find all the print jobs and also their status.
    The printer that gets selected in the pop-up screen can be because of the default printer for that user or because of some condition record.
    Default Printer :
    Go to SYSTEM --> USER PROFILE --> OWN DATA , in the screen that appears click on ATTRIBUTES tab. There is a Output device field. The printer appearing here is the default printer.
    hope it was useful.

  • Each time I connect my iPad to computer, the pop up screen on the computer will show another name not my iPad name. The name shown on iTunes in device are is my iPad name. How would I rename it? Please help!

    Each time I connect my iPad to computer, the pop up screen on the computer will show another name not my iPad name. The name shown on iTunes in device are is my iPad name. How would I rename it? Please help!

    Gotcha, sorry, I'm guessing you are referring to Windows Autoplay.  This should do it:
    Type regedit into your search bar and bring up Registry editor. Go to the the very top with My Computer. Now go to Edit and Find. Type in the whole offending name that is bugging you, i.e. Soandso's iPhone and hit find. After it searches your registry and finds the first name select it and Edit the Name. I copy/pasted it for all the next steps. After you have found the first name don't stop there. Use F3 to find next Name in registry and So on and so fourth until you have replaced every offending name in your whole registry with the Name you want to show up i.e. Tom's iPhone or whatever? Repeat all of these steps if you have more than one name showing up in your devices? Worked 100% for me. Close regedit and reboot (very important for changes.) Plug your iPhone back in and enjoy all your names back to normal.

  • Can I stop the pop up screen to show while receiving call ?

    Hello,
    When I paired my car kit (handfree) with my iPhone, the pop up screen will show up when I receiving a call ...
    http://gizmodo.com/gadgets/iphone/iphone-bluetooth-not-much-but-whats-there-is-c harming-274068.php
    Asking me whether I would like to use - handfree, iPhone speaker or iPhone. Can I set the handfree as a default without making the choice?
    Thanks

    When using a headset, answering a call from it is as simple as pushing the ANSWER button on the headset. The call should then be answered and the source automatically set to BT headset. No need to select the source using the iPhone. I suspect there is an ANSWER button on car hands-frees, but I don't know for sure, since I don't own one.

  • The green button, top left corner of a pop-up screen on MACbook, it's supposed to enlarge the pop-up to full MAC screen size, correct?  Mine does not.  Sometimes it makes the pop-up screen SMALLER.  Appreciate someone solving this for me.

    the green button, top left corner of a pop-up screen on MACbook, it's supposed to enlarge the pop-up to full MAC screen size, correct?  Mine does not.  Sometimes it makes the pop-up screen SMALLER.  Appreciate someone solving this for me.

    Are you talking about the green '+' button in the top left corner? That technically doesn't enlarge it. It switches the window from the default window size to the custom size you made. You can enlarge the window by moving your mouse to the bottom right corner of the window, and dragging until you get the size you want.
              MacBook

  • How to use multiple selection parameters in the data model

    Hi, after have looked all the previous threads about how to use multiple selection parameters , I still have a problem;
    I'm using Oracle BI Publisher 10.1.3.3.2 and I'm tried to define more than one multiple selection parameters inside the data template;
    Inside a simple SQL queries they work perfectly....but inside the data template I have errors.
    My data template is the following (it's very simple...I am just testing how the parameters work):
    <dataTemplate name="Test" defaultPackage="bip_departments_2_parameters">
    <parameters>
    <parameter name="p_dep_2_param" include_in_output="false" datatype="character"/>
    <parameter name="p_loc_1_param" include_in_output="false" datatype="character"/>
    </parameters>
    <dataTrigger name="beforeReport" source="bip_departments_2_parameters.beforeReportTrigger"/>
    <dataQuery>
    <sqlStatement name="Q2">
    <![CDATA[
    select deptno, dname,loc
    from dept
    &p_where_clause
    ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="G_DEPT" source="Q2">
    <element name="deptno" value="deptno"/>
    <element name="dname" value="dname"/>
    <element name="loc" value="loc"/>
    </group>
    </dataStructure>
    </dataTemplate>
    The 2 parameters are based on these LOV:
    1) select distinct dname from dept (p_dep_2_param)
    2) select distinct loc from dept (p_loc_1_param)
    and both of them have checked the "Multiple selection" and "Can select all" boxes
    The package I created, in order to use the lexical refence is:
    CREATE OR REPLACE package SCOTT.bip_departments_2_parameters
    as
    p_dep_2_param varchar2(14);
    p_loc_1_param varchar2(20);
    p_where_clause varchar2(100);
    function beforereporttrigger
    return boolean;
    end bip_departments_2_parameters;
    CREATE OR REPLACE package body SCOTT.bip_departments_2_parameters
    as
    function beforereporttrigger
    return boolean
    is
    l_return boolean := true;
    begin
    if (p_dep_2_param is not null) --and (p_loc_1_param is not null)
    then
    p_where_clause := 'where (dname in (' || replace (p_dep_1_param, '''') || ') and loc in (' || replace (p_loc_1_param, '''') || '))';
    else
    p_where_clause := 'where 1=1';
    end if;
    return (l_return);
    end beforereporttrigger;
    end bip_departments_2_parameters;
    As you see, I tried to have only one p_where_clause (with more than one parameter inside)....but it doesn't work...
    Using only the first parameter (based on deptno (which is number), the p_where_clause is: p_where_clause := 'where (deptno in (' || replace (p_dep_2_param, '''') || '))';
    it works perfectly....
    Now I don't know if the problem is the datatype, but I noticed that with a single parameter (deptno is number), the lexical refence (inside the data template) works.....with a varchar parameter it doesn't work....
    So my questions are these:
    1) how can I define the p_where_clause (inside the package) with a single varchar parameter (for example, the department location name)
    2) how can I define the p_where_clause using more than one parameter (for example, the department location name and the department name) not number.
    Thanks in advance for any suggestion
    Alex

    Alex,
    the missing thing in your example is the fact, that if only one value is selected, the parameter has exact this value like BOSTON. If you choose more than one value, the parameter includes the *'*, so that it looks like *'BOSTON','NEW YORK'*. So you need to check in the package, if there's a *,* in the parameter or not. If yes there's more than one value, if not it's only one value or it's null.
    So change your package to (you need to expand your variables)
    create or replace package bip_departments_2_parameters
    as
    p_dep_2_param varchar2(1000);
    p_loc_1_param varchar2(1000);
    p_where_clause varchar2(1000);
    function beforereporttrigger
    return boolean;
    end bip_departments_2_parameters;
    create or replace package body bip_departments_2_parameters
    as
    function beforereporttrigger
    return boolean
    is
    l_return boolean := true;
    begin
    p_where_clause := ' ';
    if p_dep_2_param is not null then
    if instr(p_dep_2_param,',')>0 then
    p_where_clause := 'WHERE DNAME in ('||p_dep_2_param||')';
    else
    p_where_clause := 'WHERE DNAME = '''||p_dep_2_param||'''';
    end if;
    if p_loc_1_param is not null then
    if instr(p_loc_1_param,',')>0 then
    p_where_clause := p_where_clause || ' AND LOC IN ('||p_loc_1_param||')';
    else
    p_where_clause := p_where_clause || ' AND LOC = '''||p_loc_1_param||'''';
    end if;
    end if;
    else
    if p_loc_1_param is not null then
    if instr(p_loc_1_param,',')>0 then
    p_where_clause := p_where_clause || 'WHERE LOC in ('||p_loc_1_param||')';
    else
    p_where_clause := p_where_clause || 'WHERE LOC = '''||p_loc_1_param||'''';
    end if;
    end if;
    end if;
    return (l_return);
    end beforereporttrigger;
    end bip_departments_2_parameters;
    I've written a similar example at http://www.oracle.com/global/de/community/bip/tipps/Dynamische_Queries/index.html ... but it's in german.
    Regards
    Rainer

  • Using wireless 4G Sierra dongle. how can I stop the pop up screen trying to modify configuration when I connect

    I am using wireless 4G Wireless Sierra dongle. I have a Mac Air. How can I stop the pop up screen trying to modify configuration when I connect. I can connect with no problems but I have to click 'cancel' (on pop up screen that says network needs to modify my configuration) sometimes as many as 50 times!!! very annoying as the pop up is in middle of screen & won't go away unless i click it. Thank you foray help!

    Contact the providers  technical support staff.
    Ciao.

  • Supression of progam attribute title getting printed in the POP up screen

    Hi,
    I am calling a screen (module dialog box type) in the module pool progam and than on that screen i am generating a list out displaying messages.
    When the screen is getting called the main program attribute tittle is gettting displayed before printing the messages.
    Please provide your suggestions regarding how to supress that attribute title getting displayed on the pop up screen.
    The code in the PBO of the pop up screen is
    PROCESS BEFORE OUTPUT.
    MODULE status_9120.
    MODULE WRITE_LIST_9120.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_9120.
    setting the PF status
    MODULE status_9120 OUTPUT.
      SET PF-STATUS 'Z9120'.
      SET TITLEBAR 'TITLE_9110'.
    ENDMODULE.                 " STATUS_9120  OUTPUT
    *&      Module  WRITE_LIST_9120  OUTPUT
    To display the error messages on the pop up screen
    MODULE WRITE_LIST_9120 output.
      SUPPRESS DIALOG.
    LEAVE TO LIST-PROCESSING." AND RETURN TO SCREEN 0.
       l_dynnr = SY-DYNNR.
       FORMAT COLOR COL_TOTAL INTENSIFIED OFF.
       LOOP AT t_result.
       WRITE:/ t_result-message.
       ENDLOOP.
    ENDMODULE.                 " WRITE_LIST_9120  OUTPUT
    MODULE USER_COMMAND_9120.
    As mentioned above before displaying the contents of the table t_result the code is displaying the progam attribute title.
    Also provide suggestion whether this can be done by any other method.
    Thanks,
    Mohit

    Hi
    Once you have set a title, it remains active within the transaction until the next SET TITLEBAR statement.
    Use SET TITLEBAR. (without any title. This will reset the title)
    Regards
    Raj

  • How to handle the pop-up Screen in LSMW - Recording

    Hi,
       I am doing the LSMW-Recording for Pricing Conditions.there are so many condition types are there.
    my problem is while uploading the data from flat file,if record alredy exists in SAP system, it will display one Pop up screen,  says "the record already exists do you want to overlap it".so that time it has to hit enter and has to overlap the existing records.
    can any one please help me..this is very urget to me.
    Points will be awarded for correct response.
    Thanks,
    Shobha

    Hi,
    Go to Maintain Field Mapping and Conversion Rules
    Insert coding at __BEGIN_OF_PROCESSING.
    Like:
    Select .....
    if sy-subrc = 0. "Record found
      skip_record.
    endif.

  • How do I select which bluetooth speakers to play out of? My iPod connects to both kitchen and living room speakers. My old iPod had a selection icon on the now playing screen, but my new one doesn't.

    Hi,
    Our setup
    A new iPod Touch 5 with iOS 8.3.
    Living room speakers that use a Logitech Bluetooth Audio Adapter.
    Kitchen speakers that use an AmazonBasics Bluetooth 4.0 Audio Receiver.
    The iPod connects to both but always wants to play to the kitchen. To play in the living room, we have to unplug the power to the kitchen speakers. Bluetooth settings screen doesn't let you select between Bluetooth connections. All I seem to be able to do is forget the connection.
    We also have an old iPod Touch (not sure of the generation, but it has iOS 6.1.6). On that one, there is a little icon on the now playing screen that would open a little pull-down menu to let you select which Bluetooth connection to use for playing audio.
    I don't see the "select output" icon on the new now playing screen
    Jimmy
    PS the iPod seems very aggressive in connecting. I hear the living room speakers activate when my wife gets out of the car in the driveway. Then as she comes into the living room, the sound switches to the kitchen.

    Thanks, this was the clue I needed to figure it out.
    From Settings you can pull up Control Center.
    In Control Center you can enable "Access from within Apps" (also "Access from Lockscreen")
    Now when I'm playing music, I can swipe up from the bottom and a little control center window slides up. Neat - this is new since my old iPod. On this window, the name of the current Bluetooth connection appears. Tap on that, and a list of connected Bluetooth items appears. I just tap on the one I want to connect to and I am now playing through the speakers I want.
    Jimmy

  • Adding a Button to the Sales Order screen

    Good Day
    Experts:
    I have added a button to the SalesOrder screen with help from a previous post here on the forum.  The button was lined up with the others that were already exisitng on the screen.  Recently, I have encountered a problem with it.  When the SalesOrder screen is run on a different machine,  the button is almost not visible.  It appears there is some kind of issue with the screen resolution just for this button. 
    Do I have to do something special with this button when it is shown on the screen to get it to remain in line with the existing buttons?
    Thanks,
    EJD

    Hi Ed
    Are you setting the button in relation to the surrounding existing objects?  Like for instance ...
            Dim oButton As SAPbouiCOM.Item = oForm.Items.Item("2").Specific 'Cancel button
            Dim oNewButton As SAPbouiCOM.Button
            Dim oNewItem As SAPbouiCOM.Item = oForm.Items.Item("Test") 'your new button or control
            With oNewItem
                .AffectsFormMode = True
                .Left = oButton .Left  + oButton.Width ' notice how button is positioned based on  existing one
                .Top = oButton .Top
                .Width = oButton.Width
                .Height = oButton.Height
                .FromPane = oButton.FromPane
                .ToPane = oButton.ToPane
                .TextStyle = intTextStyle
                oNewButton = .Specific
            End With
            With oNewButton
                .Caption = strCaption
            End With
    Message was edited by:
            Neftali Figueroa
    Message was edited by:
            Neftali Figueroa

  • Problem with adding new field to the mass change screen in FBL5N

    Hi,
    We have a problem with adding the field XREF3 to the mass change screen. We followed steps described in the SAP Note 640908, but the result is that when we try to mass change some documents in FBL5N and enter some values in the mass change screen, a message appears: "Please enter at least one new value" and nothing is changed.
    If you have faced with such a problem, we would be grateful if you give us some tips.
    Regards,
    Miłosz Włodarczyk

    The problem has been resolved: we didn't activate a code in SE80.

  • How to create the select option for the Plant in screen (Module pool)

    HI,
    I am developing one module pool program and I have below requirement,
    currently plant is acting like PARAMETER and the now it should be changed to select option.
    how to create the select option in the screen
    Thanks and regarding,
    Malla
    Moderator message - Cross post locked
    Edited by: Rob Burbank on Dec 16, 2009 1:41 PM

    Steps to get SELECT-OPTIONS in module pool programs.
    1.Start one dialog program with SAPMZ_001.
    Place the below code in the TOP include of the dialog program.
    TABLES marc.
    SELECTION-SCREEN BEGIN OF SCREEN 3200 AS SUBSCREEN.
    SELECT-OPTIONS: werks FOR marc-werks.
    SELECTION-SCREEN END OF SCREEN 3200. 
    2 .Create one screen 3000.
    Go to Layout of the screen and Define subscreen area on the screen and Name it as l_subscreen.
    Place the below code in the Flow logic of the screen.
    PROCESS BEFORE OUTPUT.
      CALL SUBSCREEN l_subscreen INCLUDING 'SAPMZ_001' '3200'.
    PROCESS AFTER INPUT.
      CALL SUBSCREEN l_subscreen.
    Activate all.
    Create Transaction code for the dialog program .
    Execute the transaction code. You will see the select-option for werks how we see on Selection-screen.

  • After installing Mavericks, I receive a prompt saying "To open Nexdef, you need a Java SE 6 runtime."  I select "Install" but the pop up returns.

    Tonight I upgraded from Mountain Lion to Mavericks.  After the upgrade I get a pop up for a software update.  After selecting "install" it downloads & completes the install.  But then the pop-up returns.  What's up?  Can somebody give a pointer.
    I'm running a Mid-2012 Mac Mini, but that probably doesn't matter for this discussion.

    Java is a third party runtime developed by Oracle, formerly Sun who Oracle purchased.
    Java 6 is near obsolete, Apple used to maintain Java 6 for OS X 10.6 and earlier, but stopped in OS X Lion and further.
    Java 7 is now a user optional download directly from Oracle, however your Nexdef will also have to be updated to use Java 7.
    Java has a very bad history of security issues, in fact Apple's entire Cupertino HQ  was compromised by Flashback malware which targeted flaws in Java.
    Perhaps by then they'll have a version for Mavericks.
    If you don't need Java 7 for anything else, then don't install it. This will keep your machine more secure.
    Perhaps the next Nexdef won't use Java at all, but if it does then it will either install it or demand that it does.
    If you do install it, try to limit it's use in your browsers, turning it on only for sites you trust.

  • How can I stop the pop up screen that Abode or some entity wants to write files on my computer?

    Since installing the Adobe Flash Player ActiveX 11, I keep getting these annoying pop-up screens that wants to write files to my computer. How can I stop these pop-ups? when I uninstalled Adobe Flash Player, then I could not get my videos or PCH games to work correctly. Everything was just fine begore getting the installation notice from Adobe to download this file.

    Use the Flash Player Settings Manager in Control Panel to permanently allow it.

Maybe you are looking for

  • Problem Using Mail

    I know this isn't really the forum for this but I don't really know where else to go. Anyway, I'm trying to send an email, but when I hit send I get a message that says that my password for the SMTP server has been rejected. I tried the troubleshoote

  • Vendor Mass Update is Very Slow

    Hi All, We are running ECC6.0 and have just consolidated our HCM and Financial systems into one instance running in a virtualised environment. We also have a linked SRM 550 running in the same virtualised environment. I have been tasked with a projec

  • Material group updation by using function modules

    Hello All, I would like to add , update and delete material group From  database tables T023 and T023T  according to the given Excel input file.Could you please suggest me any function modules are there apart form MATL_GROUP_UPDATE . if i am using th

  • Fillable forms on iPad

    I'm using an iPad 2 with iOS 7 and Adobe Reader. I'm trying to fill in f1040.pdf from irs.gov but none of the fields respond to my touch. I just get the option to freehand draw or superimpose text on top. Am I missing something simple or is there a b

  • Web analysis 9.3  error

    while connecting to database( i want to connect to analytic server data cube) i gave servername: my prodution server name username:admin password: after clicking on Next iam getting the following error No HssJNIDriver930 in java.library.path;nested e