Effect of Change in structure for 0FI_GL_4  on Delta extraction

Hi,
We are upgrading our R3 system from 4.7 to ECC6.0.
In 0FI_GL_4 we have a appended one X field and it was working fine. Now the same filed is available in standard content ( In new Version) Which will cause the structure to become inactive ( We came across this situation in testing phase).. We activated the same by removing the field from Append structure and started pulling records for the same.
1. If I change the extractor and continue with my delta extraction will it work???
2. I have not done any changes to the customer exits written for the old field X...but I didn;t get any dump for    the same .. Is ithis k????
Regards,
Rangz

Hi Simon,
Thanks for the confirmation.
In our business process we are extracting data for FI with safety interval 1 day, During upgrade activity ( This will be done on the same Server)
Consider If I Shutdown R3 system today 28th Jan and If I try to extract the data, The FI extractor will get the data till yesterday ,same will applicable even If I do the repeat delta extraction.Is it right???
After upgrade( after changing the 0FI_GL_4 structure, after  2 days of upgrade activity), If I continue with my delta extraction, will it work properly for FI Data sources??? Am I going to get the data records for the transaction that happened on 28th Jan this time????
Or If not  any other methods to overcome the same???
Regards,
R@ngzz
Edited by: Ranganath Kodiugane on Jan 28, 2009 12:53 PM

