Data upload:F-02: each documnet number to be generated for each line item

Dear ABAP experts,
I have a requirement.
When we uplaod customer or vendor invoices ,a document number will be generated or posted.
Similarly, my requirement is :When I do the same kind of uploads, for each line item in an excel file each document number has to be generated or posted .This upload is using Tcode: F-02.
How do I generate each document number for each line item (for each vendor or customer).
Please do the needful.Either send me a sample code or an idea how to proceed.
Thanks,
Hema.

Hi,
using below code you can generate document number  for each line Item.
  PERFORM bdc_dynpro      USING 'SAPMF05A' '0100'.
    PERFORM bdc_field       USING 'BDC_OKCODE'
                                  '/00'.
    IF  wa_final-field1 NE c_space.
convert date to user format
      MOVE wa_final-field1 TO v_date.
      CALL FUNCTION '/SAPDII/SPP05_CONVERT_DATE'
        EXPORTING
          if_date = v_date
        IMPORTING
          ef_date = v_date1.
      PERFORM bdc_field       USING 'BKPF-BLDAT'
                                    v_date1.          " Document Date
Clear v_date  field
      CLEAR: v_date1 , v_date.
    ENDIF.
    PERFORM bdc_field       USING 'BKPF-BLART'
                                  wa_final-field4.          " Document Type
    PERFORM bdc_field       USING 'BKPF-BUKRS'
                                  wa_final-field2.          " Company Code
    IF  wa_final-field3 NE c_space.
convert date to user format
      MOVE wa_final-field3 TO v_date.
      CALL FUNCTION '/SAPDII/SPP05_CONVERT_DATE'
        EXPORTING
          if_date = v_date
        IMPORTING
          ef_date = v_date1.
      PERFORM bdc_field       USING 'BKPF-BUDAT'
                                     v_date1.          " Posting Date
Clear v_date  field
      CLEAR: v_date1 , v_date.
    ENDIF.
    PERFORM bdc_field       USING 'BKPF-WAERS'
                                  wa_final-field5.          " Currency
    PERFORM bdc_field       USING 'BKPF-KURSF'
                                  wa_final-field6.          " Rate
    PERFORM bdc_field       USING 'BKPF-XBLNR'
                                  wa_final-field7.          " Reference
    PERFORM bdc_field       USING 'BKPF-BKTXT'
                                  wa_final-field8.          " Document Header Text
    PERFORM bdc_field       USING 'RF05A-NEWBS'
                                  wa_final-field9.          " Cr.Posting Key
    PERFORM bdc_field       USING 'RF05A-NEWKO'
                                  wa_final-field10.         " Cr.Vendorcode or GL Account
    PERFORM bdc_dynpro      USING 'SAPMF05A' '0302'.
    PERFORM bdc_field       USING 'BDC_OKCODE'
                                  '/00'.
    PERFORM bdc_field       USING 'BSEG-HKONT'
                                  wa_final-field11.         " Dr.Alternative Recon A/c
    PERFORM bdc_field       USING 'BSEG-WRBTR'
                                  wa_final-field12.         " Dr.Amount in Document Currency
Begin of changes by someshwar
   IF v_field5 NE 'jpy' OR v_field5 NE 'JPY'.
    TRANSLATE v_field5 TO UPPER CASE.
    IF v_field5 NE 'JPY'.
      PERFORM bdc_field       USING 'BSEG-DMBTR'
                                    wa_final-field13.         " Dr.Amount in Local Currency
    ENDIF.
Changes end
    PERFORM bdc_field       USING 'BSEG-GSBER'
                                  wa_final-field14.         " Dr.Business Area
    PERFORM bdc_field       USING 'BSEG-ZTERM'
                                  wa_final-field15.         " Dr.Payment Terms
    IF  wa_final-field16 NE c_space.
convert date to user format
      MOVE wa_final-field16 TO v_date.
      CALL FUNCTION '/SAPDII/SPP05_CONVERT_DATE'
        EXPORTING
          if_date = v_date
        IMPORTING
          ef_date = v_date1.
