Reterive data

reset company code level data by T-code OBR1. I want all data to be retrieve back to respective tables
please let me know

there is no other way to retrieve data. This is possible only when there is backup of transaction data

Similar Messages

  • How to reterive data from the Emf File.

    can anybody help me .
    Thanks.

    Hi sasikumar.93,
    Which development language are you using?
    I'm afraid that it is not the correct forum about this question, since this forum is to discuss WPF.
    You can redirect to C# or VB forum to get help(based on your language):
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=csharpgeneral
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=vbgeneral
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Data Element reterival

    hi,
    i am making a report in which i want to reterive dat from data element and display the text field...(using cdpos text_field) plzz help me by providing d solution for it.

    Hi Ric,
    If you want the description of the data element, then use function module DDIF_FIELDINFO_GET
    The return table DFIES_TAB contains fields SCRTEXT_S, SCRTEXT_M and SCRTEXT_L which is the text retrieved from data element.
    E.g.
    DATA: WA TYPE DFIES, itab type standard table of dfies.
    CALL FUNCTION 'DDIF_FIELDINFO_GET'
      EXPORTING
        TABNAME        = 'MARA'
        FIELDNAME      = 'MATNR'
      TABLES
        DFIES_TAB      = itab
      EXCEPTIONS
        NOT_FOUND      = 1
        INTERNAL_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.
    ELSE.
      READ TABLE ITAB INTO WA INDEX 1.
      WRITE:/ WA-SCRTEXT_M.
    ENDIF.
    You can create a subroutine of the above code and call it as and when required. Pass to it the table and field name (from CDPOS) and subroutine will return the text.
    Cheers,
    Aditya
    Edited by: Aditya Laud

  • Retrieve data from oracle table

    hi,
    i have uploaded a piece of xml format data in oracle and successfully uploaded but when trying to retrieve data it reterieve 0 records. Oracle version is given below:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    create table temp_loading_lob(
                                            xml_id varchar2(3),
                                            q_clob CLOB
    nologging
    create table temp_loading_xml
    nologging as
    select xml_id,xmltype( q_clob) q_xml
    from temp_loading_lob;
    XMl Data
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <Root xmlns="http://www.w3.org/2000/10/XMLSchema">
         <Accounts ApplicationVersion="7.2.1.6 (10-02-2012)" Database="Q" DateExported="20120813">
              <Account AccountID="QF8AA000">
                   <AccountName>124 On Brunswick Bed &amp; Breakfast</AccountName>
                   <Addresses>
                        <Address AddressID="aQF8AA000YMY">
                             <Description>Physical</Description>
                             <Address1>124 Brunswick Drive</Address1>
                             <Address2>Brunswick Park - RD 4</Address2>
                             <Address3></Address3>
                             <Suburb></Suburb>
                             <City>Rotorua</City>
                             <Postcode></Postcode>
                        </Address>
                        <Address AddressID="aQF8AA000WXX">
                             <Description>Postal</Description>
                             <Address1>PO Box 7365</Address1>
                             <Address2></Address2>
                             <Address3></Address3>
                             <Suburb>Te Ngae</Suburb>
                             <City>Rotorua</City>
                             <Postcode>3042</Postcode>
                        </Address>
                   </Addresses>
    </Accounts>
    </Account>
    </Root>
    Query used to reterive data
    select po.*
    from temp_loading_xml p,
         XMLTable('/Accounts/Account'
                   PASSING p.q_xml
                   COLUMNS
                      AccountID varchar2(20) PATH '@AccountID'
                      ,AccountName varchar2(20) PATH 'AccountName'                 
                                  )poi am trying to catch my error but unable to fix it. Any help will ge greatly appretiated. How can i close my thread?
    Best Regards,
    Zaid

    >
    <Root xmlns="http://www.w3.org/2000/10/XMLSchema">
         <Accounts ApplicationVersion="7.2.1.6 (10-02-2012)" Database="Q" DateExported="20120813">
              <Account AccountID="QF8AA000">
    </Accounts>
    </Account>
    </Root>
    >
    must be
    <Root xmlns="http://www.w3.org/2000/10/XMLSchema">
         <Accounts ApplicationVersion="7.2.1.6 (10-02-2012)" Database="Q" DateExported="20120813">
              <Account AccountID="QF8AA000">
    </Account>
    </Accounts>
    </Root>and add namespaces to xmltable
    32  select po.*
    33  from temp_loading_xml p,
    34       XMLTable(
    35       xmlnamespaces(default 'http://www.w3.org/2000/10/XMLSchema')
    36       ,'Root/Accounts/Account'
    37                 PASSING p.q_xml
    38                 COLUMNS
    39                    AccountID varchar2(20) PATH '@AccountID'
    40                    ,AccountName varchar2(20) PATH 'AccountName'
    41                                )po
    42  /
    ACCOUNTID            ACCOUNTNAME
    QF8AA000             124 On Brunswick Bed
    SQL>

  • Data flow of tables  for the FICO Module

    Hi,
    I am going to develop the reports for the FICO Module but i had checked that it is storing the majority of dat ain the BSEG table which is a cluster table and it will hit the performance of it. The index tables which are there make it complex .I had searched on the google about the flow and how to reterive data for it but i didn't got the desiered result.
    Please provide me guidelines for how to capture the data for reports and which are tables are mostly used.

    Hi,
    Thanks for your resposne ,the problem is SAP is implemented about a year ago and the functional consultants they only give the flow through the screens which are used and i had cheked that majority of data is stored in BSEG table.

  • Very urgent: reterving data from table MKPF table

    hi,
    i am facing a problem in adding a code i.e. i am having a select statement which use to reterive data from MKPF but i am not able to fetch it as there,i had written code for the RSEG from where i get the Material Document No..
    but now i have to take the value from the MKPF as well as it is the requierment of the code.
    here is the following code which i am using right now is to reterive data from RSEG :-
    SELECT BUKRS BELNR GJAHR AWKEY BUDAT XBLNR  
    AWTYP   FROM BKPF
    INTO (ITBKPF-BUKRS,ITBKPF-BELNR,ITBKPF-GJAHR,
    ITBKPF-AWKEY,ITBKPF-BUDAT,ITBKPF-XBLNR,ITBKPF-AWTYP)
    WHERE AWTYP EQ 'MKPF' OR AWTYP EQ 'RMRP'.
    **BEGIN OF TRY CODE FOR A MATERIAL DOCUMENT**
        ITDEMO-BELNR = ITBKPF-AWKEY(10).
        ITDEMO-GJAHR = ITBKPF-AWKEY+10(4).
        ITDEMO-XBLNR = ITBKPF-XBLNR.
        SELECT LFBNR FROM RSEG INTO
        (ITDEMO-LFBNR) WHERE
        BELNR EQ ITBKPF-AWKEY(10) AND
        GJAHR EQ ITBKPF-AWKEY+10(4) AND
        XBLNR EQ ITBKPF-XBLNR AND LFBNR  > 0.
    CHECK SY-SUBRC EQ 0 AND ITDEMO-LFBNR IN P_LFBNR.
    **END OF TRY CODE FOR A MATERIAL DOCUMENT**
    Edited by: abaper2008 on Jun 10, 2008 7:42 AM

    hi,
    i had deveoped a code for it,is correct or not?
    DATA: BEGIN OF ITBKPF OCCURS 0,
          BUKRS LIKE BKPF-BUKRS,
          BELNR LIKE BKPF-BELNR,
          GJAHR LIKE BKPF-GJAHR,
          AWKEY LIKE BKPF-AWKEY,
          BUDAT LIKE BKPF-BUDAT,
          XBLNR LIKE BKPF-XBLNR,
          AWTYP LIKE BKPF-AWTYP,
          END OF ITBKPF.
    DATA: BEGIN OF ITDEMO OCCURS 0,
          BELNR LIKE RSEG-BELNR,
          GJAHR LIKE RSEG-GJAHR,
          LFBNR LIKE RSEG-LFBNR,
          XBLNR LIKE RSEG-XBLNR,
          END OF ITDEMO.
    *******TABLE MKPF - FOR MATERIAL DOCUMENT*********
    DATA: BEGIN OF ITDEMO1 OCCURS 0,
          MBLNR LIKE MKPF-MBLNR,
          MJAHR LIKE MKPF-MJAHR,
          XBLNR LIKE MKPF-XBLNR,
          END OF ITDEMO1.
    START-OF-SELECTION.
    BKPF
        SELECT BUKRS BELNR GJAHR AWKEY BUDAT XBLNR AWTYP
        FROM BKPF
        INTO (ITBKPF-BUKRS,ITBKPF-BELNR,ITBKPF-GJAHR,         ITBKPF-AWKEY,ITBKPF-BUDAT,ITBKPF-XBLNR,ITBKPF-AWTYP)
        WHERE AWTYP EQ 'MKPF' OR AWTYP EQ 'RMRP'.
    MKPF
    *BEGIN OF TRY CODE FOR A MATERIAL DOCUMENT*
    **begin- for bsis to be reterived**
    IF ITBKPF-AWTYP EQ 'MKPF'.
        ITDEMO1-MBLNR = ITBKPF-AWKEY(10).
        ITDEMO1-MJAHR = ITBKPF-AWKEY+10(4).
        ITDEMO1-XBLNR = ITBKPF-XBLNR.
        SELECT SINGLE MBLNR FROM MKPF INTO (ITDEMO1-MBLNR)
        WHERE MBLNR EQ ITBKPF-AWKEY(10)
        AND MJAHR EQ ITBKPF-AWKEY+10(4) AND XBLNR > 0.
    CHECK SY-SUBRC EQ 0 AND ITDEMO1-MBLNR IN P_LFBNR.
    **end -  for bsis to be reterived**
      ELSE.
        ITDEMO-BELNR = ITBKPF-AWKEY(10).
        ITDEMO-GJAHR = ITBKPF-AWKEY+10(4).
        ITDEMO-XBLNR = ITBKPF-XBLNR.
        SELECT LFBNR FROM RSEG INTO
        (ITDEMO-LFBNR) WHERE
        BELNR EQ ITBKPF-AWKEY(10) AND
        GJAHR EQ ITBKPF-AWKEY+10(4) AND
        XBLNR EQ ITBKPF-XBLNR AND LFBNR  > 0.
    CHECK SY-SUBRC EQ 0 AND ITDEMO-LFBNR IN P_LFBNR.
    END OF TRY CODE FOR A MATERIAL DOCUMENT**
    APPEND ITDEMO1.
    EXIT.
    ENDSELECT.
    ENDIF.
    APPEND ITDEMO.
    EXIT.
    ENDSELECT.
    APPEND ITBKPF.
    ENDSELECT.
    Edited by: abaper2008 on Jun 10, 2008 10:19 AM

  • Urgent : Link b/w MKPF and BKPF and BSIS

    Hi,
    I am making a report in which i have to display the vendor payment status.
    In table BKPF there is a field called AWKEY and AWTYP and i want to reterive data form it and after that in BSIS table there is a field called XREF3 which is similar to the AWKEY in the BKPF table.
    plzz tel me how to make the realtion b/w these tables as help will be deifnately rewarded.

    hi,
    i am able to reterive data from now but i want to have this method also which u had told.
    i am doing inner join concept but accorind to tyou :-
    pass the first 10 characters of AWKEY to MBLNR of MKPF.
    how should i use this concept?
    Edited by: abaper2008 on May 24, 2008 8:48 AM

  • Urgent:  Problem in making Link b/w MKPF and BKPF

    Hi,
    I am making a report in which i have to make a relationship b/w BKPF and MKPF through AWKEY present in the BKPF with the MBLNR field in MKPF.
    Plzzz help me how to do dis as i am having the select statement like dis: -
    SELECT AMBLNR AXBLNR BBELNR BBUDAT BGJAHR BAWKEY FROM MKPF AS A  INNER JOIN BKPF AS B ON BXBLNR = AXBLNR INTO TABLE ITBSAK WHERE AXBLNR > 0 AND BBELNR IN P_BELNR.
    plzz help me out how to reterive data as in dis statement i am not using the AWKEY concept .plzz help me how do i do this as help will be definately rewarded.

    Hi check this sample code:
    form get_data.
    *************----------- VARIABLES ---------------**************
    data: vl_addrnum type t499s-addrnum,
    vl_city1 type adrc-city1.
    *************----------- Constants ---------------------**************
    constants:cl_ca01(4) value 'CA01'.
    ***********---------Field symbols ----------------------************
    field-symbols: <fs_mseg> type t_mseg.
    select a~mblnr a~mjahr a~zeile a~werks a~matnr a~bwart
    a~lifnr a~menge a~meins a~lgort a~grund a~sakto
    a~ps_psp_pnr a~ablad a~rsnum a~rspos a~kostl
    a~umlgo a~wempf a~ebeln a~ebelp a~bukrs a~belnr
    a~buzei a~sobkz
    b~budat b~xblnr b~bktxt b~xabln b~frbnr b~cputm
    c~matkl a~kzvbr a~shkzg
    from mseg as a
    join mkpf as b
    on a~mblnr = b~mblnr and
    a~mjahr = b~mjahr
    join mara as c
    on c~matnr = a~matnr
    into table i_mseg
    where a~werks in s_werks and
    a~bwart in s_bwart and
    a~lifnr in s_lifnr and
    a~umwrk in s_umwrk and
    a~wempf in s_scar and
    a~ablad in s_ablad and
    a~ebeln in s_ebeln and
    a~sjahr in s_yyyy and
    b~budat in s_date and
    b~cputm in s_time and
    b~mjahr in s_yyyy.
    if not i_mseg[] is initial.
    select pspnr fkokr fkstl posid stort
    from prps
    into table i_prps
    for all entries in i_mseg
    where pspnr eq i_mseg-ps_psp_pnr.
    select bwart sobkz btext from t156t
    into table i_text
    for all entries in i_mseg
    where bwart eq i_mseg-bwart
    and spras eq v_lan
    and sobkz eq i_mseg-sobkz
    and kzvbr eq i_mseg-kzvbr.
    select lifnr name1 from lfa1
    into table i_lfa1
    for all entries in i_mseg
    where lifnr eq i_mseg-lifnr.
    endif.
    *Awkey is the combination of MBLNR and MJAHR
    loop at i_mseg assigning <fs_mseg>.
    concatenate <fs_mseg>-mblnr <fs_mseg>-mjahr into <fs_mseg>-awkey.
    *To get the Vertex Catagory
    move <fs_mseg>-matnr to w_ztfi_product-matnr.
    move <fs_mseg>-matkl to w_ztfi_product-matkl.
    select single prdtc
    from ztfi_product
    into w_ztfi_product-prdtc
    where matkl eq w_ztfi_product-matkl.
    append w_ztfi_product to i_ztfi_product.
    endloop.
    if not i_mseg[] is initial.
    select bukrs belnr gjahr awkey waers
    from bkpf
    into table i_bkpf
    for all entries in i_mseg
    where gjahr = i_mseg-mjahr
    and bukrs = i_mseg-bukrs
    and budat = i_mseg-budat
    and awkey = i_mseg-awkey.
    select matnr maktx from makt
    into table i_makt
    for all entries in i_mseg
    where matnr = i_mseg-matnr
    and spras = v_lan.
    endif.
    if not i_bkpf[] is initial.
    select bukrs " Company Code
    belnr " Document Number
    gjahr " Fiscal Year
    buzei " Line Item
    shkzg " Debit / Credit indicator
    wrbtr " Amount
    sgtxt " Line Item Text
    vbund " Trading Partner
    kostl " Cost Center
    hkont " Account
    matnr " Material Number
    werks " Plants
    txjcd " Tax Jurisdiction
    projk " WBS Element
    into table i_bseg
    from bseg
    for all entries in i_bkpf
    where bukrs eq i_bkpf-bukrs and
    belnr eq i_bkpf-belnr and
    gjahr eq i_bkpf-gjahr.
    endif.
    sort: i_prps by pspnr,
    i_bkpf by bukrs awkey gjahr,
    i_makt by matnr,
    i_bseg by bukrs belnr gjahr,
    i_text by bwart sobkz.
    *Move to output table
    loop at i_mseg into w_mseg.
    move-corresponding w_mseg to w_output.
    if not w_mseg-lifnr is initial.
    select single name1 from lfa1
    into w_output-name1
    where lifnr = w_mseg-lifnr.
    endif.
    read table i_prps into w_prps with key pspnr = w_mseg-ps_psp_pnr
    binary search.
    if sy-subrc eq 0.
    move-corresponding w_prps to w_output.
    if not w_prps-fkstl is initial and not w_prps-fkokr is initial.
    select single ktext from cskt
    into w_output-ktext
    where spras = sy-langu
    and kokrs = w_prps-fkokr
    and kostl = w_prps-fkstl
    and datbi ge sy-datum.
    endif.
    select single addrnum from t499s into vl_addrnum
    where stand = w_prps-stort.
    select single city1 from adrc into vl_city1
    where addrnumber = vl_addrnum
    and addr_group = cl_ca01.
    w_output-city1 = vl_city1.
    endif.
    read table i_text into w_text with key bwart = w_mseg-bwart
    sobkz = w_mseg-sobkz
    binary search.
    if sy-subrc eq 0.
    w_output-btext = w_text-btext.
    endif.
    read table i_makt into w_makt with key matnr = w_mseg-matnr
    binary search.
    if sy-subrc eq 0.
    w_output-maktx = w_makt-maktx.
    endif.
    read table i_bkpf into w_bkpf with key bukrs = w_mseg-bukrs
    awkey = w_mseg-awkey
    gjahr = w_mseg-mjahr
    binary search.
    if sy-subrc eq 0.
    move-corresponding w_bkpf to w_output.
    read table i_bseg into w_bseg with key bukrs = w_bkpf-bukrs
    belnr = w_bkpf-belnr
    gjahr = w_bkpf-gjahr
    binary search.
    if sy-subrc eq 0.
    move-corresponding w_bseg to w_output.
    w_output-matnr = w_mseg-matnr.
    w_output-werks = w_mseg-werks.
    if w_mseg-shkzg = 'H'. " checking the mseg value.
    w_output-wrbtr = - w_bseg-wrbtr.
    w_output-menge = - w_output-menge.
    endif.
    perform cal_vertex_tax using w_bseg changing w_output-wmwst.
    endif.
    endif.
    perform format_output using w_output-matnr
    w_output-wrbtr w_output-budat
    w_output-rsnum w_output-rspos.
    append w_output to i_output.
    clear: w_output, vl_city1, w_prps,vl_addrnum, w_text, w_makt,
    w_bkpf, w_bseg.
    endloop.
    endform. " get_data

  • File to RFC PI 7.1

    Hii..Currently iam working in File  to RFC Scenario.In message mapping i have to write some logic....My problem is
    In my source mapping i have my company id..but in my target message mapping ( RFC message RFC_READ_TABLE)..
    What i need to do is i want to reterive data according to source company id using this functional module...How to map source
    and destination...
    With Regards..
    Dinesh

    Hi,
    this question is nebulous.
    If you want to determine some data related to the company ID from another system during mapping: you can use a look-up function. Maybe RFC.: http://www.sdn.sap.com/irj/scn/advancedsearch?query=rfc+lookup
    cheers,
    André

  • How to open pdf or word doc or notpad file in flex

    hai friends,
           how to open pdf or word doc or notpad file in flex. i am doing flexcoldfusion project. now i reterive data(notpad or worddoc or pdf file path) from database using coldfusion.now i want to open that file content .if i reterive notpad file .that will show in notpad. if it is possible. give example.
    regards,
    welcomecanv

    Hi WelcomeCan,
    Try this...
    var urlRequest:URLRequest = new URLRequest();
        urlRequest.url = "http://www.yourdomain.com/notepad.txt";
        //urlRequest.url = "http://www.yourdomain.com/FlexComp.pdf";
        navigateToURL(urlRequest,_blank);
    Thanks,
    Bhasker Chari

  • Reagrding modification in the select statement of smart form

    hi,
    i have been assigned to make modifications in smart form and now if i want to add field in the existing slect statement it gives error . when i check smart form there is no structure but dere in types declaration
    d internal table is passed as a table itself in the form interface and also defined the variables in the global definations . but problem is how reterive data from dese variables in to smart forms which i want add right now as i am new to the smart forms.
    Edited by: ric .s on Mar 12, 2008 10:16 AM

    hi,
    i had checked the internal table which is passsed in the program whihc conatins statement :-
    data : ivbkd like vbkd occurs 0 with header line.
    data : ikna1 like kna1 occurs 0 with header line.
    and also passed in the form in d program as it is .
    den what s the problem coming after doing all these steps .
    plzz help me out as help will be deinfately rewarded.

  • Need soultion for this?

    hai friends,
             i am doing flexcoldfusion project. now i reterive data(notpad or worddoc or pdf file path) from database using coldfusion.now i want to save that file in my desktop .if i reterive notpad file .that will save  notpad format. if it is possible. give example.
    regards,
    welcomecan

    ColdFusion is a server based language.  It will have even less access tothe user's desktop than the Flash Player.  No CF Script will allow him to save a file to the user's desktop. 
    But, you do have limited access to the user's system in Flex.  You should look at the FileRefernece class.  The docs say it can be used for uploading and downloading files.
    http://livedocs.adobe.com/flex/3/langref/flash/net/FileReference.html
    I suspect the best you can do is open up a "system prompt" allowing the user to save the file at a location of their choice.  If you're using an AIR app, take a look at the File object which gives slightly greate flexibility for dealing with local files:
    http://livedocs.adobe.com/flex/3/langref/flash/filesystem/File.html

  • Very Urgent : Reterival of AWKEY field from BKPF table

    Hi,
    I am making a report in which i have to make relation of 2 fields BKPF-AWKEY and MKPF-MBLNR . but the problem is i am not to reterive data from it as i have to make inner join among these fields so data can be reterived fmo these tables.
    plz provide me some guidelines as it is really urgent to me and help will be deinfately rewarded.

    First and foremost, i would advice you not to use words like VERY URGENT in your subject. You might want to go through the following link to understand the basic rules of the forum:
    [Rules of Engagement|https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
    For your requirement, below code might help you understand the logic in determining the link between BKPF and MKPF.
    TYPES: BEGIN OF t_bkpf,
             bukrs type bukrs,
             belnr type belnr_d,
             gjahr TYPE gjahr,
             awtyp type awtyp,
             awkey type awkey,
            end of t_bkpf.
    types: begin of t_mkpf,
             mblnr type mblnr,
             mjahr type mjahr,
           end of t_mkpf.
    data: i_bkpf type STANDARD TABLE OF t_bkpf,
          i_mkpf type STANDARD TABLE OF t_mkpf.
    data: wa_bkpf type t_bkpf,
          wa_mkpf type t_mkpf.
    PARAMETERS: p_bukrs type bukrs OBLIGATORY,
                p_gjahr TYPE gjahr OBLIGATORY.
    START-OF-SELECTION.
      SELECT bukrs belnr gjahr awtyp awkey
        into table i_bkpf
        from bkpf
        UP TO 20 ROWS
        where bukrs = p_bukrs
        and   gjahr = p_gjahr
        and   awtyp = 'MKPF'.
    IF NOT i_bkpf[] is INITIAL.
       select mblnr mjahr from mkpf into table i_mkpf
          for ALL ENTRIES IN i_bkpf
         where mblnr = i_bkpf-awkey(10).
    *     and   mjahr = i_bkpf-awkey+10(4).
    ENDIF.
    LOOP AT i_bkpf into wa_bkpf.
      READ TABLE i_mkpf into wa_mkpf
        with key mblnr = wa_bkpf-awkey(10)
                 mjahr = wa_bkpf-awkey+10(4).
      IF sy-subrc eq 0.
         write:/ 'Accounting Document:', 23 wa_bkpf-belnr,
              35 'Material Document:', 55 wa_mkpf-mblnr.
      ENDIF.
    ENDLOOP.

  • Problem of navigation with UI Patterns

    Hi,
    I have developed one CAF(Entity Services) application & configured with UI Patterns by using following liink.
    http://localhost:50100/webdynpro/dispatcher/sap.com/cafUIconfigbrowser/ConfigBrowser
    now i am getting two view pages as follows
    1)For Create Employee
    http://localhost:50100/webdynpro/dispatcher/sap.com/cafUIptn~objecteditor/ObjectEditor?app.parameter1=&app.parameter2=N&app.configName=createEmployee
    2)For Search Employee
    http://localhost:50100/webdynpro/dispatcher/sap.com/cafUIptn~objectselector/ObjectSelector?app.configName=employeeSelector
    Now i want to navigate from one view page to another , or i want to send  or reterive data to & from database by implementing user defined buttons.
    can i do this thing by using UI Patterns.plz reply back ASAP.
    Thank You very much
    Pawan Mishra

    Hi,
    I have developed one CAF(Entity Services) application & configured with UI Patterns by using following liink.
    http://localhost:50100/webdynpro/dispatcher/sap.com/cafUIconfigbrowser/ConfigBrowser
    now i am getting two view pages as follows
    1)For Create Employee
    http://localhost:50100/webdynpro/dispatcher/sap.com/cafUIptn~objecteditor/ObjectEditor?app.parameter1=&app.parameter2=N&app.configName=createEmployee
    2)For Search Employee
    http://localhost:50100/webdynpro/dispatcher/sap.com/cafUIptn~objectselector/ObjectSelector?app.configName=employeeSelector
    Now i want to navigate from one view page to another , or i want to send  or reterive data to & from database by implementing user defined buttons.
    can i do this thing by using UI Patterns.plz reply back ASAP.
    Thank You very much
    Pawan Mishra

  • Customized BAPI *Priority A*

    Hey,
    Need a Help with Writing Custom Bapi. We have checked with exsisting BAPIs but that not sufficient to do the JOB. So now we are exploring about our own custom Bapi.
    Requirement is to  Write 2 BAPI's.
    1) To post the data in the R/3.
    2) To reterive data from the R/3.
    Steps that are required:
    1) We had to create a CUSTOMTABLE <b>**to post transaction data **</b> client dependent  (ex: ZTABLE) with 4 fields. (Mandt, customer, employee Material). <b>This is done.</b>
    2) Do we need to define a structure  for usage in BAPI ? If yes does it necessarily need to have a primary key.
    3) Steps in rfc. Import and export parameters and <b>source code</b> this is the prob.
    4) Steps for creating BAPI >?
    Please don't post links. Weblogs relevant are welcomed. If any one can explain in detail that will be great.
    Thanks in advance.............................................
    *FULL POINTS FOR THE BINGOO SOLUTION**
    <b>
    Cheers,
    *RAJ*</b>

    Hey,
    Need a Help with Writing Custom Bapi. We have checked with exsisting BAPIs but that not sufficient to do the JOB. So now we are exploring about our own custom Bapi.
    Requirement is to  Write 2 BAPI's.
    1) To post the data in the R/3.
    2) To reterive data from the R/3.
    Steps that are required:
    1) We had to create a CUSTOMTABLE <b>**to post transaction data **</b> client dependent  (ex: ZTABLE) with 4 fields. (Mandt, customer, employee Material). <b>This is done.</b>
    2) Do we need to define a structure  for usage in BAPI ? If yes does it necessarily need to have a primary key.
    3) Steps in rfc. Import and export parameters and <b>source code</b> this is the prob.
    4) Steps for creating BAPI >?
    Please don't post links. Weblogs relevant are welcomed. If any one can explain in detail that will be great.
    Thanks in advance.............................................
    *FULL POINTS FOR THE BINGOO SOLUTION**
    <b>
    Cheers,
    *RAJ*</b>

Maybe you are looking for

  • Re installing premiere on my new mac

    how can I reinstall the program.  I had a PC with the program and it crashed and now I need to install it onto my new mac.

  • IPhoto 9.2 crashes each time I open...

    Hi, iPhoto worked well for some years now but after I experienced unexpected iPhoto crashes at each start of the program (before any photos were shown) I updated to 9.2 but it still did not work. Each time I start iPhoto it crashes. Tried already to

  • How to verfiy the http compression

    Hi, I'm using Sun ONE Web Server 6.1, and have configured it to compress the content on demand. I received the following http response, but in both cases of turning on/off the compression on demand. HTTP/1.1 200 OK Server: Sun-ONE-Web-Server/6.1 Date

  • I used to be able to print a pdf file, but now I can't. Why? And can I have this feature back?

    I would like to be able to print a pdf file from a page in Firefox. I used to be able to do this. Why can't I do this now, and can this feature be turned back on?

  • Problems with Collections.swap

    I have a visual JList that allows the user to rearrange questions in my xml doc. As the users rearrange I try to mirror their moves in my java.util.List containing the actual elements. Every time I try to swap elements I get "The element already has