BDC for PA30 action hire is not creating entry in IT 1001

Hello All,
   I created a BDC for to create hire action in system to create some dummy data, but its not creating entry in infotype 1001 for relation between person (P) and position (S). If i create entry in PA30 it create ebtry, if i try BDC in Dialog mode even then its not creating it.
  I read a lot about Dynamic action in this kind of issue but i seen table T588Z but there is no any insert dynamic action for IT 1001.
Can anybody throw some light on the cause of the same.
i tried to create same data with FM HR_MIANTAIN_MASTERDATA but i have to drop that idea becasue it was not able to crate record with empty PERNR field. if your answer is use this FM then please provide some working code as i searched a lot on the same issue but no any concrete proof on the same.
appreciate any reply.
Mani

Hi,
Are you getting any error?
If not i think you have to lock the employee before creating an entry to the IT 1001 using FM
'BAPI_EMPLOYEE_ENQUEUE'
and create an entry to IT 1001 using BDC or HR_MIANTAIN_MASTERDATA
and unlock an employee by using FM
'BAPI_EMPLOYEE_DEQUEUE'
Regards
Krishna

Similar Messages

  • BDC FOR F-58 - BKPF-BLART NOT FOUND ON DYNPRO

    Hi everyone,
    I am doing the bdc for tcode F-58 based on the parameters given by SM35. When I run it with the program, it suddenly stops showing the error message, "Field BKPF-BLART not found on dynpro sapmf05a 0129". I need to set the bkpf-blart field to a specific one (electronic payment) but it seems bdc doesn't allowed me to do such a change. do you know how does this happens or how can it be solve, or where can i take a look ?
    Thanks on any advice.
    Silvia

    BKPF-BLART is very much there on the specified screen SAPMF05A 0129.
    although quite a few FI transactions behave differently when run normally compared to when a recording is done on them, i don't think this transaction will fall in that category (especially this field). check your code once again.
    rgds,
    PJ

  • CO-PA for good issue documents are not created

    Dear All
    We are using both account & cost based CO-PA , actually the problem is this that when we are doing the sales cycle, after billing my CO-PA document created  but the same when I do delivery COGS document not created  ,actually for sales I am taking the sales data from condition type(assignment of condition type to CO-PA value filed) and for COGS , I have assigned the COGS  GL accounts in TRANSACTION Code OKB9 (automatic determine the profitability segment) also the same GL accounts I have assigned  with value field in
    Assignment PA transfer structure
    Now when I am doing sales cycle , CO-PA document has been created when I am doing billing but when I am doing Good issue , CO-PA not created  but if I go and check the GL account of  COGS account I found the all detail of my profitability segment which hit this GL account
    Please help in this regard.
    Regards
    Kashif

    I assume that problem relates to billing in make-to-stock scenario. Since COPA document is automatically created with billing. Please note the following -
    1. COGS GL account is not created as cost element.
    2. There is no CO / COPA document at the time of delivery.
    3. Condition type ‘VPRS’ should exist in SD pricing. It is updated form material master.
    4. Condition type ‘VPRS’ should be assigned to COPA value field (just like PR00 / price).
    5. Revenue and COGS value fields are updated at the time of billing.
    Hope it clarifies.
    Regards,

  • T code to find sales orders/Deliveries for which batch job could not create

    Hi
    Once a PGI has been created for a sales order, the invoice should be created in nightly batch. Once is a while, something is wrong and SAP cannot create the invoice. I know there is a transaction that will list the orders / deliveries where SAP could not create the invoice. Can you tell me what that t-code is? Thanks

    Lakshmipathy
    I think you did not get my point corectly , I know , billing docs due list , what I  need was after batch job running , for some deliveries , due to some reason , billing docs might not have created .
    Business needs to know only thsese delivery docs in a T code or table but not all the due document . I did not find answer for this question in SDN .
    I got the answer now  for this question , it is V.21 .
    Thanks for your time .

  • Can not create entries in httpurlloc in SAPNW2004s SneakPreviewABAP

    Hello Comunity,
    I have SneakPreview SAPNW2004s Abap Version installed and now I try to configure the HTTPURLLOC in SE16 for Reverseproxy-Scenarios. Anyway I can´t create entries, "The system settings do not allow any changes".
    Anyone tried that before or run in the same problem?
    I already checked SDN, there are some entries how to switch to debug mode but I´m not sure if this is the right way. Maybe I only miss something.
    Regards

    Hi,
    we had the same problem in the sneak preview, it seems to be a feature that was switched off on purpose, because it's just a preview system for playing around, in the normal development systems it's no problem to change HTTPURLLOC. It might just be the same as with HTTPS which is not included in the sneak preview.
    Regards, Heidi

  • BDC for PA30

    Hi all,
    I need to update info type 0001. If BTRTL is '0002',
    i need to set PERSG = 9
    and              PERSK = U1.
    but my problem is that these fields PERSG and PERSK are disabled even in the change mode in transaction PA30. so i cannot record that. thats why i cannot use BDC.
    Can anyone please help me on this?
    or suggest any alternative method/ BAPI/FM to do this?
    Thanks,
    Ridhima

    Hi ridhima,
    We can use the FM HR_INFOTYPE_OPERATION'
    for updating infotypes
    (This is the sample for 0015)
    1. this is the full coding.
    2. just copy paste in new program.
    3. U can change the pernr and amount values as per requirement.
    4.
    Report abc.
    Data
    DATA : P0015 LIKE P0015.
    DATA : RETURN LIKE BAPIRETURN1.
    DATA : KEY LIKE BAPIPAKEY.
    DATA : RETURNE LIKE BAPIRETURN1 .
    Values (Change as per Requirement)
    P0015-PERNR = '1'.
    P0015-BEGDA = '2061101'.
    P0015-ENDDA = '2061101'.
    P0015-LGART = '3075'.
    P0015-PREAS = '01'.
    P0015-WAERS = 'INR'.
    P0015-BETRG = '2500'.
    *----- First Enqu
    CALL FUNCTION 'BAPI_EMPLOYEE_ENQUEUE'
    EXPORTING
    NUMBER = p0015-pernr
    IMPORTING
    RETURN = RETURNE.
    Update
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
    EXPORTING
    INFTY = '0015'
    NUMBER = P0015-PERNR
    SUBTYPE = P0015-SUBTY
    OBJECTID = P0015-OBJPS
    LOCKINDICATOR = P0015-SPRPS
    VALIDITYEND = P0015-ENDDA
    VALIDITYBEGIN = P0015-BEGDA
    RECORDNUMBER = P0015-SEQNR
    RECORD = P0015
    OPERATION = 'INS'
    TCLAS = 'A'
    DIALOG_MODE = '0'
    IMPORTING
    RETURN = RETURN
    KEY = KEY.
    IF RETURN IS NOT INITIAL.
    WRITE :/ 'Error Occurred'.
    ENDIF.
    Dequeue
    CALL FUNCTION 'BAPI_EMPLOYEE_DEQUEUE'
    EXPORTING
    NUMBER = P0015-PERNR
    regards,
    amit m.

  • Service PO for Multiple Acct Assig is not created using BAPI_PO_CREATE1

    Hi,
    Im unable to create the Service po with multiple acct assiignment using BAPI_PO_CREATE1
    Header Data
          w_poheader-comp_code = w_src-bukrs.  "Company Code
          w_poheader-doc_type = w_src-bsart.   "Document type
         w_poheader-delete_ind = w_src-vrtkz. "Deletion Indicator
          CLEAR: lv_date.
          CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
            EXPORTING
              date_external            = w_src-aedat
            IMPORTING
              date_internal            = lv_date
            EXCEPTIONS
              date_external_is_invalid = 1
              OTHERS                   = 2.
          w_poheader-creat_date = lv_date.    "Creation Date
          w_poheader-created_by = sy-uname.    "Creator Name
          w_poheader-vendor = w_src-lifnr.     "Vendor
          w_poheader-pmnttrms = w_src-zterm.   "Payment Terms
          w_poheader-purch_org = w_src-ekorg.  "Purchase Organization
          w_poheader-pur_group = w_src-ekgrp.  "Purchase Group
          w_poheader-ref_1    = w_src-ihrez.   "OLD PO
          w_poheaderx-comp_code = 'X'.  "Company Code
          w_poheaderx-doc_type = 'X'.   "Document type
         w_poheaderx-delete_ind = 'X'.      "Deletion Indicator
          w_poheaderx-creat_date = 'X'.    "Creation Date
          w_poheaderx-created_by = 'X'.
          w_poheaderx-vendor = 'X'.
          w_poheaderx-pmnttrms = 'X'.   "Payment Terms
          w_poheaderx-purch_org = 'X'.  "Purchase Organization
          w_poheaderx-pur_group = 'X'.  "Purchase Group
          w_poheaderx-ref_1 = 'X'.
    Item Data
          w_poitem-po_item = w_src-ebelp.
          IF NOT w_src-elikz IS INITIAL.
            w_poitem-delete_ind = w_src-elikz.
          ENDIF.
          IF NOT w_src-txz01 IS INITIAL.
            w_poitem-short_text = w_src-txz01.
          ENDIF.
          IF NOT w_src-werks IS INITIAL.
            w_poitem-plant = w_src-werks.
          ENDIF.
    Material group
          IF NOT w_src-matkl IS INITIAL.
            w_poitem-matl_group = w_src-matkl.
          ENDIF.
    Open or Partial Qty
          IF w_src-opqty IS  NOT INITIAL.
            w_poitem-quantity = w_src-opqty.
          ELSEIF NOT w_src-paqty IS INITIAL.
            w_poitem-quantity = w_src-paqty.
          ENDIF.
          IF NOT w_src-meins IS INITIAL.
            w_poitem-po_unit = w_src-meins. "Base Unit of Measure
          ENDIF.
          IF NOT w_src-netpr IS INITIAL.
            w_poitem-net_price = w_src-netpr.  "Net Price
          ENDIF.
          IF NOT w_src-mwskz IS INITIAL.
            w_poitem-tax_code = w_src-mwskz.
          ENDIF.
          IF NOT w_src-pstyp IS INITIAL.
            w_poitem-item_cat = w_src-pstyp.
          ENDIF.
          IF NOT w_src-knttp IS INITIAL.
            w_poitem-acctasscat = w_src-knttp.
          ENDIF.
          w_src-vrtkz = '2'.    "Added
          IF NOT w_src-vrtkz IS INITIAL.
            w_poitem-distrib = w_src-vrtkz.
          ENDIF.
    Package No
          IF w_src-srv_line_no EQ '2'.
            w_poitem-pckg_no = 0000000001. "Assign dummy package no "w_src-packno.  "Package no
          ELSEIF w_src-srv_line_no EQ '3'.
            w_poitem-pckg_no = 0000000004. "Assign dummy package no "w_src-packno.  "Package no
          ENDIF.
          IF w_poitem-delete_ind IS INITIAL AND
             w_poitem-short_text IS INITIAL AND
             w_poitem-plant IS INITIAL AND
             w_poitem-matl_group IS INITIAL AND
             w_poitem-quantity IS INITIAL AND
             w_poitem-po_unit IS INITIAL AND
             w_poitem-net_price IS INITIAL AND
             w_poitem-tax_code IS INITIAL.
            CLEAR lv_item.
          ELSE.
            APPEND w_poitem TO i_poitem.
            CLEAR: w_poitem.
            lv_item = 'X'.
          ENDIF.
          w_poitemx-po_item = w_src-ebelp.
          w_poitemx-delete_ind = 'X'.
          w_poitemx-short_text = 'X'.
          w_poitemx-plant = 'X'.
          w_poitemx-matl_group = 'X'.
          w_poitemx-quantity = 'X'.
          w_poitemx-po_unit = 'X'.
          w_poitemx-net_price = 'X'.
          w_poitemx-tax_code = 'X'.
          w_poitemx-item_cat = 'X'.
          w_poitemx-acctasscat = 'X'.
          w_poitemx-distrib = 'X'.
          w_poitemx-pckg_no = 'X'.
          IF lv_item = 'X'.
            APPEND w_poitemx TO i_poitemx.
            CLEAR: w_poitemx,
                   lv_item.
          ENDIF.
    PO Deliery Address
          w_poaddrdelivery-po_item = w_src-ebelp.
          IF NOT w_src-adrn2 IS INITIAL.
            w_poaddrdelivery-addr_no = w_src-adrn2.
            APPEND w_poaddrdelivery TO i_poaddrdelivery.
            CLEAR w_poaddrdelivery.
          ENDIF.
    POschedule
          w_poschedule-po_item = w_src-ebelp.
       w_poschedule-SCHED_LINE = w_src-
          CLEAR: lv_date.
          CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
            EXPORTING
              date_external            = w_src-eindt
            IMPORTING
              date_internal            = lv_date
            EXCEPTIONS
              date_external_is_invalid = 1
              OTHERS                   = 2.
          IF NOT lv_date IS INITIAL.
            w_poschedule-del_datcat_ext = 'D'. "Delivery Date in Day Format
            w_poschedule-delivery_date = lv_date.
            w_poschedule-quantity = w_src-menge.
            APPEND w_poschedule TO i_poschedule.
            CLEAR w_poschedule.
            lv_schd = 'X'.
          ENDIF.
          w_poschedulex-po_item = w_src-ebelp.
       w_poschedule-SCHED_LINE = 'X'.
          w_poschedulex-del_datcat_ext = 'X'.
          w_poschedulex-delivery_date = 'X'.
          w_poschedulex-quantity = 'X'.
          IF lv_schd = 'X'.
            APPEND w_poschedulex TO i_poschedulex.
            CLEAR : w_poschedulex,
                    lv_schd.
          ENDIF.
    PO Account Assignment
          w_poaccount-po_item = w_src-ebelp.
          w_poaccount-serial_no = w_src-zekkn.
    Distribution Indicator is 1
          IF w_src-vrtkz EQ '1'.
            w_poaccount-distr_perc = w_src-vproz.
            IF NOT w_src-menge IS INITIAL.
              CLEAR lv_menge.
              lv_menge = w_src-menge.
            ENDIF.
            lv_acct_qty = lv_menge * w_src-vproz / 100.
    Get Round value of Quanity
            frac = FRAC( lv_acct_qty ).
            IF frac EQ 0.
              lv_acct_qty = FLOOR( lv_acct_qty ).
            ELSE.
              lv_acct_qty = CEIL( lv_acct_qty ).
            ENDIF.
            w_poaccount-quantity = lv_acct_qty.
          ELSEIF w_src-vrtkz IS INITIAL.
            w_poaccount-quantity = w_src-menge.
          ENDIF.
      w_poaccount-quantity = w_src-menge.    "added
          w_poaccount-gl_account = w_src-saknr.
          w_poaccount-costcenter = w_src-kostl.
          w_poaccount-asset_no = w_src-anln1.
          w_poaccount-wbs_element = w_src-wbs.
          w_poaccount-network = w_src-nplnr.
          w_poaccount-tax_code = w_src-mwskz.
          w_poaccount-activity = w_src-vornr.
          APPEND w_poaccount TO i_poaccount.
          CLEAR w_poaccount.
          w_poaccountx-po_item = w_src-ebelp.
          w_poaccountx-serial_no = w_src-zekkn.
          IF w_src-vrtkz EQ '1'.
            w_poaccountx-distr_perc =  'X'.
          ENDIF.
          w_poaccountx-quantity = 'X'.
          w_poaccountx-gl_account = 'X'.
          w_poaccountx-costcenter = 'X'.
          w_poaccountx-wbs_element = 'X'.
          w_poaccountx-network = 'X'.
          w_poaccountx-tax_code = 'X'.
          w_poaccountx-activity = 'X'.
          w_poaccountx-cmmt_item = 'X'.
          APPEND w_poaccountx TO i_poaccountx.
          CLEAR w_poaccountx.
    Extension for ZZSub
          IF NOT w_src-zzsub IS INITIAL.
            w_extensionin-structure = 'BAPI_TE_MEPOACCOUNTING'.
            w_extensionin-valuepart1+0(5) = w_src-ebelp.
            w_extensionin-valuepart1+5(2) = '01'.
            w_extensionin-valuepart1+28(5) = w_src-zzsub.
            APPEND w_extensionin TO i_extensionin.
            CLEAR w_extensionin.
            w_extensionin-structure = 'BAPI_TE_MEPOACCOUNTINGX'.
            w_extensionin-valuepart1+0(5) = w_src-ebelp.
            w_extensionin-valuepart1+5(2) = '01'.
            w_extensionin-valuepart1+11(1) = 'X'.
            APPEND w_extensionin TO i_extensionin.
            CLEAR w_extensionin.
          ENDIF.
    Extension to add Expense Type only
          IF NOT  w_src-zzexptype IS INITIAL.
            w_extensionin-structure = 'BAPI_TE_MEPOHEADER'.
            w_extensionin-valuepart1+10(4) = w_src-zzexptype.
            APPEND w_extensionin TO i_extensionin.
            CLEAR w_extensionin.
            w_extensionin-structure = 'BAPI_TE_MEPOHEADERX'.
            w_extensionin-valuepart1+10(4) = 'X'.
            APPEND w_extensionin TO i_extensionin.
            CLEAR w_extensionin.
          ENDIF.
          EXPORT i_extensionin[] TO MEMORY ID 'SUB'.
    PO Services( One Line Iem)
          IF w_src-srv_line_no EQ '2'.
            w_poservices-pckg_no = 0000000001.  "w_src-packno. "(assign package no as a dummy number)
            w_poservices-line_no = 0000000001.  "w_src-srv_line_no.    "Line item
            w_poservices-outl_ind = 'X'.
            w_poservices-subpckg_no = 0000000003.  "w_src-sub_packno. "(Dummy No.) "Sub package no
         w_poservices-quantity = w_src-srqty.  "Service Quantity
         w_poservices-base_uom = w_src-srmeins.  "Service Basic unit of Measure
         w_poservices-price_unit = '1'.
            w_poservices-from_line = '1'.
         w_poservices-gr_price  = w_src-brtwr.  "GR Price
         w_poservices-short_text = w_src-sh_text1.    "Service Short Text
            APPEND w_poservices TO i_poservices.
            CLEAR w_poservices.
    PO Services(Second Line Item )
            w_poservices-pckg_no = 0000000003.  "w_src-sub_packno. "(Dummy No.) "Sub package no
            w_poservices-line_no = 0000000002.
            w_poservices-ext_line = w_src-extrow.    "External line
            w_poservices-quantity = w_src-srqty.  "Service Quantity
            w_poservices-base_uom = w_src-srmeins.  "Service Basic unit of Measure
            w_poservices-price_unit = '1'.
            w_poservices-gr_price  = w_src-brtwr.  "GR Price
            w_poservices-short_text = w_src-sh_text1.    "Service Short Text
            APPEND w_poservices TO i_poservices.
            CLEAR w_poservices.
    PO Service Access values
            w_posrvacc-pckg_no = 0000000003.  "w_src-sub_packno.  "Sub package no
            w_posrvacc-line_no = 0000000002.  "w_src-srv_line_no. "Line item
            w_posrvacc-serno_line = w_src-zekkn.                "'01'.
            IF w_src-vproz IS INITIAL.
              w_posrvacc-percentage = '100.0'.
            ENDIF.
            w_posrvacc-serial_no = '01'.
            w_posrvacc-quantity = w_src-srqty.  "Service Quantity
            APPEND w_posrvacc TO i_posrvacc.
            CLEAR w_posrvacc.
          ELSEIF w_src-srv_line_no EQ '3'.
    PO Services
            if w_src-srv_line_no EQ '2'.
            w_poservices-pckg_no = 0000000004.  "(assign package no as a dummy number)
            w_poservices-line_no = 0000000001.  "Line item
            w_poservices-outl_ind = 'X'.
            w_poservices-subpckg_no = 0000000005.  "(Dummy No.) "Sub package no
            w_poservices-from_line = '1'.
            APPEND w_poservices TO i_poservices.
            CLEAR w_poservices.
            w_poservices-pckg_no = 0000000005.  "w_src-sub_packno. "(Dummy No.) "Sub package no
            w_poservices-line_no = 0000000002.
            w_poservices-ext_line = w_src-extrow.    "External line
            w_poservices-quantity = w_src-srqty.  "Service Quantity
            w_poservices-base_uom = w_src-srmeins.  "Service Basic unit of Measure
            w_poservices-price_unit = '1'.
            w_poservices-gr_price  = w_src-brtwr.  "GR Price
            w_poservices-short_text = w_src-sh_text1.    "Service Short Text
            APPEND w_poservices TO i_poservices.
            CLEAR w_poservices.
            endif.
            if  w_src-srv_line_no EQ '3'.
            w_poservices-pckg_no = 0000000005.  "w_src-sub_packno. "(Dummy No.) "Sub package no
            w_poservices-line_no = 0000000003.
            w_poservices-ext_line = w_src-extrow.    "External line
            w_poservices-quantity = w_src-srqty.  "Service Quantity
            w_poservices-base_uom = w_src-srmeins.  "Service Basic unit of Measure
            w_poservices-price_unit = '1'.
            w_poservices-gr_price  = w_src-brtwr.  "GR Price
            w_poservices-short_text = w_src-sh_text1.    "Service Short Text
            APPEND w_poservices TO i_poservices.
            CLEAR w_poservices.
            endif.
    PO Service Access values
           if  w_src-srv_line_no EQ '2'.
            w_posrvacc-pckg_no = 0000000005.  "w_src-sub_packno.  "Sub package no
            w_posrvacc-line_no = 0000000002.  "w_src-srv_line_no. "Line item
            w_posrvacc-serno_line = '01'.
            w_posrvacc-percentage = '100.0'.
            w_posrvacc-serial_no = '01'.    "w_src-zekkn.
            w_posrvacc-quantity = w_src-srqty.  "Service Quantity
            APPEND w_posrvacc TO i_posrvacc.
            CLEAR w_posrvacc.
            endif.
            if  w_src-srv_line_no EQ '3'.
            w_posrvacc-pckg_no = 0000000005.  "w_src-sub_packno.  "Sub package no
            w_posrvacc-line_no = 0000000003.  "w_src-srv_line_no. "Line item
            w_posrvacc-serno_line = '01'.
            w_posrvacc-percentage = '100.0'.
            w_posrvacc-serial_no = '02'.  "w_src-zekkn.  "'01'.
            w_posrvacc-quantity = w_src-srqty.  "Service Quantity
            APPEND w_posrvacc TO i_posrvacc.
            CLEAR w_posrvacc.
            endif.
          ENDIF.
        ENDIF.
    ***Create a NEW PO
    Call BAPI
          CALL FUNCTION 'BAPI_PO_CREATE1'
            EXPORTING
              poheader          = w_poheader
              poheaderx         = w_poheaderx
              TESTRUN           = ' '
            IMPORTING
              exppurchaseorder  = gv_ebeln
            TABLES
              return            = i_return
              poitem            = i_poitem[]
              poitemx           = i_poitemx[]
              poaddrdelivery    = i_poaddrdelivery[]
              poschedule        = i_poschedule[]
              poschedulex       = i_poschedulex[]
              poaccount         = i_poaccount[]
              poaccountx        = i_poaccountx[]
              poservices        = i_poservices[]
              posrvaccessvalues = i_posrvacc[]
              extensionin       = i_extensionin[].
    Commit the Transaction
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
            EXPORTING
              wait = 'X'.
    Regards,
    Deepthi.

    it is solved

  • BDC for CKECP- Item fields are not captured

    Hi all
    I recorded transaction CKECP using shdb.
    In that if we click 'Show/hide item view' the item wise details to be entered appears.
    items were entered. Transaction recorded.
    But the item fields are not appearing in the recording.
    Can somebody explain to me ?
    Vijaya Chamundi

    you can use BAPI
    2044                           BAPIs for Business Object Cost Estimate
    BAPI_COSTESTIMATE_ALLOW_MARK   Grant Marking Allowance for Costing
    BAPI_COSTESTIMATE_ALLOW_MA_GET Determine Organizational Measures
    BAPI_COSTESTIMATE_CREATE_SPLIT Create Cost Estimate with Cost Component Split
    BAPI_COSTESTIMATE_DELETE       Delete Cost Estimate
    BAPI_COSTESTIMATE_DELETE_MULTI Delete Cost Estimates
    BAPI_COSTESTIMATE_GETDETAIL    Determine Detailed Information for a Cost Estima
    BAPI_COSTESTIMATE_GETEXPLOSION Determine BOM Explosion for a Cost Estimate
    BAPI_COSTESTIMATE_GETLIST      Determine Cost Estimate Lists
    BAPI_COSTESTIMATE_ITEMIZATION  Determine Itemization for a Cost Estimate
    BAPI_COSTESTIMATE_MARKING      Marking Standard Cost Estimate
    BAPI_COSTESTIMATE_RELEASING    Release of Marked Standard Cost Estimates
    BAPI_COSTESTIMATE_UPDATE_PRICE Update of Prices in Material Master
    BAPI_SHIPMENT_COST_ESTIMATE    Calculate Shipment Costs of Different Forwarding

  • _pageflow and struts action xml are not creating from build.xml

    which is exported from Eclipse (Weblogic portal 10.3.2). But from Eclipse exporting EAR, which contains WAR have _pageflow directory and corresponding xml file. Here is build.xml which is exported from Eclipse.
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!-- WARNING: Eclipse auto-generated file.
    Any modifications will be overwritten.
    To include a user specific buildfile here, simply create one in the same
    directory with the processing instruction <?eclipse.ant.import?>
    as the first entry and export the buildfile again. -->
    <project basedir="." default="build" name="MyPortalWAR">
    <property environment="env"/>
    <property name="ECLIPSE_HOME" value="C:/beaportal1032/oepe_11gR1PS1/eclipse"/>
    <property name="debuglevel" value="source,lines,vars"/>
    <property name="project.dir" value="."/>
    <property name="project.name" value="MyPortalWAR"/>
    <property name="archive.name" value="${project.name}.war"/>
    <property name="target" value="1.6"/>
    <property name="source" value="1.6"/>
    <path id="WebLogic System Libraries.libraryclasspath">
    <pathelement location="../../beaportal1032/wlserver_10.3/server/lib/api.jar"/>
    <pathelement location="../../beaportal1032/modules/glassfish.jstl_1.2.0.1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.jsf_1.2.0.1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.ejb_3.0.1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.enterprise.deploy_1.2.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.interceptor_1.0.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.jms_1.1.1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.jsp_1.1.0.0_2-1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.jws_2.0.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.activation_1.1.0.0_1-1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.mail_1.1.0.0_1-4-1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.xml.soap_1.3.1.0.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.xml.rpc_1.2.1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.xml.ws_2.1.1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.management.j2ee_1.0.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.resource_1.5.1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.servlet_1.0.0.0_2-5.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.transaction_1.0.0.0_1-1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.xml.stream_1.1.1.0.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.security.jacc_1.0.0.0_1-1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.xml.registry_1.0.0.0_1-0.jar"/>
    <pathelement location="../../beaportal1032/wlserver_10.3/server/lib/wls-api.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.apache_1.2.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.i18n_1.6.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.logging_1.6.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.utils.full_1.7.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.utils.wrapper_1.4.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.utils.classloaders_1.6.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.common.security.providers.env_1.0.0.0_5-2-0-0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.common.security.saml2.manage_1.0.0.0_5-2-0-0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.weblogic.web.api_1.3.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.weblogic.rmi.client_1.6.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.transaction_2.6.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.workarea_1.6.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.xml.weblogic.xpath_1.3.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.datasource6_1.7.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.weblogic.stax_1.6.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.persistence_1.0.0.0_1-0-2.jar"/>
    </path>
    <path id="EAR Libraries.libraryclasspath"/>
    <path id="Shared Library [wlp-tools-dvt-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-tools-dvt-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/war-classes.jar"/>
    </path>
    <path id="Shared Library [wlp-framework-full-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-full-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/netuix_servlet-full.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-full-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/wsrp-complex-producer.jar"/>
    </path>
    <path id="Shared Library [wlp-jsf-portlet-bridge-2.0-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-jsf-portlet-bridge-2.0-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/portlet-bridge-api-2.0.0-SNAPSHOT.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-jsf-portlet-bridge-2.0-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/portlet-bridge-impl-2.0.0-SNAPSHOT.jar"/>
    </path>
    <path id="Shared Library [wlp-clipper-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-clipper-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/netuix_clipper.jar"/>
    </path>
    <path id="Shared Library [wlp-lookandfeel-web-lib].libraryclasspath"/>
    <path id="Shared Library [wlp-rest-full-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-rest-full-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/netuix_rest-full.jar"/>
    </path>
    <path id="Shared Library [wlp-framework-rest-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-rest-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/netuix_rest.jar"/>
    </path>
    <path id="Shared Library [content-management-faces-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/content-management-faces-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/content_faces.jar"/>
    </path>
    <path id="Shared Library [wlp-rest-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-rest-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/rest_servlet.jar"/>
    </path>
    <path id="Shared Library [wlp-light-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/ccpp-1_0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/ccpp-ri-1_0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/classes.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/client_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/jena-1.4.0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/l10n_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/netuix_servlet.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/portlet-container.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/prefs-spi.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/prefs_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/rdffilter.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/render_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/skeleton_taglib.jar"/>
    </path>
    <path id="Shared Library [wlp-wsrp-producer-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-wsrp-producer-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/wsrp-producer.jar"/>
    </path>
    <path id="Shared Library [wlp-framework-common-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-common-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/faces-adapter.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-common-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/netui-adapter.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-common-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/netuix_common_web.jar"/>
    </path>
    <path id="Shared Library [jstl].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jstl_1.2_1.2.0.1/1/WEB-INF/lib/glassfish.jstl_1.2.0.1.jar"/>
    </path>
    <path id="Shared Library [wlp-framework-struts-1.2-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-struts-1.2-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/struts-adapter.jar"/>
    </path>
    <path id="Shared Library [struts-1.2].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/commons-beanutils.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/commons-digester.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/commons-fileupload-1.0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/commons-logging.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/commons-validator-1.1.4.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/jakarta-oro.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/struts.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/commons-beanutils.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/commons-digester.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/commons-logging.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/jakarta-oro.jar"/>
    </path>
    <path id="Oracle WebLogic Portal Server.libraryclasspath">
    <pathelement location="../../beaportal1032/wlportal_10.3/p13n/lib/system/p13n_common.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/p13n/lib/system/p13n_system.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/p13n/lib/system/p13n-schemas.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/p13n/lib/system/wlp_services.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/light-portal/lib/system/wsrp-common.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/light-portal/lib/system/wsrp-client.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/light-portal/lib/system/netuix_common.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/light-portal/lib/system/netuix_schemas.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/light-portal/lib/system/netuix_system.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/portal/lib/system/netuix_system-full.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/content-mgmt/lib/system/content_system.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/info-mgmt/lib/system/wps_system.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/info-mgmt/lib/system/wlp_content_system.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/info-mgmt/lib/system/wlp-schemas.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/apps/lib/system/groupspace_system.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/analytics/lib/system/analytics_sys.jar"/>
    </path>
    <path id="Shared Library [beehive-controls-1.0.1-10.0-war].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-controls-1.0.1-10.0-war_1.0_1.0.2.2/1/WEB-INF/lib/beehive-controls.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-controls-1.0.1-10.0-war_1.0_1.0.2.2/1/WEB-INF/lib/beehive-ejb-control.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-controls-1.0.1-10.0-war_1.0_1.0.2.2/1/WEB-INF/lib/beehive-jdbc-control.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-controls-1.0.1-10.0-war_1.0_1.0.2.2/1/WEB-INF/lib/beehive-jms-control.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-controls-1.0.1-10.0-war_1.0_1.0.2.2/1/WEB-INF/lib/commons-codec-1.3.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-controls-1.0.1-10.0-war_1.0_1.0.2.2/1/WEB-INF/lib/commons-discovery.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-controls-1.0.1-10.0-war_1.0_1.0.2.2/1/WEB-INF/lib/commons-logging.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-controls-1.0.1-10.0-war_1.0_1.0.2.2/1/WEB-INF/lib/log4j-1.2.8.jar"/>
    </path>
    <path id="Apache XMLBeans v2.3.libraryclasspath">
    <pathelement location="${ECLIPSE_HOME}/dropins/oepe/eclipse/plugins/oracle.eclipse.tools.xmlbeans.library.v23_2.2.1.201001302105.jar"/>
    </path>
    <path id="Shared Library [jsf].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jsf_1.2_1.2.9.0/1/WEB-INF/lib/glassfish.jsf_1.2.9.0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jsf_1.2_1.2.9.0/1/WEB-INF/lib/glassfish.jstl_1.2.0.1.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jsf_1.2_1.2.9.0/1/WEB-INF/lib/javax.jsf_1.2.0.1.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jsf_1.2_1.2.9.0/1/WEB-INF/lib/wls.jsf.di.jar"/>
    </path>
    <path id="Shared Library [jaxrs-framework-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jaxrs-framework-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/jackson-core-asl-1.1.0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jaxrs-framework-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/jackson-jaxrs-1.1.0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jaxrs-framework-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/jackson-mapper-asl-1.1.0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jaxrs-framework-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/rest-framework.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jaxrs-framework-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/token-manager.jar"/>
    </path>
    <path id="Shared Library [jersey-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jersey-web-lib_1.0_1.0.2/1/WEB-INF/lib/asm-3.1.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jersey-web-lib_1.0_1.0.2/1/WEB-INF/lib/jersey-core-1.0.2.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jersey-web-lib_1.0_1.0.2/1/WEB-INF/lib/jersey-server-1.0.2.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jersey-web-lib_1.0_1.0.2/1/WEB-INF/lib/jsr311-api-1.0.jar"/>
    </path>
    <path id="Shared Library [content-management-app-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/content-management-app-lib_10.3.2_10.3.2/1/APP-INF/lib/content_wlp.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/content-management-app-lib_10.3.2_10.3.2/1/APP-INF/lib/jcrspi-1.0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/content-management-app-lib_10.3.2_10.3.2/1/content_repo.jar"/>
    </path>
    <path id="Shared Library [wlp-services-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/ad_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/content_servlet.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/dt_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/ph_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/pz_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/um_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/wlp_content.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/wps_servlet.jar"/>
    </path>
    <path id="Shared Library [content-management-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/content-management-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/cmwsrp_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/content-management-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/content_functions.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/content-management-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/content_servlet.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/content-management-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/content_web_common.jar"/>
    </path>
    <path id="Shared Library [wlp-services-app-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-app-lib_10.3.2_10.3.2/1/APP-INF/lib/classes.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-app-lib_10.3.2_10.3.2/1/wps.jar"/>
    </path>
    <path id="Shared Library [vcr-app-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/vcr-app-lib_10.3.2_10.3.2/1/APP-INF/lib/content_system.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/vcr-app-lib_10.3.2_10.3.2/1/content.jar"/>
    </path>
    <path id="Shared Library [wls-commonslogging-bridge-war].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wls-commonslogging-bridge-war_1.0_1.1/1/WEB-INF/lib/commons-logging.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wls-commonslogging-bridge-war_1.0_1.1/1/WEB-INF/lib/wlcommons-logging.jar"/>
    </path>
    <path id="Shared Library [wlp-beehive-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-beehive-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/wlp-beehive-classes.jar"/>
    </path>
    <path id="Shared Library [beehive-netui-1.0.1-10.0].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-netui-1.0.1-10.0_1.0_1.0.2.2/1/WEB-INF/lib/beehive-netui-core.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-netui-1.0.1-10.0_1.0_1.0.2.2/1/WEB-INF/lib/beehive-netui-tags.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-netui-1.0.1-10.0_1.0_1.0.2.2/1/WEB-INF/lib/commons-codec-1.3.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-netui-1.0.1-10.0_1.0_1.0.2.2/1/WEB-INF/lib/commons-el.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-netui-1.0.1-10.0_1.0_1.0.2.2/1/WEB-INF/lib/weblogic-netui.jar"/>
    </path>
    <path id="Shared Library [beehive-netui-resources-1.0.1-10.0].libraryclasspath"/>
    <path id="Shared Library [p13n-rest-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-rest-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/p13n_rest.jar"/>
    </path>
    <path id="Shared Library [p13n-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/auth_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/es_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/i18n_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/profile_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/ps_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/tracking_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/ugm_taglib.jar"/>
    </path>
    <path id="Shared Library [p13n-core-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-core-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/p13n_web_app.jar"/>
    </path>
    <path id="Shared Library [wlp-framework-full-app-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-full-app-lib_10.3.2_10.3.2/1/APP-INF/lib/classes.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-full-app-lib_10.3.2_10.3.2/1/netuix.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-full-app-lib_10.3.2_10.3.2/1/prefs.jar"/>
    </path>
    <path id="Shared Library [p13n-app-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib_10.3.2_10.3.2/1/APP-INF/lib/credentialvault_service.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib_10.3.2_10.3.2/1/p13n_ejb.jar"/>
    </path>
    <path id="Shared Library [p13n-app-lib-base].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/APP-INF/lib/p13n-schemas.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/APP-INF/lib/p13n_app.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/APP-INF/lib/p13n_common.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/APP-INF/lib/p13n_system.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/APP-INF/lib/p13n_common.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/APP-INF/lib/p13n-schemas.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/APP-INF/lib/wlp_services.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/APP-INF/lib/wlp_services.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/p13n_ejb_base.jar"/>
    Any ideas ..?
    - Ravi

    your problem here seems to be in your jsp, you have not given your jsp code here but its form tag should be like ,
    <html:form action="/searchCollegeResult.do">
    //your code
    </html:form>check this if it is same pls put your jsp code here then I can check.

  • HR_MAINTAIN_MASTERDATA or BDC for Hiring action

    Hi,
    I would like to know which is a better process for hiring an employee: HR_MAINTAIN_MASTERDATA or BDC.
    Also,
    please let me know the disadvantages of using HR_MAINTAIN_MASTERDATA for this.

    Hi Dude,
    Better go for FM only Insted of BDC..
    REPORT  ZD.
    data:   person_info like PPROP occurs 0 WITH HEADER LINE,
            msg_result  like BAPIRETURN1,
            hr_return   like HRHRMM_MSG.
    person_info-infty = '00298'.
    person_info-fname = 'P0298-MASSG'.
    person_info-fval  = '01'.
    append person_info.
    person_info-infty = '0298'.
    person_info-fname = 'P0298-ORDNU'. 
    person_info-fval  = 'Ô-12345678'.
    append person_info.
    person_info-infty = '0298'.
    person_info-fname = 'P0298-ORDDT'. 
    person_info-fval  = '20070102'.
    append person_info.
    person_info-infty = '0298'.
    person_info-fname = 'P0298-LOCAT'. 
    person_info-fval  = '1'.
    append person_info.
    person_info-infty = '0298'.
    person_info-fname = 'P0298-REMAR'.
    person_info-fval  = 'xyz'.
    append person_info.
    person_info-infty = '0298'.
    person_info-fname = 'P0298-ORDST'.
    person_info-fval  = ''.
    append person_info.
    person_info-infty = '0298'.
    person_info-fname = 'P0298-ACQDT'.
    person_info-fval  = '20071107'.
    append person_info.
    CALL FUNCTION 'HR_MAINTAIN_MASTERDATA'
    EXPORTING
        PERNR                    = '00000012'
        MASSN                   = '01'
        ACTIO                    = 'MOD'
        TCLAS                    = 'A'
        BEGDA                   = '20050201'
        ENDDA                   = '20050201'
    *   OBJPS                   =
    *   SEQNR                   =
    *   SPRPS                   =
        SUBTY                    = '0011'
        WERKS                   = 'UA01'
    *   PERSG                   =
    *   PERSK                   =
    *   PLANS                    =
        DIALOG_MODE        = '0'
        LUW_MODE             = '1'
    *   NO_EXISTENCE_CHECK   = ' '
    *   NO_ENQUEUE                  = ' '
    IMPORTING
    *   RETURN                 =
        RETURN1                = msg_result
        HR_RETURN            = HR_RETURN
    TABLES
        PROPOSED_VALUES  = person_info
    *   MODIFIED_KEYS      =
    MESSAGE msg_result TYPE 'I'.
    MESSAGE HR_RETURN  TYPE 'I'.
    exit.

  • Won't accept my credit card for payment. I have not created an account yet.

    I am trying to purchase an app. Won't take my credit card. No more try's. can you reset?

    Are you using a debit card or credit card? Debit cards don't work anymore for most people.
    If you want to speak to apple try contacting iTunes support
    http://www.apple.com/support/itunes/contact/
    This is just a user to user forum so no one here can do anything for you.

  • Stock transport not creating entry in MARD

    Hi,
    I have created a stock transport order UB from one storage location to another within the same plant.
    I created a delivery and posted the goods issue. It generated a material document with movement type 641.
    The delivery is not yet received in the receiving storage location.
    Now, the problem is that the quantity does not show as "stock in transfer" in the Plant stock view of the material master.
    Also, the value for MARD-UMLME is zero, even though I have posted the GI for the delivery and not done any GR in the receiving storage location.
    Does anyone know what is wrong?
    Regards,
    Ola

    MARD-UMLME
    Stock in transfer (from one storage location to another)
    Quantity that has already been withdrawn from the issuing storage
    location but has not yet arrived at the receiving storage location.
    This stock in transfer contains the quantity being transferred as the
    result of transfer postings in Inventory Management, but not the
    quantity being transferred on the basis of stock transport orders.
    See OSS note 25220:
    When goods issue is posted for a cross-company purchase order (for a delivery with movement type 643), stock in transit is not updated in the receiving plant.
    Cause and prerequisites
    This procedure was chosen because usually the issuing and receiving companies have to be managed on different computers. In addition, goods receipt in the receiving plant can be posted before goods issue in the issuing plant with this kind of stock transfer, i.e., the corresponding stock in transit would temporarily be negative.
    Solution
    You can use the reporting function in Purchasing to display the stock quantities in transit.
    Starting with release 3.0D, the stock found with cross-company orders in transit is displayed in the stock overview (transaction MMBE) as well as displayed dynamically determined in the plant availability (MB53).

  • BDC  for  Hiring a Employee through hiring action

    Hi Experts,
    We have done BDC for hiring action.
    We do have PA & OM integrated. T77S0 PLOGI ORGA "X".
    After hiring is compelted through BDC holder relationship is not appearing for position.
    But when we are individually hiring an employee, position is assigned to a holder.
    Please advice.
    Regards,
    IFF

    Hi,
    During BDC, the integration PA-OM is not processed... you have to run RHINTE00 report.
    Kr,
    m.

  • Purchase Order not created for a Shopping Cart

    We have a few Shopping Carts created in SRM which did not transmit as PO to our backend R/3 system. This happened because our R/3 system went down for a couple of hours and the Shopping Carts were created during this time. We tried to submit these Shopping Carts through the Application monitor later and the SRM system gave a message "Processed Successfully". However, POs for these Shopping Carts were not created and the Shopping Carts have a status of "Item in transfer process".
    The Shopping Carts have already got a PO number assigned to them through the SRM system. However these PO's have not been created in the backend R/3 system
    We are struggling to find the failed RFC calls with the help of BASIS so that we can possibly reprocess them. Alternatively we are also looking for a way to retrigger the PO creation for these Shopping Carts.
    I need ideas to resolve this issue.
    Many thanks in advance.
    Susmit

    Not sure if you received an answer or not, but this is what we have had to do in the past:
    1.  Run BBP_PD for the shopping cart to see what the purchase requisition number will be on the backend system.  The requisition number will still be provided even if it fails to transfer to the backend.
    2.  Run FM BBP_PD_SC_RESUBMIT.  The object key field will be the requisition number; the object ID field will be the shopping cart number.
    Hope this helps.
    Monique Stephens

  • Payable Invoice has not created for internal requisition. ( R12.1.3)

    HI,
    This is an issue where i am facing for which the invoice has not created for the internal requisition, whereas the Receivables Transaction has created automatically for the same internal SO.
    Is there any way to find out the invoice, because i have again ran the Report "Create Inetrcompany AP invoice" and when i mchecked in the log it says 0 fetched invoice....
    Kindly help me out to solve this issue,
    Thanks in advance.
    Vijay

    Hi Vijay,
    Did you check in AP_INVOICES_INTERFACE table if there are some records with INVOICE_NUM like '%AR invoice number%'?
    If no records in the interface table - can you please, check by submitting the program without giving any input parameters?
    Regards,
    G V Ranjith

