About read_text  urgent!!!!!!

Hello Friends,
I am stuck in a new object where i am asked to do some changes in the adress.
The program is a simple report and fetches the data(address Of company) by the use of Read_text. By debugging I got to know that the address is populated in a table returned by the FM 'read_text'.
But how to edit this address which is returned by this table,
Because I am not able to find the standard text which is being used.
So kindly suggest me the ways.
Waiting for the replies.
Regards:
Sapna.

Hi
READ_TEXT
READ_TEXT provides a text for the application program in the specified work areas.
The function module reads the desired text from the text file, the text memory, or the archive. You must fully specify the text using OBJECT, NAME, ID, and LANGUAGE. An internal work area can hold only one text; therefore, generic specifications are not allowed with these options.
After successful reading, the system places header information and text lines into the work areas specified with HEADER and LINES.
If a reference text is used, SAPscript automatically processes the reference chain and provides the text lines found in the text at the end of the chain. If an error occurs, the system leaves the function module and triggers the exception REFERENCE_CHECK.
Function call:
CALL FUNCTION 'READ_TEXT'
EXPORTING CLIENT = SY-MANDT
OBJECT = ?...
NAME = ?...
ID = ?...
LANGUAGE = ?...
ARCHIVE_HANDLE = 0
IMPORTING HEADER =
TABLES LINES = ?...
EXCEPTIONS ID =
LANGUAGE =
NAME =
NOT_FOUND =
OBJECT =
REFERENCE_CHECK =
WRONG_ACCESS_TO_ARCHIVE =
Export parameters:
CLIENT
Specify the client under which the text is stored. If you omit this parameter, the system uses the current client as default.
Reference field: SY-MANDT
Default value: SY-MANDT
OBJECT
Enter the name of the text object to which the text is allocated. Table TTXOB contains the valid objects.
Reference field: THEAD-TDOBJECT
NAME
Enter the name of the text module. The name may be up to 70 characters long. Its internal structure depends on the text object used.
Reference field: THEAD-TDNAME
ID
Enter the text ID of the text module. Table TTXID contains the valid text IDs, depending on the text object.
Reference field: THEAD-TDID
LANGUAGE
Enter the language key of the text module. The system accepts only languages that are defined in table T002.
Reference field: THEAD-TDSPRAS
ARCHIVE_HANDLE
If you want to read the text from the archive, you must enter a handle here. The system uses it to access the archive. You can create the handle using the function module ACHIVE_OPEN_FOR_READ.
The value '0' indicates that you do not want to read the text from the archive.
Reference field: SY-TABIX
Default value: 0
Import parameters:
HEADER
If the system finds the desired text, it returns the text header in this parameter.
Structure: THEAD
Table parameters:
LINES
The table contains all text lines that belong to the text read.
Structure: TLINE
Exceptions:
ID
The text ID specified in the parameter ID does not exist in table TTXID. It must be defined there together with the object of the text module.
LANGUAGE
The parameter LANGUAGE contains a language key that does not exist in table T002.
NAME
The parameter NAME contains the name of a text module that does not correspond to the SAPscript conventions.
Possible errors:
The field contains only blanks.
The field contains the invalid characters ‘*’ or ‘,’.
OBJECT
The parameter OBJECT contains the name of a text object that does not exist in table TTXOB.
NOT_FOUND
The system did not find the specified text module.
REFERENCE_CHECK
The text module to be read has no text lines of its own but refers to the lines of another text module. This reference chain can include several levels. For the current text, the chain is interrupted, that is, one of the text modules referred to in the chain no longer exists.
WRONG_ACCESS_ TO_ARCHIVE
The exception WRONG_ACCESS_TO_ARCHIVE is triggered if an archive is accessed using an incorrect or non-existing archive handle or an incorrect mode (that is, read if the archive is open for writing or vice versa).
Reward points for useful Answers
Regards
Anji

