Give  ans

1) what is the role of extended check in performance tinning?
2)difference between  inner joins and for all entries?
3)where we can find the standard logical databases?
4) how can we handle the screen resolution in bdc?
5)how can we handle the multiple values in bdc? write the logic?
6)how can we handle the pop up screen in bdc?
7)how can we call a report program in bdc?
8) in XL sheet i have 1000 records how can we upload?
9) how to call itab in scripts?
10) in single page how can we display some data in upper and some data in bottom?

Hi,
Please check these links
http://help.sap.com/saphelp_nw04/helpdata/en/cf/f2bbcb142c11d3b93a0000e8353423/content.htm
http://help.sap.com/saphelp_nw70/helpdata/en/d1/801afd454211d189710000e8322d00/content.htm
/people/rob.burbank/blog/2007/03/19/joins-vs-for-all-entries--which-performs-better
Inner Join
When multiple SAP tables are logically joined, it is always advisable to use inner join to read the data from them. This certainly reduces the load on the network.
Let us take an example of 2 tables, zairln and zflight. The table zairln has the field airln, which is the airline code and the field lnnam, which is the name of the airline. The table zflight has the field airln, the airline code and other fields which hold the details of the flights that an airline operates.
Since these 2 tables a re logically joined by the airln field, it is advisable to use the inner join.
Select aairln alnnam bfligh bcntry into table int_airdet
From zairln as a inner join zflight as b on aairln = bairln.
In order to restrict the data as per the selection criteria, a where clause can be added to the above inner join
"Using several nested INNER JOIN statements can be inefficient and cause time out if the tables become too big in the future."
Joins here (in ABAP) are not those Native SQL Joins. If you are talking about the Core RDBMS, which mean Oracle or SQL Server, then Undoubtedly Joins are the best.
In ABAP, these joins are first split by the ABAP processor and then sent to the database, with the increase in DATA in production system, these joins tend to give way if your database keeps growing larger and larger.
You should rather used "FOR ALL ENTRIES IN" (Tabular conditions), which is a much effecient way as far as performance is concerned.
For example :
DATA: BEGIN OF LINE,
CARRID TYPE SPFLI-CARRID,
CONNID TYPE SPFLI-CONNID,
CITYFROM TYPE SPFLI-CITYFROM,
CITYTO TYPE SPFLI-CITYTO,
END OF LINE,
ITAB LIKE TABLE OF LINE.
LINE-CITYFROM = 'FRANKFURT'.
LINE-CITYTO = 'BERLIN'.
APPEND LINE TO ITAB.
LINE-CITYFROM = 'NEW YORK'.
LINE-CITYTO = 'SAN FRANCISCO'.
APPEND LINE TO ITAB.
SELECT CARRID CONNID CITYFROM CITYTO
INTO CORRESPONDING FIELDS OF LINE
FROM SPFLI
FOR ALL ENTRIES IN ITAB
WHERE CITYFROM = ITAB-CITYFROM AND CITYTO = ITAB-CITYTO.
WRITE: / LINE-CARRID, LINE-CONNID, LINE-CITYFROM, LINE-CITYTO.
ENDSELECT.
Use of FOR ALL Entries
Outer join can be created using this addition to the where clause in a select statement. It speeds up the performance tremendously, but the cons of using this variation are listed below
Duplicates are automatically removed from the resulting data set. Hence care should be taken that the unique key of the detail line items should be given in the select statement.
If the table on which the For All Entries IN clause is based is empty, all rows are selected into the destination table. Hence it is advisable to check before-hand that the first table is not empty.
If the table on which the For All Entries IN clause is based is very large, the performance will go down instead of improving. Hence attempt should be made to keep the table size to a moderate level.
3.Goto Transaction code SE36 and on logical databas field
*give ' * ' and click on F4 button Now u can see all the Logical* database.
Standard logical databases will start with alphabet A to X.
4. U can change the Resolution in BDC by using CTU_PARAMS structure the field name is DEFSIZE in the structure. u need to populate this structure  pass to the bdctable.
5. use TABLE CONTROL in BDC
6.Many times in transaction pop-up screen appears and for this screen u dont pass any record but some indication to system telling it to proceed further.
to handle pop-up screen system has provide a variable called BDC_CURSOR . you pass the variable to BDC_DATA and process the screen.
7. Use SUBMIT Statement to call the program
8. Use function Module GUI_UPLOAD or ASLM_EXCEL_TO_INTERNAL_TABLE  to upload data from excel sheet
<REMOVED BY MODERATOR>
raam
Edited by: Alvaro Tejada Galindo on Apr 22, 2008 6:00 PM

