Automation of metadata update through HAL in planning

hi,
anybody help me ,i want to update the planning dimensins through automation setup by using HAL.we are using SQL server 2005 and planning version is 9.3.1.
appreciating help
Thanks
Sunbbu.

Hi Subbu,
I posted how to load dimensions into planning from sql server in my blog.
http://dornakal.blogspot.com/2009/02/load-dimension-members-into-planning.html
after developing this you have to create an executible file to run HAL job.
you can call the executible file from batch file and can schedule batch file.
hope this helps.
Dornakal.
[email protected]

Similar Messages

  • DateFormat for updating the metadata field through RIDC

    Could you please tell me what will be the valid date time format for updating metadata field value through RIDC.?
    I am using ADF technology to connect with webcenter UCM and using all services to check-in,update, search generic screens using UCM services. I am able to update other text type metadata field through ADF screen BUT when i update date field then i am getting date parsing error..
    xSubmitDate DATE type in UCM.
    xSubmitDate value = 05/08/2013 05:36 PM
    oracle.stellent.ridc.protocol.ServiceException: Unable to update the content item information for '0804'. The field 'xSubmitDate' does not contain a valid date. Unable to parse date '05/08/2013 05:36 PM'.
    Thanks in Advance.

    This blog post I wrote may be of some help: http://www.redstonecontentsolutions.com/5/post/2011/10/parse-date-usingridc.html
    Jonathan
    http://jonathanhult.com

  • Process flow of info structure updation through plan version.

    Hi Experts,
    Can you please suggest me that how info structure get updated through plan versions ???
    Helpful response will be rewarded.
    Thanks.

    Hi,
    <u>Logistics &#8594; Production &#8594; SOP &#8594; Tools &#8594; Planning Type/Macro &#8594; Change</u> or TCode <b>MC8B</b>
    -> Create or <b>MC8A</b>
    Select Planning Type SOPKAPAM &#8594; Enter
    You will find the Info Structure -> In the Application Toolbar Select the Header Icon (Planning Type Info or CtrlShiftF2)
    In the window ‘Define Planning Type‘:
    Update the information in the Historical Periods as well as the Planning Start Date (Planning Horizon).
    Transaction <b>MC88</b> - Version
    Regards,
    Naveen.

  • Need to Post Components in Production Order in MB1A through BAPI as Planned Good Issue

    Hi ,
    I have created a Program to upload data s for MB1A through BDC , it works fine, but for huge data s it takes more time.  alternatively created one more Program which updates through BAPI Function Module  "BAPI_GOODSMVT_CREATE".  It works fine , but one issue noted, after posting through Function Module , components are posted as Unplanned Goods Issue.   I need to post the components as " Planned Goods Issue" instead of "Unplanned Goods Issue " . This can viewed through Tcode : C003
    Below are the  inputs passed for BAPI Function Moduel
    **&------Header Contents of bapi Upload-------------------&*
    header-pstng_date = sy-datum.                                              " Posting date
    header-doc_date    = sy-datum.                                             " Document Date
    header-header_txt  = '000001002280'.                                     " Header text
    header-pr_uname   = sy-uname.                                            " User Name
    header-ref_doc_no  = '000001002280'.                                    " Header Ref. Doc. No.
    CONCATENATE sy-uname sy-uzeit c_method INTO  header-ref_doc_no_long SEPARATED BY '-'.  " Refer  Text
    *Item Data
    wa_item-material   = '000000000010000800'.                             "Material
    wa_item-plant      = '3910'.                                              "Plant
    wa_item-stge_loc   = 'WIP'.                                            "Storage Location
    wa_item-move_type  = '261'.                                            "Movement Type
    wa_item-entry_qnt  = '1'.                                                  "Quantity
    wa_item-entry_uom  = 'PC'.                                              "Unit
    *wa_item-res_item  =  1.                                                  "Reservation Item
    *wa_item-reserv_no =                                                      " Reservation Number
    wa_item-batch      = '0000011027'.                                    "Batch No
    *wa_item-mvt_ind   = 'F'.                                                  "Movement Indicator
    *wa_item-stck_type = 'F'.                                                 "Stock Type
    wa_item-orderid    = '000001002260'.                                 "Order ID
    wa_item-prod_date  = SY-DATUM.
    *wa_item-GL_Account = '610000'.                                     "GL Account
    *TRANSLATE wa_item-batch TO UPPER CASE.
    *APPEND wa_item TO it_item.
    c_code = '03'.
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
    EXPORTING
    goodsmvt_header       = header
    goodsmvt_code         = c_code
    TABLES
    goodsmvt_item         = it_item
    goodsmvt_serialnumber = it_sno
    return                = return.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
          wait = 'X'.
        commit work and wait.
    Even i tried to pass "Movement Indicator , GL Account etc" , Still not able to fix the issue. Can anyone suggest how to post the Production Order components as "Planned Goods Issue".  I am not sure any other values to be password.
    BR,
    Murali

    I have made something like your :
    * Alimtentation de la BAPI de mouvement de stock MM.
    move : sy-datum        to ls_header-pstng_date ,
            sy-datum        to ls_header-doc_date ,
    * Indique le code mouvement
            '03'            to lw_code.      " 03 normalement, mais je veux que ca plante
    loop at lt_ltap
          into ls_ltap.
       move : ls_ltap-matnr   to ls_item-material ,
              ls_ltap-werks   to ls_item-plant ,
              ls_ltap-lgort   to ls_item-stge_loc ,
              '261'           to ls_item-move_type ,
              ls_ltap-vsolm   to ls_item-entry_qnt ,
              ls_ltap-meins   to ls_item-entry_uom ,
              i_ltak_vb-benum to ls_item-orderid ,
              i_ltak_vb-rsnum to ls_item-reserv_no ,
              ls_ltap-rspos   to ls_item-res_item ,
              ls_ltap-rsart   to ls_item-res_type.
       append ls_item to lt_item.
       clear  ls_item.
    endloop.
    I have to put the reservation number to have it works.
    Fred

  • Bulk Metadata Update using RIDC API!!

    Hi,
    In my program I have to update bulk content's metadata value. For example I would like to update 'xComments' filed through my RIDC api call in java for 40K contents. In the last run the program was taking huge amount of time(in hours) to update the contents.
    Could you please advise me any performence fine tuning or alternate operation to reduce the metadata update time. The java program runs in a single thread. Find the RIDC doc_update code below.
    Code:
    import oracle.stellent.ridc.*;
    import oracle.stellent.ridc.model.*;
    import oracle.stellent.ridc.protocol.*;
    public class UpdateMetadata {
         private static IdcContext userContext = null;
         static public void main(String args[]) throws Exception {
              System.out.println("RIDC - tests");
              IdcClient idcClient = null;
              try {
                   // Create the Manager
              IdcClientManager manager = new IdcClientManager();
                   idcClient = manager.createClient("idc://<IPADDRESS>:4444");
                   IdcContext userContext = new IdcContext("sysadmin");
                   DataBinder binder = idcClient.createBinder();
                   binder.putLocal("IdcService", "UPDATE_DOCINFO");
              for(int i=0;i<Resultset.size();i++)
                   binder.putLocal("dID", resultset.did);
                   binder.putLocal("dDocName", resultset.ContentID[i]);
                   binder.putLocal("xComments","****True****");
                   ServiceResponse response = idcClient.sendRequest(userContext,binder);
                   System.out.println("Processed");
                   DataResultSet resultSet = binders.getResultSet ("SearchResults");
                   // loop over the results
                   for (DataObject dataObject : resultSet.getRows ()) {
                        System.out.println ("Title is: " + dataObject.get ("dDocTitle"));
                        System.out.println ("Author is: " + dataObject.get ("dDocAuthor"));
              } catch (IdcClientException ie) {
                   System.out.println("Exception while creating the client" + ie);

    The code seems to be incomplete:
    - there are some variables like Resultset, resultset that are not initialized in the code (but probably are somewhere else)
    - there is a line }*/, but no starting /* (could be corrupted by the editor)
    Anyway, if you write that
    In the last run the program was taking huge amount of time(in hours) to update the contents. I'd focus first for a question: what has changed? Btw. what is the expected (experienced?) result?
    As for the code, it looks OK to me. You could probably throw away everything behind ServiceResponse response = idcClient.sendRequest(userContext,binder); but it seems the second loop is commented out anyway.
    To reach better performance, you can certainly try to run the program in several threads - it will require some fine tuning to find out how many threads are optimal. For CHECKIN_NEW, we had the best performance with 3 threads in parallel, but it operated with 100-500kB files, so I'm not sure if these results are relevant also for UPDATE_INFO. I doubt, however, that improvements achieved with parallelism can be higher than let's say 2-3x faster.

  • I cannot update my ipad2 to ios5.  Updating through iTunes on pc Windows Vista, Error message reads "cannot connect to iPad Software Update Server.  Tried resetting network settings, still not connecting.  Tried updating iTunes, still not connecting.

    I cannot update my ipad2 to ios5.  Updating through iTunes on pc Windows Vista, Error message reads "cannot connect to iPad Software Update Server.  Tried resetting network settings, still not connecting.  Tried updating iTunes, still not connecting.

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Change the channel on your wireless router. Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
     Cheers, Tom

  • Hi have just purchased iphone 4s . my itunes on my mac is currently 10.4 . 10.5 is needed for the new iphone but when i download it and click on install the itunes about still says 10.4 . have tried to update through itunes but it says there is no softwar

    hi have just purchased iphone 4s . my itunes on my mac is currently 10.4 . 10.5 is needed for the new iphone but when i download it and click on install the itunes about still says 10.4 . have tried to update through itunes but it says there is no software available for me . please help . mr frustrated

    If your computer is running an OS X prior to Snow Leopard 10.6,
    the answer (if it is an Intel-based Mac; not old PowerPC model)
    would be to buy the retail Snow Leopard 10.6 DVD from Apple
    for about $20, and install it. Then update that to 10.6.8 by using
    the installed Snow Leopard online to get Combo Update v1.1 for
    Snow Leopard 10.6.8. After that is installed & updated, run the
    system's Software Update again, to see what else is available to
    that system.
    Later systems can then be looked into at Mac App Store, once
    the computer is running Snow Leopard 10.6.8.
    And if your computer is a Power PC (G4/G5, etc) and has no
    Core2Duo kind of CPU -- See "About this Mac" in apple menu
    to disclose the general info about your Mac. Also you can see
    even more by clicking on "More Info" when looking in there...
    If it isn't an Intel-based Mac, it can't run a system past 10.5.8.
    Hopefully this helps.
    Good luck & happy computing!

  • Reversal of a maint. order which was released through a maintenance plan?

    Hi All,
    Is there a way to do reversal of a maintenance order that was released through a maintenance plan?
    Because I do not want to process the order; as such I would like to put a reversal indicator for that order and go ahead with the next order that was called through a maintenance plan.
    If YES, kindly let me know how to do it?
    Many thanks in advance.
    Kannan J

    Hi Thyagarajan, Thanks for the response!
    When I want to skip the maintenance call object that was generated through a plan, the system gives me the following message.
    "CALL CAN NO LONGER BE SKIPPED"
    When I press for further help, system gives me the following message:
    "Call can no longer be skipped
    Message no. IP405
    Diagnosis
    You have tried to skip a date that has already been called.
    System Response
    Since maintenance call objects, for example, maintenance orders, already exist for the dates that have been called, you can no longer skip a date within the scheduling process.
    Procedure
    If you do not want to perform the maintenance call objects due on that date, you must reverse the orders that have been called.
    You can select the maintenance call objects that have been called using the list editing functions in maintenance processing."
    Which means there should be a way to reverse the order, isn't it?
    May be with this message you may be able to throw some help on this.
    Many thanks in advance
    Kannan J

  • Performing multiple updates through a grid

    I'm pretty green as far as Dynpro goes so please forgive me if this is an easy one.
    Basically I have a table (grid) which allows a user to view and edit pricing information.
    The data is retrieved and updated through .NET web services.
    The pricing values are edited through an InputField contained in one of the columns of the grid.  This InputField is, in turn, bound to a property in the response from the web service in my view context.
    Lets say a user edits one price, hits the down arrow on the keyboard and edits another field and then hits Enter.
    Somehow, I need to identify in my "OnEnter" event handler, exactly which rows were edited so I can then pass the pertainent data to the web service for processing.
    I don't think I can use the typical "getLeadSelected" and "isMultiSelected" scenario that you would for deleting a row. 
    I really don't want to have to create a separate view for editing individual grid lines one at a time and relegate the grid to being a simple read only selection control.
    Any suggestions?
    -Sheldon

    Ended up solving this one today.   Wasn't too bad once I got a good handle on tranversing the Context and using the .isChangedByClient() property.  (Like I said, I'm pretty new to Dynpro)
    For completeness I am including my solution with this post.  (sorry for the exceedingly long names)
      public void onActionUpdatePricing(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionUpdatePricing(ServerEvent)
         //Find out how many records we have
        int n = wdContext.nodeRequest_EmployeeSalesServicesSoap_getAllProductPrices().nodeProductPrice_Response().nodeProductPrice_Result().size();
         // create an instance of the update web service class
         Request_EmployeeSalesServicesSoap_updatePrice reqUpdPrice = new Request_EmployeeSalesServicesSoap_updatePrice();
         wdContext.nodeRequest_EmployeeSalesServicesSoap_updatePrice().bind(reqUpdPrice);
         //temporary storage for a single element as we iterate through them
        IWDNodeElement PriceElement;
         for (int i = 0; i <= n - 1; i++)
              //Get an element
              PriceElement = wdContext.nodeRequest_EmployeeSalesServicesSoap_getAllProductPrices().nodeProductPrice_Response().nodeProductPrice_Result().getElementAt(i);
              //Check to see if it has been modified
              if (PriceElement.isChangedByClient())
                   //If it has been modified then call the update function in the component controller.  This
                   // method will, in turn, call the web service class with the appropriate parameters
                   // TO DO: error checking for update failure.
                   wdThis.wdGetMainmenuController().UpdatePrice(Integer.parseInt(PriceElement.getAttributeAsText("priceID")),Float.parseFloat(PriceElement.getAttributeAsText("productSellingPrice")));
         //After we are done updating, reset the Context changed bit for all items
         wdContext.getContext().resetChangedByClient();
        //@@end

  • True about updates through a view

    hi frds
    i just need the right answer for the choices mentioned below with explanation
    plz help me
    What is true about updates through a view?
    A. You cannot update a view with group functions.
    B. When you update a view group functions are automatically computed.
    C. When you update a view only the constraints on the underlying table will be in effect.
    D. When you update a view the constraints on the views always override the constraints on the underlying tables.

    And a very tricky only it is.
    Peter, you are correct that view constraints are not enforced in the sense of PKs and FKS, but there are two other view constraints that are enforced.
    SQL> CREATE TABLE t AS
      2  SELECT rownum id, object_name
      3  FROM all_objects
      4  WHERE rownum < 11;
    Table created.
    SQL> CREATE VIEW t_read AS
      2  SELECT * FROM t
      3  WITH READ ONLY;
    View created.
    SQL> CREATE VIEW t_check AS
      2  SELECT * FROM t
      3  WHERE mod(id,2) = 0
      4  WITH CHECK OPTION;
    View created.
    SQL> CREATE VIEW t_nocheck AS
      2  SELECT * FROM t
      3  WHERE MOD(id, 2) = 0;
    View created.
    SQL> INSERT INTO t_read VALUES (100, 'READ ONLY');
    INSERT INTO t_read VALUES (100, 'READ ONLY')
    ERROR at line 1:
    ORA-01733: virtual column not allowed here
    SQL> INSERT INTO t_check VALUES (100, 'EVEN ID');
    1 row created.
    SQL> INSERT INTO t_check VALUES (101, 'ODD ID');
    INSERT INTO t_check VALUES (101, 'ODD ID')
    ERROR at line 1:
    ORA-01402: view WITH CHECK OPTION where-clause violation
    SQL> INSERT INTO t_nocheck VALUES(100, 'EVEN ID');
    1 row created.
    SQL> INSERT INTO t_nocheck VALUES(101, 'ODD ID');
    1 row created.
    SQL> UPDATE t_check SET id = 201
      2  WHERE id = 2;
    UPDATE t_check SET id = 201
    ERROR at line 1:
    ORA-01402: view WITH CHECK OPTION where-clause violation
    SQL> UPDATE t_nocheck SET id = 201
      2  WHERE id = 2;
    1 row updated.The WITH READ ONLY constraint bars all changes to the view. The WITH CHECK OPTION stops any changes that would make the record invisible to the view. It is essentially a CHECK constraint on the view.
    John

  • Error when updating through "Role import"

    Hi all
    I get this error when I update through Home > Authentication > SAP > Role Import:
    "An error occurred while communicating with the CMS.
    The following error message was returned:
    Error occurred in CSAPSecHttpRolePage::OnCommitRoles. Return value = -2147213817 (0x80041e07)j Failed to commit objects to server : Duplicate object name in the same folder."
    Does this mean that I have duplicate users or groups? If this is the case, how come I get the error even if I remove all roles, update, and then add a role and update again? Then everything should have been cleared?
    And the funny part is that the import of users seems to work, because I can log on to the InfoView using SAP authentication... But I don't like this error, and would like to get rid of it.
    Best regards,
    Martin Søgaard

    Hi Sogaard,
    when you remove all roles can you verify that all the user groups and users are being removed from the system ?
    after removing the roles could you also delete the entitlement system and re-create it ?
    Ingo

  • With OSX 10.9.1 I can no longer receive updates through the App Store?

    With OSX 10.9.1 I can no longer receive updates through the App Store?

    Check your settings in Preferences
    AppleMenu()>System Preferences>App Store

  • Something in my network is blocking Apple iOS updates, through iTunes, Direct Download, or on device..

    Apologies if this is the wrong category, but I felt this might be more of a Network issue rather than something iOS related, so I wanted to ask the Mac guys rather than iOS where there will also be Windows users etc.
    I have an iPhone 4S, iPhone 3GS, and 2x iPod touch 4th Gen all running iOS 5.0.1. I also have an iMac running 10.7.3 and all latest software (inc. iTunes), MacBook running 10.6.8, Time Capsule 1TB and a Netgear router provided by my UK ISP; Sky Broadband. I also have an Apple TV on 4.4.4 than needs updating to 5.0.
    When attempting a software update on an iOS device itself (Over-The-Air updates) on my home network I cannot connect to the server, and get an error. Switching my iPhone 4S to 3G allowed me to find the 5.1 update, but not download it as it requires WiFi. Apple TV hangs on estimating time for download (I think).
    I have also attempted to download the actual ipsw file from Apple Servers using links readily available on the net (through 'felixbruns'). I get the grey 'Safari could not connect to the server' style message. At one stage I connected to the Netgear router via WiFi rather than through the Time Capsule, and was able to connect to the direct link (although I paused it to try on iPhone). I have never since been able to connect to this direct link via any method.
    While in the supermarket today I was able to connect to their free public WiFi and update my iPhone 4S successfully.
    I have reset the Netgear router back to factory settings, along with the Time Capsule, and still cannot connect to download updates through either. I'm beginning to become paranoid that it's my ISP blocking the site, although that seems highly unlikely??
    I have never had such an issue with software updates in the past 5+ years! This really confuses me, as I'm no novice Mac user...
    Any ideas..?

    Thank you for the reply. I did try change my DNS server didn't seem to help.
    When you are on iTunes and click on Help Menu highlight Run Disgnositcs choose Network Connectivity Test do you get any red buttons?
    Thanks for you help!!

  • Windows 8.1 Hybrid Boot and Software Updates through ConfigMgr

    Hello,
    I've never posted here before because I usually get all my answers from a search.  But this issue I'm finding very little information about throughout the web.
    In my organization we have ConfigMgr deploying monthly software updates, usually just Security Updates, to our Windows 8.1 estate.  We have a standard 8.1 build on our machines, nothing too custom.  We have left the Hybrid Boot feature left on.
     However, when deploying software updates through ConfigMgr we're seeing reboot after reboot to complete.  In some cases up to 5 restarts and so we have had to disable all reboots and reboot notifications.  Disabling Hybrid Boot allows all updates
    to install after just 1 restart.  So from what I understand, a full shut down is required to apply software updates.  Can anyone tell me whether Windows 8.1 should be aware of updates it is applying and switch to a full shut down when Hybrid Boot
    is enabled?
    I know this is very much a Windows 8.1 issue, however I'm interested to know whether other people deploying software updates via ConfigMgr have experienced this issue in their environments.
    Thanks for any advice.

    Hi,
    Please check the article below first. It indicates the restart process in Windows 8 continues to perform a full boot cycle, without the Hibernation performance improvement .
    Quote:
    What About Restart?
    When you restart the computer, that typically means that you want a completely new Windows state,  either because you have
    installed a driver or replaced Windows elements that cannot be replaced without a full restart.
    As a result, the restart process in Windows 8 continues to perform a full boot cycle, without the Hibernation performance improvement mentioned above.
    Windows 8: Fast Boot
    Best Regards,
    Joyce
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Editing and sharing custom metadata/keywords through Adobe Drive in Adobe Bridge

    I am part of a four-person video production unit operating within a local governmental entity. We are currently using four licenses of Adobe Master Collection CS5, and are about to get access to dedicated SAN storage.
    We would like each user to have the ability to assign specific keywords to any given video clip (or remove keywords from clips) within Adobe Bridge, and have the three other users see the same results. I've noticed that Bridge alone will allow for keywords to be added or removed, but this list is specific to each user. Importing one list into other users' profiles is a start, but would no longer work, once keywords are added or taken away.
    The overview page for Adobe Drive 3 says that it, "allows users to edit and view custom metadata/properties through Adobe Drive in Adobe Bridge," but I haven't found any explanation in either the website, forums, or user's guides that delves any farther into this area. If we incorporate Adobe Drive/Bridge into our workflow, will we be able to share/sync keywords between users? Is there some other (affordable) solution that would let us do this?
    Thanks for any insight you might be able to offer.
    Chuck

    Hi,
    Thanks for sharing your case.
    The keywords you mentioned is XMP metadata, if all your digital assets are managed by ADEP CQ DAM service, you can use AD3 with built-in ADEP connector to communicate with the DAM server, then, I think it can meet your requirement, it means, the keywords can be set by one user through metadata panel in Bridge, and can be viewed by other users.
    for custom properites, it's different from XMP metadata, it refers to the properties of one asset which is managed by a Content Management service. users have to use another UI to edit/view them in Br after AD3 is installed.
    here are some requirements to use it.
    1) CMIS 1.0 compiliant server should be used to manage all your digital assets
    2) use the built-in CMIS with AD3 to connect to the server.
    if other kind of servers are used, you should develope a custom connector through AD SDK to enable custom properties feature as well as some other handler required by AD SDK
    thanks 

Maybe you are looking for

  • Time machine wanting t reformat my external hard drive????

             I have had an exteral hard drive since before i'v had my imac. But when i select my external drive in the time machine set-up, it says "you most reformat this drive -  doing this you may loose all your files". I don't won't to loose my files

  • Wifi works for short time

    Dear readers, Since a few weeks my wifi / airport on my Macbook stops working after a few minutes. I can temporarily fix this problem by turning off and on the Airport function, but after a few minutes it kicks me out again. Other details: Cable work

  • Oracle 9i installation over 10g express and importing tables

    I have Oracle 10g Express Edition installed. I want to install Oracle 9i database because of some reasons and want to import few tables from Oracle 10g database to Oracle 9i database. Is it possible? I also want to know whether 10g and 9i can work in

  • APPLET'S STOP METHOD - PROBLEM!!

    I'm learning java on my own, and I have a problem. Could you help me. The stop()** method in my applet does not show on the appletviewer until I close the appletviewer. I open another program like notepad, but when I come back to the appletviewer it

  • Transport of exported (master data) datasources to BW test system

    Hi, I exported  datasources from 0ACCOUNT, namely, 80ACCOUNTM, 80ACCOUNTH, 80ACCOUNTT in a certain BW development system . I then assigned these to ZACCOUNT and loaded ZACCOUNT (master data, hierarchies and texts). The transfer rules have a start rou