*Begin of changes by someshwar
     IF  wa_final-field16 NE '00000000'.
      PERFORM bdc_field       USING 'BSEG-ZFBDT'
                                    v_date1.         " Dr.Baseline date
     ENDIF.
*Changes end
Clear v_date  field
      CLEAR: v_date1 , v_date.
    ENDIF.
*Begin of changes by someshwar
   IF wa_final-field17 NE ''.
    PERFORM bdc_field       USING 'BSEG-ZLSCH'
                                  wa_final-field17.         " Dr.Payment Method
   ENDIF.
*changes end
    PERFORM bdc_field       USING 'BSEG-ZUONR'
                                  wa_final-field18.         " Dr.Assignment
    PERFORM bdc_field       USING 'BSEG-SGTXT'
                                  wa_final-field19.         " Dr.Text
*Perform Save posting
    PERFORM save_post.
  ELSE.
    PERFORM bdc_dynpro      USING 'SAPMF05A' '0302'.
    PERFORM bdc_field       USING 'BDC_OKCODE'
                                  '/00'.
    PERFORM bdc_field       USING 'BSEG-HKONT'
                                  wa_final-field11.         " Dr.Alternative Recon A/c
    PERFORM bdc_field       USING 'BSEG-WRBTR'
                                  wa_final-field12.         " Dr.Amount in Document Currency
*Begin of changes by someshwar
   IF v_field5 NE 'jpy' AND v_field5 NE 'JPY'.
    TRANSLATE v_field5 TO UPPER CASE.
    IF v_field5 NE 'JPY'.
      PERFORM bdc_field       USING 'BSEG-DMBTR'
                                    wa_final-field13.         " Dr.Amount in Local Currency
    ENDIF.
Changes end
    PERFORM bdc_field       USING 'BSEG-GSBER'
                                  wa_final-field14.         " Dr.Business Area
    PERFORM bdc_field       USING 'BSEG-ZTERM'
                                  wa_final-field15.         " Dr.Payment Terms
    IF  wa_final-field16 NE c_space.
convert date to user format
      MOVE wa_final-field16 TO v_date.
      CALL FUNCTION '/SAPDII/SPP05_CONVERT_DATE'
        EXPORTING
          if_date = v_date
        IMPORTING
          ef_date = v_date1.
      PERFORM bdc_field       USING 'BSEG-ZFBDT'
                                    v_date1.         " Dr.Baseline date
     ENDIF.
Clear v_date  field
      CLEAR: v_date1 , v_date.
    ENDIF.
    PERFORM bdc_field       USING 'BSEG-ZLSCH'
                                  wa_final-field17.         " Dr.Payment Method
  ENDIF.
    PERFORM bdc_field       USING 'BSEG-ZUONR'
                                  wa_final-field18.         " Dr.Assignment
    PERFORM bdc_field       USING 'BSEG-SGTXT'
                                  wa_final-field19.         " Dr.Text
*Perform Save posting
      PERFORM bdc_field       USING 'RF05A-NEWBS'
                                    '40'.                     " Cr.Posting Key
      PERFORM bdc_field       USING 'RF05A-NEWKO'
                                    '999996'.                 " Cr.Vendorcode or GL Account
      PERFORM bdc_dynpro      USING 'SAPMF05A' '0300'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    'BU'.
