Custom FM for dunning activity

Dear All,
I want to post a document in customer account after dunning activity. I am trying to do this through ABAP. What i did was that i made a copy of the standard dunning activity FM Z_ISU_DUNNING_EMPTY_ACTIVI_0350. In this FM i added my code which would post a simple document in a customer account.
When i test this function module using se37 the FM works perfectly well and posts a document. However when i put this FM for my dunning activity(Using SPRO>> Configure Dunning activities) and run the dunning proposal and activity, the document does not get posted. I dont know why. Can anyone please help. Would really appreciate
Here is how the code looks like after i added my code for posting a simple document
FUNCTION ZISU_DUNNING_EMPTY_ACTIVI_0350.
""Local Interface:
*"  IMPORTING
*"     VALUE(I_TFK047L) LIKE  TFK047L STRUCTURE  TFK047L
*"  TABLES
*"      T_FKKMAZE STRUCTURE  FKKMAZE
*"      T_FKKMAKT STRUCTURE  FKKMAKT
*"      T_FKKOP STRUCTURE  FKKOP
*"      T_FKKOPK STRUCTURE  FKKOPK
*"      T_FIMSG STRUCTURE  FIMSG
*"  CHANGING
*"     VALUE(C_FKKMAKO) LIKE  FKKMAKO STRUCTURE  FKKMAKO
*"     VALUE(C_FKKKO) LIKE  FKKKO STRUCTURE  FKKKO
only write success message into job log
  DATA:
    documentheader like bapidfkkko,
partnerpositions type standard table of bapidfkkop with header line,
genledgerpositions type standard table of bapidfkkopk with header line,
documentnumber like bapidfkkko-doc_no,
return type standard table of bapiret2 with header line.
  documentheader-fikey                = '100915-001'.
  documentheader-appl_area            = 'R'.
  documentheader-doc_type             = 'AB'.
  documentheader-doc_source_key       = '01'.
  documentheader-currency             = 'UNI'.
  documentheader-doc_date             =  sy-datum.
  documentheader-post_date            =  sy-datum.
  partnerpositions-item                = '0001'.
  partnerpositions-comp_code           = 'UNI'.
  partnerpositions-buspartner          = '0000014044'.
  partnerpositions-cont_acct           = '10000416133X'.
  partnerpositions-main_trans          = '6000'.
  partnerpositions-sub_trans           = 'AD01'.
  partnerpositions-g_l_acct            = '0000140000'.
  partnerpositions-doc_date            = sy-datum.
  partnerpositions-post_date           = sy-datum.
  partnerpositions-net_date            = sy-datum.
  partnerpositions-currency            = 'UNI'.
  partnerpositions-amount              = '99'.
  APPEND partnerpositions.
  genledgerpositions-item = '0001'.
  genledgerpositions-comp_code = 'UNI'.
  genledgerpositions-g_l_acct  = '0000299000'.
  genledgerpositions-amount = '-99'.
  genledgerpositions-profit_ctr = 'IBC'.
   APPEND genledgerpositions.
    CALL FUNCTION 'BAPI_CTRACDOCUMENT_CREATE'
    EXPORTING
      testrun            = ''
      documentheader     = documentheader
    IMPORTING
      documentnumber     = documentnumber
      return             = return
    TABLES
      partnerpositions   = partnerpositions
      genledgerpositions = genledgerpositions.
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING
        wait = 'X'.
    CALL FUNCTION 'FKK_DUNNING_MESSAGE_APPEND'
         EXPORTING
              MSGID   = 'EK'
              MSGNO   = '345'
              MSGPR   = '2'
         TABLES
              T_FIMSG = T_FIMSG.
    IF 1 = 0. MESSAGE S345(EK). ENDIF.
ENDFUNCTION.