Similar Messages

  • About Workflows, urgent

    Hi all,
    Can any one tell me how to create workflows? Now I have a situation where I need to pass Business partner no., contract account no., and amount rejects to customers inbox. I know a bit about triggering workflow through function module SWW_WI_START_SIMPLE, but now I need to create workflow. If you have any documentation on workflows please send it to me. Please treat this as urgent.
    Thanks & Regards,
    Venkat.

    Hi,
    Step wise link for Workflow.
    http://www.****************/Tutorials/Workflow/Workflow.htm
    Thanks,
    Anitha

  • Re-post : General Question about Language - Urgent Advice Needed

    IS IT POSSIBLE TO AVOID COMPLETELLY THE DISPLAY/USAGE OF ENGLISH IN PORTAL?
    WE INSTALLED LANGUAGE SPANISH (langinst.cmd) AND OUR CONTENT AREAS HAVE DEFAULT LANGUAGE "SPANISH"(NO ENGLISH TRANSLATION) .
    OUR PAGES/NAVIGATION BARS/STYLES/ETC... WERE CREATED BEING CONNECTED TO THE PORTAL IN SPANISH.
    WE DON'T WANT TO SHOW THE "LANGUAGE" PORTLET FOR USERS TO CHANGE BETWEEN SPANISH AND ENGLISH AND WE DON'T WANT THE PORTAL TO DISPLAY IN ENGLISH IF THE BROWSER SETTING IS ENGLISH.
    I READ SOMEWERE THAT IT IS NOT POSSIBLE TO "UNINSTALL" A LANGUAGE, THEREFORE I ASSUME WE CANNOT ELIMINATE THE ENGLISH LANGUAGE.
    CAN WE CONFIGURE SOMEHOW "SPANISH" AS A DEFAULT AND "UNIQUE"LANGUAGE SO ALWAYS THE PORTAL DISPLAYS IN SPANISH ??
    I HAVE INSTALLED LATEST VERSION 3.0.9.
    ANY IDEAS/SUGGESTIONS WILL BE MORE THAN WELLCOME!
    REGARDS
    null

    Hi Maria,
    One way of using Spanish as the default language is to load the following code in your Portal schema:
    set def off
    /* @Copyright (c) 1999, Oracle Corporation. All rights reserved. */
    create or replace procedure home
    -- create the synonyms for wwpob_page.show
    as
    l_pageid number;
    l_url varchar2(32767);
    function is_language_set
    p_http_language in varchar2 default null,
    p_nls_language in varchar2 default null,
    p_nls_territory in varchar2 default null,
    p_requested_url in varchar2
    return boolean
    is
    l_cookie owa_cookie.cookie;
    l_language varchar2(100) default null;
    begin
    begin
    begin
    l_cookie := owa_cookie.get(wwctx_sso.PERSISTENT_COOKIE);
    exception
    when others then
    l_language := null;
    raise wwctx_sso.NOT_HTTP_SESSION_EXCEPTION;
    end;
    l_language := lower(l_cookie.vals(1));
    exception
    when others then
    l_language := null;
    end;
    if l_language is null then
    wwctx_app_language.set_language
    p_http_language => p_http_language,
    p_nls_language => p_nls_language,
    p_nls_territory => p_nls_territory,
    p_requested_url => p_requested_url
    return false;
    end if;
    return true;
    end is_language_set;
    begin
    -- Mobile support
    if wwpob_api_mobile.is_mobile_request
    then
    l_pageid := wwpob_api_mobile.get_defaultmobilepage;
    else
    l_pageid := wwpob_api_mobile.get_defaultmobilepage;
    else
    l_pageid := wwpob_api_page.get_defaultpage;
    end if;
    l_url := wwpob_page_util.get_page_url(p_pageid => l_pageid);
    if is_language_set('es', 'e', 'SPAIN', l_url) then
    owa_util.redirect_url(l_url);
    end if;
    exception
    when others then
    wwerr_api_error_ui.show_html;
    end;
    show errors procedure home;
    This script looks for the language in the NLS_LANGUAGE cookie. It this cookie does not exist then the language defaults to Spanish because of the code is_language_set('es', 'e', 'SPAIN', l_url). Please make sure to delete the NLS_LANGUAGE cookie, if it exists.
    Please note that this code will work for 3.0.9. In case you want to implement something similar to this on 3.0.8, the code containing the mobile support has to be removed. You can contact me, should you have any questions.

  • A question about JList (URGENT)

    I have a jtextfield that you can write anything on, another jtextfield that only accepts integers that are greater than 0 , a Jbutton, and a JList.
    I wanna add a listener for the JButton so that whenever it is pressed, the String in the first textfield will be put in the list in x number of times.
    x = the integer in the second textfield
    THANKS SO MUCH!!!

    In the actionlistener for the button:
    get the value from the Text JTextField, if empty exit.
    get and convert the value from the Integer JTextField, if 0 or not a number then exit.
    get the model (DefaultTableModel) from the JList.
    call the model.addElement(Object) passing the value from the Text JTextField in a loop controlled by the value in the Integer JTextField.
    Dave

  • Pls help ? about snapshot,urgent!

    first i create a database link remote_connect,and test it,it's active;
    then i create a snapshot log on remote master table:table_one, table_one has it's primary key(id), and last i create snapshot in local like this:
    create snapshot local_table_one
    storage(initial 100k next 100k pctincrease 0)
    tablespace snaps
    refresh fast
    as
    select * from table_one@remote_connect;
    but the errors occur:
    ORA-12014: 1m'TABLE_ONE'2;0|:,Vw9X<|WVT<JxLu<~(table 'table_one' not include primary key check condition);
    my question is:
    how can i do for this,i want use primary key not rowid:
    thanks first!

    This problem occurs when you try to create a snapshot with using WITH PRIMARY KEY option, and the Master table either doesn't have primary key or the primary key is disabled.
    If you don't want to use WITH ROWID option, you'll have to check your master table.
    Either create a primary key or enable it if already exists on the Master table.
    Hope this will help
    Faheem

  • Question about Tables:  Urgent

    Hi, I'm trying to create a table inside BW.  The objective is to create this table so that an Oracle Administrator can "Push" or "drop" data into this table in BW.  I'm currently using 2004s, so I am having quite a hard time....  What are the sequence of steps required in creating this table with the end goal of activating it so that it can be "seen" and used...  How do I activate the table?  Do I need to generate a datasource for this?  If I do, what are the sequence of steps that I need to do for this?  Much thanks....
    - Beleaguered B.I.

    Philips:
    A. Assuming that I have successfully created a table in B.I. 7, how will I check to
    ensure that the table that I just created exists in the system? What are the
    sequence of steps to doing this check? Will the administrator on the Oracle
    side (see original question) be able to "see" this table?
    When you activate the table, go to transaction Se16 and put your tablename and press f8, if the table is not active, you will get a mesage. This is a initial check.
    When you create a transparant table in SAP, SAP creates automatically created a table in the database underlying. Thats why it is called transparent table.
    YES. youur administrator can see the table with a SQL statement desc TABLE in the database layer.
    B. Assuming that I successfully created a DataSource, how can i check to ensure
    that the DataSource is indeed active and is in the System? What are the
    sequence of steps to achieving this?
    The last step in creating data source is to save / generate. Once generated, you can see the data source in RSA3. Run RSA3 and give the data source name and press f8, you will see the result.,
    C. Is there a particular methodology or standard as to how I should create a table?
    Can you point me out to a documentation or link to a "HOW TO" in creating
    tables? Where exactly in the BI 7 system are the tables store.
    To create a table you need something called developer key which is a long string of numbers. Check with your basis administrators and they will generate the key for you.
    Once you have this, decide the structure of your table and we will take it from there.
    Ravi Thothadri

  • About trigger **URGENT**

    How many trigger we can create on a table?

    So, your senior developer asked you a question, presumably(*) to either a) test your knowledge or b) test your searching capabilities and you decide to ask here, without searching first?
    You should search the concepts document. I'll even give you the link to the relevant part: http://download.oracle.com/docs/cd/B28359_01/server.111/b28318/triggers.htm
    It's up to you to research it.
    (*) I'm assuming that the senior developer is not asking because they don't know the answer...!

  • About Tablespaces (Urgent)

    Hi Fellows,
    I created a tablespace with a datafile. I droped that tablespace and the datafile. But when I issue a command (select * from dba_tablespaces) the deleted tablespace doesnt show but when I query the view "user_tablespaces" it is always there. What should I do to remove the contents of removed tablespace from "user_tablespaces"
    I will apprecieate any quick response.
    Thanks in advance
    Mustafa
    null

    It may be possible that you still have quota on the dropped tablespace or it was your default tablespace. If you check the USER_TABLESPACES view the STATUS column will show INVALID because the tablespace doesnt exist. The DBA_TABLESPACE or the V$TABLESPACE views show the existing tablespaces in the database. Do the following I hope this might help:
    ALTER USER <USERNAME>
    QUOTA 0 ON <NAME OF DROPPED TABLESPACE>;
    or if it was your default tablespace then:
    ALTER USER <USERNAME>
    DEFAULT TABLESPACE <NAME OF NEW TABLESPACE>;
    null

  • Information about mappings- Urgent

    Hi,
    Can anybody tell me how to get the accessor methodnames mapped to a Database column?
    sample code snippet will be very helpful/
    thanks

    Hello,
    TopLink can be configured to use method access when getting/setting a value in the mapped object (off by default), but you do not map the accessors, you map the attribute itself. TopLink will communicate to the attribute directly but can be told to use methods by selection a checkbox in the Mapping Workbench.
    Darren

  • Not sure if being scammed. Many calls from urgent...

    Since I've been on skype (a couple of months) I've been alerted about a call coming in, sometimes in the middle of the night, about "SystemTM - Urgent Online Alert" or variations on that. " "System notice - Urgent online repair" four times. " System notice - Urgent online maintenance".  There has been a barrage of them.  I don't answer them, I decline.  I didn't realize you can block them.  I do now but wonder if I should be reporting them as abuse?  I'm new to Skype and not sure if this is supposed to be happening.  Also I get a lot of calls from people I don't know or at least people asking if they can call me.  I have no idea who they are so now I block them but again should I report them?  Do people just sit out there and fish for someone to contact?  There seems to be a lot of that happening and it's annoying at best.  Are these alerts/calls legitimate?  What should I do?

    if you think applicable in your case, you can also set your privacy settings to allow call and IMs from people who are in your contact list only.
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • New G/L dataources integration

    Hi guys,
    I am working on new G/L currently I dont have any line item datasource 0FI_GL_14.
    My most reports are on the summarised level so I m trying to work on the new datasources which are created with transaction BW03 they are
    3FI_GL_0L_TT  Leading ledger
    3FI_GL_Z1_TT  Profit center ledger
    3FI_GL_Z3_TT  Functional area
    3FI_GL_Z4_TT  segment
    Now one of the requirement in my reports is to show the functional area with segment i.e Z3 and Z4 ..and these two datasources dont have ne thing in common which I can use to integrate with..I want the two fields that is functional area and segment with in one line I dont even find ne thing in common to bringthem with table FAGLFLEXA.
    Have you guys worked on such reports of finance please do let me know I have to report about this urgently and need your help,.

    Hi mustafa naeem,
    We do not have New GL functionality Infoprovider Line item wise,
    You can use
    0FIGL_O10 - General Ledger (New): Transaction Figures
    0FIGL_C10 - General Ledger (New): Transaction Figures
    for Line Item
    0FIGL_O02 - General Ledger: Line Items and in this you can enhance the fileds Porfit Center and Segments.
    http://help.sap.com/saphelp_nw70/helpdata/EN/bd/e16840b151181ce10000000a1550b0/frameset.htm
    Regards,
    Rajdeep Rane.

  • Proper use of htmldb_util.set_session_state

    Looking for a way to set a page variable from a trigger.
    I have an app that needs a variable set from within an insert trigger. I would like to let the user see the value of that variable on the page after the insert is complete.
    Can I use htmldb_util.set_session_state for that?
    Thanks.

    See
    Re: HTMLDB_TOOLS by Vikas need some helps about rollback(Urgent !!!)
    The problem is that htmldb_util.set_session_state does a COMMIT and as you know trigger code is not allowed to have a commit (ORA-04092: cannot COMMIT in a trigger)
    What you could try doing is create a little procedure as a autonomous transaction as a wrapper around htmldb_util.set_session_state
    create or replace procedure my_set_session_state
    p_item_name in varchar2,
    p_item_value in varchar2
    is
       PRAGMA AUTONOMOUS_TRANSACTION;
    begin
    htmldb_util.set_session_state(p_item_name,p_item_value);
    end;
    /and call that from your trigger.
    Hope this helps.

  • N8 - Another disappointment?

    Thought of giving Nokia another chance, so I replaced my N97 with a N8-00. Been playing with it for a week & I really loved the new N8.
    Then yesterday I thought of doing a "Hard Reset" after installing & uninstalling quite a number of apps for the past week.
    To my disappointment & frustration these problems popped up after "Hard Reset":
    1) Ovi Store missing - couldn't even re-install after downloading the app from Ovi
    2) Ovi Maps missing - re-installed from Betalabs
    3) All Widgets were gone
    4) Phone Lock Code was changed or corrupted - prior to this I've set the "Lock Phone On SIM Change" using the default "12345" code.
    Re-installed Firmware via Ovi Suite with no success. How can the firmware from Ovi Software Update be different?
    Nokia can you guys please not disappoint loyal user like me again, especially after the N97. I've been campaigning for the N8 to all of my friends who wanted to get the iPhone 4 or Samsung Galaxy S.
    Please do something about it urgently!
    Justify the faith that I still have in Nokia!
    N8-00 Silver > P/Code: 059D1G4 > FW: 011.012
    N97-RM505 (traded in)
    N95-8GB (back-up phone with another Telco)
    iPhone 4 (used only for web surfing)

    Hi synth_fg,
    Reinstalled QT 4.6 & 4.7 but still Ovi Store refused to install.
    However I'm baffled as to why the Phone Lock Code was changed or corrupted when the "3 Finger" reset was done, very curious.
    Sent to Nokia Care & now everything is back to normal.
    At least Nokia Care was very efficient in handling repairs & services, and its free.
    Thumbs up for that Nokia.
    N8-00 Silver > P/Code: 059D1G4 > FW: 011.012
    N97-RM505 (traded in)
    N95-8GB (back-up phone with another Telco)
    iPhone 4 (used only for web surfing)

  • How to cancel one of my skype numbers

    hello,
    I have subscription unlimited Poland and I can have up to 4 skype numbers as the part of that subscription. Currently i have two working numbers - how to cancel one of them?

    I just spoke with Skype support about this very problem, they have NO way of allowing you to temporarily or permanently disable a number except for cancelling the number and waiting for your subscription to run out.
    Sometimes, you wonder if anyone at Skype has their brains turned on. Oh no and reply from Skype support for a post on ‎07-02-2012 about an urgent issue? Very professional. I swear when they encounter a user issue, instead of solving it like usual companies they just turn their heads and look the other way.

  • Sounds suddenly stop working

    Certain sounds on my iPhone (text alerts, text sent sound, etc) will suddenly stop working.  I will get notification of an incoming text with a sound all day long and then out of the blue there will be no sound to accompany the alerts anymore.  When I send a text, I always hear a sound when it sends the text...but just like the alerts, the sound for that will suddenly quit too.
    Yes, I've checked the loud/silent switch.  I've checked the volume.  The only thing that seems to fix this issue is powering off and back on.
    I don't use headphones (I've seen this can sometimes cause the silent mode to get stuck) so that isn't the problem.  I thought maybe it had something to do with the bluetooth connection in my car but the sound will quit sometimes when the bluetooth is off and I'm nowhere near my car.
    I had this issue with my iPhone 4s and just put up with it until I got the new iPhone 6, figuring I wouldn't have the issue anymore with a new phone.  My iPhone 6 is still doing this so I'm guessing there is some crazy, hidden setting somewhere I'm not aware of, or there is something wonky in the iOS.
    This is incredibly frustrating as I have not known about an urgent message because the phone didn't make any alert sound to let me know I received a message.

    Was wondering if you had found a solution for this?  I went to the Genius Bar 3 seperate times to get this exact issue resolved.  First they reset my phone as a new phone, then they replaced my speaker, and finally they replaced my phone.  Still, with a brand new phone, it is happening.  I have iphones for a long time and do not believe I am doing anything differently.  Have you found something that worked for you?  Thanks!

