How to populate listbox on a screen and get the selected record.

I have place a edit box and converted to listbox .
It should diplay T001-Bukrs values.
When the user selects a value I should get the selected value ...
How can I do that?
The screen is a '0100'.  not the normal 1000 selection screen.
Regards.
Erkan.

Hi
You can try something like this to populate the listbox
type-pools: VRM.
  data: l_t_values  type  vrm_values with header line,
        l_wa_ce_conc type  pa0001.
  clear: l_wa_ce_conc,
         l_t_values.
  refresh: l_t_values.
  select  cod_ce_conc
          des_ce_conc
          into    corresponding fields of l_wa_ce_conc
          from    pa0001
    l_t_values-key         = l_wa_ce_conc-cod_ce_conc.
    l_t_values-text        = l_wa_ce_conc-des_ce_conc.
    append l_t_values.
  endselect.
  call function 'VRM_SET_VALUES'
       exporting
            id              = 'p0061-cod_ce_conc' <=== Your Dynpro field
            values          = l_t_values[]
       exceptions
            id_illegal_name = 1
            others          = 2.
  if sy-subrc <> 0.
    message e398(00) with text-001.
  endif.

Similar Messages

  • How do I turn off full screen and get my toolbar back? There is no firefox symbol anymore.

    I (unwittingly) clicked "full screen" in a simple attempt to get my favorites bar back after (stupidly) installing the new (and annoying) version of Firefox. It has filled up the screen so well that I don't have any toolbar above, the regular settings on my desktop below, nor do I have a Firefox symbol I can click on to fix things. I tried uninstalling, reinstalling, nothing helps. No toolbar at all. I have to put my cursor (which, by the way, mysteriously jumps anywhere while I'm typing) at the top of the screen just to see the address bar. "Control minus" doesn't help. Any suggestions?? Thanks!!

    You can hover the mouse to the top to make the Navigation Toolbar and Tab bar appear.
    You can click the Maximize button at the top right to leave full screen mode or right click empty space on a toolbar and use "Exit Full Screen Mode"

  • I would like to upgrade my school version of CS5 to the newest media, how do I do a purchase upgrade and get the media? I change PC's regularly so need media.

    I would like to upgrade my CS5 version Web Premium and Acrobat Pro 9 to the newest version. I have a Student License and am looking for an upgrade. Suggestions? Not sure I want to pay monthly for the cloud version.

    There is no physical media, but of course you can always put the installers on an USB stick or whatever. Otherwise there are no upgrades for S&T versions. if you are still eligible you simply buy a fresh license of CS6 with the student discount.
    Mylenium

  • How to break a number into pieces and get the sum or product of the numbers

    on 10.2 I tried to use regular expression but TO_NUMBER function does not work with REGEXP_REPLACE as below;
    SQL> SELECT regexp_replace(123456,
      2                        '(.)',
      3                        '\1+') || '0' RESULT
      4    FROM dual;
    RESULT
    1+2+3+4+5+6+0
    SQL> SELECT 1+2+3+4+5+6+0 RESULT FROM dual;
        RESULT
            21
    SQL> SELECT regexp_replace(123456,
      2                        '(.)',
      3                        '\1*') || '1' RESULT
      4    FROM dual;
    RESULT
    1*2*3*4*5*6*1
    SQL> SELECT 1*2*3*4*5*6*1 RESULT FROM dual;
        RESULT
           720I recieve ORA-01722: invalid number as below;
    SQL> SELECT to_number(regexp_replace(123456,
      2                        '(.)',
      3                        '\1+') || '0') RESULT
      4    FROM dual;
    SELECT to_number(regexp_replace(123456,
                          '\1+') || '0') RESULT
      FROM dual
    ORA-01722: invalid numberAny comments? Thank you.

    On 11g you can use this:
    SQL>  select level
      2        , regexp_replace(level,'(.)','\1+') || '0' sum
      3        , xmlquery(regexp_replace(level,'(.)','\1+') || '0' returning content).getNumberVal() sum_evaluated
      4        , regexp_replace(level,'(.)','\1*') || '1' product
      5        , xmlquery(regexp_replace(level,'(.)','\1*') || '1' returning content).getNumberVal() product_evaluated
      6     from dual
      7  connect by level <= 100
      8  /
    LEVEL SUM                  SUM_EVALUATED PRODUCT              PRODUCT_EVALUATED
         1 1+0                              1 1*1                                  1
         2 2+0                              2 2*1                                  2
         3 3+0                              3 3*1                                  3
         4 4+0                              4 4*1                                  4
         5 5+0                              5 5*1                                  5
         6 6+0                              6 6*1                                  6
         7 7+0                              7 7*1                                  7
         8 8+0                              8 8*1                                  8
         9 9+0                              9 9*1                                  9
        10 1+0+0                            1 1*0*1                                0
        11 1+1+0                            2 1*1*1                                1
        12 1+2+0                            3 1*2*1                                2
        13 1+3+0                            4 1*3*1                                3
        14 1+4+0                            5 1*4*1                                4
        15 1+5+0                            6 1*5*1                                5
        16 1+6+0                            7 1*6*1                                6
        17 1+7+0                            8 1*7*1                                7
        18 1+8+0                            9 1*8*1                                8
        19 1+9+0                           10 1*9*1                                9
        20 2+0+0                            2 2*0*1                                0
        21 2+1+0                            3 2*1*1                                2
        22 2+2+0                            4 2*2*1                                4
        23 2+3+0                            5 2*3*1                                6
        24 2+4+0                            6 2*4*1                                8
        25 2+5+0                            7 2*5*1                               10
        26 2+6+0                            8 2*6*1                               12
        27 2+7+0                            9 2*7*1                               14
        28 2+8+0                           10 2*8*1                               16
        29 2+9+0                           11 2*9*1                               18
        30 3+0+0                            3 3*0*1                                0
        31 3+1+0                            4 3*1*1                                3
        32 3+2+0                            5 3*2*1                                6
        33 3+3+0                            6 3*3*1                                9
        34 3+4+0                            7 3*4*1                               12
        35 3+5+0                            8 3*5*1                               15
        36 3+6+0                            9 3*6*1                               18
        37 3+7+0                           10 3*7*1                               21
        38 3+8+0                           11 3*8*1                               24
        39 3+9+0                           12 3*9*1                               27
        40 4+0+0                            4 4*0*1                                0
        41 4+1+0                            5 4*1*1                                4
        42 4+2+0                            6 4*2*1                                8
        43 4+3+0                            7 4*3*1                               12
        44 4+4+0                            8 4*4*1                               16
        45 4+5+0                            9 4*5*1                               20
        46 4+6+0                           10 4*6*1                               24
        47 4+7+0                           11 4*7*1                               28
        48 4+8+0                           12 4*8*1                               32
        49 4+9+0                           13 4*9*1                               36
        50 5+0+0                            5 5*0*1                                0
        51 5+1+0                            6 5*1*1                                5
        52 5+2+0                            7 5*2*1                               10
        53 5+3+0                            8 5*3*1                               15
        54 5+4+0                            9 5*4*1                               20
        55 5+5+0                           10 5*5*1                               25
        56 5+6+0                           11 5*6*1                               30
        57 5+7+0                           12 5*7*1                               35
        58 5+8+0                           13 5*8*1                               40
        59 5+9+0                           14 5*9*1                               45
        60 6+0+0                            6 6*0*1                                0
        61 6+1+0                            7 6*1*1                                6
        62 6+2+0                            8 6*2*1                               12
        63 6+3+0                            9 6*3*1                               18
        64 6+4+0                           10 6*4*1                               24
        65 6+5+0                           11 6*5*1                               30
        66 6+6+0                           12 6*6*1                               36
        67 6+7+0                           13 6*7*1                               42
        68 6+8+0                           14 6*8*1                               48
        69 6+9+0                           15 6*9*1                               54
        70 7+0+0                            7 7*0*1                                0
        71 7+1+0                            8 7*1*1                                7
        72 7+2+0                            9 7*2*1                               14
        73 7+3+0                           10 7*3*1                               21
        74 7+4+0                           11 7*4*1                               28
        75 7+5+0                           12 7*5*1                               35
        76 7+6+0                           13 7*6*1                               42
        77 7+7+0                           14 7*7*1                               49
        78 7+8+0                           15 7*8*1                               56
        79 7+9+0                           16 7*9*1                               63
        80 8+0+0                            8 8*0*1                                0
        81 8+1+0                            9 8*1*1                                8
        82 8+2+0                           10 8*2*1                               16
        83 8+3+0                           11 8*3*1                               24
        84 8+4+0                           12 8*4*1                               32
        85 8+5+0                           13 8*5*1                               40
        86 8+6+0                           14 8*6*1                               48
        87 8+7+0                           15 8*7*1                               56
        88 8+8+0                           16 8*8*1                               64
        89 8+9+0                           17 8*9*1                               72
        90 9+0+0                            9 9*0*1                                0
        91 9+1+0                           10 9*1*1                                9
        92 9+2+0                           11 9*2*1                               18
        93 9+3+0                           12 9*3*1                               27
        94 9+4+0                           13 9*4*1                               36
        95 9+5+0                           14 9*5*1                               45
        96 9+6+0                           15 9*6*1                               54
        97 9+7+0                           16 9*7*1                               63
        98 9+8+0                           17 9*8*1                               72
        99 9+9+0                           18 9*9*1                               81
       100 1+0+0+0                          1 1*0*0*1                              0
    100 rijen zijn geselecteerd.which doesn't work on 10.2 unfortunately. And I'm not aware of any other method to do a dynamic evaluation in SQL in that version.
    Regards,
    Rob.

  • How to dynamic construct checkbox  and get the selected status

    Hello. I'm new to the JSF development. I need to dynamically generate the table data based on the selection of database table name . The first column is the checkbox which will allow user to select one or more rows for modification, deletion, etc. Here is the partial code that i wrote to add checkbox to the first column of the table in the backing bean. I would like to generate the same checkbox binding as we did from Design Palette.
    <webuijsf:checkbox binding="#{UpdateTable.checkbox}" id="checkbox" selected="#{UpdateTable.selectedRow}"/>
    Checkbox checkbox = new Checkbox();
    checkbox.setValueBinding("name", getApplication().createValueBinding("#{currentRow.value['ROWID_VALUE']}"));
    checkbox.setValueBinding("selected", getApplication().createValueBinding("#{UpdateTable.selectedRow}"));
    tableColumn1.getChildren().add(checkbox);
    Once user checked the box, the backing bean should be able to catch the event.
    * Records whether or not the current row should be marked as selected,
    * based on the state of the checkbox.
    public void setSelectedRow(boolean b) {
    System.out.print("click");
    TableRowDataProvider rowdp = (TableRowDataProvider) getBean("currentRow");
    RowKey rowKey = rowdp.getTableRow();
    if (checkbox.isChecked()) {
    selectedRows.add(rowKey);
    } else {
    selectedRows.remove(rowKey);
    But it's not working as I thought. I'm not sure if I can binding selected with backing bean attribute like I did above. Please help!!!
    Edited by: askMore on Aug 6, 2009 12:25 PM

    dt cust min max
    1   a 100 200
    1   b 300 400
    1   c 500 600
    2   a 200 300
    2   b 400 500
    2   c 600 700
    CREATE OR REPLACE FUNCTION scott.rowtocol(p_slct IN VARCHAR2,p_dlmtr IN VARCHAR2 DEFAULT
    RETURN VARCHAR2 AUTHID CURRENT_USER
    AS
      TYPE c_refcur IS REF CURSOR;
      lc_str VARCHAR2 (4000);
      lc_colval VARCHAR2 (4000);
      lc_colval2 VARCHAR2 (4000);
      c_dummy c_refcur;
    BEGIN
      OPEN c_dummy FOR p_slct;
      LOOP
        FETCH c_dummy
        INTO lc_colval,lc_colval2;
        EXIT WHEN c_dummy%NOTFOUND;
        lc_str := lc_str || p_dlmtr || lc_colval || '=' || lc_colval2;
      END LOOP;
      CLOSE c_dummy;
      RETURN SUBSTR (lc_str, 2);
    END;
    SQL> SELECT DISTINCT a.dt,
                    rowtocol
                    ( 'SELECT cust , min  FROM tst WHERE dt = '
                      || ''''
                      || a.dt
                      || ''''
                    ) AS min ,
                   rowtocol
                    ( 'SELECT cust , max  FROM tst WHERE dt = '
                      || ''''
                      || a.dt
                      || ''''
                    ) AS max
    FROM tst a;
      2    3    4    5    6    7    8    9   10   11   12   13   14 
         DT MIN                         MAX
          1 a=100,b=300,c=500               a=200,b=400,c=600
          2 a=200,b=400,c=600               a=300,b=500,c=700

  • JTable and getting the selected Row to display

    Hi,
    I am pasting a code below, in this code i am highlighting one row when loading the table, but since this Row is last, it does not get displayed unless the user scrolls down,
    how can i make this row displayed, when i load the table first
    I m using jdk1.4.1
    import javax.swing.*;
    import javax.swing.table.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class TestTableSelect extends JFrame
         public TestTableSelect(String input)
         super("Table select");     
         this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         getContentPane().add(getTable(input));
         setSize (650, 250);
    setVisible(true);
              private JPanel getTable(String input)
              JPanel panel = new JPanel();
              panel.setLayout(new BorderLayout());
              panel.setPreferredSize(new Dimension(100, 250));
              Vector data = dataVector();
              Vector column = headVector();
              JTable table = new JTable(data, column);
              table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
              table.getTableHeader().setReorderingAllowed(false);
              table.getTableHeader().setResizingAllowed(false);
              table.setSelectionBackground(Color.cyan);
              table.setRowSelectionInterval(0,getSelectedIndex(data, input));
              javax.swing.JScrollPane scrollPane = new JScrollPane(table);
              table.setPreferredScrollableViewportSize(new Dimension(650, 150));
              panel.add(scrollPane, BorderLayout.NORTH);
              return panel;
         private Vector dataVector()
              Vector data = new Vector();
              for ( int i = 0; i < 20; i++)
                   Vector data1 = new Vector();
                   data1.add("ABC");
                   data1.add("This is testing");
                   data1.add(" ");
                   data1.add(" ");     
                   data.add(data1);
                   Vector data1 = new Vector();
                   data1.add("DEF");
                   data1.add("This is testing");
                   data1.add("1");
                   data1.add("1");     
                   data.add(data1);
              return data;
         private Vector headVector()
              Vector column = new Vector();
              column.add("Name");
              column.add("Description");
              column.add("Default");
              column.add("Firm");
              return column;
         private int getSelectedIndex(Vector data, String key)
              for(int i = 0; i < data.size(); i++)
                   Vector data1 = (Vector)data.get(i);
                   if(((String)data1.get(0)).trim().equalsIgnoreCase(key))
                   return i;     
              return 0;
         public static void main(String args[])
         new TestTableSelect("DEF");

    table.scrollRectToVisible(table.getCellRect(table.getSelectedRow(), 0, true);Put this after your table.setRowSelectionInterval(0,getSelectedIndex(data, input)) .
    //David

  • Creating a module pool screen and upload the data entered,

    Dear Experts,
    As i am new to this area, can any one suggest me how can i design a module screen and also the data entered in the screen should be saved in Ztable.
    It would be of great help if any one provides material sort of thing.
    Thanks in advance..

    Hi
    Goto SE51 and design your screen.
    For each control specify the name. For a few controls you need to specify the function codes as well. Until you specify all the mandatory details the controls will remain pink.
    When you are done, Save and Activate.
    Click on Flow Logic button.
    Specify the modules you want to use in PBO and PAI.
    In the program declare data objects having same name as your screen fields.
    When you enter data in the screen fields, the values are automatically stored in the data objects you declared having the same name.
    If you want to insert the details into a ztbl, simply use insert queries and pass data using the data objects you have defined.
    If you are going for BDC:
    First ensure that your screens and code work correctly. Then do the BDC recording for one value. Modify the recorded program according to your requirement.
    Hope this helps
    Regards,
    Jayanthi.K

  • Version 10 doesn't work with a web site I use constantly. How can I download a lower version and have the app appear on my phone?

    Have been using a lower version of firefox on my samsung galaxy phone to access [email protected] for quite some time. Since the upgrade to 10.0, I receive a server error everytime I try to access. Want to download a lower version, but app doesn't appear on my phone. How can I download a lower version and get the app to show up on my phone?

    Mandel is referring to what is called a "User Agent Faker' which tricks the website into thinking it is a different browser or version than it actually is. I sometimes would use this on my iPhone when I wanted to visit the full website of a site I was attempting to go to & it would only take me to the mobile version or state it was only compatible with say Internet Explorer, simply turn it on & select the browser and details you want it to report and it will spoof that browser & you'll be on your way.

  • How to get the selected rows in a table

    Hi,
    How to get the ids of all the selected rows. On Page load a query is executed that shows the data in a table with a checkbox in the first column to select the rows and delete. Now if a user select multiple rows how do I get the ids of selected rows in the backend code.
    Thanks

    Please search the forum before posting questions.
    refer following thread for table selection.
    Re: Record selection with MessageCheckBox and print the selected record.
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                           

  • Desktop appearance problem:  For no apparent reason my Mac running OSX 10.4.11 imposed a mesh-like pattern over the folders on my desktop and also across the top of the screen and down the right-hand side where I have the dock.  How do I remove it?

    For no apparent reason my Mac (2 GHz PowerPC G5) running 10.4.11 has put a mesh-like pattern over the folders on my desktop and also a band of the same pattern across the top of the screen and down the right-hand side over the dock.  (See screen grabs below.)
    It doesn't affect any operations but makes folder names and drop-down menus difficult to read through the pattern.
    I'm not aware of changing any settings so suspect I must have clicked on something without noticing.  How do I get rid of the overlaid pattern, please?

    Information about my computer is as follows:
    Machine Name:          iMac G5
    Machine Model:          PowerMac8,2
    CPU Type:          PowerPC G5  (3.1)
    Number Of CPUs:          1
    CPU Speed:          2 GHz
    L2 Cache (per CPU):          512 KB
    Memory:          1 GB
    Bus Speed:          667 MHz
    Boot ROM Version:          5.2.5f1
    It looks like this at the back:

  • How to populate data for 2LIS_40_REVAL, 2LIS_43_POSCAS and 2LIS_44_POSREC

    Hi
    How to populate data for 2LIS_40_REVAL, 2LIS_43_POSCAS and 2LIS_44_POSREC datasources at RSA3?
    I'm very new to retail BI.
    I think there is no setup tables for Retail infosources.
    Any IDoc or BAPI activation is required or other procedure?
    We are in BI-700 SAPKW70015 support pack R/3 side
    and SAP_BW 700 Support pack SAPKW70016 &
    BI_CONT 703 Support pack SAPKIBIIP9 BI side
    Can anyone guide me how to load data?
    Points assured
    Thanks in advance
    Ramana P

    Dear Ramana,
    There is no setup table for POSCAS and POSREC.This has to be popuated with a BADI Implementation. 
    As of PlugIns 2002_1_470 and 2002_2_470, POS data is update into BW the 2LIS_44_POSREC and 2LIS_43_POSCAS extractors using a BADI. To be able to update data into BW, the relevant implementation for the BADI must be activated in each case. You can activate the implementation in transaction SE19. The implementations are as follows:
    POS_EX_REC_PI2003_1 for extractor 2LIS_44_POSREC
    POS_EX_CAS_PI2003_1 for extractor 2LIS_44_POSCAS
    Once the activation of BADI , create the back ground jobs for the 44 application and the data is pushed into Delta queue and it can be loaded into BI .
    Hope this helps you.
    Thanks,
    Krishna Charan

  • On OSX Lion i used to drag the window to the top of the screen and get maximise, and drag the window right or left to show the both beside each other just like windows 7, How to do it on Mountain lion ?

    On OSX Lion i used to drag the window to the top of the screen and get it maximise, and drag the window right or left to show the both beside each other just like windows 7, How to do it on Mountain lion ?

    That has never been a feature of Mac OS X, but I believe there was some kind of third-party software that could add that capability.  i don't recall what its name is, but you must have had that installed, and it either isn't installed anymore (perhaps removed as incompatible?) or is not working properly in Mountain Lion.

  • My phone when attached to the charger boots up reaches the password screen, i enter my password and it goes to home screen then shuts itself off and reboots. is my phone possessed or how can i fix it? can i get the data off of it even if the phone is gone

    my phone when attached to the charger boots up reaches the password screen, i enter my password and it goes to home screen then shuts itself off and reboots. is my phone possessed or how can i fix it? can i get the data off of it even if the phone is not salvageable? thank you so much in advance for your help!

    Make sure you have the Current Version of iTunes Installed on your computer
    iTunes free download from www.itunes.com/download
    Then see Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...  Be sure to Follow ALL the Steps...
    Take your time... Pay particular attention to Steps 3 and 4.
    After you have Recovered your Device...
    Re-Sync your Content or Restore from the most recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766
    Note.  Once the Device is asking to be Restored with iTunes... it is too late to save anything... and you must continue with the Recovery...

  • Hello, my iphone 5s fell, thereafter i tried taking a picture, the camera app just shows a black screen and hangs, the front camera works on other apps but the rear camera is not working, all other apps work perfectly well, how do i resolve this

    Hello, my iphone 5s fell, thereafter i tried taking a picture, the camera app just shows a black screen and hangs, the front camera works on other apps (such as facetime and skype) but the rear camera is not working, all other apps work perfectly well, how do i resolve this

    Double tap Home button and delete Camera app from multitask-list.
    Do a
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data
    If problem persist, make an appointment with genius bar for evaluation.

  • How to add a field to the selection screen and when the user enters ...

    hi all,
    can any one plesase send the code of how to add a field to seletiion screen and when the user enters in the field , it should be store in the database table , the table is MKPF and the field is BKTXT.  Thanks.

    Hi Kripa,
       If u r using PNP ldb then the screen u will get is the screen for that ldb and if u want to add some more fields then u define using selection-screen..as follows
    SELECTION-SCREEN BEGIN OF BLOCK mysel WITH FRAME TITLE text-111.
    PARAMETERS: n_in_en  RADIOBUTTON GROUP g1,
                q_ev  RADIOBUTTON GROUP g1.
    SELECTION-SCREEN END OF BLOCK mysel.
    SELECTION-SCREEN BEGIN OF BLOCK mysel1 WITH FRAME TITLE text-222.
    PARAMETERS: r_date TYPE sy-datum DEFAULT sy-datum.
    SELECTION-SCREEN END OF BLOCK mysel1.
    SELECTION-SCREEN BEGIN OF BLOCK mysel2 WITH FRAME TITLE text-333.
    PARAMETERS:f_ver(3) TYPE c DEFAULT 1,
               c_no(10) TYPE c DEFAULT '9D0161',
               u_id(15) TYPE c,
               password(15) TYPE c,
               r_email(30) TYPE c DEFAULT PARAMETERS: s_not TYPE c AS CHECKBOX.
    PARAMETERS:t_run TYPE c  AS CHECKBOX.
    SELECTION-SCREEN END OF BLOCK mysel2.
    SELECTION-SCREEN BEGIN OF BLOCK mysel3 WITH FRAME TITLE text-444.
    SELECTION-SCREEN BEGIN OF BLOCK mysel4 WITH FRAME TITLE text-555.
    PARAMETERS: p_ser  RADIOBUTTON GROUP g2,
    a_ser  RADIOBUTTON GROUP g2.
    SELECTION-SCREEN END OF BLOCK mysel4.
    SELECTION-SCREEN BEGIN OF BLOCK mysel5 WITH FRAME TITLE text-666.
    PARAMETERS:p_path TYPE string.
    SELECTION-SCREEN END OF BLOCK mysel5.
    SELECTION-SCREEN END OF BLOCK mysel3.
    u will get this additional screen after the screen of ldb.
    I hope this will help u..
    Thanks & Regards
    Ashu Singh.

Maybe you are looking for

  • Report generation for Delivery Blocked Orders

    Hi All, I am trying to pull up a report which should contain only orders with the Delivery Block. Through VL06O i can get the orders which need to PGIed, which are open, which are stuck in workflow and which have got delivery block. So is it possible

  • Cant find pics on my pc from icloud

    I've set up photo sharing on my iphone in the icloud and I've taken a few pics. The apple sight says the pics should be in my pictures folder on my pc  but I cant find them. Is there something else I need to do to find them?

  • My all in one printer says it is out of paper but the paper is in correctly. What do I do now

    I have checked all my connections and all is in order.  I am lost now.

  • Skip record in message mapping

    I have scenario where I am doing a RFC call in message mapping.Based on the result I need to create IDOC.If result does not meet the condition then I dont have to create IDOC for that record. Is any thing can be worked out that I can skip those recor

  • PSE12 Came with PC and I can't find the serial number?

    Its been a few months since I bought my PC (a VAIO Tap 11) and it came with some free drawing/image editing software such as Artrage and it also came with PSE12. I was hoping to be able to register my product online but I later became aware that the