Fetching all text components for query - RSRREPDIR / RSZELTXREF / RSZELTTXT

Hi all,
I am developing a tool to fetch all the text components for a BI query. The texts are then to be translated and uploaded back to the BI system, but right now we are first focusing on downloading the texts.
In the tool, the user inputs the query technical name on the screen, after which my approach is as follows:
1) Fetch Query UID from table RSRREPDIR using Query technical name.
2) Fetch all element UIDs from table RSZELTXREF using Query UID and by resolving the hierarchies. Agreed, the hierarchies in the table RSZELTXREF are very complex.
3) Provide all element UIDs, including root query UID, to the table RSZELTTXT, and fetch TXTSH and TXTLG texts.
Now, my question is at step 2: Which are the UIDs that I should fetch? Specifically, should I fetch only those UIDs which have Layout Type as 'ROW' / 'COL' / 'SHT', or should I fetch all UIDs regardless of Layout Type?
Secondly, my understanding is that because of the table hierarchy, I should continuously feed the field TELTUID back to SELTUID until the Layout Type is 'NIL'. When this happens, I am at the Element Level. Is this correct?
Thanks in advance,
Shailesh.

Now in the following code, why are u creating a new form?
Why dont you use the form which is input to the Action Class's execute methof?
if(rs.next()){
EditForm e=new EditForm();
e.setEmpname(rs.getString(1));
}Thanks and regards,
Pazhanikanthan. P