The log displays the same message as the one it showed when i had not changed the code.
I also tried to do the same thing with the dunning activity that deactivates the installment plan. i made a copy of the function module ISU_DUNNING_DEACT_INSTPL_0350. In that new func module i copied my code that posts a simple document. then i assigned the new ZISU_DUNNING_DEACT_INSTPL_0350 activity to the dunning procedure in SPRO. I created an installment plan for a business partner and ran the dunning activity. The installment got de activated but no document was posted!
for your help i am providing the code of the ZISU_DUNNING_DEACT_INSTPL_0350
FUNCTION ZISU_DUNNING_DEACT_INSTPL_0350.
""Local Interface:
*"  IMPORTING
*"     VALUE(I_TFK047L) LIKE  TFK047L STRUCTURE  TFK047L
*"  EXPORTING
*"     VALUE(TEMP) TYPE  OPTXT
*"  TABLES
*"      T_FKKMAZE STRUCTURE  FKKMAZE
*"      T_FKKMAKT STRUCTURE  FKKMAKT
*"      T_FKKOP STRUCTURE  FKKOP
*"      T_FKKOPK STRUCTURE  FKKOPK
*"      T_FIMSG STRUCTURE  FIMSG
*"  CHANGING
*"     VALUE(C_FKKMAKO) LIKE  FKKMAKO STRUCTURE  FKKMAKO
*"     VALUE(C_FKKKO) LIKE  FKKKO STRUCTURE  FKKKO
DATA: BEGIN OF T_OPBEL OCCURS 1,
          OPBEL LIKE FKKOP-OPBEL,
        END OF T_OPBEL.
  DATA: H_ATEXT(100).
  DATA: OPBEL_C(12).
  DATA: H_UPDATE.
  DATA: H_FKKMAHNV LIKE FKKMAHNV.
  DATA: H_TFK033D LIKE TFK033D.
  DATA: H_DEAGD LIKE RFKN1-DEAGD,
documentheader like bapidfkkko,
partnerpositions type standard table of bapidfkkop with header line,
genledgerpositions type standard table of bapidfkkopk with header line,
documentnumber like bapidfkkko-doc_no,
return type standard table of bapiret2 with header line.
documentheader-fikey                = '100915-001'.
documentheader-appl_area            = 'R'.
documentheader-doc_type             = 'AB'.
documentheader-doc_source_key       = '01'.
documentheader-currency             = 'UNI'.
documentheader-doc_date             =  sy-datum.
documentheader-post_date            =  sy-datum.
partnerpositions-item                = '0001'.
partnerpositions-comp_code           = 'UNI'.
partnerpositions-buspartner          = '0000014030'.
partnerpositions-cont_acct           = '10000416119X'.
partnerpositions-main_trans          = '6000'.
partnerpositions-sub_trans           = 'AD01'.
partnerpositions-g_l_acct            = '0000140000'.
partnerpositions-doc_date            = sy-datum.
partnerpositions-post_date           = sy-datum.
partnerpositions-net_date            = sy-datum.
partnerpositions-currency            = 'UNI'.
partnerpositions-amount              = '66'.
APPEND partnerpositions.
genledgerpositions-item = '0001'.
genledgerpositions-comp_code = 'UNI'.
genledgerpositions-g_l_acct  = '0000299000'.
genledgerpositions-amount = '-66'.
genledgerpositions-profit_ctr = 'IBC'.
APPEND genledgerpositions.
CALL FUNCTION 'BAPI_CTRACDOCUMENT_CREATE'
EXPORTING
testrun            = ''
documentheader     = documentheader
IMPORTING
documentnumber     = documentnumber
return             = return
TABLES
partnerpositions   = partnerpositions
genledgerpositions = genledgerpositions.
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
EXPORTING
wait = 'X'.
temp = return-message.
temp = documentnumber.
  CALL FUNCTION 'ISU_DUNNING_DEACT_INSTPL_LOAN'
       EXPORTING
            I_LOAN    = space
       TABLES
            T_FKKMAZE = T_FKKMAZE
            T_FKKMAKT = T_FKKMAKT
            T_FIMSG   = T_FIMSG
       CHANGING
            C_FKKMAKO = C_FKKMAKO.
  exit.
get update flag from global memory
Parameter, ob Testdruck vorgesehen ist, aus dem globalen Memory holen
  CALL FUNCTION 'FKK_DUNNING_PARAMETER_GET'
       IMPORTING
            E_UPDATE   = H_UPDATE
            E_FKKMAHNV = H_FKKMAHNV.
new: reason for deactivation of installment plan in
business area 1102
  CALL FUNCTION 'FKK_ACCOUNT_DETERMINE_1102'
       EXPORTING
            I_APPLK   = H_FKKMAHNV-APPLK
       IMPORTING
            E_TFK033D = H_TFK033D
       EXCEPTIONS
            OTHERS    = 3.
  IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  H_DEAGD = H_TFK033D-FUN01.
