Dynamic Selection using Summarization Fields Missing in TCODE CN43N

If Using TCODE CN43 I can select using Summarization Fiields from PSMERK via Dynamic Selections.
However, when I use TCODE CN43N the "Summarization Fields" node is not displayed.
Does anyone know if it is possible to activate this option for CN43N.

Hi,
Please refer sap note 679705.
hope it will be helpful
thanks
abdul

Similar Messages

  • Dynamic select using jsp?

    grrrrr............ok so I'm kinda new to this, and just a little frustrated. I'm gonna ramble here, so any time I sound like I don't know what I'm talking about it 's because I don't..correct me. I want to include a bean in a jsp which will buil d a dynamic select box on the fly. That is, connect to an LDAP db and place each value returned in the query in a select box. Now, I can compile and run the bean in my IDE and watch the output in the console. It's correct because I see "<select><option value = hall>hall....</select>". In the buildSelectBox() method I'm using System.out.println to display each line of my select box (is that right?). Now, when I copy the .class file over to the server I was initially getting an error because the bean wasn't found. I resolved that by properly compiling the bean in a package. Problem is that if I call the bean.buildSelect() method in the .jsp nothing comes back. The page is left blank. What in the world is that about? Can someone push me toward a tutorial that can push me in the right direction or sumthin? Why am I having so much trouble with this? Should I be building the select on the jsp?
    regards,
    mat

    Hi!
    If i understand you correctly :-) you are doing not very right things. I don't want it to seem like I'm going to teach you, but:
    The Bean that has buildSelect() method is not a bean at all. Usualy Beans contain getter/setters and accumulate data. If you want to build html code dynamicaly then you should use servlets(Which is not very flexible in your situation, I think), not JSPs. And if you are using JSPs then you have to make Tag which will do this everything.
    Other way is to use Struts framework which is very good and flexible for building web applications - it has it's own tags for many cases. You can make loops in JSPs, use beans and all that stuff.
    Guys will correct me if I missed something.
    Good luck

  • Error on a Dynamic Select using Pro*C

    I am a new user on Pro*C and I am facing an error for which I could not find a solution in the Pro*C/C++ Programmer’s Guide. The problem occurs when I do a dynamic SELECT to retrieve sequence of numbers (from 0 to 10) from a very simple table in a database.
    The program is retrieving the following sequence: {705, 961, 1217, 1473, 1729, 1985, 2241, 2497, 2753, 3009} rather than the sequence {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}.
    It’s very interesting to notice that the retrieved sequence, in hexadecimal, is equal to {2C1, 3C1, 4C1, 5C1, 6C1, 7C1, 8C1, 9C1, AC1, BC1}.
    I am quite sure that I'm missing a small detailed here and I would appreciate
    any help. Please find below the code that I am using.
    Thanks a lot!
    #include <string>
    #include <iostream>
    using namespace std;
    #include <sqlca.h>
    #include <sqlcpr.h>
    EXEC SQL BEGIN DECLARE SECTION;
    VARCHAR username[30];
    VARCHAR password[30];
    VARCHAR db_name [30];
    VARCHAR dns_name[30];
    EXEC SQL END DECLARE SECTION;
    void SQL_Error ( void )
    char msg[200];
    size_t buf_len = sizeof ( msg );
    size_t msg_len;
    sqlglm( msg, &buf_len, &msg_len );
    if ( msg_len > buf_len )
    msg_len = buf_len;
    cout << msg << endl;
    bool OpenDBConnection( char uname, char pword, char dns, char dbname )
    // Assign the database identifications to the ORACLE variables
    username.len = (unsigned short) strlen ( strcpy( (char *) username.arr, uname ) );
    password.len = (unsigned short) strlen ( strcpy( (char *) password.arr, pword ) );
    dns_name.len = (unsigned short) strlen ( strcpy( (char *) dns_name.arr, dns ) );
    db_name.len = (unsigned short) strlen ( strcpy( (char *) db_name.arr , dbname ) );
    /* Register sql_error() as the error handler */
    EXEC SQL WHENEVER SQLERROR goto err;
    /* Connect to the non default database */
    EXEC SQL CONNECT :username IDENTIFIED BY :password AT :db_name USING :dns_name;
    return ( true );
    err:
    SQL_Error();
    return ( false );
    ** Select the database using a dynamic method
    long SelectIDRecord ( void )
    EXEC SQL BEGIN DECLARE SECTION;
    // Define the dynamic statement
    char dyn_statement[4000];
    // Define the bind variables
    long db_id = 0;
    long db_id_type = 2; /* NUMBER */
    long db_id_len = 10;
    EXEC SQL END DECLARE SECTION;
    // Initialize the dynamic statement
    memset ( dyn_statement, 0, sizeof( dyn_statement ) );
    strcpy ( dyn_statement, "SELECT ID FROM TEST_DB ORDER BY ID" );
    EXEC SQL AT :db_name PREPARE s1 FROM :dyn_statement;
    // Declare and initialize the output descriptor
    EXEC SQL ALLOCATE DESCRIPTOR 'out';
    EXEC SQL AT :db_name DESCRIBE OUTPUT s1 USING DESCRIPTOR 'out';
    EXEC SQL SET DESCRIPTOR 'out' value 1 TYPE = :db_id_type,
    LENGTH = :db_id_len, DATA = :db_id;
    // Declare and open the cursor
    EXEC SQL AT :db_name DECLARE test_db_cursor CURSOR FOR s1;
    EXEC SQL AT :db_name OPEN test_db_cursor;
    EXEC SQL WHENEVER NOT FOUND DO BREAK;
    long nRec = 0;
    while ( true )
    EXEC SQL AT :db_name FETCH test_db_cursor INTO DESCRIPTOR 'out';
    EXEC SQL GET DESCRIPTOR 'out' VALUE 1 :db_id = DATA;
    nRec++;
    cout << "ID = " << (long) db_id << endl;
    // Close the cursor
    EXEC SQL AT :db_name CLOSE test_db_cursor;
    EXEC SQL DEALLOCATE DESCRIPTOR 'out';
    return ( nRec );
    err:
    SQL_Error();
    return ( 0 );
    int main ()
    char *uname  = "test";
    char *pword  = "test";
    char *dns    = "test_db";
    char *dbname = "test";
    OpenDBConnection ( uname, pword, dns, dbname );
    long nRec = SelectIDRecord ();
    }

    No need to specify the length if the data type is number and pointing to Long.
    You can directly map the values using INTO clause.

  • Extend dynamic selection for a field added on PRPS table

    Hi Gurus,
    I want to see the field that I've added in PRPS table as part of dynamic selection on the reports like S_ALR_87013542/ S_ALR_87013532. The LDB for project systems is PSJ. How do I make it appear as a dynamic selection on the selection-screen criteria for these reports?
    Thanks...

    Hi,
    We have done this a lot on my project.  Follow these steps:
    (1) Transaction SE36 for logical database PSJ
    (2) Choose menu path Extras -> Selection views (Ctrl+F7)
    (3) Change the "Origin of view" to SAP
    (4) Find the PRPS_R node in the top, right "Tables/nodes" view.
    (5) Double-click PRPS_R.
    (6) Find your custom field that you added in PRPS (in the bottom "Table fields/node fields" view.
    (7) Choose and enter a 2-character Function Group ID (see the top, left view) next to the new field.
    (8) Save and transport...
    Best Regards,
    James Gaddis

  • Dynamic select of unknown fields

    Hello,
    I just started abap last monday and I'm still very new in it. I have a problem and i would appreciate if some one could detaily tell me how I could solve this problem. I have search in this forum but I haven't found any thing close to what I really want to do.
    Many contracts could be tied to a single projet and also many payments could be tied to a single contract.
    I am looking for a way so that I could dynamically determine the number of all contracts belonging to a particular project. There is a table called <u>prps</u> in sap. this table contains all projects data. There is also another table called <u>prhi</u> which contains all the contracts to a project. The field in prps is <u>prps-posid</u> for the the project number. The contract field in prhi is <u>prhi-posnr</u>
    I have put all the project numers in a <u>range r_projetnr</u> for <u>prhi-up</u>.
    Now my problem is how could I dynamically select all the contracts belonging to a project.
    I would appreciate any tips on how to do this.
    Thanks
    Claudi

    Thanks you all for your respond. I think I need to be more precise. I have all the project numbers packed in a range <u>r_projectnr.</u>
    With all the project numbers packed in a range I have selected all the contracts already like this:
    data: lt_prhi
    SELECT * FROM prhi INTO CORRESPONDING FIELDS OF TABLE lt_prhi
       WHERE up IN r_projectnr.
      IF sy-subrc <> 0.
        EXIT.
      ELSE.
    * out put the data dynamically to alv output.
    clear w_output.
    CLEAR w_output.
    * t_output is my output structure which already has some fields among them the projectnr.
    * I have already selected the projectnr and outputed it to
    * t_output.
        LOOP AT t_ouput INTO w_output.
          CLEAR w_prhi.
          w_tabix_1 = 0.
          SORT lt_prhi.
          LOOP AT t_prhi INTO w_prhi WHERE psphi = w_output-projectnr.
            w_tabix_1 = w_tabix_1 + 1.
            CASE w_tabix_1.
    WHEN 1.
    *   assign first contract to t_output
                w_outpu-contractnr1           = w_prhi-posnr.
    * some more constants data come here
    WHEN 2.
                w_output-contractnr2          = w_prhi-posnr.
    * some more constant data would come here.
    WHEN 3.
    WHEN 4
    ENDCASE
    This way may be good if only a certain number of contracts are expected to be outputed. But in a case like mine where I want to output all contracts belonging to a particular project, I need a dynamic way of doing this. I have a structure defined with 4 contracts but I would also need to know a way of dynamically expanding this structure depending on the number of contracts found in one project. I hope this explains my difficult situation as a freshman in abap.
    Thank you
    Claudi Tim
    Message was edited by:
            Tim claudi
    Message was edited by:
            Tim claudi
    Message was edited by:
            Tim claudi

  • Dynamic selection using LDB

    Hi,
    I want to include two fields of custom infotype in dynamic selection of LDB so that they are handeled automatically by LDB while selection.
    can anyone tell me how to achieve the same?
    Thanks
    -Aleria

    Thankyou for the reply. However, can you plz tell me the step to followfor addition of fields after copying the LDB.
    -Aleria

  • Php select using column Field names ?

    Hello,
    I need some advice using this select
    usually I do this
    $query = "SELECT * FROM table WHERE title LIKE 'body'";
    it works, is fast and no problems.
    But now I've a big table [id, ..., ...] and need to select just the row starting with body, so I use body%
    question is
    How can I select records using the Field property of the MySql table? (Field, Type, Collation, Attributes,...)
    I want something like
    $query = "SELECT * FROM table WHERE FIELD LIKE 'body_%'";
    Thanks
    Pluda

    ExPluda wrote:
     ok, I know the name of my table, but don´t know the name of the fields, or I know them, but need this to be dinamic, so what i´m trying is to select all content from table 'body' where FIELD name like ´body%'
    I understand what you're trying to do (or at least I think I do). The answer is simple. You can't do it.
    Why not? Because it's nonsense. If you know the name of the table, you know the names of the fields (columns). Moreover, the WHERE clause is used for checking values in fields, not for checking field (column) names.
    What you're actually trying to do is probably this:
    SELECT [field_name] FROM body.
    By the way, this sort of question should really be posted in the Application Development forum.

  • Selecting using a field that stores a column_name to be used in the where

    I have a table REPORTING_CRITERIA with fields and field values:
    gl_criteria1 = 'cc.segment5'
    from_value1= '1123'
    to_value1= '1130'
    gl_criteria2 = 'cc.segment5'
    from_value2 = '1140'
    to_value2 = '1150'
    I am trying to run a select where I pull records where the actual field name stored in gl_criteria1 and gl_criteria2 is used in the where clause.
    ie.
    select bal.gl_balance, account_code
    from gl_balances bal, accounts cc, reporting_criteria crit
    where crit.report_name ='BUDGET'
    and crit.gl_criteria1 between crit.from_value1 and crit.to_value1
    What I want is to have the where read like:
    where crit.report_name ='BUDGET'
    and cc.segment5 between crit.from_value1 and crit.to_value1
    Thus cc.segment5 is the value stored in the reporting_criteria table in the gl_criteria1 field but it is an actual db column to be used in my select.
    How can I get this query to work so that the contents of gl_criteria1 field are actually read like a column name in my where?
    Edited by: ajgolden87 on Nov 8, 2012 11:10 AM

    Hi,
    You should know the column names of the table you are quering. If so you can make queries like this:
    with CC as
    select 1 id, 1123 segment5 from dual union all
    select 2 id, 1124 segment5 from dual union all
    select 3 id, 1125 segment5 from dual union all
    select 4 id, 1126 segment5 from dual union all
    select 5 id, 1127 segment5 from dual union all
    select 6 id, 1128 segment5 from dual union all
    select 7 id, 1129 segment5 from dual union all
    select 8 id, 1130 segment5 from dual union all
    select 9 id, 1131 segment5 from dual union all
    select 10 id, 1132 segment5 from dual
    ,REPORTING_CRITERIA  AS
    SELECT
      'SEGMENT5'        GL_CRITERRIA_1
      ,'1123'           FROM_VALUE_1
      ,'1130'           TO_VALUE_1
      ,'ID'             GL_CRITERRIA_2
      ,'4'              FROM_VALUE_2
      ,'7'              TO_VALUE_2
    FROM
      DUAL
    SELECT
      cc.*
    FROM
      CC
      ,REPORTING_CRITERIA
    WHERE
      GL_CRITERRIA_1 IS NULL
      OR CASE WHEN GL_CRITERRIA_1 = 'SEGMENT5' THEN SEGMENT5
              WHEN GL_CRITERRIA_1 = 'ID' THEN ID
              ELSE NULL END BETWEEN FROM_VALUE_1 AND TO_VALUE_1
      ) AND
      GL_CRITERRIA_2 IS NULL
      OR CASE WHEN GL_CRITERRIA_2 = 'SEGMENT5' THEN SEGMENT5
              WHEN GL_CRITERRIA_2 = 'ID' THEN ID
              ELSE NULL END BETWEEN FROM_VALUE_2 AND TO_VALUE_2
    ID SEGMENT5
    4     1126
    5     1127
    6     1128
    7     1129 Regards,
    Peter

  • Dynamic images using image field

    Does anyone know how to dynamically send a pdf file to the image field of an Adobe form?  I'm able to send tiff, jpg, and bmp files using an image field and graphic on the context, but I need to print a pdf file within an Adobe form.  Does the pdf file need to be converted to tiff, jpg, or bmp?  If so, how can this be done in abap?
    Regards,
    Zane

    Does anyone know how to dynamically send a pdf file to the image field of an Adobe form?  I'm able to send tiff, jpg, and bmp files using an image field and graphic on the context, but I need to print a pdf file within an Adobe form.  Does the pdf file need to be converted to tiff, jpg, or bmp?  If so, how can this be done in abap?
    Regards,
    Zane

  • Select using Indexed field, still using sequential read

    Hi Experts,
    I am selecting from CATSDB table
    SELECT SINGLE *  FROM catsdb
              WHERE belnr = var.
    BELNR is indexed so I am expecting that this statement will do a direct read.
    But when this statement is run, SAP message indicates that
    it is performing a sequential read.  Anybody knows why this is?  And how do I make direct read happen?
    Thank you very much for your help.
    Bes Regards,
    Rose

    Hi,
    may be you need to update the database statistics for that table or you need to recreate the index. Check out db02 for the table or make some check using se14.
    regards
    Siggi
    PS: Also fm rsdu_analyze_tables will be of some help. do a test run in se37 and enter the name of the table.
    Message was edited by:
            Siegfried Szameitat

  • Addition of field for Dynamic Selection in TCode FBL1N

    Hi,
    We have a requirement to add the field Partner Bank Type in TCode FBL1N on clicking dynamic selection button (under vendor master) in TCode FBL1N. To achieve this we went to TCode SE36 (Logical database) and selected logical databse KDF and then seleted selection views from the extras menu. There we have selected the table LFBK and then entered 01 (function group for Vendor Master) in the box next to the field BVTYP and selected the checbox on the right of BVTYP to enable Preselection. Saved the changes.
    However the field  Partner Bank Type does not show in the dynamic selection in TCode FBL1N under Vendor Master. Please help.
    Thanks in advance.
    Mick

    Thanks Miguel.
    I found this on the web:
    http://joyjitghosh.blogspot.com/2009/05/how-to-add-new-fields-in-dynamic.html
    I have done exactly as per the instructions given in the above link, but still I am unable to see the field in the dynamic selections of TCode FBL1N. Any reason why and how can we add the field in the dynamic selections?
    Mick

  • Adding a BSEG field to the FB03 dynamic selection screen

    Hello,
    We have a requirement wherein we want to add a field from BSEG in the dynamic selection screen of FB03.
    We found that the logical database behind this is BRF.  So we created a u2018CUSu2019 selection view for the logical database and added the field from BSEG to the functional group
    and checked the checkbox u201CPreselectu201D for it to appear automatically in the FB03 screen.
    But we still couldnu2019t see the field in FB03 dynamic selection.
    On analysis, we found that only tables are that are defined in the nodes (Extras  Selection views) can be used to create the dynamic selection and BSEG was not available
    as one of the node.  So we added BSEG as one of the node by adding the below code to the SELECTION of the logical database.
    SELECTION-SCREEN DYNAMIC SELECTIONS FOR TABLE BSEG.
    Even after that, we couldnu2019t see the field from BSEG in the dynamic selection.
    Are we missing anything here?
    I see many threads here on similar lines but no one has posted the exact step. Any help is highly appreciated.
    Thanks a lot.
    Regards,
    Suganya

    Hi
    If you want to take the line item details than you can refer these t-codes rather than customizing.
    S_AC0_52000887 - Receivables: Profit Center
    S_AC0_52000888 - Payables: Profit Center
    S_ALR_87012332 - G/L Account Statements
    Here by using the dynamic selection you can get the results. Use object list display and select the layout for more fields.
    Thanks

  • Dynamic selection field display

    Hi
    Can we display field values for a field from Dynamic selection ?

    Hi,
    Yes, you can display field values in dynamic selection field.
    If I understood your question correctly, you are talking about the dynamic selection used in reports ( For eg. ME2N). The field which are appearing in dynamic selection shows the field values. ( you can press F4 and check the field values).
    Rajesh.

  • DYNAMIC SELECTIONS IN SELECTION SCREEN

    I DONNO ANYTHING ABT DYNAMIC SELECTIONS. CUD U PLZ TELL ME HOW TO GIVE DYNAMIC SELECTIONS FOR ANY FIELD?

    hi
    good
    check this
    The statement
    SELECTION-SCREEN DYNAMIC SELECTIONS FOR NODE|TABLE <node>.
    declares a node <node> of a logical database for dynamic selections in the selection include.
    To use the dynamic selections in the SELECT statements of the subroutine PUT_<node>, you must use the data object DYN_SEL. The data object DYN_SEL is automatically generated in the logical database program as follows:
    TYPE-POOLS RSDS.
    DATA DYN_SEL TYPE RSDS_TYPE.
    You do not have to program these lines yourself. The data object DYN_SEL is available in the database program but not in a connected executable program.
    The type RSDS_TYPE of the data object is defined in the type group RSDS as follows:
    TYPE-POOL RSDS.
    WHERE-clauses ------------------------------
    TYPES: RSDS_WHERE_TAB LIKE RSDSWHERE OCCURS 5.
    TYPES: BEGIN OF RSDS_WHERE,
             TABLENAME LIKE RSDSTABS-PRIM_TAB,
             WHERE_TAB TYPE RSDS_WHERE_TAB,
           END OF RSDS_WHERE.
    TYPES: RSDS_TWHERE TYPE RSDS_WHERE OCCURS 5.
    Expressions Polish notation ---------------
    TYPES: RSDS_EXPR_TAB LIKE RSDSEXPR OCCURS 10.
    TYPES: BEGIN OF RSDS_EXPR,
             TABLENAME LIKE RSDSTABS-PRIM_TAB,
             EXPR_TAB TYPE RSDS_EXPR_TAB,
           END OF RSDS_EXPR.
    TYPES: RSDS_TEXPR  TYPE RSDS_EXPR  OCCURS 10.
    Selections as RANGES-tables -----------------
    TYPES: RSDS_SELOPT_T LIKE RSDSSELOPT OCCURS 10.
    TYPES: BEGIN OF RSDS_FRANGE,
             FIELDNAME LIKE RSDSTABS-PRIM_FNAME,
             SELOPT_T TYPE RSDS_SELOPT_T,
           END OF RSDS_FRANGE.
    TYPES: RSDS_FRANGE_T TYPE RSDS_FRANGE OCCURS 10.
    TYPES: BEGIN OF RSDS_RANGE,
             TABLENAME LIKE RSDSTABS-PRIM_TAB,
             FRANGE_T TYPE RSDS_FRANGE_T,
           END OF RSDS_RANGE.
    TYPES: RSDS_TRANGE TYPE RSDS_RANGE OCCURS 10.
    Definition of RSDS_TYPE
    TYPES: BEGIN OF RSDS_TYPE,
             CLAUSES TYPE RSDS_TWHERE,
             TEXPR   TYPE RSDS_TEXPR,
             TRANGE  TYPE RSDS_TRANGE,
           END OF RSDS_TYPE.
    http://help.sap.com/saphelp_nw04/helpdata/en/67/93b80914a911d2953c0000e8353423/content.htm
    reward point if helpful.
    thanks
    mrutyun^

  • Dynamic selections with FBL1N transaction

    Hello,
    I want to add new fields to do dynamic selections using FBL1N transaction.
    I have "House bank" field in the company code fields, but I want this field in the document fields.
    How could I do it?
    Thank you very much

    Dear Beatriz
    Yes this is possible. You need to extend the selection view for the logical database KDF using transaction SE36, to have more selection fields available in the dynamic selections of the line item display.
    Call up Transaction SE36 and enter the logical database KDF.
    Choose "Extras --> Selection views".
    Select the origin of view.
    Choose "Display" or "Change".
    Vendors: logical database: KDF
    Permitted tables:
    LFA1, LFB1: All fields are permitted that are contained in the VF_KRED
                view. If necessary, you have to include additional fields in
                the view fields category using Transaction SE11.
    BSIK: all fields
    Change the source code in program SAPDBKDF, Form INIT as explained in the SAP note 310886.
    If this helps please reward with points.
    Best Regards
    Kesav

Maybe you are looking for

  • Customer Vendor Ref. No. in Incoming Payment

    B1 8.8 PL14 and PL18 Are we able to include the Customer Vendor Reference Number in the Incoming Payment? 1. Open Incoming Payment 2. Select Form Settings 3. Cust./Vendor Ref No is selected as Visible but the Incoming Payment window does not display

  • Anyone had a problem with the on/off button or sleep/awake button becoming difficult to push

    the button has become stiff or maybe its broke...if you push hard enough it still works but you have to take the protective cover on an off which is a hassle

  • Can't Sync My iPod ! Help Please

    well ... i just got my new iPod 2nd gen of 4gb .. and i cant sync .. windows recognize the nano .. but when im gonna start sync the nano goes to the menu screen and an error appears on the sync screen .. cant sync .. please help me

  • TS3999 How do i see all my calender events in a list

    Hi  before this last iPhone iOS up date i used to be able to see a full list of all my calendar dates Now it doesn't show them like that any more. You have to search for a specific item is there a way to See all calendar events still?

  • Secret hiding place for subscription billing dept?

    I have never had such a nightmare customer service experience as I have had with my Adobe Forms Central subscription. There is no way to contact your billing department. How do I do that? I was double billed. I was on a monthly basic subscription and