Similar Messages

  • Query to fetch all the responsibilities for which OA page is attached

    Hi Team,
    please help me to prepare a query to fetch all the responsibilities for which OA page is attached.
    thanks in advance
    Thanks & Regards,
    Sriram T

    Hi,
    Querys which you have provided was helpful.
    But i was struck with the following issue. As the function is not excluded directly it may be excluded via a menu to the responsibility.
    Even though it is displaying the responsibility name.
    The following query is used to display the responsibility name with menu and function exclusions.
    please help me on this.
    SELECT r.RESPONSIBILITY_NAME
    FROM
    fnd_responsibility_vl r,
    fnd_form_functions f
    WHERE f.function_name = 'VSFFFRMADMN'--f.form_id =p_form_id
    AND r.menu_id IN (SELECT me.menu_id
    FROM fnd_menu_entries me
    START WITH me.function_id = f.function_id
    CONNECT BY PRIOR me.menu_id = me.sub_menu_id)
    and r.menu_id not in (select frf.action_id
    from fnd_resp_functions frf
    where frf.action_id=r.menu_id
    and frf.rule_type='M')
    and f.function_id not in (select frf.action_id
    from fnd_resp_functions frf
    where frf.action_id=f.function_id
    and frf.rule_type='F')
    Thanks
    Sriram T

  • Installed cs6 master collection wont install all the components for photoshop , after effects or FB yet everything else is fine

    installed cs6 master collection wont install all the components for photoshop , after effects or FB yet everything else is fine

    Alanh61734259 are you receiving any specific error messages in the installation log files?  You can find details on how to locate and interpret the installation log files at Troubleshoot with install logs | CS5, CS5.5, CS6, CC.  You are welcome to post any specific errors you discover to this discussion.

  • Can I get a print out of all text messages for the past 90 days including pictures?

    Hi I am attempting to get a printout of all text message for the past 90 days to include text and pictures.  How can I do this?

    Messages + (Verizon messages app) stores up to 90 days of messages, but I think it starts when you install it - it doesn't go back prior to installation.  Other apps (SMS Backup, for one) will also allow you to save and print out your messages. Again though, I believe it only goes back as far as installation, so if you haven't been uisng the app(s), you won't have the previous 90 days available.

  • Query to find all text attachments for items

    I am using the query below to try to find all active items for my org that have an attachment of type 33 (something we have defined I believe) and contain specific text. Some of the items appear to meet all criteria (active, right category, etc) but do not show up in my results. Can someone please take a look and see if there is a join missing, an outer join that should be used, or an overall easier way to do this query and get the text information?
    SELECT i.segment1 "Item Number",
    i.description "Item Description",
    u.user_name || ' (' || ppx.first_name || ' ' || ppx.last_name || ')' "Created By",
    i.creation_date "Created Date",
    to_number(r.revision) "Revision",
    to_char(r.effectivity_date, 'MM/DD/YYYY') "Effectivity Date",
    nvl(tx.short_text, '<No Drawing Info>') "Drawing Info / Attachment"
    FROM apps.mtl_system_items_b i,
    apps.mtl_item_revisions_b r,
    apps.fnd_user u,
    apps.per_people_x ppx,
    apps.fnd_attached_documents ad,
    apps.fnd_documents d,
    apps.fnd_documents_tl t,
    apps.fnd_documents_short_text tx
    WHERE i.organization_id = 90 AND -- for MBE only
    r.organization_id = 90 AND -- for MBE only
    ad.pk1_value = 90 AND -- for MBE only
    ad.entity_name = 'MTL_SYSTEM_ITEMS' AND
    (upper(tx.short_text) LIKE '%DWG%' OR
    upper(tx.short_text) LIKE '%SIZE%' OR
    upper(tx.short_text) LIKE '%DRAW%') AND
    tx.short_text != 'DWG NONE' AND
    d.document_id = t.document_id AND
    t.source_lang = 'US' AND
    t.LANGUAGE = 'E' AND
    to_number(ad.pk2_value) = i.inventory_item_id AND
    t.document_id = ad.document_id AND
    tx.media_id = t.media_id AND
    d.category_id = 33 AND
    i.inventory_item_status_code = 'Active' AND
    i.inventory_item_id = r.inventory_item_id AND
    u.employee_id = ppx.person_id AND
    u.user_id = i.created_by AND
    to_number(r.revision) =
    (SELECT MAX(to_number(r2.revision))
    FROM apps.mtl_item_revisions_b r2
    WHERE r2.inventory_item_id = i.inventory_item_id) AND
    r.effectivity_date =
    (SELECT MAX(r3.effectivity_date)
    FROM mtl_item_revisions_b r3
    WHERE r3.inventory_item_id = i.inventory_item_id)
    GROUP BY i.segment1,
    r.revision,
    i.description,
    u.user_name,
    ppx.first_name,
    ppx.last_name,
    i.creation_date,
    r.effectivity_date,
    tx.short_text
    ORDER BY i.segment1 ASC;
    Thank you!
    Message was edited by:
    matt.schutz

    There is no workbook/worksheet linkage to a business area. So you cannot search for a business area and find all the workbooks "attached" to that business area. The attachment of workbooks is at the folder level. It is actually possible, if you are sharing folders among business areas, to create a workbook with data from 2 or more business areas. I have tested that and it is indeed possible. In Discoverer Administrator you can check on folder dependencies to see what workbooks use the folder. Though in my version of Discoverer, there is a problem with Discoverer Plus, such that the workbook save in Plus is not creating this dependency information like it should. At least I have not found any way to take a business area and determine what workbooks would fall under it. Maybe someone else has found a way.
    John Dickey

  • Changing the Text Cursor for all Text Components

    Hi,
    The users have asked me to change the text cursor i.e, the vertical cursor for all the text components in our application.
    Is there a common way to change it , without having to call the setCaret method for each of the text components ?
    I saw that Cursor class has a Cursor type called TEXT_CURSOR. I'd like to be able to change that cursor.
    Any ideas, suggestions?
    Thanks!

    I was talking about the blinking vertical caret - sorry I got confused between the I-beam cursor and the caret(!).
    I wanted to change the caret color at the very least.
    Although preferably, I would like to make it a bit wider.
    I just found one solution to change the caret color across all the textfields using UIManager -
        Color caretColor = Color.GREEN;
        UIManager.put( "TextField.caretForeground", caretColor);
        UIManager.put( "FormattedTextField.caretForeground", caretColor);
        UIManager.put( "TextArea.caretForeground", caretColor);
        UIManager.put( "PasswordField.caretForeground", caretColor);Thanks

  • SharePoint 2013 - What are all requirement components for People Pickers to list, search, display, and assign users permission

    Hi All
    the past few months, I have been working with permission issues related to SharePoint 2013 site permission settings using People Pickers to list, search, display users to assign or check permission.
    Our environment include multiple domains and few forests. Our SharePoint farm is installed on one domain but the good thing is our AD structure are configured to have all other domains and forests with 2 ways trusts with this domain so domain
    users are authenticated and can access SharePoint just fine. Also SharePoint use default claim authentication.
    The problem is People Picker is not display all domains user accounts when site owners need to assign permission. So to resolve the problem, I had provisioned
    SA - User profile service and Import AD domain user accounts (one way) into Sharepoint.
    I configured stsadm.exe -o setproperty -pn peoplepicker-searchadforests -pv
    for all domains and forests (eventhough, as mentioned we do have 2 ways trust)
    and sometime tried different query (user last name, domain\logonname, email address) if one is not showing.
    With all that added, People Pickers seem to find and display user account for all domains now.
    My question now is do UPS and all AD domains users need to be imported into SharePoint and STSadm configuration are required in order to have all domains user accounts to display in People Pickers so the site owners can
    find them and assign permission when needed?
    Please share your advices, comments as they are really valuable to me.
    Thanks
    Swanl

    UPS and people pickers are virtually unrelated. The only connection between them is to do with caching and updating user names and emails if they change over time, or in other words not relevant to your situation.
    To answer your question directly; Nope, you do not need to set up synchronisation connections to a domain to be able to pick up a person in a people picker. As you've seen you may need to run some STSADM commands to make sure they are checking the right
    places.

  • Display the all text entered for all folder at Item and Header level of PO

    Hi everybody,
    I have the task like the following :
    In a PO there are text folders available at Header and Item level. I want POs with type Purchasing document type u2018ZFu2019 ( First Article PO ) should display all the texts entered into any of these folders either at Header level or Item level during print preview and PO output like Purchasing document type u2018NBu2019 ( Standard PO ).
    u2022 The technical information relating above subject ( SAPScript ):
    o The layout set ( form ): ZPCC_PURCHOR_STD
    o Print program : SAPLMEDRUCK
    u2022 The problems like the following :
    o I found out the differences in debugging of 2 types of Purchasing document type u2018ZFu2019 and u2018NBu2019 .
    o Only Purchasing document type u2018NBu2019 the print program processes Text Elements (HEADER_TEXT, ITEM_TEXT, SUPPL_TEXT) to display all the texts entered into any of these folders either at Header level or Item level.
    o To control the displaying of Text Elements as I know I need a print program, however, our print program is standard print program of SAP system in this case. So I can not make any changes there.
    Do we have the configuration place to this one.
    Please help me to fix the problem. Thank you in advance !

    Hi
    I advise to use the subroutine pool as your sapscript is the bespoke one ( Z one) . So you can make use of the below pseudo code.
    In the sapscript the point where you want to display the text include the following code (
    Assume that your are print header text Then first find out the Co-ordinates for it .Go to me23n->Text tab-> In change mode -> double click on text editor-> which takes you to sapscript layout->Under Go to -> Click on header & get the following details.
    Text name : ekko-ebeln
    Language : ekk-spras
    TEXT ID : F01
    TEXT OBJECT : EKKO.
    /: DEFINE &V_ID& = 'F01'
    /: DEFINE &V_OBJECT& = 'EKKO'.
    /: DEFINE &V_LINE1&
    /: DEFINE &V_LINE2&
    /: DEFINE &V_LINE&
    /: PERFORM GET_HEDER TEXT in program Z_PURCHASE_TEXT
    /: USING &EKKO-EBELN&
    /: USING &EKKP-SPRAS&
    /: USING &V_ID&
    /: USING &V_OBJECT&
    /: CHANGING &V_LINE1&
    /: CHANGING &V_LINE2&
    /: CHANGING &V_LINE3&
    /: ENDPERFORM
    &V_LINE1&
    &V_LINE2&
    &V_LINE3&
    Now in the Subroutine pool Z_PURCHASE_TEXT
    FORM GET_HEADER_TEXT USING IT_INPUT STRUCTURE ITCSY
                                              CHANGING IT_OUTPUT STRUCTURE ITCSY.
    LOOP AT IT_INPUT.
    CASE IT_INPUT-NAME.
    WHEN 'EKKO-EBELN'.
    V_TEXTNM = IT_INPUT-VALUE.
    WHEN 'EKKO-SPRAS'.
    V_LANG = IT_INPUT-VALUE.
    WHEN 'V_ID'
    V_ID = IT_INPUT-VALUE.
    WHEN 'V_OBJECT'.
    V_OBJECT = IT_INPUT-VALUE.
    ENDLOOP.
    USE FUNCTION MODULE READ_TEXT BY USING ABOVE PARAMETERS AND READ THE TEXT AND FILL THE VALUE IN FIELDS IT_OUTPUT.AS BELOW.
    BEFORE THAT FILL V_LINE1,2,3 AFTER GETTING A TEXT FROM READ_TEXT FUNCTION MODULE.
    LOOP AT IT_OUTPUT.
    CASE IT_OUTPUT-NAME.
    WHEN 'V_LINE1'.
    IT_OUTPUT-VALUE  = V_LINE1.
    WHEN 'V_LINE2'.
    IT_OUTPUT-VALUE  = V_LINE2.
    WHEN 'V_LINE3'
    IT_OUTPUT-VALUE  = V_LINE2.
    ENDLOOP.
    ENDFORM.
    Declare the valriable in the routine v_textnm,v_lang,.....
    I hope this hint help you to resolve your issue. Note : the spelling of commands which i have wrote may be incorrect.
    Cheers
    Joginder

  • Using Text Variable for Query Description

    hi all,
    I am currently trying to include this text variable in the query properties of the query.
    This text variable should be able to grab the 0CALMONTH as filter to be included into the query properties. but currrently  cannot grab the particular information from the query properties.

    Hi
    If I got your Question properly , You are trying to use Replacement Path Variable .. If it is so
    /people/kamaljeet.kharbanda/blog/2006/12/28/bex-characteristic-variable-with-replacement-path
    http://www.sd-solutions.com/documents/SDS_BW_Replacement%20Path%20Variables.html
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/009819ab-c96e-2910-bbb2-c85f7bdec04a
    Hope it helps

  • Cheking all text items for null

    hi all
    we always check a text item in the trigger key-next-item as follows
    if :idumitem is null then
    message
    end if
    Now Suppose I am having 100 text items in my form
    Can I check these items for null without writing code in each item's trigger
    is there any procedure like clear_form ( which clears all the text items) or can v see the code of fucntion clear_form..or can v make some procedure which cheks each text item
    any help will b appriciated.....

    Also learn which triggers to use. You say you are using a KEY-NEXT-ITEM trigger. As far as I know that trigger only fires when you navigate to the next item with the keyboard.
    This leaves many situations unchecked. It probably won't fire if you leave the item with the mouse and it probably won't fire either if you press Commit-Form while still in the item.
    It looks like you are trying to do some sort of validation, which should be in WHEN-VALIDATE-ITEM (or WHEN-VALIDATE-RECORD to check the entire record at once).
    Also, if you're just checking for Null values, wouldn't it be easier to just set the Required property to Yes and have Forms handle it for you?

  • Report doesn't fetch all the records

    Hi All,
    I have a problem of fetching data from a table. My query returns more than 100,000 records. But report does not view/fetch all of them for the report.
    It just return only around 500 records.. :S
    Can anybody please give me a hand to solve this issue.
    I'm using 10g Express edition with apex 4.
    Thanks in Advance,
    Max

    Hi,
    Go edit your report attributes and set Maximum Row Count higher than 500
    Regards,
    Jari

  • How to fetch all properties with ejb3

    I have need to fetch all properties in a Query when loading Entity EJB's in ejb3.0. This is because I'm going to detach the entities from the EntityManager, but want all the properties to be loaded. I have some entities that have simple fields that are normally fetched lazily (BLOBs and CLOBs). I also have relationships to other entities that would also normally be fetched lazily. Finally, I'm trying to do this in generic code that looks like this:
    Query q = manager.createQuery("select o from " + variableNameOfOrmClass + " o");
    List l = q.getResultList();
    So, I can't really name the relationships and do a FETCH JOIN... but rather, I just want to tell the query to "fetch all properties". I also don't want to for EAGER fetching because the majority case is that I'm not going to detach objects from the EntityManager.
    Is there a simply way to tell EJBQL (EJB3.0) to fetch all properties at the query time?

    In this forum, I asked if there is a way to fetch all properties at query time. In the other, I asked if there is a way to force a load of all unfetched properties on an entity, or better yet, a collection of entities, that I've previously queried. Similar, but not the same.

  • How i should move rowset to some record and make all binded components refr

    Hi
    Thank you for eading my post
    I have a Rowset and dataprovider , I use a DropDown process change value to move rowset one stepforward.
    i used logging to make sure that it goes forward.
    Now all text components that are binded to That rowset should be updated to reflect current record
    field values
    how i should tell them to refresh ?
    is there anything required to make those components refreshed ?
    Thank you

    Hi -,
    You seem to be using JSC2 EA2, please post your JSC2 EA related issues at:
    https://feedbackprograms.sun.com/login.html
    Please refer to the JSC2 EA tutorial 'Performing Inserts, Updates & Deletes'
    http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/inserts_updates_deletes.html
    And checkout the bundled Single Page CRUD sample apps in EA, it explains how to discard Submitted Values using VirtualForms, in order to display the current rows in the rowset.
    Regards,
    Sakthi

  • Fetch all items id in one form at runtime ?

    How do i fetch all id's for all items in one form at runtime ?

    Can you be more specific? I do not understand what it is you are asking to do.
    Thanks,
    Candace Stover
    Forms Product Management

  • Reg: function module to fetch the overall taxs for  a sales order

    Hi Experts,
    I need a fuction module which fetches all the taxes for a sales order with the tax values.
    (i.e) i need a function module with displays the overall tax values and not line itemwise..
    Regards,
    Vikram.S

    Hi,
    Check if it works
    POS_SALES_DOCUMENT_HEAD_TAXES

Maybe you are looking for

  • Error while running the page from Jdeveloper

    Hello All, I am running the pages from my Jdeveloper but it is throwing some exception which is related to cache on the local server.Kindly help me out as i am not able to run even old pages which were running earlier.Kindly what changes on the serve

  • ORA-12514 error while running adcfgclone.pl

    Dear Hussein, We are cloning an R12 instance, while running adcfgclone.pl dbTier, we are gettign the below error: ============================================================ getConnectionUsingAppsJDBCConnector() --> APPS_JDBC_URL='null' Trying to ge

  • Quartz Filter function in Preview.

    I am having a problem with the Quartz Filter function in Preview. I do a monthly newsletter for a local car club. The newsletter is distributed as a printed copy and as a PDF for e-mail and on-line viewing. I prepare the newsletter in iStudio Publish

  • Change in the namespace of the Client proxy?

    Hi All,    I want to know if there is way to change the name space in an existing client proxy. The problem is the provider system is not fully set up yet. So the provider keeps changing the URL to the web services. What is the best way to handle suc

  • Issues connecting to secure wifi

    I haven't seen this specific problem mentioned. Here is my issue. I can no longer connect to secure wifi connections that request user name/passwords. For example, my husband and I have the same phone (Galaxy S4). Our gym is now offering free wifi bu