Pushbutton Text does not display in portal but display in development

Hi Experts,
I ceated Pushbutton in  selection screen block . Pushbutton text is does't display in portal view but display
in development .
i attached my coding , could you suggest anyother coding to diplay the pushbutton text.
SELECTION-SCREEN BEGIN OF BLOCK auth WITH FRAME TITLE text-003.
PARAMETER    p_sig(40) TYPE c." OBLIGATORY.
SELECTION-SCREEN SKIP 1.
SELECTION-SCREEN PUSHBUTTON /43(20) execu USER-COMMAND printlayout ." VISIBLE LENGTH 15.
SELECTION-SCREEN END OF BLOCK auth.
INITIALIZATION.
  MOVE text-004 TO execu.

Did you check in your portal instance that TEXT-004 has the value you want?

Similar Messages

  • Javascript not working with 'Display as Text (does not saves state)'

    Hi,
    We have these following items in P3 of our application,
    P3_EDIT_ACCOUNT Display as Text (saves state)
    P3_USEFUL_LINKS Display as Text (saves state)
    P3_LAST_APPROVED Display as Text (saves state)
    P3_ARCHIVES Display as Text (saves state)
    And we are initializing these items in a pl/sql process under 'Page Rendering'
    For example,
    :P3_ARCHIVES := '<font face="Arial, Helvetica, sans-serif" size="-1">Archives</font></a><td> ';
    When our environment was upgraded from HTMLDB1.5 to HTMLDB2.0,
    instead of displaying the proper value of :P3_ARCHIVES,
    it was displaying the tags,
    i.e. instead of displaying 'Archives', it was displaying the whole
    '<font face="Arial, Helvetica, sans-serif" size="-1">Archives</font></a><td> '
    So, when we changed all items to 'Display as Text (does not saves state)' and it was working.
    But then we have another problem,
    We render the rest of the same page with another pl/sql block,
    Here is a portion from that pl/sql for your reference,
    htp.p('
    <script>
    //Script to check the status change.
    //The script source is rendered through PL/SQL.
    function checkStatus()
    var promptStr = someString;
    if(ans.toUpperCase() == "AMBER" || ans.toUpperCase() == "RED")
              var cnfm = confirm(promptStr);
              if(cnfm)
              do something....
    </script>
    htp.print('
    <td width="5%" bgcolor="#ebebc5" height="19" align="middle" >
    <input TYPE="radio" name="'||l_g_fnumber||'" value="GREEN"');
    IF l_allow_update THEN
         htp.print(' onClick="checkStatus()"');
    ELSE
    htp.print(' disabled onmousedown="return false;"');
                        do something....
    Now the issue is , when we changed all items to 'Display as Text (does not saves state)', the checkStatus() function is not getting called in the onClick
    event of the radio button and hence the confirm window for the call to
    confirm(promptStr) is not coming up.
    But if we revert back the items to 'Display as Text (saves state)',
    the checkStatus() javascript function is getting called properly but html tags are displayed against the items instead of the proper value (as mentioned in ********)
    Please do let us know a possible solution to this issue.
    Thanks & Regards-
    Rupak

    Thanks Varad for your response.
    This is the error i am getting.
    1 error has occurred
    PLSQL anonymous block source type can be used ONLY with Display Text (based on PLSQL) item type.
    yes i am using in the source..
    I also tried with the PL/SQL Expression of FUNCTION in this case it is executing the query but once i run the page ora- 06550 error occured.
    Thanks
    AT
    Edited by: ranu on Jan 8, 2009 2:51 PM

  • Importing PDF to illustrator. Text does not display.

    I am using Illustrator CS6 on windows 7. I created a document on Illustrator CS4 on mac osx and exported the file to a pdf. Now when I want to edit the pdf in illustrator the images and drawings display correctly, but only certain text is shown. Not any text in particular, but just random lines of text within paragraphs. The rest of the text does not show up at all. What could be the issue?

    Why not open the AI file?
    In any case, as Monika points out, the PDF really needs to eb created with the AI editing capability turned on. That way, AI is opening the AI data contained in the PDF, not the PDF data.
    Take care, Mike
    ***Oops, cross-post. I see you did preserve the AI data now.***

  • Display As Text (Does Not Save State) Render Behaviour

    I suppose this is directed more at the Oracle team members (as most of my posts are...) than anyone else, but others might find this interesting.
    It would seem when an item has a type of "Display As Text (Does Not Save State)" the item's value is output as pure text which shows up as text nodes under the TD cell. However if there is anything in the "HTML Form Element Attribute" text field on the "Edit Page Item" page, the APEX rendering engine will output a span tag with those attributes around the value of the item. If the attribute is left null, no span tag is output.
    Further more, the span tag does not have an ID attribute. One can also not set the "HTML Form Element" text box to contain the text 'id="" ' as APEX will throw an error stating that you can not specify the id attribute. So if someone would happen to want to access/change the value via JavaScript (say after an Ajax request of a hidden id change), it requires a hack (setting the TD cell's ID to the page item's name), DOM inspecting/sniffing, outputting an ugly disabled text element, altering the flows user's tables, or altering the render cache.
    Is there any reason, why this span tag is not always output with the ID attribute set?

    Hello Andrew,
    You are, of course, correct. The APEX engine does not use the item ID for the "Display as Text (does not save state)". However, if you need to manipulate the item, using JS, you can use the "Display as Text (save state)", which does use the item ID. The on-screen effect is the same, but the JS use is easier.
    Your original question though, remains open.
    Regards,
    Arie.

  • DISPLAY AS TEXT (DOES NOT SAVE STATE)

    can i use the pl/sql anonymous block or pl/sql function body for item which is DISPLAY AS TEXT (DOES NOT SAVE STATE). I am using this query and getting an error in case of pl/sql anonymous block can be used only for save state item. my apex version is 2.2.1.00.04.
    my query is
    declare
    vCNT number;
    v_exception_detail varchar2(200);
    BEGIN
    SELECT COUNT(*)
    INTO vCNT
    FROM table a
    WHERE a.col1 IN
    (SELECT DISTINCT x.col1
    FROM table1 x)
    AND a.col2 = TRIM(:P21_col2);
    IF vCNT > 1 THEN
    IF NVL(&P21_col2, -1) <> -1 THEN
    SELECT DISTINCT SR.col3
    INTO v_exception_detail
    FROM table1 SR
    WHERE SR.col1 IN
    (SELECT col1
    FROM table
    WHERE col2 = TRIM(:P21_col2)
    AND col4 = :P21_col4);
    ELSE
    v_exception_detail := NULL;
    END IF;
    ELSE
    SELECT DISTINCT SR.col3
    INTO v_exception_detail
    FROM table1 SR
    WHERE SR.col1 IN
    (SELECT col1
    FROM table
    WHERE col2 = TRIM(:P21_col2));
    END IF;
    --DBMS_OUTPUT.PUT_LINE(v_exception_detail);
    RETURN v_exception_detail;
    END;
    Could any one suggest how i can execute this code in case of item of DISPLAY AS TEXT (DOES NOT SAVE STATE).
    Thanks,
    AT

    Thanks Varad for your response.
    This is the error i am getting.
    1 error has occurred
    PLSQL anonymous block source type can be used ONLY with Display Text (based on PLSQL) item type.
    yes i am using in the source..
    I also tried with the PL/SQL Expression of FUNCTION in this case it is executing the query but once i run the page ora- 06550 error occured.
    Thanks
    AT
    Edited by: ranu on Jan 8, 2009 2:51 PM

  • I have a mid 2009 Macbook Pro and i know the Mini-display port does not support audio out but does it support HDMI out? or do i have to buy a Mini-display to DVI and then a DVI to HDMI adapters?

    I have a mid 2009 Macbook Pro and i know the Mini-display port does not support audio out but does it support HDMI out? or do i have to buy a Mini-display to DVI and then a DVI to HDMI adapters?

    Run MDP to HDMI for picture. Use a cable like this to run sound from your audio out on your Mac to your TV's audio in.  That's about all  you can do.

  • When I press on a land line number, the phone does not call the number, but comes up with a screen to send a text to it.  How do I get my phone to default to phoneing a landline?

    When I press on a land line number, the phone does not call the number, but comes up with a screen to send a text to it.  How do I get my phone to default to phoneing a landline?  When I press a mobile number in contacts, the phone automatically phones the number.  I do not mind this as I hardly ever send texts, but I would like to have the option of what to do.  This seems such an obvious issue but I can not solve it even with much web searching.  Thanks!

    I can't delete my question, so I'll just say that you press on the type of number written in the box to the left of the box you typye the number into.  Dumb or what? 

  • PDF looks fine on screen but text does not print

    PDF created from Word looks fine on screen but text does not print (graphics do). Alos loses text on FTP or Email.  Windows 8.1 64bit. Acrobat XI Std. Word2013. Print to PDF from Word 600dpi, use doc fonts, download as softfont. Arial, calibrai - all fonts lost. Same issue as Phillipio61 and alacker2?.

    Problem not with all fonts.  Problem with arial and calibri fonts - maybe others.  Times New Roman, gil sans, viner are OK for example.

  • Yosemite - MacBook Air 10.10 - "Notes" does not open - "Preview" opens, but does not display PDF's - "iCal" works in new strange ways, as if no one checked its operation - Everything worked very well until Upgrade to Yosemite ! - Happen to others?

    Yosemite - MacBook Air 10.10 - "Notes" does not open - "Preview" opens, but does not display PDF's - "iCal" works in new strange ways, as if no one checked its operation - Everything worked very well until Upgrade to Yosemite ! - Happen to others?

    Thanks for your lengthy reminder dude, I have a similar Mac with yours. I suspect its a software fault because it happens after I upgraded to Lion, 10.7.2.

  • "Language-dependent text does not exist" when executing template on portal

    Hi,
    We are using BI 7 on SP 8. When trying to execute a web template in the portal we are getting a series of errors such as:
    Language-dependent text does not exist: TYPE=REP KEY1=SAPLRRSV KEY2=705 LANG=
    Has anyone experienced this problem and know of a fix?
    Thanks,
    Lee

    Yes we have. The problem is due to the support stacks for ABAP and for Java being out of sync i.e. they have to be on the same patch level. If you run program RSPOR_SETUP (via SE38) and enter the relevant details for checking the portal setup, this will detail all the errors.
    Lee

  • Text does not display in address bar or any windows I open

    Text does not display when typing in address bar. When I open a window (eg Edit > Preferences) no text is displayed within that either.
    Problem has persisted through Ubuntu 12.04 (possibly 11.10) to 13.04. Has also remained after re-installs, both through use of Software Centre, and through Terminal commands, and after running purge of all firefox content.
    Running Firefox as root using gksu command also doesnt help.

    Have finally solved,
    1st checked default system fonts available using unity-tweak
    Then went to ~.mozilla/firefox and found prefs.js file, deleted everything to do with fonts and families, saved and restarted.
    The odd thing is how this file persisted despite removing and purging firefox.

  • How to update zero to a column value when record does not exist in table but should display the column value when it exists in table?

    Hello Everyone,
    How to update zero to a column value when record does not exist in table  but should display the column value when it exists in table
    Regards
    Regards Gautam S

    As per my understanding...
    You Would like to see this 
    Code:
    SELECT COALESCE(Salary,0) from Employee;
    Regards
    Shivaprasad S
    Please mark as answer if helpful
    Shiv

  • My iphone does not automatically switch off the display light when locked. How do I fix this?

    I have an iPhone 5 with iOS 8.2 software.
    My iPhone does not automatically switch off the display light when it is locked. Therefore, if I get an e-mail/text message/pop-up from other application, the light just stays on, which obviously drains my battery.
    The problem just started yesterday, and it has been a couple of days since I updated the software, so I wouldn't think the software update is the problem.
    I have tried restarting the phone (using home and lock button), but that did not work.
    Something else that seems weird is that once in a while, a blue beam rolls over the screen from one side to the other. I don't know why it does this, and have no idea whether this is related to the display light issue.
    I hope someone is able to help by telling me what to do in order to get my phone to act normal again.
    Thank you x

    Restart your device by holding the home and power button until the Apple logo appears. You will not lose any data.

  • Language-dependent text does not exist: TYPE=REP KEY1=SAPLRRSV KEY2=757 LAN

    Hi all,
    We have just installed and configuired the EP . I have craeted one user id in EP with roles bi . But when iam trying to go to Bex Web Analyser Iam getting
    Language-dependent text does not exist: TYPE=REP KEY1=SAPLRRSV KEY2=757 LANG=
    Could any me in this regard.
    Thanks in Advcne..

    Hi Niyati,
    The problem might be due to the support stacks for ABAP and for Java being out of sync i.e. they have to be on the same patch level. If you run program RSPOR_SETUP (via SE38) and enter the relevant details for checking the portal setup, this will detail all the errors.
    Regards,
    Vinoth.M

  • Bug report: text does not update on the stage

    I am not sure whether this has been reported:
    I have several groups divs into one main group div. In these are images and text. I create a new group by copying elements from a previous group and then insert new text in the copied text box. The text does not update on the stage but is correct when I run the composition and also in the text panel.

    Hi Hemanth.
    I tried all day and is intermittent, why?, 'cause the numbers are now showing but the other texts not, this happen only on Chrome and Safari when the navigator screen increases size.
    On Chrome:
    On Firefox:
    I discovered that the error appears only on the right side of the stage, if I move the buttons to center, the error disappears:
    On Chrome (Fullscreen):
    I have no idea of what is happening.

Maybe you are looking for

  • How do I save my video project as a data file?

    I am preparing a video project on a deadline and they have requested I send it to them in a data file format. I don't see where I can save it that way. Help!

  • BPM Composer Deployment Fault

    Hi ; I created a new project into JDeveloper and deploy it successful. Then, i publish it to BPM MDS. I logon to BPM composer page as admin and opened to this project. I wanted to deploy this project from composer page as new revision and i don't cha

  • Webparts missing borders and edit web part menu

    I have a web part page, and added 7 apps (document libraries) into the page.  They are all set to minimized for the chrome state and toolbar type is "Full Toolbar".  The web parts do not display any border, and the edit web part menu is not available

  • Background processing in CIFING/mass processing while CIFING

    can anyone tell me what are the settings/steps to perform CIF in background? how to do mass processing while CIFING ? as I have to cif some lacs of ppms what is the feasible option to save time? thanks in advance. regards andy

  • Applet won't repaint itself

    i have an applet that contains a jtexatrea 3 buttons and a jlabel. when i start it everuthing is just fine. however, my applet is supposed to open a file form the local filesystem (so it is signed) and after i click OK in the choose file dialog, my a