Reg: ALV need two headers.

Hi all,
I have one requirement. Here I have developed ALV with 4 fields. When I run this ALV in general it will display these 4 fields. But my requirement is when I run this ALV 1st 2 fields should be in one header and the next 2 fields should be in another header.(Nothing but we will have to headings one is main header under that 4 fields)
Thanks
Edited by: Mahaboob on May 19, 2009 7:07 PM

Hi all again iam explaning my req,
I have one requirement. Here I have developed ALV with 4 fields. When I run this ALV in general it will display these 4 fields. But my requirement is when I run this ALV 1st 2 fields should be in one header and the next 2 fields should be in another header.(Nothing but we will have to headings one is main header under that 4 fields)
|  Master data                |                   Records             |       Header-->1
| Matnr      |     Posnr      |         vbeln          |       vbeln2  |      Header-->2
|----
Please can any one let me know. how to do in ALV report

Similar Messages

  • I have bought my husband his own i pad and we both need to use our own on a shared computer. will the two apple IDs show as separate on the i tunes or do I need two different I tune programs?

    I have bought my husband a new I pad and we both need to use our own on a shared computer. Will the two different Apple IDs show as separate on the i tunes program or do I need two different i tune programs?

    Each device is different and will only sync what you select

  • HT4413 To transfer everything from my Mac mini to a new Mac Pro do I need two displays? Once I have confirmed my mini is open while pressing T can I then disconnect my Cinema Display from the mini and connect it to the Pro to continue the transfer?

    Can I set up my Mac mini to transfer its contents to a new Mac Pro and then disconnect my Cinema Display and use it connected to the Pro to complete the transfer?  Do I actually need two displays to manage the transfer?

    It helps have 2 monitors, so that you can monitor data XFER, just my experience. If nothing else it allows you keep am eye on what is going on.

  • Using the content aware move tool, I want to move an item from one image to another image but it does not seem to work. I think I need two layers on one document so how do I do this

    Using the content aware move tool, I want to move an item from one image to another image but it does not seem to work. I think I need two layers on one document so how do I do this

    Good day!
    A simple Paste does not work for you?
    It should place the clipboard content as a new Layer which you can then move around.
    If there is any chance that the elements need to be scaled, rotated etc. I would prefer to place them as Smart Objects (File > Place …) and do the masking that is specific to the images themselves in those.
    Regards,
    Pfaffenbichler

  • Need two different reports_path in AS 10g

    Hi,
    I have AS 10g with one Report-Service and
    I do need two different REPORT_PATH for Testing and Production.
    I set the different REPORTS_PATH=xxx into the different xxx.ENV ,
    but it doesn't work,
    the Reports_Path is setting from the registry REPORTS_PATH.
    what is a way to set reports_path dynamic ?
    do I need a REPORTS_CLASSPATH in the xxx.ENV
    or can I assign the REPORTS_PATH to rp2rro.pll ?
    Norbert

    Thank you,
    set the different env in reports-config works.
    But the next is:
    I do use RP2RRO library and a param_list to start the report with rwservlet :
    RP2RRO.RP2RRO_RUN_PRODUCT (REPORTS,p_ReportName, SYNCHRONOUS, RUNTIME, FILESYSTEM, pl_id, NULL);
    and would like to use this to give the report the env with the RP2RRO-Service rp2rroReportOther:
    RP2RRO.setOthers('ENVID=TEST');
    But it doesn't work, and I think the reason is, that RP2RRO.setOthers doesn't work
    with param_list : "You cannot use rp2rroReportOther with parameter lists"
    (rp2rro.pll version is from 2002 )
    what to do ?
    can I change the RP2RRO to set RP2RRO.setOthers('ENVID=TEST') WITH param_list ?
    Regards
    Norbert
    'will create a new thread
    Message was edited by:
    astramare

  • I want to create an ALV  with two row fields name

    Hi
    I want to create an ALV  with two row fields name. please suggest how to do it or send some sample code
    thanks

    Hi,
    see this link
    http://****************/Tutorials/ALV/ALVMainPage.htm
    http://www.alvrobot.com.ar/tutorial.php
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b09ac4d5-e3ad-2910-6a81-96d1b861928c
    http://abapprogramming.blogspot.com/2007/11/alv-check-boxes-sample-code.html
    REPORT zalv5 NO STANDARD PAGE HEADING.
    Description----
    TOPICS INTRODUCED:
    1. Learn about the u2018Standardu2019 PF-Status that comes as default.
    2. Exclude function codes from u2018Standardu2019 PF-Status and customize it.
    TYPE-POOLS: slis.
    DATA: BEGIN OF i_data OCCURS 0,
    qmnum LIKE qmel-qmnum,
    qmart LIKE qmel-qmart,
    qmtxt LIKE qmel-qmtxt,
    ws_row TYPE i,
    ws_char(5) TYPE c,
    chk,
    END OF i_data.
    DATA: report_id LIKE sy-repid.
    DATA: ws_title TYPE lvc_title VALUE 'An ALV Report'.
    DATA: i_layout TYPE slis_layout_alv.
    DATA: i_fieldcat TYPE slis_t_fieldcat_alv.
    DATA: i_events TYPE slis_t_event.
    DATA: i_header TYPE slis_t_listheader.
    DATA: i_extab TYPE slis_t_extab.
    SELECT qmnum
    qmart
    qmtxt
    INTO TABLE i_data
    FROM qmel
    WHERE qmnum <= '00030000010'. LOOP AT i_data. i_data-ws_row = sy-tabix. i_data-ws_char = 'AAAAA'. MODIFY i_data. ENDLOOP. report_id = sy-repid. PERFORM f1000_layout_init CHANGING i_layout. PERFORM f2000_fieldcat_init CHANGING i_fieldcat. PERFORM f3000_build_header CHANGING i_header. PERFORM f4000_events_init CHANGING i_events. CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING * I_INTERFACE_CHECK = ' ' * I_BYPASSING_BUFFER = * I_BUFFER_ACTIVE = ' ' i_callback_program = report_id * I_CALLBACK_PF_STATUS_SET = ' ' * I_CALLBACK_USER_COMMAND = ' ' * I_CALLBACK_TOP_OF_PAGE = ' ' * I_CALLBACK_HTML_TOP_OF_PAGE = ' ' * I_CALLBACK_HTML_END_OF_LIST = ' ' * i_structure_name = ' ' * I_BACKGROUND_ID = ' ' i_grid_title = ws_title * I_GRID_SETTINGS = is_layout = i_layout it_fieldcat = i_fieldcat * IT_EXCLUDING = * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = 'X' i_save = 'A' * IS_VARIANT = it_events = i_events * IT_EVENT_EXIT = * IS_PRINT = * IS_REPREP_ID = * I_SCREEN_START_COLUMN = 0 * I_SCREEN_START_LINE = 0 * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 * IT_ALV_GRAPHICS = * IT_ADD_FIELDCAT = * IT_HYPERLINK = * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES t_outtab = i_data EXCEPTIONS program_error = 1 OTHERS = 2 . IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *& Form F1000_Layout_Init
    FORM f1000_layout_init USING i_layout TYPE slis_layout_alv.
    CLEAR i_layout.
    i_layout-colwidth_optimize = 'X'.
    i_layout-edit = 'X'.
    ENDFORM. " F1000_Layout_Init
    *& Form f2000_fieldcat_init
    FORM f2000_fieldcat_init CHANGING i_fieldcat TYPE slis_t_fieldcat_alv.
    DATA: line_fieldcat TYPE slis_fieldcat_alv.
    CLEAR line_fieldcat.
    line_fieldcat-fieldname = 'QMNUM'. " The field name and the table
    line_fieldcat-tabname = 'I_DATA'. " name are the two minimum req.
    line_fieldcat-key = 'X'. " Specifies the column as a key (Blue)
    line_fieldcat-seltext_m = 'Notification No.'. " Column Header
    APPEND line_fieldcat TO i_fieldcat.
    CLEAR line_fieldcat.
    line_fieldcat-fieldname = 'QMART'.
    line_fieldcat-ref_tabname = 'I_DATA'.
    line_fieldcat-hotspot = 'X'. " Shows the field as a hotspot.
    line_fieldcat-seltext_m = 'Notif Type'.
    APPEND line_fieldcat TO i_fieldcat.
    CLEAR line_fieldcat.
    line_fieldcat-fieldname = 'QMTXT'.
    line_fieldcat-tabname = 'I_DATA'.
    line_fieldcat-seltext_m = 'Description'.
    APPEND line_fieldcat TO i_fieldcat.
    CLEAR line_fieldcat.
    line_fieldcat-fieldname = 'WS_ROW'.
    line_fieldcat-tabname = 'I_DATA'.
    line_fieldcat-seltext_m = 'Row Number'.
    APPEND line_fieldcat TO i_fieldcat.
    CLEAR line_fieldcat.
    line_fieldcat-fieldname = 'WS_CHAR'.
    line_fieldcat-tabname = 'I_DATA'.
    line_fieldcat-seltext_l = 'Test Character Field'.
    line_fieldcat-datatype = 'CHAR'.
    line_fieldcat-outputlen = '15'. " You can specify the width of a
    APPEND line_fieldcat TO i_fieldcat. " column.
    CLEAR line_fieldcat.
    line_fieldcat-fieldname = 'CHK'.
    line_fieldcat-tabname = 'I_DATA'.
    line_fieldcat-seltext_l = 'Checkbox'.
    line_fieldcat-checkbox = 'X'. " Display this field as a checkbox
    line_fieldcat-edit = 'X'. " This option ensures that you can
    " edit the checkbox. Else it will
    " be protected.
    APPEND line_fieldcat TO i_fieldcat.
    ENDFORM. " f2000_fieldcat_init
    *& Form f3000_build_header
    FORM f3000_build_header USING i_header TYPE slis_t_listheader.
    DATA: gs_line TYPE slis_listheader.
    CLEAR gs_line.
    gs_line-typ = 'H'.
    gs_line-info = 'This is line of type HEADER'.
    APPEND gs_line TO i_header.
    CLEAR gs_line.
    gs_line-typ = 'S'.
    gs_line-key = 'STATUS 1'.
    gs_line-info = 'This is line of type STATUS'.
    APPEND gs_line TO i_header.
    gs_line-key = 'STATUS 2'.
    gs_line-info = 'This is also line of type STATUS'.
    APPEND gs_line TO i_header.
    CLEAR gs_line.
    gs_line-typ = 'A'.
    gs_line-info = 'This is line of type ACTION'.
    APPEND gs_line TO i_header.
    ENDFORM. " f3000_build_header
    *& Form f4000_events_init
    FORM f4000_events_init CHANGING i_events TYPE slis_t_event.
    DATA: line_event TYPE slis_alv_event.
    CLEAR line_event.
    line_event-name = 'TOP_OF_PAGE'.
    line_event-form = 'F4100_TOP_OF_PAGE'.
    APPEND line_event TO i_events.
    CLEAR line_event.
    line_event-name = 'PF_STATUS_SET'.
    line_event-form = 'F4200_PF_STATUS_SET'.
    APPEND line_event TO i_events.
    ENDFORM. " f3000_events_init
    FORM F4100_TOP_OF_PAGE *
    FORM f4100_top_of_page.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    it_list_commentary = i_header.
    ENDFORM.
    FORM F4200_PF_STATUS_SET *
    FORM f4200_pf_status_set USING i_extab TYPE slis_t_extab.
    REFRESH i_extab.
    PERFORM f4210_exclude_fcodes CHANGING i_extab.
    SET PF-STATUS 'STANDARD' OF PROGRAM 'SAPLSALV' EXCLUDING i_extab.
    ENDFORM.
    *& Form f4210_exclude_fcodes
    FORM f4210_exclude_fcodes USING i_extab TYPE slis_t_extab.
    DATA: ws_fcode TYPE slis_extab.
    CLEAR ws_fcode.
    ws_fcode = '&EB9'. " Call up Report.
    APPEND ws_fcode TO i_extab.
    ws_fcode = '&ABC'. " ABC Analysis.
    APPEND ws_fcode TO i_extab.
    ws_fcode = '&NFO'. " Info Select.
    APPEND ws_fcode TO i_extab.
    ws_fcode = '&LFO'. " Information.
    APPEND ws_fcode TO i_extab.
    ENDFORM. " f4210_exclude_fcodes
    thanks
    karthik
    reward me if usefull

  • Table with two headers

    i have a designed a table with 2 headers(say H1 AND H2), and  dynamic body rows (with three columns)
    the issue is when the table is oveflowing in to next page only one of the header is showing on the next page,
    i have noticed that the option 
    " INCLUDE HEADER ROW IN SUBSEQUENT PAGES" would not check for both the header rows , if i check it for say H1 then that option for H2 gets deselected. How do i resolve it..?
    Thanks in advance

    Hi Paul,
    Thanks for your suggestion
    so,
    now i am looking in to combining two headers together , but i am not sure how to do,
    right now i had wrapped the whole table in to  a subform , say S5
    and there are now two header rows
    Header row[0]
    header row[1]
    and
    body row
    i am trying to wrap the two headers as you suggested , but not sure how to proceed on. i have attached the pdf, can you please suggest me the changes. The table :"Table2"  is  Page 3 of the form.
    Thank you

  • Why does the system need two average costs - 'Average' and 'Average Rates'?

    Hello Gurus!
    The documentation does give definitions for 'Average' and 'Average Rates' cost types, but at a very basic level.
    http://docs.oracle.com/cd/A60725_05/html/comnls/us/cst/settask.htm
    I would like to know why the system needs two costs? How are they calculated and how are they used?
    Thanks!

    Hello,
    I can suggest you a workaround that will help you keep only the 64-bit version of Photoshop.
    Visit "Uninstall a Program" in Windows 7 Control Panel and uninstall Photoshop completely.
    Visit this page and download trial version of Photoshop.
    Run the installer manually and choose the 64-bit version only (uncheck 32-bit version).
    Launch the product and specify your Adobe ID credentials.
    The product will switch to non-trial (i.e. full) mode when it recognizes your Adobe ID.
    Regards,
    Amit Batra
    Engineering Manager,
    Amit Batra

  • Reg: ALV Field catalog refresh

    Hello All,
    Initially I have to display an ALV grid. Upon a buttons click(User Command)  , an additional col should be displayed for which the field catalog of the ALV needs to be changed. Iam using FM ''REUSE_ALV_GRID_DISPLAY'.My question is , how cld v refresh filedcatalog ? To refresh the grid data , we use selfield-refresh = 'X'. Is there any thing some thing like that to refresh fieldcat or v have to build the fieldcat again?
    I have pasted part of code below:
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_program_name   = sy-repid
          i_structure_name = 'TRIGS_IGT_WRKLIST'
        CHANGING
          ct_fieldcat      = c_tab_fieldcat_main.
      LOOP AT c_tab_fieldcat_main ASSIGNING <l_wa_fieldcat_main>.
        IF <l_wa_fieldcat_main>-fieldname = 'BUSTRANSCAT_TEXT' OR
        <l_wa_fieldcat_main>-fieldname = 'VALUATION_AREA' OR
        <l_wa_fieldcat_main>-fieldname = 'VALUATION_CLASS' OR
        <l_wa_fieldcat_main>-fieldname = 'COMPANY_CODE' OR
        <l_wa_fieldcat_main>-fieldname = 'PRODUCT_TYPE' OR
        <l_wa_fieldcat_main>-fieldname = 'SECURITY_ACCOUNT' OR
        <l_wa_fieldcat_main>-fieldname = 'SECURITY_ID' OR
        <l_wa_fieldcat_main>-fieldname = 'IGT_STATUS_TEXT' OR
        <l_wa_fieldcat_main>-fieldname = 'POSDATE' OR
        <l_wa_fieldcat_main>-fieldname = 'TRLDATE' OR
        <l_wa_fieldcat_main>-fieldname = 'COMPANY_ID' OR
        <l_wa_fieldcat_main>-fieldname = 'COUNTERPARTY' OR
        <l_wa_fieldcat_main>-fieldname = 'UNITS' OR
        <l_wa_fieldcat_main>-fieldname = 'POSITION_CURR' OR
        <l_wa_fieldcat_main>-fieldname = 'DEAL_NUMBER' OR
        <l_wa_fieldcat_main>-fieldname = 'POSITION_AMT' .
        ELSE.
          <l_wa_fieldcat_main>-no_out = 'X'.
        ENDIF.
    Assign postion
        IF <l_wa_fieldcat_main>-fieldname = 'BUSTRANSCAT_TEXT'.
          <l_wa_fieldcat_main>-col_pos   = 2.
          <l_wa_fieldcat_main>-ddictxt   = 'M'.
          <l_wa_fieldcat_main>-outputlen = '5'.
        ENDIF.
        IF <l_wa_fieldcat_main>-fieldname = 'COMPANY_CODE'.
          <l_wa_fieldcat_main>-col_pos  = 3.
        ENDIF.
        IF <l_wa_fieldcat_main>-fieldname = 'VALUATION_AREA'.
          <l_wa_fieldcat_main>-col_pos  = 4.
        ENDIF.
        IF <l_wa_fieldcat_main>-fieldname = 'PRODUCT_TYPE'.
          <l_wa_fieldcat_main>-col_pos  = 5.
        ENDIF.
        IF <l_wa_fieldcat_main>-fieldname = 'SECURITY_ID'.
          <l_wa_fieldcat_main>-col_pos  = 6.
        ENDIF.
        IF <l_wa_fieldcat_main>-fieldname = 'SECURITY_ACCOUNT'.
          <l_wa_fieldcat_main>-col_pos  = 7.
        ENDIF.
        IF <l_wa_fieldcat_main>-fieldname = 'DEAL_NUMBER'.
          <l_wa_fieldcat_main>-col_pos  = 8.
        ENDIF.
        IF <l_wa_fieldcat_main>-fieldname = 'IGT_STATUS_TEXT'.
          <l_wa_fieldcat_main>-col_pos  = 9.
          <l_wa_fieldcat_main>-ddictxt  = 'M'.
        ENDIF.
        IF <l_wa_fieldcat_main>-fieldname = 'POSDATE'.
          <l_wa_fieldcat_main>-col_pos  = 10.
        ENDIF.
        IF <l_wa_fieldcat_main>-fieldname = 'TRLDATE'.
          <l_wa_fieldcat_main>-col_pos  = 11.
        ENDIF.
        IF <l_wa_fieldcat_main>-fieldname = 'COMPANY_ID'.
          <l_wa_fieldcat_main>-col_pos  = 12.
        ENDIF.
        IF <l_wa_fieldcat_main>-fieldname = 'UNITS'.
          <l_wa_fieldcat_main>-col_pos  = 13.
        ENDIF.
        IF <l_wa_fieldcat_main>-fieldname = 'POSITION_AMT'.
          <l_wa_fieldcat_main>-col_pos  = 14.
        ENDIF.
      ENDLOOP.
      CASE sy-ucomm.
        WHEN 'MATCH'.
          READ TABLE c_tab_fieldcat_main ASSIGNING <l_wa_fieldcat_main>
            WITH KEY fieldname = 'MATCHED'.
          CHECK sy-subrc EQ 0.
          <l_wa_fieldcat_main>-col_pos  = 1.
          <l_wa_fieldcat_main>-seltext_s = 'Matched Pairs'.
          <l_wa_fieldcat_main>-seltext_m = 'Matched Pairs'.
          <l_wa_fieldcat_main>-seltext_l = 'Matched Pairs'.
          <l_wa_fieldcat_main>-no_out = ' '.
        WHEN 'REVERSAL'.
          READ TABLE c_tab_fieldcat_main ASSIGNING <l_wa_fieldcat_main>
            WITH KEY fieldname = 'ICON_REVERSAL'.
          CHECK sy-subrc EQ 0.
          <l_wa_fieldcat_main>-col_pos  = 1.
          <l_wa_fieldcat_main>-icon = 'X'.
          <l_wa_fieldcat_main>-outputlen = 3.
          <l_wa_fieldcat_main>-no_out  = ' '.
      ENDCASE.
    Thanks,
    Sri

    Hi
    U need to use the fm REUSE_ALV_GRID_LAYOUT_INFO_SET, here you can change the catalog table.
    Max

  • Do we need two ports for establishing one connection to EJB from swing clie

    Hi all,
    I have an application which uses Java Swing client and accesses an EJB to connect to the server.
    I am connecting to the EJB using iiop://server-ipaddress:port.
    It is required for me to open the firewall to access the above specified ip address and port number. Even though, I am able to access the specific ip address and port number, I am not able to establish the connection.
    I tried out to check the porblem and I came to know that, this aplication is trying to open another port also on the same IP address.
    I am just wondering whether we need two ports for one connection.
    Does anybody face this type of problem?

    If you need to access on two ports, you would have to open both :)

  • Service Registry: why do i need two bindings (wsdlDeployment and endPoint)

    based on the technical note of Clemens Utschig "Enabling a Dynamic, Reusable SOA with Oracle BPEL Process Manager and Oracle Service Registry" i have one question:
    why do i need two bindings (wsdlDeployment and endPoint) in my service in the service registry. if i only define the wsdlDeployment if get this messages:
    <2006-12-07 09:39:02,559> <FATAL> <default.collaxa.cube.ws> no endpoint found - nothing to adjust
    <2006-12-07 09:39:02,559> <WARN> <default.collaxa.cube.ws> Could not lookup base endpoint!
    the problem of defining two bindings is that the url to my partner is redundant.

    Hi Clemens,
    The UDDI Version 3.0.2 Specification (http://www.uddi.org/pubs/uddi_v3.htm) say this:
    B.1.2 Using the "wsdlDeployment" value
    Instead of directly providing the network address in the accessPoint, it is occasionally useful or necessary to provide this information through indirect means. One common scenario for such a behavior is when the accessPoint is embedded within a WSDL file. In such a scenario, the UDDI accessPoint contains the address of the WSDL file, and the client then must retrieve the WSDL file and extract the end point address from the WSDL file itself.
    In this case, decorating the UDDI accessPoint with a useType="wsdlDeployment" is appropriate. A sample of such behavior is as follows:
    <bindingTemplate bindingKey="uddi:example.org:catalog">
       <description xml:lang="en">
           Browse catalog Web service
       </description>
       <accessPoint useType="wsdlDeployment">
           http://www.example.org/CatalogWebService/catalog.wsdl
       </accessPoint>
       <categoryBag>
           <keyedReference keyName="uddi-org:types:wsdl"
           keyValue="wsdlDeployment"
           tModelKey="uddi:uddi.org:categorization:types"/>
       </categoryBag>
    </bindingTemplate>In the example above, a client would be able to parse the result of the bindingTemplate and determine the end point of the Web service within the WSDL file discovered in the accessPoint element. Note that the bindingTemplate has also been categorized with the "wsdlDeployment" value from the uddi.org:categorization:types scheme so that it can be discovered through a find_binding API call.
    1) This means for me that providing one binding with useType=wsdlDeployment should be enough.
    2) Sadly the "Business Service Control" of the Service Registry (Publish new WSDL service) does not create the correct structure needed by the bpel-engine. The "Publish new WSDL service" wizard just creates one service with one binding with useType=other (http). So if i want to reuse this published service from bpel (as a service consumer) i have to switch to the "Service Registry Admin Control" and create a second binding with useType=wsdlDeployment. But i don't want the developers to get inside the "Service Registry Admin Control"! They should only work with the "Business Service Control".
    All this makes the usage of the service-registry very unhandy and reduce the acceptance for developers because of unnecessary manual steps and broken security principles.
    My wish for this issue is that the "Publish new WSDL service" inside the "Business Service Control" of the Service Registry would additionlly create this needed binding with useType=wsdlDeployment.
    Best Regards,
    Harald Reinmueller

  • When do we need two or more sales organization

    Hi Experts,
    In our Enterprise Structure, what factors decide that we need two or more sales organisations. What business requirement makes the decesion of this, any examples may really help.
    Increase of master data is fine but what is the actual reason behind having to restrict with simple org structure ??
    Pre- Thanks
    Denish

    I don't think you need more than one sales area for one country under one company code.
    B'coz most of the things can be handled through or can be differentiated on the bases of Sales Area.
    To add further, its just a virtual organisation entity without any legal boundness.
    All sales related rule regulation for one country should be perferably under umberalla.
    More that one sales org without a valid purpose will just add to complexity of the enterprise structure (simple the better)
    So I don't is any specific requirement of having more than one sales organiation for one country under one company code.
    Untill you need:
    - reporting in more than one Statistics currency.
    - different Sales organisation calendar
    Regards
    JP
    One question for our fellow respondents:
    Whether
    - pricing
    - payment terms
    - target customers/customer base
    - Product line
    - area of operations
    is enhancing the sales org is the only alternative or will add to the complexity?

  • Need two implementation scenarios

    Hi,
    I am very new to this forum..have one requirement.
    Need two implementation scenarios depends on the document type..
    when i create shopping cart with one document type it needs to trigger one  and others for another scenario..
    Would it be possible to do
    kuber

    Hi,
    You can use BADI  (BBP_EXTLOCALPO_BADI ) 
    a) make use  ECS, if Classic scenario configuration exist
    b) or activatated Extended  Classic Scenario , need to make Classic scenario.
    Hope it will work for you.
    Thanks,
    Rahul Mandale

  • Ultranav Driver 16.2.14.0 needs TWO reboot to function

    I just want to report the following things about the latest Ultranav driver 16.2.14.0:
    1. Thankfully, the non-working middle-click button bug (when set to "None"), is resolved. Previously in the last few drivers it wasn't working properly. It pretty much meant removing the middle button from my laptop, since it was forced to scrolling mode because of some bug and I simply couldn't middle click. I was forced to use driver from Synaptics to fix it. Glad now I can use Lenovo driver!
    2. However there is a bug with this driver, that it needs TWO restarting to function. Upon the first restart, Fn + F8 gives an error, and the TrackPoint sensitivity is always set to hardest, and no matter what you set in this windows session, it will disappear upon the next reboot.
    After the 2nd reboot, it works perfectly. Fn + F8 opens the moust dialog (no utility software installed), and the settings function properly.
    Using a W520

    Hello noochi01,
    I found another "problem" in my first XP installation... some years ago I learned to press F5 during the first WinXP setup screen (where it says "press F6 for storage controller...") in order to manually select "ACPI-PC" as the PC type. Otherwise sometimes the non-ACPI HAL would be installed due to some crappy ACPI BIOSes which results in the "You may now switch off the computer" message instead of power down.
    This manual ACPI-PC selection was what I also did when I first setup XP SP3 on the T61p... now I noticed the machine runs on only one of the 2 CPU cores. Cause is that the selection of "ACPI-PC" will install the uniprocessor XP kernel:-/
    So I now did another clean setup with selecting "ACPI multiprocessor PC" => multiprocessor kernel is installed and both CPU cores are used. With this setup I don't have problems with either the original UltraNav 13.x driver or the Ricoh SD/MMC host controller driver.
    I'm very unsure if the uniprocessor kernel in the first installation caused these driver problems or if I simply installed the drivers in a different sequence this time... but there's no freeze until now.
    Can you check if both CPU cores are active on your machine? E.g. the Windows task manager shows two graphs for CPU usage, two frequencies are shown in System Properties etc.?
    btw: The 3.57.01 Ricoh drivers from the ASUS website seem to work well for the ThinkPads with that Ricoh 4-in-1-controller: http://dlsvr.asus.com/pub/ASUS/nb/Drivers/Cardreader/CardReader_Ricoh_VT_090513.zip
    I don't know why Lenovo did never release that driver update?! On the Ricoh page there are no downloads for "industrial products"... and that controller seems already outdated.
    Cheers,
     Wolfgang

  • Ex-80gb PS3 hdd - in enclosure.. need two usb ports?

    Have got a 'Omata Mobile HD' enclosure.
    Have installed the 80gb formatted hitachi drive that was in my PS3 into it.
    PLugged it into powerbook usb port... disc utility doesnt recognise it... read instructions again from Omata, all in pigeon english - just talks about windows install etc.. .google search later reveals that it needs two usb ports - one for power, one for data - is this true? Does this go for all enclosures?
    i would need to then buy a usb extendor as the usb ports are on opposite sides of the pbg4.
    Are there any enclosures that can run a 80gb off one usb port? It also has DC 5V/1A on the enclosure are these quite common?

    Hi, Steve. Given the inconvenience of connecting a dual-USB "Y" cable to your Powerbook, the drawbacks of USB2 compared to FireWire for use with any Powerbook (USB is non-bootable on all PPC Macs and slower than FW 400, never mind FW 800), and the very low cost of your Omata enclosure, I recommend simply replacing it with a FW enclosure. Save the Omata one for use with your next Mac, which will be Intel-powered and USB-bootable, and won't have the limited USB bus power problem that afflicts all Powerbook G4s. Most bus-powered FW enclosures are bootable and have no trouble getting enough juice from Powerbooks, unlike nearly all USB2 enclosures. Get one that has the Oxford 911+ FW bridge chipset in it; that's far and away the most reliable bridge.
    Message was edited by: eww

Maybe you are looking for

  • Management Studio crashing on local SQL Server console

    Unable to start the SQL Server Management Studio on the SQL Server 2012 running on Windows Server 2012 and 2012 R2 We have a number of SQL Servers deployed and in the last month all instances of the SSMS have stopped working with the following error

  • Setting the JComboBox to the first value

    Hi , I have a JComboBox in a one of the table columns. My UI is in a seperate class and the model is in a seperate class. I cannot define the JComboBox as any other specifier than private in the UI. I have added a defaultCellEditor to the combo. Now

  • Business Catalyst Help | Website wholesale plans and monthly pricing

    This question was posted in response to the following article: http://helpx.adobe.com/business-catalyst/partner-portal/website-wholesale-plans-monthly-pr icing.html

  • The Australian App Store comments & Ratings have been removed

    The Australian App Store comments & Ratings have been removed. There is nothing below the product thumbnails. How is Pages 5.1 doing in other App Stores around the world? Peter

  • Download error - InDesign trial!

    Have downloaded the Creative Suite, but when trying to install the up in just comes up with 'Update Failed. Download error' and the only option is to retry (which fails again) or contact admin. I've tried to do it on two seperate computers and am get