*&      Form  BDC_TRANSACTION
FORM bdc_transaction  USING    p_tcode.
  DATA: l_v_string TYPE string.
  REFRESH i_messtab.
  CALL TRANSACTION p_tcode USING i_bdcdata
                   MODE   g_mode
                   UPDATE 'S'
                   MESSAGES INTO i_messtab.
  IF NOT i_messtab[] IS INITIAL.
    READ TABLE i_messtab WITH KEY msgtyp = 'E'.
    IF sy-subrc EQ 0.
      LOOP AT i_messtab.
        IF i_messtab-msgtyp = 'E'.
          PERFORM fill_error_table USING i_messtab-msgtyp
                                         i_messtab-msgid
                                         i_messtab-msgnr
                                         i_messtab-msgv1
                                         i_messtab-msgv2
                                         i_messtab-msgv3
                                         i_messtab-msgv4.
        ENDIF.
      ENDLOOP.
      v_error = v_error + v_count.
    ENDIF.
    READ TABLE i_messtab WITH KEY msgtyp = 'S' msgnr = 312.
    IF sy-subrc EQ 0.
      SELECT SINGLE * FROM t100 WHERE sprsl = sy-langu
                                AND   arbgb = i_messtab-msgid
                                AND   msgnr = i_messtab-msgnr.
      l_v_string = t100-text.
      REPLACE  '&' WITH i_messtab-msgv1 INTO l_v_string .
      PERFORM fill_error_table USING i_messtab-msgtyp
                                         'ZMSG_FI'
                                         '025'
                                         i_messtab-msgv1
                                         wa_final2-field2
      v_success = v_success + 1.
    ELSE.
      LOOP AT i_messtab.
        IF i_messtab-msgtyp = 'S'.
          PERFORM fill_error_table USING  'E'
                                               i_messtab-msgid
                                               i_messtab-msgnr
                                               i_messtab-msgv1
                                               i_messtab-msgv2
                                               i_messtab-msgv3
                                               i_messtab-msgv4.
        ENDIF.
      ENDLOOP.
    ENDIF.
  ENDIF.
  CLEAR :  t100 , l_v_string .
ENDFORM.                    " BDC_TRANSACTION
Regards,
Siva.

