Changing BP data to different tabs in transaction BP

Hi everyone,
I'm trying to swap around some data in the bp screen.
Mainly, when an account is entered I want some of the information that I currently have showing up under a tab 'marketing attributes' to show in a different tab 'customers', which I also want to rename.
If anyone could point me in the right direction to doing this it would be much appreciated.
Have been digging around but no luck so far.

Hi Kieran,
Sorry for that incomplete reply ! The text editor just suddenly quit !
Here's a link-
[https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/309bff90-d36f-2910-c9b2-fe8ab0d547e9]
You can also see the documentation for the screen configuration tool through the path -
Transaction SPRO -> SAP Reference IMG-> Cross-Application Components -> SAP Business Partner -> Business Partner-> Basic Settings-> Screen Configuration-> Configure Screens
The 'Execute' button takes you to BUC0, the documetation button opens up a lot of good info docs.
There are also many documents on SDN that you could search for using terms VCT and screen configuration.
Cheers,
Rishu.

Similar Messages

  • Displaying data in different tabs

    Hi all
    In a webI report I want to display data in different tabs for different prompt values.
    For ex: In the prompt window if enter one value for plant say ABC... data should display in a single tab
    If I enter two values say ABC, DEF... data should display for two plants in two different tabs. one tab for ABC and another tab DEF.
    Any inputs please and is this possible in webI?

    Hi there. No, it isn't.
    The underlying query is shared among all tabs (which are, annoyingly, technically called 'reports').
    Since any prompts are defined in the query, they too are shared among all tabs.
    Input controls, 'standard report filters', and 'simple report filters' are specific to individual tabs, and cannot affect other tabs, but won't 'pop up'.
    You may want to look into hyperlinking between reports (read up on OpenDocument if you're not familiar with it) to allow users to move from one Webi report (technically called a 'document') to another.
    This will allow you to have different prompts for different reports.

  • How to change delivery date in confirmation tab in item overview in PO

    Hi,
    I am using ME_CONFIRMATION_UPDATE to add delivery date into the confirmation tab in item level.It is adding new line item.
    It is even updating the table EKES.
    Now my requirement is to change the delivery date from the above PO. Is there any function module for the same.
    PLEASE GUIDE ME.
    Thanks,
    Vengal Rao.

    Hi,
    Our client is into Apparel business and using SAP-AFS.  Some time at the last moment the due to change in customer delivery date there is a requirment to change the delivery date in confirmation tab also..
    Thanks,
    Vengal Rao.

  • How to update (add new data in different tab) existing table from Excel

    i've an existing table, for instance User Profile table, it consists of few tab in the table which contains different data... recently i've added new tab to the existing table and i would like to upload a particular data for this new tab... is there any way to upload (insert new data for the tab on existing data) this particular data into the existing table from Excel file?
    could it be done by using lsmw?
    Edited by: Yeong Kang Liew on Apr 5, 2010 4:35 AM

    Check HELP on MODIFY & UPDATE statements.

  • What changes Modified Date in PDF Tab of Properties?

    I have a PDF file.  When I click on Properties and then click the PDF tab it shows me a Creation Date and a Modified Date.  The Created Date appears to be the date the file was actually created by someone else on another computer.  The file was emailed and then downloaded from a second computer to a flash drive, and then uploaded to my computer.  What is the Modified Date recording?  When I try to repeat the procedure by emailig, downloading and then uploading the Modified Date doesn't change.

    Any modification of the file changes the Modified Date.

  • How to read data from different tabs of an excel sheet?

    Hello everybody:
    I try to read an specific sheet from excel workbook with multiple sheets, but I can't obtain any soluction. Any have a example ABAP code for the specific question?
    Regards,
    Piero Cimule Troise,

    Piero,
    Have a look into this link
    http://searchsap.techtarget.com/tip/1,289483,sid21_gci868246,00.html?FromTaxonomy=/pr/283958

  • Download to excel in different tabs from bsp page

    Hi all,
    I have a requirement in which I have to download to xl-sheet in different tabs based on some conditions from a bsp page.
    I am successful in downloading data into different tabs.
    Now I had written the piece of code required to download to xl in a function module
    and I am calling that function module when pressing a button in bsp page.
    When I run the fm seperately its working but when I run it from bsp page its not working.But while debugging I found that the fm is being called and executed perfectly without any errors.
    But the xl is not being created on our side.
    Can anyone suggest me how to proceed on this.
    Helpful answers will be rewarded.
    Thanks,
    Uga

    Hi Raja,
    Yes I am using ole objects.
    For more clarity I am alos pasting my code.
    If this is not possible then please guide how to achieve this in BSP.
    *******************CODE*****************************************
    include ole2incl.
    data: w_cell1 type ole2_object,
    w_cell2 type ole2_object.
    *--- Ole data Declarations
    data: h_excel type ole2_object, " Excel object
    h_mapl type ole2_object, " list of workbooks
    h_map type ole2_object, " workbook
    h_zl type ole2_object, " cell
    h_f type ole2_object, " font
    gs_interior type ole2_object, " Pattern
    worksheet type ole2_object,
    h_cell type ole2_object,
    h_cell1 type ole2_object,
    range type ole2_object,
    h_sheet2 type ole2_object,
    h_sheet3 type ole2_object,
    gs_font type ole2_object,
    flg_stop(1) type c.
    Internal table Declaration
    data:gt_kna1 type standard table of kna1,
         gt_knvv type standard table of knvv,
         wa_kna1 type kna1,
         wa_knvv type knvv.
    types: data1(1500) type c,
    ty type table of data1.
    data: it type ty with header line,
    it_2 type ty with header line,
    it_3 type ty with header line,
    rec type sy-tfill,
    deli(1) type c,
    l_amt(18) type c.
    data: begin of hex,
    tab type x,
    end of hex.
    field-symbols: <fs> .
         constants cns_09(2) type n value 09.
    assign deli to <fs> type 'X'.
    hex-tab = cns_09.
    <fs> = hex-tab.
    data gv_sheet_name(20) type c .
    SELECT kunnr name1
      INTO corresponding fields of table gt_kna1
      FROM kna1
    UP TO 1000 ROWS.
    SELECT kunnr vkorg
      INTO corresponding fields of table gt_knvv
      FROM knvv
    UP TO 3 ROWS.
    loop at gt_kna1 into wa_kna1.
    concatenate  wa_kna1-kunnr  wa_kna1-name1 into it separated by deli.
    append it.
    clear it.
    endloop.
    loop at gt_knvv into wa_knvv.
    concatenate wa_knvv-kunnr wa_knvv-vkorg into it_2 separated by deli.
    append it_2.
    clear it_2.
    endloop.
    if h_excel-header = space or h_excel-handle = -1.
    *start Excel
    create object h_excel 'EXCEL.APPLICATION'.
    endif.
    call method of h_excel 'Workbooks' = h_mapl.
    set property of h_excel 'Visible' = 1.
    *add a new workbook
    call method of h_mapl 'Add' = h_map.
    gv_sheet_name = 'KNA1'.
    get property of h_excel 'ACTIVESHEET' = worksheet.
    set property of worksheet 'Name' = gv_sheet_name .
    *--Formatting the area of additional data 1 and doing the BOLD
    call method of h_excel 'Cells' = w_cell1
    exporting
    #1 = 1
    #2 = 1.
    call method of h_excel 'Cells' = w_cell2
    exporting
    #1 = 1
    #2 = 50.
    call method of h_excel 'Range' = h_cell
    exporting
    #1 = w_cell1
    #2 = w_cell2.
    *CALL METHOD OF gs_cells 'Select' .
    get property of h_cell 'Font' = gs_font .
    set property of gs_font 'Bold' = 1 .
    data l_rc type i.
    call method cl_gui_frontend_services=>clipboard_export
    importing
    data = it[]
    changing
    rc = l_rc
    exceptions
    cntl_error = 1
    error_no_gui = 2
    not_supported_by_gui = 3
    others = 4.
    call method of h_excel 'Cells' = w_cell1
    exporting
    #1 = 1
    #2 = 1.
    call method of h_excel 'Cells' = w_cell2
    exporting
    #1 = 1
    #2 = 1.
    PERFORM err_hdl.
    call method of h_excel 'Range' = range
    exporting
    #1 = w_cell1
    #2 = w_cell2.
    call method of range 'Select'.
    *PERFORM err_hdl.
    call method of worksheet 'Paste'.
    ****for second sheet**********
    GV_SHEET_NAME = '2ND SHEET'.
    gv_sheet_name = 'Knvv'.
    get property of h_excel 'Sheets' = h_sheet2 .
    call method of h_sheet2 'Add' = h_map.
    set property of h_map 'Name' = gv_sheet_name .
    get property of h_excel 'ACTIVESHEET' = worksheet.
    *--Formatting the area of additional data 1 and doing the BOLD
    call method of h_excel 'Cells' = w_cell1
    exporting
    #1 = 1
    #2 = 1.
    call method of h_excel 'Cells' = w_cell2
    exporting
    #1 = 1
    #2 = 50.
    call method of h_excel 'Range' = h_cell
    exporting
    #1 = w_cell1
    #2 = w_cell2.
    get property of h_cell 'Font' = gs_font .
    set property of gs_font 'Bold' = 1 .
    call method cl_gui_frontend_services=>clipboard_export
    importing
    data = it_2[]
    changing
    rc = l_rc
    exceptions
    cntl_error = 1
    error_no_gui = 2
    not_supported_by_gui = 3
    others = 4.
    call method of h_excel 'Cells' = w_cell1
    exporting
    #1 = 1
    #2 = 1.
    call method of h_excel 'Cells' = w_cell2
    exporting
    #1 = 1
    #2 = 1.
    PERFORM err_hdl.
    call method of h_excel 'Range' = range
    exporting
    #1 = w_cell1
    #2 = w_cell2.
    call method of range 'Select'.
    PERFORM err_hdl.
    call method of worksheet 'Paste'.
    Can you people give me inputs so that I can proceed further.
    Thanks,
    Uga

  • Form tab order changes when data is emailed as .xml

    .xml data is in a different tab order on the pdf. form   Why is the data order changing, when user uses the submit by email button?

    Hello Paul,
    I tried tried and tried ..But I found no solutions for it . Could you please help me a bit ??
    Thanks.
    Bibhu.

  • LIKP-KODAT from  transaction VL02N in header data in processing tab non edi

    Hi gurus i want to make the field LIKP-KODAT from  transaction VL02N in header data in processing tab.
    is any way to make this by the spro transaction?
    Thanks.

    Hi,,
    what do you want to do with the meitoned field?? you did not mention that..
    SB

  • Regarding VX22 Transaction [Change License Data]

    Hi All,
    I have a issue related to <b>VX22 Transaction [Change License Data]</b>.
    Do anybody knows the wether any <b>BAPI</b> available for <b>Change License Data[VX22]</b>.
    I actually have to perform a BDC for change license data some times for <b>Multiple items for single Sales Document number</b> at a time.
    I have Done the recording[SHDB] and added the following code to main program.
    Can anybody tell me wether this code will perfectly work for <b>Multiple Items of Single Sales Document Number</b> in <b>VX22 Transaction</b>.
    <b>  PERFORM f_bdc_dynpro      USING 'SAPMV52G' '0100'.
      PERFORM f_bdc_field       USING 'BDC_CURSOR'
                                      'VBAK-VBELN'.
      PERFORM f_bdc_field       USING 'BDC_OKCODE'
                                      '/00'.
      PERFORM f_bdc_field       USING 'VBAK-VBELN'
                                      i_data-vbeln.
      PERFORM f_bdc_field       USING 'RV52G-SELKZ'
                                      c_x.
      LOOP AT i_pdata.
        PERFORM f_bdc_dynpro      USING 'SAPLV52E' '0500'.
        PERFORM f_bdc_field       USING 'BDC_CURSOR'
                                        'RV52G-SELKZ(08)'.
        PERFORM f_bdc_field       USING 'BDC_OKCODE'
                                        '=DETA'.
        PERFORM f_bdc_field       USING 'RV52G-SELKZ(08)'
                                        c_x.
        PERFORM f_bdc_dynpro      USING 'SAPLV52E' '0520'.
        PERFORM f_bdc_field       USING 'BDC_CURSOR'
                                        'VBEX-MODCO'.
        PERFORM f_bdc_field       USING 'BDC_OKCODE'
                                        '/00'.
        PERFORM f_bdc_field       USING 'VBEX-ALNUM'
                                        i_pdata-zzalnum.
        PERFORM f_bdc_field       USING 'VBEX-EMBGR'
                                        i_pdata-zzembgr.
        PERFORM f_bdc_field       USING 'VBEX-GENNR'
                                        i_pdata-zzgennr.
        PERFORM f_bdc_field       USING 'VBEX-MODCO'
                                        i_data-modco.
        PERFORM f_bdc_dynpro      USING 'SAPLV52E' '0520'.
        PERFORM f_bdc_field       USING 'BDC_CURSOR'
                                        'VBEX-ALNUM'.
        PERFORM f_bdc_field       USING 'BDC_OKCODE'
                                        '=BACK'.
        PERFORM f_bdc_field       USING 'VBEX-ALNUM'
                                        i_pdata-zzalnum.
        PERFORM f_bdc_field       USING 'VBEX-EMBGR'
                                        i_pdata-zzembgr.
        PERFORM f_bdc_field       USING 'VBEX-GENNR'
                                        i_pdata-zzgennr.
        PERFORM f_bdc_field       USING 'VBEX-MODCO'
                                        i_data-modco.
      ENDLOOP.
      PERFORM f_bdc_dynpro      USING 'SAPLV52E' '0500'.
      PERFORM f_bdc_field       USING 'BDC_CURSOR'
                                      '*VBEX-VBELN'.
      PERFORM f_bdc_field       USING 'BDC_OKCODE'
                                      '=SICH'.
      PERFORM f_bdc_transaction USING 'VX22'.</b>
    I have make use of Session Method for it.
    I had run through it against VX22 in all 3 modes and it is working fine for single line item for a sale order.
    If any changes required for it to work for Multiple line items please suggest.
    If any body knows <b>BAPI</b> for the same process please post.
    Thanks in advance.
    Thanks & Regards,
    Rayeez.

    Hi All,
    Anybody worked on above kind of scenario,
    If yes please sujjest!
    Has Anybody worked with <b>VX22</b> Transaction
    If worked please reply to above post!
    Thanks & Regards,
    Rayeez.

  • Any FM to change PR's customer's tab data

    is there any FM/BAPI to change PR's customer tab data ..
    i have tried to use ME_UPDATE_REQUISITION, it didn't change PR data
    BAPI_REQUISITION_CHANGE doesn't have customer tab fields

    Hi,
    Try the BADI
    ME_REQ_POSTED
    the Method POSTED has the paramter IM_EBAN which has the structure MEREQ_T_UEBAN consisting of Customer(KUNNR) field.
    reward if useful
    regards,
    Anji

  • JTabbedPane: Contents changes in different tab.

    My applet consists of a jtabbedpane with 3 tabs. each tab consists of a panel, which in turn consists of a jComboBox and jTextArea. my problem is when i click on an item in jComboBox of tab 1, nothing happen with jTextArea in tab 1, but changes are in jTextArea of tab 3. actionlistener of the jComboBox cant cannot be compile if i put jTextArea as local var. so my jTextArea is a global var. please advice.

    Im implementing RMI application btw, this is the client code:
    public class Client extends JApplet
    JTabbedPane tabbedPane;
    JTextArea txt;
    JComboBoc jcb;
    String str;
    public void init()
    try
    tabbedPane = new JTabbedPane();
    JComponent tab1 = setPanel("ABC");
    tabbedPane.addTab("ABC",tab1);
    //tab2 and tab3
    //setting layout
    catch (Exception ex)
    protected void getPanel()
    try
    //RMI connection to server goes here
    //RMI accessing server objects goes here
    //s.getText() is server object
    //JTextArea is set for different content type for diff tab
    txt.setText(s.getText());
    catch (Exception ex)
    protected JComponent setPanel(String input)
    JPanel pnl = new JPanel();
    txt = new JTextArea(20,60);
    txt.setLineWrap(true);
    txt.setWrapStyleWord(true);
    getPanel();
    jcb = new JComboBox(itemList);
    jcb.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
    JComboBox cb = (JComboBox)e.getSource();
    str = (String)cb.getSelectedItem();
    getPanel();
    //setting layout
    return pnl;
    When the applet is initialize, everything goes fine. what i mean is tab1 has its own content of JTextArea, so do tab2 and tab3. but when i click on an item of JComboBox in tab1 or tab2, changes made are at JTextArea of tab3.
    If JTextArea is declared as local in setPanel, the getPanel would not access the JTextArea.

  • Change the data selection tab page in an InfoPackage

    Hi SDN Community,
    Is it possible to have an Infopackage and change the data selection tab page ? Because  I would like to know if  I can change the select-options by a parameter.
    For example: Now you can enter 01.01.1950 as the start date and 31.12.9999 as the end date,
                          I only want that the user enter the start date.
    Thanks a lot,
    best regards.
    Ana

    Yes, I tried an abap routine option and the result is not good because the user can't put the information in the low (start date) parameter.
    Thanks

  • My tabs change when i sign into something else so instead of different tabs they all become the same

    I play a myspace game and open a tab to one of my games. I sign out of that acct and log into another acct. The tab that I opened changes to the new login and so I cannot get more then one acct up on the tabs. It has not done this before and it does not do it with Opera, I can open more then one acct with different tabs.

    Try the Multifox extension. <br />
    http://br.mozdev.org/multifox/

  • System Details in SAP ATTRIBUTES Tab under TRANSACTION DATA

    How to fetch the System Details in SAP ATTRIBUTES Tab under TRANSACTION DATA ? In CRM_DNO_MONITOR Transaction

    Hi,
    Create IBASE and COMPONENTS in IB51 Txn for the systems you are using.
    Fill in the particular IBASE COMPONENT on which message is raised on the IBASE & COMPONENT field in CRMD_ORDER Txn.
    It will automatically fetch all the details under SAP ATTRIBUTES Tab.
    http://help.sap.com/saphelp_sm40/helpdata/EN/75/4b730b1c628c459ef868acd48197ec/frameset.htm
    Thx,
    Waseem

Maybe you are looking for

  • All of my itunes library has gone. My Music/video files are still there.

    Can I put all of the tracks/videos on with the play count/playlists still there? Hi, I have just turned on my computer, then itunes. What I found was nothing. I store all my files on an external hard drive and wasn't connected when I first loaded it

  • Need help getting my music from itunes to my iphone 5s

    Please help!! I have backed up my phone and I just want my music to stay on my phone but i have to keep downloading it. what do I do to keep it there without having that cloud with the arrow next to it.

  • Document() function problem in Cocoon

    Hi, I have a problem using document() function in xslt. Transformation is done via Cocoon. I know that document() function is problematic in Cocoon, but I think still it is possible to use document() in Cocoon or? Here is the simple code:I am getting

  • JSpell socket error, access denied

    I'm working to get JSpell up and running using the demo form and the 2004 version of JSpell. After going through the Options dialog in the demo when the form loads. I click OK and then click spell check. I get the following error in forms but not in

  • Dell 2405FPW 24" display problem. Please help

    Can anyone help me with this, I can't seem to get an answer from either Dell tech support nor from Apple. I just received my dell 2405FPW 24" display. Connected it to DVI port 1 on my powermac G5. It started to work just fine for the first hour or so