inside the dunned items, look if there installments in the highest
dunning level
innerhalb der gemahnten Forderungen nach Raten suchen, die die
höchste Mahnstufe erreicht haben
  LOOP AT T_FKKMAZE
    WHERE STAKZ = 'R'
    and xinfo   = ' '.
     AND MAHNS = C_FKKMAKO-MAHNS.                  "Note 182489
    READ TABLE T_OPBEL WITH KEY OPBEL = T_FKKMAZE-OPBEL.
if the document number is new, go on
Nur weitermachen, wenn die Nummer noch nicht geprüft wurde
    CHECK SY-SUBRC NE 0.
    T_OPBEL-OPBEL = T_FKKMAZE-OPBEL.
    APPEND T_OPBEL.
    WRITE T_OPBEL-OPBEL TO OPBEL_C NO-ZERO.
deactivate installment plan only in update mode
Ratenplan nur im UPDATE-Modus deaktivieren
    IF H_UPDATE = 'X'.
      CALL FUNCTION 'FKK_S_INSTPLAN_DEACTIVATE'
           EXPORTING
                I_OPBEL = T_OPBEL-OPBEL
                I_DEAGD = H_DEAGD
                I_DEADT = sy-datum
           EXCEPTIONS
                OTHERS  = 1.
    else.
      clear sy-subrc.
    ENDIF.
    IF SY-SUBRC = 0.
success message in job log
Nachricht, daß Ratenplan deaktiviert wurde, ins Protokoll  :News that installment plan has been disabled, the log
      CALL FUNCTION 'FKK_DUNNING_MESSAGE_APPEND'
           EXPORTING
                MSGID   = 'EK'
                MSGNO   = '304'
                MSGV1   = OPBEL_C
                MSGPR   = '2'
           TABLES
                T_FIMSG = t_fimsg.
      IF 1 = 0. MESSAGE S304(EK) with OPBEL_C. ENDIF.
Create an entry in dunning history for deactivating an installmt plan
Für das Deaktivieren des Ratenplans wird noch eine Mahnaktivität
definiert.
      CLEAR T_FKKMAKT.
      MOVE-CORRESPONDING C_FKKMAKO TO T_FKKMAKT.
      H_ATEXT = 'Ratenplan & wurde deaktiviert'(001).
      REPLACE '&' WITH OPBEL_C INTO H_ATEXT.
      CONDENSE H_ATEXT.
      T_FKKMAKT-ATEXT = H_ATEXT.
    concatenate 'Ratenplan'(001)
                t_opbel-opbel
                'wurde deaktiviert'(002)
      into t_fkkmakt-atext separated by space.
      APPEND T_FKKMAKT.
    ELSE.
Write error in job log
Fehlermeldung aus dem Funktionsbaustein wird in Tabelle geschrieben,
sie kommt dann nach der Abbruch-Meldung ins Protokoll.
      CALL FUNCTION 'FKK_DUNNING_SYST_MESSAGE_APP'
           TABLES
                T_FIMSG = T_FIMSG.
error message in case of error
Dann wird die Abbruchmeldung direkt ausgegeben
      MESSAGE E305(EK) WITH OPBEL_C.
    ENDIF.
  ENDLOOP.
ENDFUNCTION.