Maybe you are looking for

  • What is the audio quality on an iPod Shuffle?

    I have just received a free iPod shuffle. I would like to know whether the sound quality is different on all different models/varieties of iPods. I am an audiophile and quality is 1st priority. If one has music files as AAC format with highest bit ra

  • Shared Review from Acrobat 8 Pro

    Is it possible to initiate a shared review from Acrobat 8 Pro using Acrobat.com? I realize how easy it is from Acrobat 9, but I'm trying to help someone currently using 8, where the only options are internal server, WebDAV or iDisk.

  • Buying a new wireless router

    I'm looking for a new wireless router, since the when I have is extremely old and cannot handle all te bandwitdh in my house. I need a router that can handle 3 computers, a XBox and my phone. My price range is anything from $50-$150 and nothing above

  • Modifying the cost center when posting an MM invoice

    Hi All, my client wants to change the Cost Center assignment field when posting an invoice coming from MM process (PR>PO>SES).   I'm now using transaction MIRO to make some test and I see the field is 'not modifiable'. I tried to see if i could sort

  • Error installing  Webcenter Locally

    Hi All, I am newbie in webcenter and adf in general but I am starting to learn everything so kindly help me please. I am following below link in the installation of webcenter. [http://www.yonaweb.be/start_webcenter_domain] I followed all the steps ex