Similar Messages

  • PR Line Item Number should be Same for PO Line Item Numebr

    Hi Gurus,
    I have a rare Requiremenet. I will convert Only one PR to PO(So It is one to one) PR Item Number should Be Equal to PO Item Number.. can anybody suggest me is there any way to achive this.
    Explanation:
    Actually we will create third party Sale order and with A BAPI we  create PO in background.
    I will change Sales Order qty(Decrease directly or increse with schedule lines) so new PR items will be generated or Existing may be deleted. now i want my PR Item number should be equal to PO Item Number.
    In BAPI we have a provision to provide PR number still system is taking in sequential intervel of 10,20,30....
    How to overide this...
    EX:
                     PR               PO
    ItemNO      10              10
    ItemNO      30              30
    Thanks
    Pradeep

    Hi Monika,
    Thanks a lot my issue got resolved. annd i have another question regarding BAPI_PO_Change.
    Actually i am passing Price from PR to PO and i am making no_price_from_po while chenging PO and i am passing PRICE from SO to PO. Below scenario will explain My requirement.
    In third party we are creating Automatic PO from SO. we have developed one ZTrasaction for SO Approval in two stages, in second level Approval we are converting PR to PO.
    while creating we are able to pass Price value from SO to PO From Condition in the Pricing procedure.
    while changing we have 3 scenarios
    1.Changing Existing PR Item quantity
    2. Adding one more schedule line to the Existing SO so it will create one more PR Item
    3. we are adding one more Line Item in the SO in this case also one more PR Item will be generated
    we are able to convert each PR Item will be one PO line Item 
    But while changing we will have PO still we don't want to copy the Price from Previous Document.
    we have activated no_price_from_PO in the BAPI but still system is taking from previous Document.
    Pl suggest me if there anyway to over come this issue...
    Thanks
    -Pradeep

  • Legacy asset data upload for multiple line items

    Hello
    Legacy asset data upload for multiple line items- for example Building is an asset which is having different line items for purchasing of land,constructaion or renovation etc.........now to upload the legacy data what should be consider...only one line item for Building or numbers of line item.........
    which one is the proper way to do this exercise?
    regards

    Hi,
    It completely depends on clients requirement. but following are few approaches:
    1. Define Building as Asset Class.
    2. Create a Building at specific location at asset code and
    3. create asset sub numbers for other components.
    other approach would be:
    1. Define Building as Asset Class.
    2. Create a Building at specific location at asset code and
    3. create further asset codes for other components where field description will be used for relating each other.
    Regards,
    Sayujya

  • Using Item UIDRef, can we get data as set in "text on path option" dailog box for each "text on path" item

    Hi all,
    I have a Item UIDRef but facing a problem for getting data as set in "text on path option" dailog box for each "text on path" item.
    What I did:
    - Getting the  pointer "IMainItemTOPData" using item UIDRef as
      InterfacePtr<IMainItemTOPData> mainItemTOPData(shapesUIDRef, UseDefaultIID());
    - This interface has the method GetTOPOptionData () which return ITOPOptionsData pointer
    - But SDK don't have "ITOPOptionsData" class implementation.
    Second Approch:
    - Used "ITextOnPathSelectionSuite" and getting the correct result for Desktop plugin.But I want the correct result in server plugin also.
    Anyone who has an idea how to get this using UIDRef, please let me know.
    Regards,
    Jitendra Kumar Singh

    Hi Pulse,
    Unfortunately, Flex doesn't currently support text on a path. However, I binged it and found this:
    http://blog.tsclausing.com/post/49
    That might be useful.
    -Adam

  • Check number not getting updated in vendor line items

    Hi
    I am giving check to vendor. Hence i am assigning manual checks in FCH5. Then i did FCHU. After i did FCHU, my check number got updated in assignment field in bank line item. But i am getting problem for vendor line item.
    My vendor line item is not updated with check number. Hence i am unable to see what check number is issued against which payment document. I do not want to go in each every document and then click on environment and check information.
    I tried with check register also, but i am not getting vendor wise bank details smoothly.
    So i want to know how can i get check number in FBL1N vendor-wise. Is there any standard report?

    You should activate the PAYR-CHECF in FBL1N report. Execute FBL1N report for a vendor and go to Menu->Settings-> Special Fields. A new screen would open. There add the table PAYR and field CHECF. Save and exit out. Now the check number should be displayed in FBL1N report.
    Thanks,
    SD.

  • SD - Accounting document line items are generating for each item

    Hi all of you,
    We have done account determination for SD. Accounting documents are also generating, but with in the invoice accounting document, number of line items are generating for each item with in the sales order, standard invoice type is F2 like -
    Item 001 - X Material
    Item 002 - Y Material
    Item 003 - Z Material
    The accounting document is -
    Line Item 001 - Customer Ac Dr
    Line Item 002 - Discount A/c Dr
    Line Item 003 - Sales revenue
    Line Item 004 - Discount A/c Dr
    Line Item 005 - Sales Revenue
    Line Item 006 - Discount A/c Dr
    Line Item 007 - Sales revenue
    Line Item 008 - VAT
    Even, in my experience I did not find this type of entry and the sales revenue and discount accounts are same with in the COA and is posted with in the plant.
    Please give me your valuable suggestion to rectify the above issue.
    Regards,
    Ramki
    Edited by: Ramki on Nov 5, 2009 10:06 AM

    Dear Ramki,
    This is SAP Standard. System generates Accounting document line item for each Line items in Invoice.
    This is standard & also required bacuase say you have different Material types in single Invoice (e.g.Material & Service items, Trading Goods, etc). The valuation class assigned to these Material Types may be different & you might want to post revenues from these Line items in different GL Accounts.
    Hope this helps. .
    Thanks,
    Jignesh mehta

  • Foreign trade data is incomplete for the line item eg 70!

    Dear Sapients,
    I have encountered an issue related to invoice while releasing it to accouting.
    The invoice is done for several line items but the problem is faced for one line item only, could any one suggest the possible solution please.
    Regards.
    Kodali

    hi
    Read the following SAP note. This can also be the case.
    Note 354222 - Foreign trade data incomplete for domestic business
    Symptom
    A billing document cannot be transferred into accounting because the foreign trade data is incomplete.
    However, the underlying business process is a domestic business!
    Additional key words
    VF01, VF02, EIPO, EIKP, foreign trade, incompleteness, domestic, delivery, billing document, EXNUM, EXPKZ,export indicator, export number
    Cause and prerequisites
    In the respective delivery or in the billing document, for domestic business you by mistake go to the foreign trade data into a field. Since the incompletion log requires at least one entry for foreign trade, you must fill one field in order to be able to leave the foreign trade data again without canceling document processing.
    Here, an export indicator and an export number is assigned which cause the incompleteness of the whole document due to missing export data.
    Solution
    A solution in the standard system is currently not planned since because of various customer requests the foreign trade data in the delivery should be accessed and maintained for domestic business too. An example is the inbound delivery in a bonded warehouse where the forwarding agent should get information already in advance.
    To avoid incorrect billing documents, proceed as follows:
    Copy data transport routine 001 to a routine 601 and enhance the new routine according to the attached correction instruction (RV60C601). Store this new data transport routine in Customizing for the copying control for billing documents for the processes you use, for example
    F2 - LF, item category TAN. (delivery-related)
    If you already use an own data transport routine, in this data transport routine include the attached source code.
    You must cancel existing billing documents and then create them again.
    If you do not want to cancel existing documents, implement the attached correction (program RV60AFZZ) and release the documents either individually (VF02, default transaction) or via the list of blocked billing documents (VFX3).
    After you completed the correction, you should cancel this solution (RV60AFZZ) again.
    Also refer to the attached Note 170183.
    Source code corrections
    Header Data
    Release Status: Released for Customer
    Released on: 16.02.2005 17:15:20
    Priority: Recommendations/additional info
    Category: Consulting
    Primary Component: SD-BIL-GF Basic Functions
    Secondary Components: SD-FT-PRO Basic Functions
    SD-BIL-CA Account Assignment

  • Single folio number should be generated for a GR excise inv.(Depot receipt)

    Dear all,
    How to fullfill requirment of same folio number should be generated in RG23D in a excise invoice(depot goods receipt)
    for a material with multiple batches ? (This is a depot good receipt from plant using MIGO / J1IG,
    further this material is sold to customer).
    In standard,folio number is unique for each of line items in RG23D register.
    Whether above requirement can be addressed using CIN user exit if any available ?
    If it can be addressed through CIN user exit,what will be implications or results in subsequent process
    for deviating from standard function ?
    Kindly provide your valuable thoughts about this requirment ?
    Thanks in advance,
    Jeyakanthan
    Edited by: Jeyakanthan A on Sep 8, 2011 12:42 PM

    Hi,
    Thanks for enlightening me.Just checked, it is getting triggered before the number is getting generated for the object "J_1IRG23D" and Internal no.
    However was not able to see any loop for CALL FUNCTION 'NUMBER_GET_NEXT'. Anyways kindly keep us updated about your progress on this requirement.
    Regards
    Swapnil Iyer.

  • How to find the number of idocs generated for a customer on the basis of his purchase order in a day ?

    How to find the number of idocs generated for a customer on the basis of his purchase order in a day ?

    Dear Friends,
    I am absolutely agree with your answer .
    But my question is,
    Lets say.....
    One customer sending X number of purchase orders in a day , so how many IDocs generated on that specific day for that specific customer .
    So, Question is , How can we find the no of sales orders(IDocs) generated for the customers on the specific day ?
    Hope you all understood my requirement .
    Thanks & Regards,
    Aditya

  • Different Pricing date for two line items

    Hi guru's
    How to give different pricing dates for two line items
    in a sales order
    To elaborate
    I have two line items one i need pricing date order date
    second one i need pricing date should be delivery date
    Thanks in advance
    Srinivas

    Dear Srinivas,
             While creating sales order select the item which you want to change the pricing date then go to menu>GOTO>Item -->Click on Sales A here you can able to change the pricing date as you like.
    You can change the pricing date of the item in the sales order through sales order change mode but that sales order should be open.
    I hope it will help you,
    Regards,
    Murali.

  • For Each Loop: Enumerator Configuration In the For each loop Editor Help needed

    Hi All,
    I have a package that runs and updates a table with everytime someone adds a flat file in the source folder. One of the requirement is to upload files with the following
    ACA Flat files will have a naming convention of “ACA_ccyy_<julian date>”  : How can I add this?
    Under Files this is how I have setup the qualifies "ACA_*.*"
    Is there anyway to pass the entire naming convention in the file section? If so how can I ?
    Please help?
    FM

    As you have ACA_*.* set in Files Filter, it will return all the files from the folder which start with ACA_.
    You can have one dummy Sequence Container inside FE Loop Container. Connect it to your starting task and do right click on Precedence Constraint and write the expression the way you want by using SSIS functions. If the expression is evaluated to True only
    then it will go to the next task.
    In this way you can skip Non-ACA files.
    Please refer:
    SSIS Skip Certain Files in a For Each Loop
    - Vaibhav

  • Tracking Number Information in B2B sales order line item

    Hello Experts
    Does anyone aware of the settings to be done to get tracking number (e.g tracking number given by DHL, Carrier Company) displayed on sales order line item.
    Following steps has been followed, but we can not see the tracking number at the line item level:
    Tracking the Shipping Status
    You can enable customers to track the shipping status of their Web shop orders using an external shipping provider. If the external shipping agency offers shipping information on the Internet, customers can access the shipping status directly via a hyperlink from the order. This enables customers to track their delivery during the shipping process.
    Prerequisites
    u2022     Your appointed haulage firm offers the shipping status tracking service.
    u2022     The haulage firm has assigned a bill of lading for each order and informed you of it.
    Activities
    1.     Call transaction VL03N in the ERP system.
    2.     Choose Display <-> Change.
    3.     Choose   Goto  Header  Partners  . Enter the data of the corresponding carrier.
    4.     Choose Shipment. In BillOfLad, enter the tracking number.
    Folks, any help will be highly appreciated
    Thanks
    DJ

    Hi DJ,
    Most of the settings that are required to display the tracking number in the web shop are ECC dependent. The function module that gets the tracking related information in the Run Time is CRM_ISA_BASKET_STATUS_ENH.
    In the above function module at line number 383 contains the relevant logic to get the tracking related information from the ECC system. At this line number the function module BAPI_XSI_GET_VTRK_G is called remotely in ECC.
    ABAP Stack in ECC:
    BAPI_XSI_GET_VTRK_G (FUNCTION MODULE)
                XSI_CREATE_TRACK_URLS (FUNCTION MODULE)
                                    TRK_GET_URLS (SUBROUTINE)
                                                    XSI_CREATE_TRACK_URL_MULTI (FUNCTION MODULE)
                                                                    XSI_CREATE_TRACK_URL (FUNCTION MODULE)
    Transaction Codes where the settings need to be done in ECC:
    1.     VTRC - Maintain Express Delivery Company
    2.     0VVT - Set Up : Express Delivery Company
    3.     VTRK - Parcel Tracking
    Database tables relevant for Tracking in ECC:
    1.     VXSITDU u2013 Express Delivery Company : URLs
    2.     VXSITDL u2013 Express Delivery Company Data Field
    3.     VTRKH u2013 Tracking Data Header
    4.     VTRKP u2013 Tracking Data Item
    5.     VLBL u2013 Express Delivery Company Data Field
    6.     TCAVAR u2013 Carrier URL Connection (Substitution of Variables)
    7.     TCAURL u2013 Carrier URL Connection
    8.     EKES u2013 Vendor Confirmations
    Best Regards,
    Chanakya Reddy

  • Customer number needed in "GL a/c line item display" for customer gl?

    Hi SAP Experts,
    while running GL account line item display in FBL3N,customer number is not displaying against the gl accounts relating to customer reconcilation account or the gls relating to the customer line item entry.my clients need that in either ASSIGNMENT field(where presently showing the document entry date as defult) or in a different column.for that he even does not want to write any report.
    How can i solve this problem?
    Plz guide me.
    I need a quick response.
    Regards,
    Biswa

    Hi,
    Check If you are using the G/L account which is the reconciliation account for your customer, then it is possible to display the special field1-U_KUNNR and it is ALSO possible to add Sort Key 031 into the Assignment field of that account in FS00 tab Control Data and therefore to display your 'Customer no.' in the Assigment field in FBL3N.
    If you are using the G/L account which is the offsetting entry or the other side of the posting, then it is NOT possible to display your 'Customer no.' neither in the Assignment field, nor adding the
    special field 1-U_KUNNR to the display. At this stage, notes 112312 and 217189 may be of use, which enable you to use a Business Transaction Event to populate offsetting account information.
    I hope these helps.
    Regards
    Ravinagh Boni

  • Anychart bar charts generated for each row of a report

    I am looking for ideas on, or existing examples of how the above requirement could be implemented in Apex 3.2.1.
    My initial thoughts are to:
    - use a pipeline table function as the report region source
    - generate the JavaScript for creating bar charts with one series of 48 points, as a column returned by the table function.
    The source data will be unlikely to be more than 15-20 records pulled from a well indexed underlying record set of several million records.
    My worry is that this may not be a particularly responsive solution and I would like to know if anyone can validate or improve on my approach?
    Cheers
    FunkyMonkey

    You would need to define a separate column to hold the required output for each possible parameter value in the first column.
    Each column would need to be conditional, where the condition is based upon the value in the first column, which you can reference using #column_name# syntax.
    Try that...
    CS

  • Which data sources Can i use for Vendor line items

    Dear Experts,
    I want to load the Vendor Line Items Data.In Rsa5 I found
    0fi_ap_3: Vendors: Line Items
    0fi_ap_4: Vendors: Line Items with Delta Extrcation
    0fi_ap_30: Vendor Line Items
    What is the differences of the 3 Datasources.
    Which Datasource  can i use.In my R/3 side they used EHP3.
    Could you please guide me what is the use of EHP3. What Cude and Dso can I use.
    Thanks in Advance.
    Regards,
    Srinivasan.

    Dear Kulakarni,
    I found few of my fields in 0FI_AP_4.I did n't find few fields can i enhance the Datasourse.
    What is the respective Cube for that  Datasourse.
    I check  0AP_30,but in Business Content that cube is not available.
    Could you please give me guidance.
    Thanks in Advance,
    Srinivasan.