Similar Messages

  • Please read question of carefully how to perform in SQLplus10g (dont give ans for 11g or previous release)

    There is table called department
    Depno  Employee_id  salary
    101         E12             1000
    101         E13             1000
    101         E14             3000
    101         E15             5000
    102         E16             4000
    102         E17             2000
    102         E18             1000
    102         E19             4000
    Now I want result like
    Depno      Employee_id                salary
    101             E12,E13,E14,E15                 10000
    102             E16,E17,E18,E19                 11000
    Tell the solution for 10 g SQLplus without creating function (no use of plsql) and also listagg function work in 11g (Need to solve query through sql statements)

    SQL> select  *
      2    from  v$version
      3  /
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
    PL/SQL Release 10.2.0.5.0 - Production
    CORE    10.2.0.5.0      Production
    TNS for 64-bit Windows: Version 10.2.0.5.0 - Production
    NLSRTL Version 10.2.0.5.0 - Production
    SQL> with sample_table as (
      2                        select 101 deptno,'E12' employee_id,1000 salary from dual union all
      3                        select 101,'E13',1000 from dual union all
      4                        select 101,'E14',3000 from dual union all
      5                        select 101,'E15',5000 from dual union all
      6                        select 102,'E16',4000 from dual union all
      7                        select 102,'E17',2000 from dual union all
      8                        select 102,'E18',1000 from dual union all
      9                        select 102,'E19',4000 from dual
    10                       )
    11  select  deptno,
    12          rtrim(xmlagg(xmlelement(e,employee_id,',').extract('//text()') order by employee_id),',') employee_id,
    13          sum(salary) salary
    14    from  sample_table
    15    group by deptno
    16    order by deptno
    17  /
        DEPTNO EMPLOYEE_ID                                  SALARY
           101 E12,E13,E14,E15                               10000
           102 E16,E17,E18,E19                               11000
    SQL>
    SY.

  • New Query:-plz give ans asap

    help ...
    delete a duplicate rows wid out using rowid and rownum
    ex
    table test
    id name
    1 a
    1 a
    2 b
    2 b
    3 c
    3 c
    4 a
    4 c
    use delete statement with out using rowid and rownum such that data become
    id name
    1 a
    2 b
    3 c
    4 c

    With a google search.
    http://www.google.ca/search?hl=en&q=database+delete+duplicate&btnG=Google+Search&meta=
    I found lots of articles.

  • Planning Security Filters not reflecting in Essbase filters for 2 of 4 cube

    We are using Hyperion Planning with essbase. In essbase we have 4 cubes in essbase (BSCF, EMP, IS, MGN). We would like to add security for the entity dimension as we don't use it currently but we do for other dimensions.
    I have created a new group (FIN_APAC) in SS so that restricted access be given to users in Asia for only their LE(s). Then I enabled security for the LE dimension in planning and set security filters through a command line load. For existing groups I gave write access to all LE members and for the new group (FIN_APAC) I gave write access to certain members.
    When I refresh the security filters in planning they should reflect in Essbase and it does for 2 cubes (BSCF & EMP) but for the other cubes (IS & MGN) the essbase security filters are NONE! In planning all the LE members are set to be included in all plan types.
    The main problem seems to be with this new group (CSR_FIN_APAC) as whenever this group is assigned the essbase filters are not assigned properly. For the existing groups that have added LE security for all members the security filters are updated for 4 cubes as expected.
    Any help appreciated
    x

    When you create a planning application we can create 3 essbase cubes as plan types. if you use Capex, Workforce you can able to create max of 5 databases in Essbase version 11.1.1.3.
    if it is 11.1.2 you can add one more cube
    In your question, have you created 4 Essbase cubes. can you explain how that is possible.
    if all the LE members in all plan types means in 3 Essbase cubes. when you refresh security from planning to essbase that works fine.
    Can you explain the situation perfectly so that can able to give ans.
    Thanks,
    Suneel kanthala.

  • To view the data in open hub destination

    Hi all,
    Can anyone help me out how to check the data in open hub destination file.
    These are the details:
    Destination: File
    Type of file : Logical file
    Application Server file name : XXXXXXX
    If it was file name, i know it has to be checked in AL11 with directory name and file name.
    Here its a logical file name. Which is the directory corresponding to this?
    Thanks,
    tinkugeo

    Hi,
    Question: "Are all the logical files are saved in the home directory DIR_HOME?
                      Please correct me if I am wrong"
    Ans: When you create an Open hub destination using Physical file, the file will get created in DIR_HOME directory (by default) in AL11
    And for locating the physical path in AL11. Go through the below link. it gives ans to all your ques
    http://bx.businessweek.com/sap/view?url=http%3A%2F%2Fweblogs.sdn.sap.com%2Fpub%2Fwlg%2F17370
    Edited by: kumkum basu on May 20, 2010 8:20 AM

  • Hi expert, i am new i want to know how to start business object

    Hi all,
    I am working in sap b1. i want to use business object for my client.
    how to use and code in that if any one give ans very appreciate.
    how use excel in that.
    how to connect database with map and how to use selectors.
    how to use chart and connect with database
    Regards
    RajkumarGupta

    Hi Ravi,
    you can download all documents related to bo from help.sap.com. in that select business objects tab-> select all products -> from drop down list box select businessobjects-> based on requirement i.e. which version you want you can get all docs.
    If I understand correctly I think you want to create a report form excel. If that is the case then download Desktop Intelligence docs w.r.to our version and start practicing it.
    Thanks & Regards,
    Suresh Aluri.

  • Multiple subscreen in same tab---tabstrip

    hi,
    i got an interview question that can we place multiple subscreens i.e, more than 1 subscreen in a tab page--in tab strips?
    plz give ans.

    Hi,
    This is possible. Paging in Tab Strip Control is achieved in two ways
    Paging in SAP GUI
    Paging in SAP Application Server.
    Click the link below to know more about Paging in Tabstrip Controls.
    http://help.sap.com/saphelp_47x200/helpdata/en/17/5bf1b52ba211d2954f0000e8353423/content.htm
    Regards,
    vara

  • Getting Top odf page in REUSE_ALV_HIERSEQ_LIST_DISPLAY  List

    Hi
    I am using FM: REUSE_ALV_HIERSEQ_LIST_DISPLAY to display the list..
    But i didn't get top of page on the same.  Can any know abt the same please
    give ans with sample code. I would appreciate your prompt help..
    thanks,

    You have to use the EVENTS parameter in this case.  Here is a complete example.
    report zrich_0001 .
    type-pools: slis.
    data: begin of head occurs 0,
           matnr type afpo-matnr,
           maktx type makt-maktx,
           expand type c,
          end of head.
    data: begin of detail occurs 0,
           matnr type marc-matnr,
           werks type marc-werks,
           dispo type marc-dispo,
          end of detail.
    data: events   type slis_t_event,
          list_top_of_page type slis_t_listheader,
          top_of_page  type slis_formname value 'TOP_OF_PAGE'.
    start-of-selection.
      select matnr maktx from makt
                   into table head
                           up to 100 rows.
      if not head[] is initial.
        sort head ascending by matnr.
        select matnr werks dispo into table detail
                  from marc
                     for all entries in detail
                        where matnr = detail-matnr.
      endif.
      perform call_alv.
    *       FORM call_alv                                                 *
    form call_alv.
      data: gt_fieldcat type slis_t_fieldcat_alv,
            gs_keyinfo  type slis_keyinfo_alv,
            gs_layout   type slis_layout_alv.
      data: ls_fieldcat type slis_fieldcat_alv.
      clear gs_keyinfo.
      gs_keyinfo-header01 = 'MATNR'.
      gs_keyinfo-item01   = 'MATNR'.
      clear ls_fieldcat.
      ls_fieldcat-fieldname    = 'MATNR'.
      ls_fieldcat-reptext_ddic = 'Material'.
      ls_fieldcat-tabname      = 'HEAD'.
      ls_fieldcat-outputlen    = 18.
      append ls_fieldcat to gt_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname    = 'MAKTX'.
      ls_fieldcat-reptext_ddic = 'Description'.
      ls_fieldcat-tabname      = 'HEAD'.
      ls_fieldcat-outputlen    = 40.
      append ls_fieldcat to gt_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname    = 'WERKS'.
      ls_fieldcat-reptext_ddic = 'Plant'.
      ls_fieldcat-tabname      = 'DETAIL'.
      ls_fieldcat-outputlen    = 4.
      append ls_fieldcat to gt_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname    = 'DISPO'.
      ls_fieldcat-reptext_ddic = 'MRP Controller'.
      ls_fieldcat-tabname      = 'DETAIL'.
      ls_fieldcat-outputlen    = 5.
      append ls_fieldcat to gt_fieldcat.
      gs_layout-expand_fieldname = 'EXPAND'.
      perform eventtab_build using events[].
      perform comment_build using list_top_of_page[].
      data: repid type sy-repid.
      repid = sy-repid.
      call function 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
           exporting
                i_callback_program = repid
                it_fieldcat        = gt_fieldcat[]
                is_layout          = gs_layout
                i_tabname_header   = 'HEAD'
                i_tabname_item     = 'DETAIL'
                it_events          = events[]
                is_keyinfo         = gs_keyinfo
           tables
                t_outtab_header    = head
                t_outtab_item      = detail.
    endform.
    * EVENTTAB_BUILD
    form eventtab_build using events type slis_t_event.
    * Registration of events to happen during list display
      data: tmp_event type slis_alv_event.
      call function 'REUSE_ALV_EVENTS_GET'
           exporting
                i_list_type = 0
           importing
                et_events   = events.
      read table events with key name = slis_ev_top_of_page
                               into tmp_event.
      if sy-subrc = 0.
        move top_of_page to tmp_event-form.
        append tmp_event to events.
      endif.
    endform.
    * COMMENT_BUILD
    form comment_build using list_top_of_page type
                                            slis_t_listheader.
      data: tmp_line type slis_listheader.
      clear tmp_line.
      tmp_line-typ  = 'H'.
      tmp_line-info = 'Here is a line of text'.
      append tmp_line to list_top_of_page.
      clear tmp_line.
      tmp_line-typ  = 'S'.
      tmp_line-key  = 'Key1'.
      tmp_line-info = 'Here is a value'.
      append tmp_line to list_top_of_page.
      clear tmp_line.
      tmp_line-typ  = 'S'.
      tmp_line-key  = 'Key2'.
      tmp_line-info = 'Here is another value'.
      append tmp_line to list_top_of_page.
    endform.
    * TOP_OF_PAGE
    form top_of_page.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
           exporting
    *            i_logo             = 'ENJOYSAP_LOGO'
                it_list_commentary = list_top_of_page.
    endform.
    Regards,
    RIch Heilman

  • Can UWL are simontanously configure for two different sap systems ? How ?

    Hi,
    I am new in portal. Can any one tell me how to configure UWL . We have r/3 system as well as crm system. i want to show both UWL for both the system on one page.
    Please give ans in steps by steps.
    Please suggest me steps for that.
    Regards,
    Gurprit Bhatia
    Edited by: GURPRIT BHATIA on Dec 26, 2007 1:34 PM

    Hi GURPRIT,
    It is possible to display item from two different systems.
    All you need to do is create separate webflow connectors for the systems for which you required to configure the UWL and the systems must be available in the SLD.
    after creating the connectors register both of them and you can start receiving workitems from both the systems.
    reward if useful.
    Rgds,
    Vijay

  • What is the IDOC for Master inspection Characterstics Creation/edit/Cancel

    Hi
    i need IDOC for this.....
    what is the IDOC for
    1.Master inspection Characterstics Creation
    2.Master inspection Characterstics Edit
    3.Master inspection Characterstics Cancel
    plz give ans very urgent
    bye
    suresh

    Check these..
    in TCode: we30
    ->INSPECTIONPLAN_CREATE01
    ->MATQM01
    ->QPMK01
    Regards,
    Ramesh.

  • How to run process chains

    hi,
    this is sudhakar
    pls any one tell me
    I prepaired process chain
    but i dont know how to start how it run daily automatically
    pls any one give ans
    thanks
    sudhakar

    hi,
       open your process chain -> right click on start process ->  select maintain varient -> select direct scheduling -> goto change selections tab -> select date/time give from when you want to run for eg from today 3.00 PM means in date tab give todays date and in time tab give the time info.  in bottom select periodic jobs check box and click on periodic values tab -> here select daily check and save again check and save again save. now you schedule your job at 3.00PM from today, now you need to release this job, after this settings come to your process chain click on clock symbol to activate and schedule your process chain. so this chain will run at specified time, you can check this in SM37 by giving your user name and released job as job status.
    Regards
    Sankar

  • How many primary key fields  allowed for one table?

    hi,
    when i creating a table , how many primary key fields are allowed for one table.
    please any one give ans
    thanks

    Just checked it,  Its 255, not 155.  You can have as many key fields as you want, but you can not go over the 255 byte length for the total of all key fields.  You will get a warning for over 120, as it says that there is limited functionality with a key over 120 in length.
    Again, this is a total length of all key fields.
    Regards,
    Rich Heilman

  • Plz give the ans

    1)why we used tiff file in  scripts?
    2) if we have a quality client 300 in this client is it works scripts?
    3) what is difference 4.6 c and 4.7 EE version?
    4) give me some idea about ecc 6.0  version?
    5) what is the purpose of code inspector?
    6) in LSMW  why we prefer session method?why we used direct method some times only?
    7) how to debugs smart forms?
    8) difference  between split and concatenate?
    9) in which situation  we can create secondary index?
    10) what r the different type of session?
    11)how to handle the error in call traction with step loop?
    12)what is conversion routine why we used?
    13) can we generated 2 session in BDC ? how?

    8)difference between split and concatenate?
    Split  will split a string  into different portion  , splitting at a particular charactor.
    lets  a = 'a b c d'
    split a   at ' '  into  b c d e.
    then b ='a'
    c = 'b'
    d = 'c'
    e = 'd'
    But concatinate will combaine different pieces of string into one sstring
    CONCATENATE b c d e INTO  a.
    then a = 'abcd'
    11)how to handle the error in call traction with step loop?
    data : bdcmsg like bdcmsgcoll occurs 0 with header line.
    call transaction 'SE11' using it_bdc mode 'N' update 'A' messages into bdcmsg.
    loop at bdcmsg.
    call function 'FORMAT_MESSAGE'
    exporting
       id              = sy-msgid
       lang            = '-D'
       no              = bdcmsg-msgnr
       v1              = bdcmsg-msgv1
       v2              = bdcmsg-msgv2
       v3              = bdcmsg-msgv3
       v4              = bdcmsg-msgv4
    importing
       msg             = bdcmsg-msgv1
    exceptions
       not_found       = 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.
    if bdcmsg-msgnr = 428 .
    success = success + 1.
    endif.
    write: /  bdcmsg-msgv1.
    endloop.
    Here bdcmsgcoll  is a  message handaling structure  .
    13) can we generated 2 session in BDC ? how?
    *& Report  ZBDCZMASTERSESSION
    report  zbdczmastersession.
    tables: plsc.
    types: begin of s1,
           empid type zmaster-empid,
           name type zmaster-name,
           age type zmaster-age,
           end of s1.
    data : it_tab type s1 occurs 0 with header line.
    data : it_bdc type bdcdata occurs 0 with header line.
    data : session like apqi-groupid value 'Sar'.
    select * from zmaster into table it_tab.
    call function 'BDC_OPEN_GROUP'
    exporting
    client          = sy-mandt
    group          = session
    user          = sy-uname
    exceptions
       client_invalid            = 1
       destination_invalid       = 2
       group_invalid             = 3
       group_is_locked           = 4
       holddate_invalid          = 5
       internal_error            = 6
       queue_error               = 7
       running                   = 8
       system_lock_error         = 9
       user_invalid              = 10
       others                    = 11
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
             with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    refresh it_bdc.
    loop at it_tab.
    *IF SY-TABIX < 2.
    refresh it_bdc.
    perform bdc_dynpro      using 'SAPMSRD0' '0102'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RSRD1-TBMA_VAL'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=SHOW'.
    perform bdc_field       using 'RSRD1-TBMA'
                                  'X'.
    perform bdc_field       using 'RSRD1-TBMA_VAL'
                                  'ZMASTER'.
    perform bdc_dynpro      using 'SAPLSD41' '2200'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=TDED'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'DD03P-FIELDNAME(01)'.
    perform bdc_dynpro      using '/1BCDWB/DBZMASTER' '0101'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'ZMASTER-AGE'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=SAVE'.
    perform bdc_field       using 'ZMASTER-EMPID'
                                  it_tab-empid.
    perform bdc_field       using 'ZMASTER-NAME'
                                  it_tab-name.
    perform bdc_field       using 'ZMASTER-AGE'
                                  it_tab-age.
    perform bdc_dynpro      using '/1BCDWB/DBZMASTER' '0101'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/EBACK'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'ZMASTER-EMPID'.
    perform bdc_dynpro      using 'SAPLSD41' '2200'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=WB_BACK'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'DD03P-FIELDNAME(01)'.
    perform bdc_dynpro      using 'SAPMSRD0' '0102'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RSRD1-TBMA_VAL'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=BACK'.
    perform bdc_field       using 'RSRD1-TBMA'
                                  'X'.
    perform bdc_field       using 'RSRD1-TBMA_VAL'
                                  'ZMASTER'.
    *call transaction 'SE11' using it_bdc mode 'A' UPDATE 'A' MESSAGES INTO BDCMSG.
    *CALL FUNCTION 'BDC_INSERT'
    EXPORTING
      TCODE                  = 'SE11'
    *TABLES
    *DYNPROTAB     = IT_BDC
    EXCEPTIONS
      INTERNAL_ERROR         = 1
      NOT_OPEN               = 2
      QUEUE_ERROR            = 3
      TCODE_INVALID          = 4
      PRINTING_INVALID       = 5
      POSTING_INVALID        = 6
      OTHERS                 = 7
    *IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *ENDIF.
    *WRITE:/ ' CREATED '.
    *ENDIF.
    endloop.
    call function 'BDC_CLOSE_GROUP'
    exceptions
       not_open          = 1
       queue_error       = 2
       others            = 3
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
             with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    *call transaction 'SM35'.
    *SUBMIT RSBDCSUB.
    *SUBMIT RSBDCreo.
    submit rsbdclog.
           Start new screen                                              *
    form bdc_dynpro using program dynpro.
      clear it_bdc.
      it_bdc-program  = program.
      it_bdc-dynpro   = dynpro.
      it_bdc-dynbegin = 'X'.
      append it_bdc.
    endform.
           Insert field                                                  *
    form bdc_field using fnam fval.
      if fval <> ''.
        clear it_bdc.
        it_bdc-fnam = fnam.
        it_bdc-fval = fval.
        append it_bdc.
      endif.
    endform.
    'BDC_OPEN_GROUP' will create sessions

  • Please  give me ans for ABAP and SAP_XI  questions

    i want to know in which way tha following question to be answered
    1.on which service pack ur working.
    2. what functions are used and developed.
    3.how u performed conveersions where and how.
    4.tell me the complex mappin u performed in ur experience.
    5.can we map a sync interface to asynch interface.
    6.what are tha interfaces u mapped during interfaces mapping.
    7.what is cotext.where itis used.
    8.how we can add the context.
    9.how we can remove the context.
    10.how the data in sap xi stores and where.
    11.architecture if sap_xi
    12.structure of d/b at receiver side.
    13.pipe line steps in IE.
    14.can we create strcture with out data type.
    15.can we create external interface.
    16.xi consultant role and responsibilities.
    17.if idoc is receiver side how u configure the sender side.
    18.how soap adapter will be stored.
    19.mandatory fields in adapter.
    20.have u comacross version during adapter configaration.what it means.

    Just put a search in SDN u will get lots and lots of discussions related to the questions you have asked !Umight have a clear picture
    and moreover you were asking for the questions which <b>you should answer</b> depending on your work environment like SP's  and mapping you have worked.
    Message was edited by:
            Anusha  Ramsiva

  • Im confused... Please give me a straight ans

    Hi everyone i just purchased a MicroZen today and i was reading the manual. In the manual it said "Handling cord(s) on this product may expose you to lead, a chemical known to the state of California to cause cancer and birth defects or other reproducti've harm. Wash hands after handling." Can someone please help me, me and my parents got worried when i read this please help. Thanks

    All,
    We can't say that there is nothing to worry about, but it is something you should be informed about. California law states that notification should be given if a product contains certain amounts of lead. Many types of electrical cords use small amounts of lead to make them more flexible and the USB cord used with many of our products is no different.
    I believe a more official source of information regarding the Lead disclaimer, it's origin and purpose, can be found here: <FONT face=Helv color=#000099 size=2>http://www.oehha.ca.gov/prop65.html
    <FONT face=Helv color=#000099 size=2>
    <FONT face=Helv size=2>Daniel

Maybe you are looking for