Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

popup windows to get table input

danny_roussel4
Participant
0 Kudos

Hi,

does anyone know how one can launch a popup from an abap where the user can put in a number of articles??

Not just one, but something like one can do in standard SAP, for example in SE16 to input a number of articles from the clipboard.

Any help appreaciated!

Danny

1 ACCEPTED SOLUTION

former_member1245113
Active Contributor
0 Kudos

HI Danny,

Use FM POPUP_GET_VALUES

In Tables Parameters you can pass your fields form different tables and this will take values from user.

For More options check

*POPUP_TO_GET_AI_MASS_VALUES
POPUP_TO_GET_AI_VALUES
POPUP_TO_GET_AI_VALUES_TRANSF

SPO3
POPUP_TO_GET_ONE_VALUE
POPUP_TO_GET_VALUE

SPO4
POPUP_GET_VALUES
POPUP_GET_VALUES_DB_CHECKED
POPUP_GET_VALUES_SET_MAX_FIELD
POPUP_GET_VALUES_USER_BUTTONS
POPUP_GET_VALUES_USER_CHECKED
POPUP_GET_VALUES_USER_HELP*

CHeerz

Ram

5 REPLIES 5

former_member1245113
Active Contributor
0 Kudos

HI Danny,

Use FM POPUP_GET_VALUES

In Tables Parameters you can pass your fields form different tables and this will take values from user.

For More options check

*POPUP_TO_GET_AI_MASS_VALUES
POPUP_TO_GET_AI_VALUES
POPUP_TO_GET_AI_VALUES_TRANSF

SPO3
POPUP_TO_GET_ONE_VALUE
POPUP_TO_GET_VALUE

SPO4
POPUP_GET_VALUES
POPUP_GET_VALUES_DB_CHECKED
POPUP_GET_VALUES_SET_MAX_FIELD
POPUP_GET_VALUES_USER_BUTTONS
POPUP_GET_VALUES_USER_CHECKED
POPUP_GET_VALUES_USER_HELP*

CHeerz

Ram

0 Kudos

Hi Ram,

yes, a lot of POPUP functions, but it seems that none gives the ability to paste from clipboard, or to upload from file...

danny

0 Kudos

Hi Danny, <li>Check the function module CATSXT_SIMPLE_TEXT_EDITOR. It is text editor which has download and upload options. Thanks Venkat.O

0 Kudos

Hi Venkat,

GREAT!!! Just what I needed. Thank you very much, points are deserved!!

danny

Former Member
0 Kudos

Hi,

You try to Use Standard SAP Function Modules....

Goto SE37 and GetPOP*

You can take a hint as ....


 CALL FUNCTION 'RS_HELP_HANDLING'
      EXPORTING
           DYNPFIELD = 'DATABROWSE-TABLENAME
           DYNPNAME  = DNUM
           OBJECT    = 'TB  '
           PROGNAME  = 'SAPLSETB'
           SUPPRESS_SELECTION_SCREEN = 'X'
           variant = variant.

Regards

Arbind