Similar Messages

  • Custom report for SNMP activity

    Does anyone know a good way to create a custom report on CS-MARS to monitor SNMP activity? I checked into the Report Creation tool and saw the fields for 'System Monitoring', etc. but wanted to know if someone already had a good solution in place. Thanks.

    I had a problem with SNMP cpu spikes that I narrowed down with 'sh proc cpu his' and sh proc cpu sort', but I thought it would be helpful to have a report in CS-MARS that monitors when there is SNMP activity so I could check times when SNMP scans were being run (kind of like 'ping network sweep' in CS-MARS). So I can make sure they are legitimate scans and not something help desk is running, etc. I was just wondering if anyone had created anything like this. Thanks.

  • Enhance Standard Info Structure SAP_CRM_ACT to add custom fields in CRM Activity archive Search

    Hi All,
    We have a requirement where we need to enhance CRM UI archive search with custom fields for CRM activity Object CRM_ACT_ON. As per my analysis Standard Archive Search for activity Uses info structure SAP_CRM_ACT for searching archived data.
    But when we are trying to add custom fields into above field catalog, it is treated as modification. But Modification is not allowed in our landscape.
    Standard infostructure is harcoded in SAP standard method ARCHIVING_READ of class CL_CRM_REPORT_ACC_DYNAMIC which is called as part of the process. So we are not able to go ahead with custom info structure.
    Can you please le me know if there are any alternative way to meet above requirement or I have missed any steps.
    Thanks & Regards,
         Sujit

    Hello Thomas,
    Maybe this link can help.
    add new field to search criteria and result.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0747ac2-ffd9-2910-de9a-8a3dc44da8b4?QuickLink=index&overridelayout=true&12966506314316
    Search Options - Knowledge Management - SAP Library
    regards,
    Grace

  • Customer invoices are blocked for dunning automatically when we run F150

    HI All
    when we are running the dunning (T.Code F150) for one of the customer invoice items are blocking for dunning automatically.
    the customer master setting for dunning block fields is empty and there is no changes for this field.
    These invoices are created recently and could please help to find a solution for not happened the same in hte next dunning runs?
    thanks in advance
    Best regards
    Venu

    Hi,
    Customer automatically gets blocked if the Customer has NO Line Items which can be considered for Dunning.
    Before running the Dunning check weather the customer master us updated with DUNNING Variant and also check for the weather the  Line items are over due and if so check the Dunning Procedure for Dunning INTERVAL and also the Arrear Days for each Internal.
    Hope this will Help you .
    Thanks
    Goutam

  • I am trying to redeem my iTunes account with a gift card and it keeps coming up with "the Gift certificate or prepaid card code you entered has not been properly activated. Please contact iTunes customer support for assistance" what does this mean?

    I am trying to redeem my iTunes account with a gift card and it keeps coming up with "the Gift certificate or prepaid card code you entered has not been properly activated. Please contact iTunes customer support for assistance" what does this mean?

    It all comes down to contact iTunes customer support for assistance.
    iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html > Get iTunes support via Express Lane > iTunes > iTunes Store

  • Delta extraction for dunning history is not active

    Hi all,
    I am loading data to the FI Cube (Financial A/c -> Contract a/c receivables ) Dunning header .
    This is a Standard infocube.  This cube contains two DSOu2019S  0FC_DS08 , 0FC_DS11.  When I starting the data loading from the DSO ( 0FC_DS08 ), I create the INIT package .  When creating itself it throwing the error  u201C Delta extraction for dunning history is not active u201D
       When I check on SDN SAP , ( Use Tcode sbiw. Select 'Settings for apllication-specific datasources (PI) ->Contract Aacounts Receivable -> Make Central Settings'. Then tick 'Delta Extraction for Dunning Items Active'.) I got this link.  But I could not proceed this link.  Can you explain detailed step by step how to proceed to solve this issue.
    Regards,
    Baskaran.

    Hello Baskaran,
    Did you ever solve this issue?
    We do not have the link in SBIW (ERP 6.0 EHP6).
    Thanks,
    Andreas

  • Programme for downloading Customer with out Duns Data

    hello all,
    I want to download customer with out DUNS data,please any one help me on this,how we can download customers without Duns.
    Please any one helpme on this.
    Thanks,
    Raju.

    Hi,
    Do your customers need to communicated with each other?
    Do your customers need to have access to Internet.
    To what device your Internet connection will be attached to?
    If the customers don't need to communicate with each other, you can get a larger firewall and use VRF lite on the switches/routers and  firewall context to separate each customer.
    Here is good document to look at:
    http://www.cisco.com/c/en/us/td/docs/solutions/Enterprise/Network_Virtualization/PathIsol.html
    HTH

  • Issue with Customize program for Dunning Forms

    Hi  Experts
    I have write a perform for dunning form in a outside report apart from standard print program. After doing some calculations I want print some information in the form using the function module "Write_Form", but I am not able write on the form.
    Please advise me is there any other settings are additional details are required to print the custome lines in the dunning form. Dunning form also customized in this scenario.
    Awaiting for your reply
    Thanks
    Praveen

    Hi Shakeel
    Thanks for your help, I am using Write_Form only, but not able to write the statements in the Form.
    Let me explain my code here.
    1. I wrote the perform in the SAP Script under a text element.
    2. In that perform(in the program) I am calling other text elements, where I have to write the statements.
    But I dont know, what is the problem here, when I debug the Write_Form FM, in the very first statement itself, it is becoming false and coming out from the whole process. That statement is
    check co_perform-active <> true.
    Please advise me, am I doing anything wrong or is there any other process to fullfill it.
    Thanks
    Praveen

  • Dunning Activity send by mail. but mail does not contain a subject.

    Hello Friends,
    I am facing a issue of "subject missing in the mail",
    we are running the F150 transaction to send a mail to customer as an attachment of dunning activity.
    But mail does not contain a subject.
    kindly let me know how to maintain a subject for the mail.
    Regards,
    Munvar BAsha

    Hi,
    check the SAPNET notes 521585, 554408, 1042992 + related notes.
    Best regards, Christian

  • Dunning Activity

    Dear Friends,
    In a Dunning run, One Particular Customer has 2 overdue bills, of which, one is in the 1st level and other is in the 4th level (Last level).
    During the Run, the system identifies the line items in 2 levels but executes Dunning Activity for the higher level as the lower level activity is ignored.
    Kindly suggest what could be wrong.
    Thanks in Advance.
    Regards
    R.Vasudeb

    Hi,
    You can define dunning grouping according to dunning step and, maybe, dunning procedure. But, as a warning, you will have 2 dunning groups and that partner will receive 2 dunning notices, as opposed to 1 if you don't do what I just described. For example, you have 2 invoices, F1 - 100 units, dunning step 1 and F2 - 200 units, dunning step 2.
    Case 1 - not grouping by dunning step and dunning procedure. You get:
    - 1 dunning group, dunning step 2, customer is warned his debt is 300 units, F1 - 100 units, F2 - 200 units.
    Case 2 - grouping by dunning step and dunning procedure. You get:
    - 1 dunning group, dunning step 1, customer is warned his debt is 100 units, F1 - 100 units.
    - 1 dunning group, dunning step 2, customer is warned his debt is 200 units, F2 - 200 units.
    If you want to change dunning grouping, go to Financial Accounting->Contract Accounts Receivable and Payable->Business Transactions->Dunning Notices->Define Dunning Grouping Categories. Use fields MAHNN for grouping according to dunning step and MAHNV for grouping according to dunning procedure.
    Hope this helps,
    Bogdan

  • Report for Dunning

    Hi Experts,
    Any one has written report for Dunning.(F150)
    Scenario: transcation code F150 can't be schedule; it's runs manually by users.
    we  need a report  same as what F150 is doing so that we can schedule in job.
    if any one knows  report for dunning ? I know fot he payment F110, there is a sap report progarm but not for Dunning(F150).
    Can anybody  suggest me ??
    Thanks in advnace for the help.
    Regards,
    Nupur

    Hi Hemanth,
    Customizing:
    You can go the Transaction FBMP and add your Form name as well as the Print Program name.
    These would be call when ever you run the dunning Program.
    From the Layoutset yuo can use the  PERFORM subroutine using and changing parameters which would have the Structure ITCSY.
    The Form then needs to be present in the Driover Prpgram.
    Please let me know if this is useful.
    Regards,
    Deepak

  • To get Footer Displayed for Dunning Letter Report

    Hi All
    There is a requirement to Add footer to display at bottom of page in Oracle reports with Customer Number, And Sum of Transaction Amount
    for Dunning Letter. Would need some hint towards fixing this Can we get this requirement using Dunning Letters
    Thanks
    Kamalakar.G

    There are two locations on the BI Server where you need to place images:
    Drive:\Oracle\Middleware\Oracle_BI1\bifoundation\web\app\res\s_blafp\images
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\analytics_11.1.1\7dezjl\war\res\s_blafp\images
    Normally no need to restart services; just clear caches and reload files and metadata. Try adding images in these locations and referencing them with HTML from your dashboard. This should give the desired result
    HTML syntax for displaying image : <img width=183 height=53 src="res/s_blafp/images/YOURIMAGENAME.jpg">
    Geo

  • Form language for dunning

    I use the copy of F150_DUNN_01 for dunning printout.
    Is there any variable I can use to determine the language of the form?
    I believe it's coming from the communication language of the customer, so I could get in a PERFORM myself, but I'm sure it's available as a variable, however I cannot find it.
    It seems the print is triggered by FM PRINT_DUNNING_NOTICE.
    Thanks in advance,
    Peter

    Hi Tomasz,
    Thanks for your answer.
    It seems for both FM there is an import parameter LANGUAGE, however in case od OPEN_FORM it's still the logon langauge, however for START_FORM it's already correct.
    I still couldn't find if this parameter is passed to the SAPScript. In the ABAP debugger LANGUAGE and 'rstxc-tdspras' is filled with the correct language, however in the FORM Debugger, there is no value assigned to these parameters.
    If I change from the FORM debugger to ABAP debugger, the value is shown correctly for rstxc-tdspras.
    I think I'll get it from the customer master with a PERFORM, it's easier.
    Thanks,
    Peter

  • How to select data from an aggregate in a customer exit for a query?

    Hi,
    I have written a virtual key figure customer exit for a query. Earlier the selection was from the cube, where there was severe performance issue. So I have created an aggregate, activated and have loaded the data.
    Now when I select that data I find that the Key table is different in development and production. How do I resolve this.
    My code is attached below. The table in developemnt is KEY_100027 and in production is KEY_100004. This code is activated and running in BW development server.
    SELECT
        F~KEY_1000041 AS K____035
         F~KEY_1000271 AS K____035
         F~QUANT_B AS K____051
         F~VALUE_LC AS K____052
    INTO (xdoc_date, xval1, xqty1)
    UP TO 1 ROWS
    FROM
    FROM
    */BIC/E100004 AS F JOIN
    /BIC/E100027 AS F JOIN
    /BIC/DZMM_CGRNU AS DU
    ON FKEY_ZMM_CGRNU = DUDIMID
    JOIN /BI0/SUNIT AS S1
    ON  DUSID_0BASE_UOM = S1SID
    JOIN /BI0/SCURRENCY AS S2
    ON DUSID_0LOC_CURRCY = S2SID
    JOIN /BI0/SMATERIAL AS S3
    *ON FKEY_1000042 = S3SID
    ON FKEY_1000272 = S3SID
    JOIN /BI0/SMOVETYPE AS S4
    *ON FKEY_1000043 = S4SID
    ON FKEY_1000273 = S4SID
    JOIN /BI0/SPLANT AS S5
    *ON FKEY_1000044 = S5SID
    ON FKEY_1000274 = S5SID
    JOIN /BIC/D100004P AS DP
    *ON FKEY_100004P = DPDIMID
    ON FKEY_100027P = DPDIMID
    WHERE
    WHERE
    ( ( ( ( F~KEY_1000041 BETWEEN 20051230 AND 20060630  ) ) AND  ( (
    ( ( ( ( F~KEY_1000271 BETWEEN 20051230 AND 20060630  ) ) AND  ( (
             S3~MATERIAL = <l_0material> ) ) AND  ( (
                s2~movetype BETWEEN '101' AND '102' OR
             s4~movetype BETWEEN '921' AND '922' OR
             s4~movetype BETWEEN '105' AND '106' OR
             s4~movetype BETWEEN '701' AND '701' OR
             s4~movetype BETWEEN '632' AND '632' ) ) AND  ( (
             S5~PLANT = <l_0plant> ) ) AND  ( (
             DP~SID_0RECORDTP = 0  ) ) ) )
    GROUP BY
        ORDER BY F~KEY_1000271 DESCENDING.
          IF sy-subrc NE 0.
            EXIT.
          ENDIF.
        ENDSELECT.
    How do I transport the code and make it work?
    Whats the reason that the two key fields are different.
    I had transported the aggregate from development to production. Activated it and filled the data.
    What is the way out? Please help.
    Regards,
    Annie.

    Hi Sonu,
    The main task is to move the contents of the one internal table to another with some condition.
    First sort and delete the duplicate entries from the First Internal table like below : 
    sort it_tab by material ascending date_modified descending.
    delete adjacent duplicates from it_tab.
    Then move that Internal table contents to another internal table.
    Define another internal table with the same structure as you have first internal table and then
    Second Step :
    it_itab1 = it_itab.
    If you are using seperate Header line and Body then you can do like below :
           it_itab1[] = it_itab[].
    This will fix the issue.
    Please let me know if you need any further explonation.
    Regards,
    Kittu
    Edited by: Kittu on Apr 24, 2009 12:21 PM

  • Custom BIOS for GE60 2oc

    Hello!
    I would like to request a custom bios for my laptop (MSI GE-60 2oc).
    I have had problems with low CPU utilization after updating the embedded controller with official MSI firmware update. At the same time I was supposed to update the BIOS, but I couldn't, using the official driver found on MSI download center, since my system told me it's not the right version.
    I wanted to try this new approach as a new bios might help, I figured. I can't find any downgrading for the embedded controller. Would a custom bios be good thing for me or am I doing this all wrong?
    Current bios: E16GCIMS.509
    EC firmware installed: 16GCEMS1.506
    The BIOS update that did not work: E16GCIMS.611

    I know got my current version of BIOS and EC by MSI support so I will experiment with them. Downgrading to EC v. 5.00 helped I think. I have started to meassure now and the thing is that my GPU seems to have a real low core clock. The GT750m is marketed as 967 mhz but GPU shark and 3DMark 11 shows that I have 405 mhz. When playing Starcraft 2 I get real low FPS considering the settings (25 fps while playing medium quality and 1080p res.) hard to find comparing stats on the net. When meassuring with 3Dmark 11 I get a 2800 score which is comparable to other machines like mine.
    GPU Shark v0.7.3
    (C)2013 Geeks3D - www.geeks3d.com
    GPU Shark v.0.7.3 gives me these numbers:
    Elapsed time: 00:01:40
    OpenGL memory - total:2048MB, usage:98MB
    GPU 1 - GeForce GT 750M
    - GPU: unknown
    - Bus ID: 1
    - Device ID: 10DE- FE4
    - Subvendor: MSI (1462-10E6)
    - Driver version: 9.18.13.3182
    - NV driver branch: r331_00-187
    - OS: Windows 8 64-bit
    - Bios version: 80.07.a2.00.07
    - GPU memory size: 2048MB
    - Bus width: 128-bit
    - GPU memory location: GPU dedicated
    - GPU memory type: GDDR5
    - GPU temp: 43.0°C (min:43.0°C - max:45.0°C)
    - GPU cores: 384
    - Performance states: 3
    - Performance state P0
    - GPU: 1183.5MHz
    - Mem: 2355.0MHz
    - VDDC: 0.856V
    - Performance state P5
    - GPU: 1183.5MHz
    - Mem: 800.0MHz
    - VDDC: 0.850V
    - Performance state P8 (current)
    - GPU: 405.0MHz
    - Mem: 405.0MHz
    - VDDC: 0.806V
    - True current clock speeds / VDDC:
    - Core: 135.0MHz
    - Mem: 405.0MHz
    - VDDC: 0.806V
    - GPU and memory usage:
    - GPU: 0.0%, max: 99.0%
    - GPU memory: 4.7%
    - GPU memory controller: 0.0%
    - Limiting policies (NVIDIA):
    - no limitation
    - Current active 3D applications:
    ---- 3dmark11.exe (PID: 6360)
    ---- furmark.exe (PID: 6328)
    ---- gpushark.exe (PID: 7028)
    Well well, will try new BIOS now when I get go back to my previous version if it doesn't help me.

Maybe you are looking for

  • 5800 micro sd card problem, wont turn on!

    Hello! After I uninstalled google maps (from my 16 gb memory card) my phone froze. I took out the battery and when I tried to turn it back on I got the white screen and then black screen with all lights on but the phone would not turn on. I changed t

  • IPod Touch & Mac Mini wireless

    I have: Mac Mini iPod Touch Wired network. I have read that this can be done, but cannot figure out how to do it properly. Need: Have the iPod touch use the Mac Mini as a wireless router/station so that I can browse the web from within 10 feet of the

  • IPhoto 09 v8.1.2 keeps crashing

    iPhoto 09 v8.1.2 keeps crashing. I think I have too many pictures, Albums and Facebook Albums. How do I know what it's limits are and get it more stable? I have 13,564 photos in 303 events.

  • It's possible read CHM files in n900?

    It's possible read CHM files in n900? Fbreader says that have support, but it doesn't... I can't read a CHM file with fbreader. Any other program for it? Thanks.

  • Change CS6 profile

    I had my personally owned CS6 apps listed under my work email. Now my company is paying for CC I do not need to use CS6, but want to keep using CS6 on my personal computer under a personal email (new profile). What is the process to change profiles f