Similar Messages

  • Enhancing the extract structure for 0FI_GL_4,  0FI_AP_4,  0FI_AR_4

    Hi all,
          Does anyone know how to enhance the extraction structures with additional fields for datasources 0FI_GL_4 (General ledger: line item), 0FI_AP_4 (vendors: line item) and 0FI_AR_4 (customers: line item). 
    Thanks,
    Sabrina.

    Hi
        Here are the two scenario's described in the note:
    1. All the fields of the customer enhancement in the customer include are contained in the read structure (see the table above).  Then no additional action is required. The fields of the customer enhancement are filled automatically by the datasource from the assigned read structure via "move-corresponding".
    Example:   The extraction structure DTFIGL_4 for datasource 0FI_GL_4 (General ledger: line item) should be enhanced by the VALUT (value date) field.
               To do this, create structure CI_BSIS in the data dictionary of the R/3 source system and include the VALUT field in it. The data dictionary in the R/3 source system shows that the VALUT field is contained in the read structure of the datasource (table BSIS). For that reason the VALUT field is automatically filled by datasource 0FI_GL_4.
    2. Fields of the customer enhancement in the customer include are not contained in the read structure (see the table above).  In this case you have to program a function module to fill the field of the customer enhancement. To do this, there is a Business Transaction Event available (open FI interface for process 00005021). Create any function module you like and use function module SAMPLE_PROCESS_00005021 as a template for the interface (input parameter, changing parameter).
               Interface of function module SAMPLE_PROCESS_00005021:
                Input-parameter I_OLTPSOURCE: datasource that is currently extracting data from the R/3 source system.
                Changing-Parameter C_STRUCTURE: Extraction structure of the data source currently extracting including fields from the assigned customer include. When you call this customer defined function module, all the fields of the extract structure are transferred filled.
               Check whether the type pool SBIWA is declared in the TOP include of the function group.
    If not, add it with the statement TYPE-POOLS: SBIWA.
               Then maintain table TPS31 with Transaction SM30. Create the following entry:
               PROCS LAND APPLK FUNCT
               00005021 <fname>
               <fname> stands for the customer defined function module.
                By doing so, the function module you defined is called for each extracted record. Note that in this case the performance of the extraction may be reduced significantly regardless of the table read and the complexity of the programmed logic.
               Example:
               You want to enhance the extraction structure DTFIAR_3 for datasource 0FI_AR_4 (customers: line item) by the ORT01 (city) field from the customer master record.
                To do this, create structure CI_BSID in data dictionary of the R/3 source system and include the ORT01 field in that. The data dictionary in the R/3 source system displays that the ORT01 field is NOT contained in the read structure of datasource 0FI_AR_4 (Table BSID).
                Therefore you have to program a function module that reads the customer master in the R/3 system (table KANN1) and fills the ORT01 field of the customer enhancement. In the changing parameter C_STRUCTURE the filled fields of the extraction structure DTFIAR_3 are available to you. With the KUNNR field of extraction structure DTFIAR_3, you can select the respective master data record from table KNA1 and determine field ORT01 of the customer enhancement.
    1. All the fields of the customer enhancement in the customer include are contained in the read structure (see the table above).
               Then no additional action is required. The fields of the customer enhancement are filled automatically by the datasource from the assigned read structure via "move-corresponding".
               Example:
               The extraction structure DTFIGL_4 for datasource 0FI_GL_4 (General ledger: line item) should be enhanced by the VALUT (value date) field.
               To do this, create structure CI_BSIS in the data dictionary of the R/3 source system and include the VALUT field in it. The data dictionary in the R/3 source system shows that the VALUT field is contained in the read structure of the datasource (table BSIS). For that reason the VALUT field is automatically filled by datasource 0FI_GL_4.
               ATTENTION:
               By using Note 430303 you can enhance DataSource 0FI_GL_4 by all fields from table BSEG (instead of BSIS); then the fields are filled automatically in the extractor.
    1. Fields of the customer enhancement in the customer include are not contained in the read structure (see the table above).
                In this case you have to program a function module to fill the field of the customer enhancement. To do this, there is a Business Transaction Event available (open FI interface for process 00005021). Create any function module you like and use function module SAMPLE_PROCESS_00005021 as a template for the interface (input parameter, changing parameter).
               Interface of function module SAMPLE_PROCESS_00005021:
                Input-parameter I_OLTPSOURCE: datasource that is currently extracting data from the R/3 source system.
                Changing-Parameter C_STRUCTURE: Extraction structure of the data source currently extracting including fields from the assigned customer include. When you call this customer defined function module, all the fields of the extract structure are transferred filled.
               Check whether the type pool SBIWA is declared in the TOP include of the function group.
    If not, add it with the statement TYPE-POOLS: SBIWA.
               Then maintain table TPS31 with Transaction SM30. Create the following entry:
               PROCS LAND APPLK FUNCT
               00005021 <fname>
               <fname> stands for the customer defined function module.
                By doing so, the function module you defined is called for each extracted record. Note that in this case the performance of the extraction may be reduced significantly regardless of the table read and the complexity of the programmed logic.
               Example:
               You want to enhance the extraction structure DTFIAR_3 for datasource 0FI_AR_4 (customers: line item) by the ORT01 (city) field from the customer master record.
                To do this, create structure CI_BSID in data dictionary of the R/3 source system and include the ORT01 field in that. The data dictionary in the R/3 source system displays that the ORT01 field is NOT contained in the read structure of datasource 0FI_AR_4 (Table BSID).
                Therefore you have to program a function module that reads the customer master in the R/3 system (table KANN1) and fills the ORT01 field of the customer enhancement. In the changing parameter C_STRUCTURE the filled fields of the extraction structure DTFIAR_3 are available to you. With the KUNNR field of extraction structure DTFIAR_3, you can select the respective master data record from table KNA1 and determine field ORT01 of the customer enhancement.
    After you create the customer include in the R/3 source system you have to post process the accompanying datasource with Transaction RSA6. Select the application component according to the above table and change the datasource that fits the customer include. The "Hide fields" flag should be removed in the field list for the fields of the customer include. Then save the field list.
    If the fields of the customer include is not displayed in Transaction RSA6, refer to note 415530.
    1.  After you create the customer include in the R/3 source system you have to post process the accompanying datasource with Transaction RSA6. Select the application component according to the above table and change the datasource that fits the customer include. The "Hide fields" flag should be removed in the field list for the fields of the customer include. Then save the field list.
    If the fields of the customer include is not displayed in Transaction RSA6, refer to note 415530.
    Please let me know.
    Thanks,
    Sabrina.

  • Change communication structure for master data with direct update

    Hi All,
    I am having a problem with a change I want to make to some master data. I have added the attribute to the characteristic, but when I have gone to change the communication structure, its not possible (the add line button is greyed out)
    I can see the new infoobject in the datasource/trans structure, but not in the comms structure (And yes it is in change mode   ).
    The master data uses direct update, and I have read that this causes some hassles in changing the comms str.
    Can someone please give me some steps in doing this??
    Thanks
    Ryan

    Hi Ryan,
    Why u have nothing to map is ?
    U r datasource trasfer structure from the source ssytem has nothing new ..
    1)TO ur Info object u can only write the routing or give any formula or anythign like the trasfer rules oftions that have when u click on the IO icon..
    2) Enhave the structure of the datasoruce that is getting from the  R3 source system...
    3) Replicate it ..
    Then only u will be able to find the extra field at the Trasfer structure... to map to the IO which have been added..
    hope it helps
    regards
    AK

  • 0FI_GL_4 - partionioned Delta Upload ?

    Hi everbody,
    for performance reason I want to try a partitioned delta Upload from 0FI_GL_4 .
    That is loading the PSA / DSO in parallel with parallel processes:
    -with selction Criteria FY=2011.01
    -with selction Criteria FY=2011.02
    -with selction Criteria FY=2011.03
    It seems to be that I need two InfoPackahes to load PSA per selection criteria:
    One to initialize and one for the monthly Delta extraction  per selection criteria.
    Is there No Way arround to build per selection two InfoPackages ?
    -InfoPackage 0FI_GL_4  with selction Criteria FY=2011.01 Update Mode: Initialize Delta Process , Initialization with Data Transfer
    -InfoPackage 0FI_GL_4  with selction Criteria FY=2011.01 Update Mode: Delta Update
    Whats best configuration ?
    Thank You
    Martin

    Hi
    it should be done automatic without of anymanual interference ...and dozenense of double InfoPackages...
    with few differentiation....
    Best Wishes
    Martin

  • Delta Extraction of CO_OM_CCA_9 after change in BWOM_Settings

    Hi Sap Gurus,
    We have implemented the SAP OSS note 553561 to modify the safety limit in BWOM_settings for most updated Delta Extraction for CO DataSource 0CO_OM_CCA_9, But when i schedule the delta it brings only the CO documents that have created in the month of September 2011 only and we do have a lot of documents resides in R/3 side. Last Delta run a year ago in Sandbox.
    Any idea why its not fetching the complete delta?
    All kind of help will be appreciated.

    Hi
    check how much data you have in RSA7, delta will pick the data in RSA7.
    check you have any selections in IP on 0CALMONTH, then remove the selections and run the IP to get all the data.
    Before you start delete the previous request to overcome duplicate records.
    Regards,
    Venkatesh

  • Change of Source Structure for Partial Settled WBS elements - CJ02

    Hi
    As per standard SAP, the change of source structure under settlement perameters of WBS element is not supported when the settlement of WBS element is done either partial / full.
    However, the client needs this change by doing any Z-Development as one time activity (since the source structure was changed for certain WBS elements as per change in business process).
    Can i Know procedure to do the Z development to modify the source structure for partial settled WBS elements and also let me know the any side effects in this regard.
    Regards
    Anil

    Hi Anil,
    I agree with Ajay. You can try to change it in Debugging mode.
    The values are handed over from include LCJWBF5Q (form project_settle_single using)      
    Some customer have also made a modification as a permanent solution.    
    Unfortunately in the standard it is not possible.
    regards Bernhard

  • Cannot change shift due date in Repayment Structure for Final Repayment

    Hi Expert,
         For creating new transaction of  product type 'Interest Rate Instrument' , In Repayment Structure for Flow type - Final Repayment I want to change working day from the default in "No Shift" to "Next working day" but the screen display in gray color.
    In this case i have not been post any flow types to G/L account.
         Do you have any ideas or the correct solution to solve my issue?
    Thank you in advance,
    PK
    Edited by: Pleassure on Feb 23, 2012 10:32 AM

    Hi,
    This is becuase you have settled the instrument. Please reverse the settlement , the required filed will be available for change.
    Brijendra

  • Changes in the PRICING STRUCTURE FOR THE DOCUMENT TYPE

    Hello Gurus,
    What is pricing structure?
    and what is meant by changes in pricing structure for the document type.
    Could anyone let me know about pricing structure and changes in Pricing structure for document type.
    prashant

    Hi Prashnat,
    In SAP Pricing works on Condition Techniqe.
    Condition Technic consits to following things.
    1.Condition Tabels ( Assigned to Access Sequence )
    2.Access Sequence ( Assigned to Condition Types)
    3.Condition Types ( Assigned to Pricing Procedure)
    4.Pricing Procedure
    5.In Pricing Procedure Determination will be assigning as fallows:
    Sales Org + Dist Channel + Division + Document Pricing Procedure + Customer Pricing Procedure + Pricing Procedure.
    Based on this the Pricing will be takes place in the system.
    Hope this Clarifies your Doubts and Please Reward If Really Helpful,
    Thanks and Regards,
    Sateesh.Kandula

  • An EFFECTIVE development directory structure for J2EE platform?

    Hi, here we r talking about deployment environment more than development
    environment. Have u ever think about designing an EFFECTIVE development
    directory structure for J2EE platform( e.g. weblogic )? u r not using the
    deployment directories for coding, r u? :)
    I used to construct a dir structure for dev and want to improve it.
    d:/wholesystem/*.prj // Project files
    ...../module1/src/com/.... // Module source files
    ...../module1/doc/... // Module doc files
    ...../module1/classes/... // Module class files
    ...../module2/...
    ...../web/*.jsp // web page files
    ...../web/images/... // web page images
    ...../web/WEB-INF/... //...
    Do u have any good ideas? Thanks!
    * Name: Gary Wang
    * Tele: 010-65546668-8119
    * Mail: [email protected]

    Create a web-inf folder at the same level of src and
    jsp folder inside src
    i mean
    /build.xml
    /src/
    /src/java/<package>/...../*.java
    /src/demo/<package/...../*.java
    /src/test/<package>/....../*.java
    /src/jsp
    /web-infSo, would you put in /src/jsp only the *.jsp?
    And what in /WEB-INF ? What woud you put there? Would you do something like:
    /WEB-INF/web.xml
    /WEB-INF/src/<package>/..../<my_servlets_and_j2ee_stuff>.java
    /WEB-INF/classes/<package>/..../<my_servlets_and_j2ee_stuff>.java
    In this manner sources and classes are in the same tree, it does not seem very clean to me, expecially if you consider that probably I must have a "test" directory to unit test some j2ee stuff (as for the j2se stuff in "src"): how would you do that?
    Is this directory structure anyway what you meant or not?
    alessio

  • Time Structure for multiple controls changes?

    I have some controls like shown in the picture. Lets say I want to check for changes done by the user in the String controls, since every string is inside a separated cluster, I would have to create a single case (inside a Event Structure) for each string or add them one by one to the same case, again one by one. How can I check for events on all the controls of the same type without having to add them manually one by one? Or, if I check for events on all the controls, how can I then identify wich control triggered the event structure?
    Attachments:
    Desing.png ‏402 KB

    Ty very much, I will create a "all elements" value change case, and then compare. But since in my cluster ther is a lot of diferent types of elements,the new value type gives me a analog cluster with the new value written into it, and also the control ref. Since I have all the control references stored, I would prefere to compare them instead of comprare individual elements of the cluster (to avoid a lot of unbundles and stuf), but i cannot compare this control refs (see image atached). I assume that control ref given by the Event structure is polimorfical, or weak control ref, and mine is strict. How can I convert classes?
    Attachments:
    Event Structure.png ‏145 KB

  • Change structure for list editing of functional location

    What is the significance of change structure for list editing (t code il04) of functional location?

    just enter the functional locations you need to create and descriptions and save

  • User exit M06B0002 Changes to comm. structure for purchase requi

    Hi Folks,
    Do any of you fine guys if there is a note to implement to get the same tables available in "M06B0002 Changes to comm. structure for purchase requisition release" as you have in "M06B0005 Changes to comm. structure for overall release of requisn. "?
    In M06B0005 you have:
    ""Lokale Schnittstelle:
    *"       IMPORTING
    *"             VALUE(I_CEBAN) LIKE  CEBAN STRUCTURE  CEBAN
    *"       EXPORTING
    *"             VALUE(E_CEBAN) LIKE  CEBAN STRUCTURE  CEBAN
    *"       TABLES
    *"              C_EBAN STRUCTURE  EBAN
    *"              C_EBKN STRUCTURE  EBKN
    but in M06B0002 you only have:
    ""Lokale Schnittstelle:
    *"       IMPORTING
    *"             VALUE(I_CEBAN) LIKE  CEBAN STRUCTURE  CEBAN
    *"       EXPORTING
    *"             VALUE(E_CEBAN) LIKE  CEBAN STRUCTURE  CEBAN
    I find this a little bit odd???
    Thanks in advance,
    Thomas

    Hi,
    Are there any custom defined characteristics for your release strategy ? SAP gives you certain characteristics like Purchase Order value, material group etc on which Release strategy can be determined but other than SAP defined fields if you want some other fields then you need to pass the value for this particular field in your exit.
    Also if you are using this exit , are you passing the values to the export structure e_cekko ? You can use :
    move-corresponding i_cekko to e_cekko.
    One more point is if you have custom defined fields for your exit then that has to be also passed to c_ekko.
    The important point here is that if you are using this exit then all the characteristics that you have defined in config for release strategy determination has to be passed to the export structure.If any of them is blank then release strategy will not be determined.
    Pravat.

  • Changing default settings for video effect?

    Hi,
    I have a ton of interview clips to which I am adding the Timecode effect for transcriptions and translations.
    For each clip I increase the size and opacity, remove the field symbol and change Timecode Source to Media. I have hundreds of clips and changing the settings for each clip is a real pain.
    Is there any way to change the default settings of the effect so I can just drag the effect to the clips and be done with it?
    Thanks.

    Set up the timecode effect the way you like it on one clip,
    then right-click the clip and select 'Copy'.
    Select all of the other clips to which you want to apply the same effect,
    right-click and select 'Paste Attributes'.

  • BAPI for FM9K(Change Budget Structure)?

    Hi All,
    Is there any BAPI for FM9K(Change Budget Structure)?
    Regards,
    Viral

    No standard one, as far as I'm aware...

  • Wireless Toolkit J2ME - changing the directory structure for your projects

    When I create a new package in the Sun Java Wireless Toolkit, the toolkit is creating a folder for the application and its subfolders in the following directory:
    C:Documents and settings/Owner/j2mewtk/2.5.2/apps/<name_of_project>....
    I am trying to change the directory for new and existing projects so that the directory is:
    C:WTK2.5.2/apps/<name_of_project>....
    The WTK is already installed directly under the C drive (C:WTK2.5.2/ )
    Any help would be much appreciated.

    I experience the similar problem.
    But got success with some mobile models and most of them fail.
    I put the following file in the web page.
    (test.html, test.jad, test.jar)
    Sony Erisson P800, install successful when accessing http://x.x.x.x/test.html, or http://x.x.x.x/test.jar
    Nokia 7650, install successful when accessing http://x.x.x.x/test.jar
    Nokia 3530 Fail,
    Does anyone know how to install java game to Nokia 3530 through Web.

Maybe you are looking for

  • Master-Detail Key relationship

    Hi All, I am unsing EJB3.0 and Toplink POJO. This is related to foreign key relationship. I am having two tables master and detail table. In both the table there is no record (Newly created table). I want to design the page which will accept master v

  • Can't verify email address for receiving messages in Messages and FaceTime

    In the Preferences for Messages you can set additional email addresses that others can use when sending Messages and FaceTime messages. Apple sends a verification email to the email addresses you add. I have been able to complete this process for thr

  • Where do I suppress Bex Query Message

    Experts - My users are getting an error message on their Bex Query "Characteristic xxxxx was changed in InfoCube xxxxx. Adjust the query". I searched SDN and I found out that if you go to TCODE RSRT and then TCODE SUPPR_ALL, you can then suppress the

  • How to logon to Oracle Developer Suite 10g?

    I have installed Oracle Developer Suite 10g on my Windows XP Home Edition. But I don't know what to enter in the "logon dialog box". And after all, what is user/id/conncetstring?

  • Ipod not being found (WIndowsVista)

    Yea, so, I got a new laptop (HP Pavilion dv6000 w/Windows Vista), and when I plug my iPod into it, it doesn't recognize it at all. It will charge and thats it. It won't recognize on my bf's laptop either (same kind), but his iPod is fine on his and S