Maybe you are looking for

  • New hard drive won't install

    I am trying to install a harddrive into the second bay of my 2005 Power Mac G5. The drive I'm installing is a Western Digital Caviar black 2TB. It is and SATA drive and the same one has installed successfully on my newer G5 tower. I plug the drive in

  • Disabling delete button in service object list fom VA03

    Hi all, i want to disable the delete and change button in attachment list of service object list (GOS) IN T CODE  VA03. I have found that it can be done by modifying the method  CHECK_STATUS of class CL_GOS_SRV_ATTACHMENT_LIST, and then calling it in

  • Letterboxing on thumbnail images

    Hello I have the most unusual problem I have ever encounted with a mac and I am seeking help. No matter what movie file I have on my desktop (and any other folder) and whether it is .mov, wmv or downloaded off an iphone, the thumbnail is automaticall

  • Report is executing more than one hour

    Hi All, I have an issue with my report,its taking more than one hour for execution. This report is called through an package,in package there are cursors which retrive data and sends to mail.The problem is with this select statement in cursor,its tak

  • Video goes green in all Windows 8.1 apps

    When  I try to run a vídeo, it displays a green screen inside the player - it can be on IE (modern and desktop) Netflix app, or any app from the Windows Store with a player. When I try to open the same links (in case of browser) on Chrome, the vídeo