Master data medium texts not loaded in table

Hi,
I have this Info Object which had only short texts enabled earlier.
I changed this to enable the medium texts and I am loading the medium texts via a flat file.
This worked fine in the development system and the medium texts were populated in the text table.
However once I moved this object to quality; the medium texts are not getting loaded
I debugged the transfer and update rules and I see that in the Development system, the generated program fills both the short and medium texts. However in Quality, the generated program only fills the short texts and no code exists for medium texts.
Can you please let me know how to resolve this issue?
Thanks,
Sita.

Hi,
As our experts said  may be ur loading data from othe source also for that object
If it is sure that u are loading data from flat file , u know that that object where it is used , either it is a standard object or custom object(Z object)
if it is standard object then it will be used in different places at that time deleting the data also it is to difficult.
u try once again first select the medium text check box and do the activation of that master data object and move the same to quality and check that medium text check box selection option is appering or not then it is appering
then move the data sorce and Transformation and DTP and load the data and try to see the data.
Thansk & Regards,
Sathish

Similar Messages

  • Master data medium text

    Hi,
    Master data medium text and long text is not appearing eventhough i checked Medium and long texts in the master data /texts tab page.Plz let me know the solution.
    Thanks,
    Sr

    Hi,
    Where is it not appearing...in the reports??
    Just check the business explorer tab for this infoobject and see what is the text maintaned there...if it is short text then you will have to change it to long or medium...the way you want.
    Check in the tables and do the mappings and load the data in these two fields...you will get an option to map them in trnasformation.
    once loaded  and activating the master data and making the settings in the business explorer...you should be able to see it in reports.
    Thanks
    Ajeet

  • QM action not allowed for DTP requests in master data and Text tables

    Hi,
    I have a master data object load request which has failed, returned error in st22 and job finished.
    BUT the request has not turned red in the monitor - it's still yellow. That means that I can not delete request nor start new load to infoprovider because it believes a request is still running. But it's not, I've checked both sm37, sm50 etc.
    When trying to manually change QM status to 'red' it says 'QM action not allowed for DTP requests in master data and Text tables'
    How can I force QM status to red so that I can move on?
    Running NW2004s BI (7.0) Patch 15.
    I searched for this question but there is no answer
    Thank you

    Folks
    I know how frustrating this problem is even in netweaver 7.0 environment. I found a solution for this problem atlast and it works but a not direct way of resolving this issue.
    When this request is in yellow status and not able to change / delete the request, its actually in a pseudo status and it is a bug in the program. This request sits in table RSBKREQUEST with processing type as 5 in data elements USTATE, TSTATE and this 5 is actually "Active" status which is obviously wrong.
    All we need is, ask your basis person to change the status to 3 in both these data elements and then it allows to reload the delta. Once the delta is successfully loaded, you can delete the previous bad request even though it is still in yellow. Once the request is deleted, the request status gets updated as "4" in table RSBKREQUEST.
    Hope this helps.
    Thanks

  • Loading GL Master Data -- Attributes, Text, Hier ; and Transaction Data

    Hi all,
    Could any one give me the steps individually to load the following type of data in BI 7.0:
    1. Master Data with Attributes
    2. Master Data with Text
    3. Master Data with Hierarchy
    4. Transaction Data
    Do I have to create the Transformation and DTP's individually to load all the above kind of Data?
    Please give me the information as much as you can.
    Thanks,

    For master data when you create tranformation it will prompt infoobject to act as infoprovider, and then you create DTP to schedule data to it. It works fine with attribute and Texts, though hierarchy dosn;t support much features of 2004s at my side. Like i am not able to migrate Hierarchy datasource to 2004s, and even when i replicate it, it comes as 3.5 datasource only.
    For transaction data follow Gokuls step, or try to find on forums you will get lot of discussion on it.

  • Master data, attributes, texts: ETL process

    Hi,
    I am new to SAP BW and have a question concerning the difference between master data attributes and texts. I am currently learning with the "sflight" example provided by SAP. There I have, e.g., a table like this:
    CARRID  CARRNAME          CURRCODE
    AA      American Airline   USD
    AB      Air Berlin         EUR
    AC      Air Canada         CAD
    These are my master data because these data won't change often - correct?
    What are then my attributes and texts?
    Thanks!

    Thanks Choudhary.
    I am Karthik, new to both, the community and SAP BI. I have a doubt similar to the main question, that goes like this.
    CARRID  CARRNAME          CURRCODE   TIME             COUNTRIES_OPERATION
    AA          American Airline     USD               9:00  AM       America
    AB          Air Berlin                EUR             10:00  AM       Germany
    AC          Air Canada             CAD             11:00  AM       Canada
    Similar to the above table, if suppose there are two other columns TIME and COUNTRIES_OPERATION,
    1.  Will TIME be included as "attributes" or "time characteristics" as TIME is an additional information of the master data key and there is  dimension table where we can define TIME ?
    2.  Will COUNTRIES_OPERATION be included as "attributes" or can this be included in "hierarchy"
    3. If not what can be used into "hierarchy" from the above table.
    Kindly excuse if my question is silly or if it does not make sense. I am very new to these terms and still in the learning curve.
    Thanking you in advance,
    Karthik.

  • How to write data to text file using external tables

    can anybody tell how to write data to text file using external tables concept?

    Hi,
    Using external table u can load the data in your local table in database,
    then using your local db table and UTL_FILE pacakge u can wrrite data to text file
    external table
    ~~~~~~~~~~~
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_7002.htm#i2153251
    UTL_FILE
    ~~~~~~~~~
    http://download-east.oracle.com/docs/cd/B19306_01/appdev.102/b14258/u_file.htm#sthref14093
    Message was edited by:
    Nicloei W
    Message was edited by:
    Nicloei W

  • How to extract data from  text file to database table

    Hi ,
    I am trying to upload  data in text file to database table  using GUI_UPLOAD function .what would be the program for that.
    thanks in advance.

    Hi,
    I don't think you have a standard sap program to upload data from file to database table...
    Instead you can create a custom program like this..
    DATA: T_FILEDATA(1000) OCCURS 0 WITH HEADER LINE.
    DATA: T_ZTABLE LIKE ZTABLE OCCURS 0 WITH HEADER LINE.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                      = 'C:\TEST.TXT'
      tables
        data_tab                      = T_FILEDATA
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT T_FILEDATA.
      T_ZTABLE = T_FILEDATA.
      APPEND T_ZTABLE.
    ENDLOOP.
    MODIFY ZTABLE FROM TABLE T_ZTABLE.
    COMMIT WORK..
    Thanks,
    Naren

  • Upload vendor master data from legacy system to internal table tcode xk01

    through batch input program how to upload vendor master data from legacy system to internal table and then to SAP R/3 database(transaction XK01) by using recording method.

    By learning the basics of BDC recording and the use of GUI_UPLOAD

  • How to load master data with text into infoObject in BI 7.0

    Hi all;
    I have an infoobject 0employee ( this is for employee number ,8 character long), with medium text option.
    I would like to load Employee name as a text option for employee number.
    How do I load this mater data into this 0employee object,
    Please help.
    I did look for something similar in the forum and there are many of them, but I couldn't find anything that for BI 7.0 and really clear help for me. Sorry to ask a question that been asked before.
    thanks.
    Raiine

    hi rainnie,
    check this link t oload master data in BI 7
    Re: BI 7.0 flat File extraction
    as you are using SAP defined infoobject you can start from the creation of datasource.
    text format for the flat file is
    LANGUAGE,INFOOBJECT,TEXT
    EN,0EMPLOYEE,RAINNIE
    You have to create ,infopakage, transformation ,dtp for both the attribute and text.
    hope this helps
    cheers
    Sunil

  • DTP running long time to load master data due to lock on SID table

    Hi,
    we are facing a problem while DTP loading master data into targets(Info Objects).
    It is taking long time to load data due to below error.
    18.03.2014 01:03:23 All records forwarded                                                                             RSM2          730          S
    18.03.2014 01:13:39 EXTRACTION OF DATAPACKAGE 000009                                                                  RSAR          051          S
    18.03.2014 01:13:40 All records forwarded                                                                             RSM2          730          S
    18.03.2014 01:24:50 EXTRACTION OF DATAPACKAGE 000010                                                                  RSAR          051          S
    18.03.2014 01:24:51 All records forwarded                                                                             RSM2          730          S
    18.03.2014 01:38:34 EXTRACTION OF DATAPACKAGE 000011                                                                  RSAR          051          S
    18.03.2014 01:38:41 All records forwarded                                                                             RSM2          730          S
    18.03.2014 01:52:10 EXTRACTION OF DATAPACKAGE 000012                                                                  RSAR          051          S
    18.03.2014 01:52:10 All records forwarded                                                                             RSM2          730          S
    18.03.2014 02:06:51 EXTRACTION OF DATAPACKAGE 000013                                                                  RSAR          051          S
    18.03.2014 02:06:53 All records forwarded                                                                             RSM2          730          S
    18.03.2014 02:22:32 EXTRACTION OF DATAPACKAGE 000014                                                                  RSAR          051          S
    18.03.2014 02:22:33 All records forwarded                                                                             RSM2          730          S
    18.03.2014 02:38:36 EXTRACTION OF DATAPACKAGE 000015                                                                  RSAR          051          S
    18.03.2014 02:38:37 All records forwarded                                                                             RSM2          730          S
    18.03.2014 02:55:25 EXTRACTION OF DATAPACKAGE 000016                                                                  RSAR          051          S
    18.03.2014 02:55:25 All records forwarded                                                                             RSM2          730          S
    18.03.2014 03:13:56 SQL: 18.03.2014 03:13:56 ALEREMOTE                                                                DBMAN         099          I
    18.03.2014 03:13:56 TRUNCATE TABLE "/BI0/0600000066"                                                                  DBMAN         099          I
    18.03.2014 03:13:56 SQL-END: 18.03.2014 03:13:56 00:00:00                                                             DBMAN         099          I
    18.03.2014 03:13:56 SQL: 18.03.2014 03:13:56 ALEREMOTE                                                                DBMAN         099          I
    18.03.2014 03:13:56  LOCK TABLE "/BI0/0600000066" IN EXCLUSIVE MODE                                                   DBMAN         099          I
    18.03.2014 03:13:56 NOWAI                                                                                             DBMAN         099          I
    18.03.2014 03:13:56 SQL-END: 18.03.2014 03:13:56 00:00:00                                                             DBMAN         099          I
    18.03.2014 03:13:58 EXTRACTION OF DATAPACKAGE 000017                                                                  RSAR          051          S
    18.03.2014 03:13:59 All records forwarded                                                                             RSM2          730          S
    18.03.2014 03:34:24 EXTRACTION OF DATAPACKAGE 000018                                                                  RSAR          051          S
    18.03.2014 03:34:25 All records forwarded                                                                             RSM2          730          S
    18.03.2014 03:56:03 EXTRACTION OF DATAPACKAGE 000019                                                                  RSAR          051          S
    18.03.2014 03:56:03 All records forwarded                                                                             RSM2          730          S
    18.03.2014 04:19:55 EXTRACTION OF DATAPACKAGE 000020                                                                  RSAR          051          S
    18.03.2014 04:19:56 All records forwarded                                                                             RSM2          730          S
    18.03.2014 04:44:07 SQL: 18.03.2014 04:44:07 ALEREMOTE                                                                DBMAN         099          I
    18.03.2014 04:44:07 TRUNCATE TABLE "/BI0/0600000068"                                                                  DBMAN         099          I
    18.03.2014 04:44:09 SQL-END: 18.03.2014 04:44:09 00:00:02                                                             DBMAN         099          I
    18.03.2014 04:44:09 SQL: 18.03.2014 04:44:09 ALEREMOTE                                                                DBMAN         099          I
    18.03.2014 04:44:09  LOCK TABLE "/BI0/0600000068" IN EXCLUSIVE MODE                                                   DBMAN         099          I
    18.03.2014 04:44:09 NOWAI                                                                                             DBMAN         099          I
    18.03.2014 04:44:09 SQL-END: 18.03.2014 04:44:09 00:00:00                                                             DBMAN         099          I
    18.03.2014 04:44:12 EXTRACTION OF DATAPACKAGE 000021                                                                  RSAR          051          S
    18.03.2014 04:44:13 All records forwarded                                                                             RSM2          730          S
    For this long running data load we didnt find any short dumps and no locks available on SM12 also.
    Please help on this.
    Thanks,
    Sankar.

    Can we know what kind of data source is this. attribute or text data source.
    what is data volume? its less or more?
    Actually we load direct access data thru dtp(No psa) into info objects for text data sources where have less data only.
    While running your dtp is any attribute change run for the same info object ot any transactional loads are happening?
    Is this happens on particular day or weekend or anydays?
    Thanks

  • Master data and impact of loads from transaction data

    If I have the following scenario:
    1. Load to cube which contains a dimension which has an info object 0CUSTOMER
    2. The transaction data is being loaded from a non SAP system and 0CUSTOMER is loaded on a daily basis from SAP system
    3. As part of the transaction load some Customers have a value which is not existing in the 0CUSTOMER info object
    Do these new customers also get loaded to the 0CUSTOMER master data i.e. the SIDs are added to the SID table for 0CUSTOMER or is it just loaded as part of the cube and stored in the specific dimension
    Thanks

    Hi,
    they are also automatically loaded to 0customer, as the sid of that record is needed in the cube. Possibly, if there is no relation to your R/3 customers, you have some initial records in your customer master (means all attributes as well as the texts are initial).
    regards
    Siggi

  • Can the partner master data ( name, text ) be used in a Query

    Hi,
      I have a requirement to have query against CRM cubes/ods, which can query data by Partner address   or text (Short description, Medium description or Long description).
      For example, the cube has a characteristic 0CRM_SOLDTO ( Sold to party ) and we can always write a query which will have this field as a variable in the selection field and then query the appropriate data. But can we also query the data as per the partner name or short description or address( say zip code ? ).
      If yes can you please let me know how. For example consider the following simple example cube which has a characteristics as Customers( say 1000001... and the characteristics "customer" has master and text data ( short text say "company x".
      How to write a query against the cube which will take the customer text as input field and display the relevant data.
      Thanks
    Arunava

    Hi
    I am even not aware of a standard function to do it. But one more option I can think of. But this only applicable with simple reports & with restricted kef figures.
    1. You create a dummy sold-to-party (S2)
    2. Add it to the same or different dimension as that of origional sold-to-party (S1) in the cube.
    3. Create a structe in the report for your KFs or RKFs.
    4. Create one RKF with S2 and with some key figure like "no of records". Create a variable V2 on S2 (user entry) and include this in the RKF. Hide this RKF. (So, basically you use this RKF to invoke the variable V2 to accept the Text of sold to party when the report is executed).
    5. Include the required KFs (or RKFs with S1) in the structure. Create a customer exit varaible V1 (Not ready for input) on S1. In this exit, determine the Sold to Party ID from the Text entered in V1 & the text table of sold to party.
    Basically, what ever we do in update rules (as suggested earlier), now we do it in a customer exit. hope this helps.
    regards,
    atlaj

  • Master Data with text upload

    Hi expart,
    I have created customize infoobject for master data upload. Following steps I have done :
    1. Create info object for master data upload
    1.  Create Datasource( RSO2) in R/3 with text option ( R/3 table feilds code, description)
    2.  Replicate data source ( BI)
    3. Create transformation ( BI )
    I am unable to map description with info object.
    Pls. help which step I am missing.
    Thanks in advance,
    Goutam

    Hi Gautam,
      Check the properties of Master data infoobject.
    In Master data/texts tab page.
        i.       Select With master data and With texts if they are not already selected.
       ii.       In the field below Character. is InfoProvider, enter the technical name of your InfoArea and confirm your entry.
                   The system sets the indicator Character. is InfoProvider.
       iii.       For the characteristic  Select the indicator mentioning short/medium/ long text.
    Then activate the master data object. Now try to create the transformation...
    check the below link for step by step procedure..
    http://help.sap.com/saphelp_nw04s/helpdata/en/46/94bc9ab90819aee10000000a11466f/content.htm
    Edited by: Priya.D on Mar 15, 2010 9:43 AM

  • Master data  deletion -  text with compounding

    HI All,
    I have " 0PYMT_METH" Info object which is having "0PYMT_METH_TEXT" Data source.  " 0PYMT_METH" Info object is having text and  0country with compounding attribute.
    - First , I did not load this master data , I loaded transactional data. so some values for key are loaded without text and country in master data.
    - Later i came to know we need text for paymnt method, then i loaded again master data. but i am not able to delete previous entries which have blank text.
    -i deleted data with SIDS and deleted all the transactional data , still i am getting that entries with blanks.Because of this in report output i am getting # value for the text.
    How to solve this? Is it because of compounding attribute ? If so can u please suggest regarding this ASAP?
    Thanks in advance,
    Jo

    Hi,
    Please check the data load for the text as you must be loading
    MAster Data CHAR , Country , LANGUAGE and TEXT as fields in your data source.
    As the Text can be over written so if the porper key fields are matched the text should be modifyed everytime.
    SO please check what combination you r  loading .
    ANyway if that is one time , and very less data you can manually maintain th text for master data .
      In order to delete teh data you use SE14 use the text table there to delete the data. PS : This is not recommended solution .

  • Master data with text?

    hi friends,
    i created zcustomer now i loaded attributes data in master data tables
    right click customer maintain master data , its showing.
    i check with text also,
    in 3.5 just i was creating extra excel sheet loaded text also ( 2 info packages 1 for att another for text)
    in 7.0 i loaded attributes.
    when i see my data ist zcustomer with attributes 2 loumns are free like text and description
    now i need create another datasource , should i create any characters for this like text and description? to load text data?

    Hi,
    check the following thread, its very explanative:
    Need help to load data in data target in BI7 version.

Maybe you are looking for