Maybe you are looking for

  • How do I convert time lapse still images into a video in Premire Elements 13?

    I have 250 images taken at 15 second intervals that I want to convert to a video. I am not having any luck finding how to get elements to put the single pictures together. After I import the images I can play them but have not been able to shorten th

  • How to link 3 tracks or more ?

    Hi there, I have a new problem. I used 2 different camcorder to film the same scene but each from different angle. I also record the voice separately. I placed the 2 videos on V1 and V2 and the sound on A1 and A2. I managed to sync the video V1 and v

  • Hellp needed urgent in modifying the query

    my requriment is as follows. the data looks like as follows - 3 columns sheet_id sequence_no rap_no 1 2 1 4 1 5 1 1 2 4 2 6 2 7 3 8 3 10 4 3 4 7 and the max of seqno should be updated on rap_no. is the group by clause not neededin the following query

  • Constant Contact + Address Book Exporter application

    Since installing Snow Leopard and Quickbooks 2010 (and turning back on Sync in QB) my Address Book Exporter application will not export names and email addresses without all having errors. Can no longer import them. Any suggestions and thank you.

  • Loginwindow (Not Responding) after iTunes & Quicktime update

    In order to activate my new iPhone this morning I needed to upgrade to iTunes 7.5 and the corresponding Quicktime update. After a reboot and logging in I was presented with the desktop, the dock and a spinning beachball . . . which still hadn't gone