Infinite loop when using the set language context API(This would be useful for f

Hi below is the code when execute goes into the infinite loop
Can any body throw light on this...
Regards,
Ranjit
CREATE OR REPLACE procedure draw_custom_login_page
site2pstoretoken in varchar2 default null
,p_error_code in varchar2 default null
,ssousername in varchar2 default null
,p_cancel_url in varchar2 default null
,p_submit_url in varchar2 default null
AS
var_bannergif                          varchar2(80);
var_bannertitle                     varchar2(4000);
var_bannerinfo                     varchar2(4000);
var_linkname                          varchar2(4000);
var_loginuser                     varchar2(4000);
var_loginpwd                     varchar2(4000);
var_loginbuttton                     varchar2(4000);
var_listlangcaption                    varchar2(4000);
var_optioneng                         varchar2(4000);
var_optionspanish                    varchar2(4000);
var_optionfrench                varchar2(4000);
p_nls_language                varchar2(5);
l_url                                   varchar2(4000);
l_language                               varchar(2000);
ex                                         exception;
BEGIN
     -- for setting the browser language
          begin
                    --if (owa_cookie.get('NLS_LANGUAGE').vals.count = 0) then
               -- if persistent NLS cookie is not found
               -- get the preferred browser language from environment
               --l_language := substr(wwctx_api.get_http_accept_language,0,2);
                              --else
                              --l_language:='us';
                    --end if;
                              l_language := substr(wwctx_api.get_http_accept_language,0,2);
                              l_url :='portal30_sso.draw_custom_login_page';
                              if (owa_cookie.get('NLS_LANGUAGE').vals.count = 0) then
                                   -- set portal language and redirect instead of just redirect
                                   wwctx_app_language.set_language(p_http_language =>
                                                  l_language,p_nls_language => wwnls_api.http_to_nls(l_language),
                                   p_nls_territory => wwnls_api.territory_from_http_language(l_language),p_requested_url => l_url);
                         else
                                   owa_util.redirect_url(l_url);
                    end if;
     exception
     when others then
               htp.p('Error Occurred');
     wwerr_api_error_ui.show_html;
          end;
     ----up to here
--for retrieving the NLS Language Equivalents
     begin
     var_bannergif                := portal30.wwnls_api.get_string('CBS','banner_uitext','banner_gif',wwctx_api.get_nls_language);
     var_bannertitle                := portal30.wwnls_api.get_string('CBS','banner_uitext','banner_message',wwctx_api.get_nls_language);
     var_bannerinfo                    := portal30.wwnls_api.get_string('CBS','banner_uitext','banner_info',wwctx_api.get_nls_language);
     var_linkname                    := portal30.wwnls_api.get_string('CBS','banner_uilink','link_name',wwctx_api.get_nls_language);
     var_loginuser                    := portal30.wwnls_api.get_string('CBS','banner_uilogin','login_name',wwctx_api.get_nls_language);
     var_loginpwd                    := portal30.wwnls_api.get_string('CBS','banner_uilogin','login_password',wwctx_api.get_nls_language);
     var_loginbuttton                := portal30.wwnls_api.get_string('CBS','banner_uilogin','login_button',wwctx_api.get_nls_language);
     --for filling up the list box
     var_listlangcaption          := portal30.wwnls_api.get_string('CBS','banner_listlang','listlang_caption',wwctx_api.get_nls_language);
     var_optioneng                    := portal30.wwnls_api.get_string('CBS','banner_listlang','listlang_optioneng',wwctx_api.get_nls_language);
     var_optionspanish               := portal30.wwnls_api.get_string('CBS','banner_listlang','listlang_optionspan',wwctx_api.get_nls_language);
     var_optionfrench           := portal30.wwnls_api.get_string('CBS','banner_listlang','listlang_optionfrench',wwctx_api.get_nls_language);
     end;
--Up to here
htp.p('<HTML>');
--htp.p('<FORM>');
htp.p('<HEAD><TITLE>'||var_bannertitle||'</TITLE>');
htp.p('<META content="text/html; charset=utf-8" http-equiv=Content-Type>');
htp.p('<STYLE>.bodytext {COLOR: black; FONT-FAMILY: Verdana,Arial,Helvetica; FONT-SIZE: 11pt; fontFamily: Verdana,Arial,Helvetica}');
htp.p('.header1 {');
     htp.p('FONT-FAMILY: Verdana,Arial,Helvetica; FONT-SIZE: 14pt; FONT-WEIGHT: bold; fontFamily: Verdana,Arial,Helvetica');
     htp.p('}');
     htp.p('.large {');
          htp.p('FONT-FAMILY: Verdana,Arial,Helvetica; FONT-SIZE: 18pt; FONT-WEIGHT: bold; fontFamily: Verdana,Arial,Helvetica}');
     htp.p('.small {');
          htp.p('FONT-FAMILY: Verdana,Arial,Helvetica; FONT-SIZE: 8pt; FONT-WEIGHT: normal; fontFamily: Verdana,Arial,Helvetica');
     htp.p('}');
     htp.p('</STYLE>');
     htp.p('<BODY leftMargin=0 topMargin=0 MarginWidth="0" MarginHeight="0"> ');
     htp.p('<TABLE background="/images/h_wave.gif" border=0 cellPadding=0 cellSpacing=0 width="100%">');
     htp.p('<TBODY>');
     htp.p('<TR>');
htp.p('<TD height=36>  </TD></TR></TBODY></TABLE>');
     htp.p('<TABLE border=0 cellPadding=7 cellSpacing=0 width="100%">');
     htp.p('<TR>');
htp.p('<TD height=36><IMG alt="" border=0 height=45 width=140 src="/images/'||var_bannergif||'"></TD>');
     htp.p('<TD height=36 align=right valign=top>');
     htp.p('<form name="cbs_language_select" action="PORTAL30_SSO.wwctx_app_language.set_language" method="POST">');
     htp.p('<input type="hidden" name="p_http_language" value="">');
htp.p('<input type="hidden" name="p_nls_territory" value="">');
htp.p('<input type="hidden" name="p_requested_url" value="portal30_sso.draw_custom_login_page">');
     htp.p('<select name=p_nls_language value="null" onChange="javascript:fn_cbs_lang_submit(p_nls_language)">');
     htp.p('<option selected>'||var_listlangcaption||'</option>');
     htp.p('<option value="us">'||var_optioneng||'</option>');
     htp.p('<option value="e">'||var_optionspanish||'</option>');
     htp.p('<option value="f">'||var_optionfrench||'</option>');
     htp.p('</select>');
     htp.p('</form>');
     htp.p('</TD> ');
     htp.p('</TR></TBODY></TABLE>');
     --htp.p('<DIV align=center>');
     htp.p('<TABLE border=0 cellPadding=5 cellSpacing=6 width=100%>');
     htp.p('<TBODY>');
     htp.p('<TR>');
     htp.p('<TD border=0 width=30%> </TD>');
     htp.p('<TD width=50%><span class=large>'||var_bannertitle||'</span>');
          htp.p('<P class=bodytext>'||var_bannerinfo||'<P>');
     --htp.p('Oracle''s financial applications to leverage the power of a single');
     --htp.p('integrated database with common data standards and core processes. This');
     --htp.p('tool empowers employees at their desktops, enabling them to requisition');
     --htp.p('goods and services, as well as pay bills and personal expenses online via');
     --htp.p('a Web browser.');
     htp.p(''||var_linkname);
     htp.p('');
     htp.p('<P align=center><A');
          htp.p('href="https://p2pweb1d.nj.ssmb.com:3043/pls/p2pdb30_portal30_sso"');
          htp.p('</TD>');
     --htp.p('<TD class=bodytext height=25>  </TD>');
     htp.p('<TD width=20% valign=top align=right >');
                    htp.p('<TABLE cellpadding=5 BGCOLOR="#F2F2F2"');
                    htp.p('<TR><TD align=right>');
                    htp.p('<p class=small><b>'||var_loginuser||'</b> <input class=small type=text size=15 name=user value="">');
                    htp.p('<P class=small><b>'||var_loginpwd||'</b> <input class=small type=password size=15 name=password value="">');
                    htp.p('</TD></TR>');
                    htp.p('<TR><TD align=right>');
                    htp.p('<input class=small type=button size=15 name=cmd_login value='||var_loginbuttton||'>');
                    htp.p('</TD></TR>');
                    htp.p('</TABLE>');
          htp.p('</TD>');
     htp.p('</TR></TBODY></TABLE>');
          --htp.p('</DIV>');
          htp.p('</BODY>');
          --htp.p('</FORM>');
          htp.p('</HTML>');
          htp.p('<SCRIPT language=JavaScript>');
                         htp.p('var l_http_language = new Array()');
                         htp.p('var l_nls_territory = new Array()');
                    htp.p('l_http_language[1] = "en"');
                    htp.p('l_nls_territory[1] = "AMERICA"');
                    htp.p('l_http_language[2] = "fr"');
                    htp.p('l_nls_territory[2] = "FRANCE"');
                    htp.p('l_http_language[3] = "de"');
                    htp.p('l_nls_territory[3] = "GERMANY"');
                    htp.p('l_http_language[4] = "ja"');
                    htp.p('l_nls_territory[4] = "JAPAN"');
                    htp.p('l_http_language[5] = "es"');
                    htp.p('l_nls_territory[5] = "SPANISH"');
                                             htp.p('function fn_cbs_lang_submit(field){');
                                                            --htp.p('alert (document.cbs_language_select.p_http_language.value)');
                                                  htp.p('if ( field.selectedIndex != 0 )');
                                                  htp.p('{');
                                                  htp.p('document.cbs_language_select.p_http_language.value = l_http_language[field.selectedIndex]');
                                                            htp.p('document.cbs_language_select.p_nls_territory.value = l_nls_territory[field.selectedIndex]');
                                                  htp.p('document.cbs_language_select.submit();');
                                                  htp.p('}');
                                                                                          htp.p('}');
          htp.p('</SCRIPT>');
          exception when others then
          htp.p(l_language);
          htp.p(SQLCODE);
          htp.p(SQLERRM);
END;

Hi below is the code when execute goes into the infinite loop
Can any body throw light on this...
Regards,
Ranjit
CREATE OR REPLACE procedure draw_custom_login_page
site2pstoretoken in varchar2 default null
,p_error_code in varchar2 default null
,ssousername in varchar2 default null
,p_cancel_url in varchar2 default null
,p_submit_url in varchar2 default null
AS
var_bannergif                          varchar2(80);
var_bannertitle                     varchar2(4000);
var_bannerinfo                     varchar2(4000);
var_linkname                          varchar2(4000);
var_loginuser                     varchar2(4000);
var_loginpwd                     varchar2(4000);
var_loginbuttton                     varchar2(4000);
var_listlangcaption                    varchar2(4000);
var_optioneng                         varchar2(4000);
var_optionspanish                    varchar2(4000);
var_optionfrench                varchar2(4000);
p_nls_language                varchar2(5);
l_url                                   varchar2(4000);
l_language                               varchar(2000);
ex                                         exception;
BEGIN
     -- for setting the browser language
          begin
                    --if (owa_cookie.get('NLS_LANGUAGE').vals.count = 0) then
               -- if persistent NLS cookie is not found
               -- get the preferred browser language from environment
               --l_language := substr(wwctx_api.get_http_accept_language,0,2);
                              --else
                              --l_language:='us';
                    --end if;
                              l_language := substr(wwctx_api.get_http_accept_language,0,2);
                              l_url :='portal30_sso.draw_custom_login_page';
                              if (owa_cookie.get('NLS_LANGUAGE').vals.count = 0) then
                                   -- set portal language and redirect instead of just redirect
                                   wwctx_app_language.set_language(p_http_language =>
                                                  l_language,p_nls_language => wwnls_api.http_to_nls(l_language),
                                   p_nls_territory => wwnls_api.territory_from_http_language(l_language),p_requested_url => l_url);
                         else
                                   owa_util.redirect_url(l_url);
                    end if;
     exception
     when others then
               htp.p('Error Occurred');
     wwerr_api_error_ui.show_html;
          end;
     ----up to here
--for retrieving the NLS Language Equivalents
     begin
     var_bannergif                := portal30.wwnls_api.get_string('CBS','banner_uitext','banner_gif',wwctx_api.get_nls_language);
     var_bannertitle                := portal30.wwnls_api.get_string('CBS','banner_uitext','banner_message',wwctx_api.get_nls_language);
     var_bannerinfo                    := portal30.wwnls_api.get_string('CBS','banner_uitext','banner_info',wwctx_api.get_nls_language);
     var_linkname                    := portal30.wwnls_api.get_string('CBS','banner_uilink','link_name',wwctx_api.get_nls_language);
     var_loginuser                    := portal30.wwnls_api.get_string('CBS','banner_uilogin','login_name',wwctx_api.get_nls_language);
     var_loginpwd                    := portal30.wwnls_api.get_string('CBS','banner_uilogin','login_password',wwctx_api.get_nls_language);
     var_loginbuttton                := portal30.wwnls_api.get_string('CBS','banner_uilogin','login_button',wwctx_api.get_nls_language);
     --for filling up the list box
     var_listlangcaption          := portal30.wwnls_api.get_string('CBS','banner_listlang','listlang_caption',wwctx_api.get_nls_language);
     var_optioneng                    := portal30.wwnls_api.get_string('CBS','banner_listlang','listlang_optioneng',wwctx_api.get_nls_language);
     var_optionspanish               := portal30.wwnls_api.get_string('CBS','banner_listlang','listlang_optionspan',wwctx_api.get_nls_language);
     var_optionfrench           := portal30.wwnls_api.get_string('CBS','banner_listlang','listlang_optionfrench',wwctx_api.get_nls_language);
     end;
--Up to here
htp.p('<HTML>');
--htp.p('<FORM>');
htp.p('<HEAD><TITLE>'||var_bannertitle||'</TITLE>');
htp.p('<META content="text/html; charset=utf-8" http-equiv=Content-Type>');
htp.p('<STYLE>.bodytext {COLOR: black; FONT-FAMILY: Verdana,Arial,Helvetica; FONT-SIZE: 11pt; fontFamily: Verdana,Arial,Helvetica}');
htp.p('.header1 {');
     htp.p('FONT-FAMILY: Verdana,Arial,Helvetica; FONT-SIZE: 14pt; FONT-WEIGHT: bold; fontFamily: Verdana,Arial,Helvetica');
     htp.p('}');
     htp.p('.large {');
          htp.p('FONT-FAMILY: Verdana,Arial,Helvetica; FONT-SIZE: 18pt; FONT-WEIGHT: bold; fontFamily: Verdana,Arial,Helvetica}');
     htp.p('.small {');
          htp.p('FONT-FAMILY: Verdana,Arial,Helvetica; FONT-SIZE: 8pt; FONT-WEIGHT: normal; fontFamily: Verdana,Arial,Helvetica');
     htp.p('}');
     htp.p('</STYLE>');
     htp.p('<BODY leftMargin=0 topMargin=0 MarginWidth="0" MarginHeight="0"> ');
     htp.p('<TABLE background="/images/h_wave.gif" border=0 cellPadding=0 cellSpacing=0 width="100%">');
     htp.p('<TBODY>');
     htp.p('<TR>');
htp.p('<TD height=36>  </TD></TR></TBODY></TABLE>');
     htp.p('<TABLE border=0 cellPadding=7 cellSpacing=0 width="100%">');
     htp.p('<TR>');
htp.p('<TD height=36><IMG alt="" border=0 height=45 width=140 src="/images/'||var_bannergif||'"></TD>');
     htp.p('<TD height=36 align=right valign=top>');
     htp.p('<form name="cbs_language_select" action="PORTAL30_SSO.wwctx_app_language.set_language" method="POST">');
     htp.p('<input type="hidden" name="p_http_language" value="">');
htp.p('<input type="hidden" name="p_nls_territory" value="">');
htp.p('<input type="hidden" name="p_requested_url" value="portal30_sso.draw_custom_login_page">');
     htp.p('<select name=p_nls_language value="null" onChange="javascript:fn_cbs_lang_submit(p_nls_language)">');
     htp.p('<option selected>'||var_listlangcaption||'</option>');
     htp.p('<option value="us">'||var_optioneng||'</option>');
     htp.p('<option value="e">'||var_optionspanish||'</option>');
     htp.p('<option value="f">'||var_optionfrench||'</option>');
     htp.p('</select>');
     htp.p('</form>');
     htp.p('</TD> ');
     htp.p('</TR></TBODY></TABLE>');
     --htp.p('<DIV align=center>');
     htp.p('<TABLE border=0 cellPadding=5 cellSpacing=6 width=100%>');
     htp.p('<TBODY>');
     htp.p('<TR>');
     htp.p('<TD border=0 width=30%> </TD>');
     htp.p('<TD width=50%><span class=large>'||var_bannertitle||'</span>');
          htp.p('<P class=bodytext>'||var_bannerinfo||'<P>');
     --htp.p('Oracle''s financial applications to leverage the power of a single');
     --htp.p('integrated database with common data standards and core processes. This');
     --htp.p('tool empowers employees at their desktops, enabling them to requisition');
     --htp.p('goods and services, as well as pay bills and personal expenses online via');
     --htp.p('a Web browser.');
     htp.p(''||var_linkname);
     htp.p('');
     htp.p('<P align=center><A');
          htp.p('href="https://p2pweb1d.nj.ssmb.com:3043/pls/p2pdb30_portal30_sso"');
          htp.p('</TD>');
     --htp.p('<TD class=bodytext height=25>  </TD>');
     htp.p('<TD width=20% valign=top align=right >');
                    htp.p('<TABLE cellpadding=5 BGCOLOR="#F2F2F2"');
                    htp.p('<TR><TD align=right>');
                    htp.p('<p class=small><b>'||var_loginuser||'</b> <input class=small type=text size=15 name=user value="">');
                    htp.p('<P class=small><b>'||var_loginpwd||'</b> <input class=small type=password size=15 name=password value="">');
                    htp.p('</TD></TR>');
                    htp.p('<TR><TD align=right>');
                    htp.p('<input class=small type=button size=15 name=cmd_login value='||var_loginbuttton||'>');
                    htp.p('</TD></TR>');
                    htp.p('</TABLE>');
          htp.p('</TD>');
     htp.p('</TR></TBODY></TABLE>');
          --htp.p('</DIV>');
          htp.p('</BODY>');
          --htp.p('</FORM>');
          htp.p('</HTML>');
          htp.p('<SCRIPT language=JavaScript>');
                         htp.p('var l_http_language = new Array()');
                         htp.p('var l_nls_territory = new Array()');
                    htp.p('l_http_language[1] = "en"');
                    htp.p('l_nls_territory[1] = "AMERICA"');
                    htp.p('l_http_language[2] = "fr"');
                    htp.p('l_nls_territory[2] = "FRANCE"');
                    htp.p('l_http_language[3] = "de"');
                    htp.p('l_nls_territory[3] = "GERMANY"');
                    htp.p('l_http_language[4] = "ja"');
                    htp.p('l_nls_territory[4] = "JAPAN"');
                    htp.p('l_http_language[5] = "es"');
                    htp.p('l_nls_territory[5] = "SPANISH"');
                                             htp.p('function fn_cbs_lang_submit(field){');
                                                            --htp.p('alert (document.cbs_language_select.p_http_language.value)');
                                                  htp.p('if ( field.selectedIndex != 0 )');
                                                  htp.p('{');
                                                  htp.p('document.cbs_language_select.p_http_language.value = l_http_language[field.selectedIndex]');
                                                            htp.p('document.cbs_language_select.p_nls_territory.value = l_nls_territory[field.selectedIndex]');
                                                  htp.p('document.cbs_language_select.submit();');
                                                  htp.p('}');
                                                                                          htp.p('}');
          htp.p('</SCRIPT>');
          exception when others then
          htp.p(l_language);
          htp.p(SQLCODE);
          htp.p(SQLERRM);
END;

Similar Messages

  • Paint() method is in infinite loop when focus is set to JTextPane

    Hi All,
    I am creating one JScrollPane, JPanel and JTextPane. JPanel is added to JScrollPane and JTextPane is added to JPanel. If I override paint() method in JPanel, its in infinite loop. I don't know why it is behaving like this. Can anyone solve my problem. Since, I am doing so much drawings in paint() method, its getting to slow.
    Here is the code what I wrote.
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TestTextPane1 extends JFrame {
         JPanel panel;
         JScrollPane pane;
         public TestTextPane1() {
              panel = new JPanel(new BorderLayout()) {
                   public void paint(Graphics g) {
                        super.paint(g);
                        System.out.println("inside paint");
              JTextPane textPane = new JTextPane();
              panel.add(textPane);
              pane = new JScrollPane(panel);
              getContentPane().add(pane);
              setSize(300, 200);
              setVisible(true);
         public static void main(String [] args) {
              new TestTextPane1();
    Any help will be useful for me.
    Regards
    Kishore.

    What are you trying to do? You are adding the textPane to the panel and then overriding the paint() method. The textPane will never be painted if you do this.
    In Swing, you should override the paintComponent() method, not the paint() method. See the Swing tutorial on Painting:
    http://java.sun.com/docs/books/tutorial/uiswing/overview/draw.html
    Don't forget to read the "Working With Graphics" link at the bottom.

  • I just noticed you can't right click icons in the dock when in Mission Control. I think this would be useful for turning off other apps easilt from full screen mode.

    Would anyone else find this useful?

    For me no. I think it's just as much or more effort as cmd-tab (or swipe) to the open app and then cmd-q to close it.

  • Infinite loop when trying to purchase a subscription in the sandbox environment

    We have set up a newsstand app with subscription functionality. We are testing the subscription functionality by using test users that have been set up in itunesconnect. When testing, we find that we get into an infinite loop when trying to subscribe to a magazine. After getting the pop-up to validate payment information, we are directed to the app store with a grey box, that looks like it should contain purchase information, but the page keeps reloading and we never get the option to enter this info. Finally a message appears that says the this is a test environment. I have included some screenshots below. Any thoughts?

    I was able to unzip the file "Adobe Creative Suite 6 Design & Web Premium MAC.zip" using stuffit expander, free from www.stuffit.com.  I am not sure why the expander native in Mac OSX v 10.9 ("Archive Utility.app") wasn't able to do this (I tried repeatedly for 2 days).  But stuffit expander worked fine and now the software is running...

  • Write a program to terminate the infinite loop when i enter any key

    Hi ,please tell me the program to terminate the infinite loop when i enter any key in the keyboard

    DarrylBurke wrote:
    mreddy, it's good to see the aliens returned you to Earth, even if it took them 2 years 4 monthslol ...
    to the OP ... you cannot do it ... unless ... you envoke swings or awt and add keylisteners . the only other way to accomplish this is using 3rd party libraries , like Jcurses ...
    [http://javacurses.sourceforge.net/]
    more specifically you can use jcurses.system.InputChar class to do what you want ...
    another way to do it is my making your console(terminal) communicate with your program for every character that you press.
    on linux you can use the stty command.
    stty -icanon

  • I am getting an un expected error message when updating the setting to "extend network".  Is there an obvious setting I may be missing?  Cisco router being used.

    I am getting an un expected error message when updating the setting to "extend network".  Is there an obvious setting I may be missing?  Cisco router being used.

    If you are trying to "extend" using wireless only, you may not be aware that Apple designed the "extend" feature as a proprietary setting to only work with other Apple routers.
    It is extremely unlikely that this will work with a Cisco router.
    If your plans call for connecting the AirPort Express to the Cisco router using a wired Ethernet connection, it should be possible to configure the Express that way.

  • Using the Set Session Info to populate Custom Variable

    Hey everybody, I'm trying to setup a Set Session Info step so when a caller presses 1 for instance to go to a specific department I can go into the database and see how many callers pressed a certain button.
    Here's what I've done so far, I've setup a Session called session_info with the value of null.  At the very beginning of the script it shows session_info = Get Contact Info --Triggering Contact--, Session)
    Then in the menu field when a caller presses 1 I have the Set Session Info step with the Session being session_info and then in the Context tab I have "_ccdrVar3" for the name and "1" for the value.
    The script doesn't fail it's just not populating any Custom Variable with any data. 
    Also I've tried using the Set Enterprise Call Info and using a value of 1 and then Call.PeripheralVariable3 for the name.  Not sure what the proper way to do this is.  Anybody have any ideas?

    Hi
    You don't need a session var.
    You just need to use 'set enterprise data' to set a call.peripheralvariable to what you like.
    The data goes straight into the contactcalldetail table.. You can check it by doing:
    run uccx sql db_cra select * from contactcalldetail where customvariableX = 'yoursetting'
    Where 'yoursetting' is what you set the ent data to, and customvariableX is the var you use (e.g. customvariable3 if you use call.peripheralvariable3)
    Regards
    Aaron
    Please rate helpful posts..

  • I tried to import a PDF of a line drawing into Photoshop Elements. The thumbnail looks fine, but when imported the file is empty. This used to work in the past. What is wrong and how do I solve this?

    I tried to import a PDF of a line drawing into Photoshop Elements. The thumbnail looks fine, but when imported the file is empty. This used to work in the past. What is wrong and how do I solve this?

    Hi
    The value of the Channel Strip volume etc is not stored within the C Strip setting, as you have discovered.
    If you really wanted, you could add a Gain plug to the strip, with it set to give the correct output level with the Fader set to 0
    (Or just set the fader manually in MS)
    CCT

  • How to use the set functions effectively in webi ,please let me know with detail

    how to use the set functions effectively in webi ,please let me know with detail

    Hi,
    we use use set functions on heirarchies with aggregate functions mostly .
    If you include member_set, Min returns the minimum value of the aggregated data for all members in the member set.
    Member_set can include multiple sets separated by semicolons (;).
    The list of member sets must be enclosed in {}.
    If the member set expression does not specify a precise member or node, the hierarchy referenced must be present in the table, then the member set expression references the current member in the hierarchy in the table. If the hierarchy is not in the table, the function returns the message #MULTIVALUE.
    Eg .
    1)     Ancestor
    =Sum([YTD] ; {Ancestor([Test Hierarchy];2)})
    2)     IsLeaf
    =[Test Hierarchy].IsLeaf
    You can use this function when you want to show your Measure only at lower level .
    3)     .Depth
    =[Test Hierarchy].Depth
    This is also function used with hierarchy to find Level of Members .
    Follow this link for PDF reference .
    Page 147
    https://www.google.co.in/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&cad=rja&ved=0CDIQFjAB&url=https%3A%2F%2Fhelp.sap.com%2Fbusinessobject%2Fproduct_guides%2Fboexir4%2Fen%2Fxi4sp5_ffc_en.pdf&ei=nBAUU-iUM4WWrAeMuoCoDg&usg=AFQjCNHakXsEjd_yUk2y3lVdibf3PXpEOA&bvm=bv.61965928,d.bmk
    search on SCN this question was discussed before also one those links .
    http://scn.sap.com/thread/3183380
    Hope this will help you .

  • How to use the set full screen mode ?

    hai...i' a newbie ..i hav one question ...how to use the set full screen mode for my application..
    i found.
    public void setfullscreenmode (boolean mode)
    but when try in my application it error and other
    canvas.setfullscreenmode(true);
    actually i don't know where i should put this code

    i also found the coding it use like
    setFullScreenMode (true);
    but when i apply it ..it error because cannot resolve the symbol.
    my question is which one i should use; declare the
    public void setFullScreenMode (boolean mode);
    first or use
    setFullScreenMode (true) ;
    or other way ..what i need to do to use setFullScreenMode

  • I am using the wrong language to access a secure website. How can I change it to English?

    I am trying to access my university account from a computer in Germany and while I can access some features, such as e-mail, it is not allowing me access to my secure faculty account. The message I am getting is that I am using the wrong language, i.e. German, to access my account. How can I change the language to English, since the computer automatically uses German.

    Put the link of the website into Google translate at [http://translate.google.com/#de|en|], then click the translate button. You will then get a link on the right hand side of the page which will take you to a translated version of the page.

  • I have a iphone 5 and I can login with my apple id to purchase music. However, when I try to login into icloud using the very same username and password that I use in the apple store it does not work to enter icloud, so what what gives???

    I have a iphone 5 and I can login with my apple id to purchase music. However, when I try to login into icloud using the very same username and password that I use in the apple store it does not work to enter icloud, so what what gives???

    I could do that, however when I select the icloud button (or whatever the heck it is) I am asked to enter the apple id and password. So if you are suppose to create another one for icloud you'd think it would give you the option at this point which would be logical.

  • Is there a way to transfer or copy all my apps to another iPad with a different account? I was required in my job to use the one at work, but I would like to also see my current set ups and apps as in my personal one. Thank you so much!

    Is there a way to transfer or copy all my apps to another iPad with a different account? I was required in my job to use the one at work, but I would like to also see my current set ups and apps as in my personal one. Thank you so much!

    What I suggest is that you try to pair your apple ID with you company ipad and see if it works.
    Here is why::
    I believe that the Apple rules let you. They are something like:
    -- for a shared iDevice, you may put the app on one device
    -- for a device you use exclisively, you may put the app on five (or some number) of iDevices
    I'm not lawyer, so how you interpred this is a question.
    Now, you need to figure out how to do this.
    In the past at least, apple used this terminalogy.
        Personal
        Institution
        Layered. combines personal & institution.
    It depends on how your company has configured the iPad.
    I have read where you can have upto three apple id per device.

  • I had set my phone to use the pattern screen lock but now it is asking for a PIN.

    I had set my phone to use the pattern screen lock but now it is asking for a PIN.
    I turned my phone on this morning and instead of the pattern lock that I've been using with this phone since I purchased it, it is now asking for a PIN that I do not know.
    I contacted Samsung but they told me that my carrier would be able to reset the PIN for me remotely. I've been trying to find a way to chat with Verizon support but it keeps sending me to self help troubleshooting. It was so easy to get a live person on Samsung support, how do I get a real person on Verizon?
    Thanks

    Thanks deb2too, I'll keep the number for future reference. I was able to unlock the phone via https://www.google.com/android/devicemanager

  • I have been having a issue with getting the colors on my monitor to match the colors fro my print lab. I now have the monitor calibrated to match the prints but when I open elements it doesn't use the same colors. If i have it use the calibrated profile b

    I have been having a issue with getting the colors on my monitor to match the colors fro my print lab. I now have the monitor calibrated to match the prints but when I open elements it doesn't use the same colors. If i have it use the calibrated profile by changing the color management settings, the color picker no longer shows true white or black. How do I get elements 12 to honor the new calibrated settings?

    Ok so I've done what you said and this is what it's come back ....
    I don't know that these are the errors , but they're the things which don't look right ...
    Throughout the shut down there is a recurring line ;
    It says ;
    Com.apple.launchd 1 0x100600e70.anonymous.unmount 301 PID still valid
    Then there are 2 more which I think are related ;
    Com.apple.securityd 29 PID job has I overstayed its welcome , forcing removal.
    Then the same with fseventd 48 and diskarbitrationd 13
    Oh and on Launchd1 : System : stray anonymous job at shut down : PID 301 PPID13 PGID 13 unmount...
    Then the last process says "about to call: reboot (RB_AUTOBOOT).
    Continuing...
    And stops ...
    Hope this means something to you ... Thanks again for your help so far :-)

Maybe you are looking for

  • FPGA Compile error - Actual of formal out port cout cannot be an expression

    Details: ERROR:HDLCompiler:192 - "C:\NIFPGA\jobs\BPO5kq2_O6tyN2U\OC4_Sine_Cosine_LUT_Constant_Amplitude_dash_optimised_vi_c.vhd" Line 1408: Actual of formal out port cout cannot be an expression ERROR:HDLCompiler:854 - "C:\NIFPGA\jobs\BPO5kq2_O6tyN2U

  • AC20000027 - Element PURCHASINGCONTRACT is not available in the container

    Hi Experts, I created the simple WF. Start event - RELEASESTEPCREATED, object - BUS2012. WF have one step, task - "TS20000166 Release of purchase order". When I start my workflow in test run the status is set to "error" - "Element PURCHASINGCONTRACT

  • New Web Template: Slimbox for Lightroom!

    I've produced a new gallery template for Lightroom's Web module using Slimbox, a very nice Lightbox clone. Check it out: http://theturninggate.com/blog/adobe-lightroom-slimbox-template Matt

  • External clock

    Hi, when Using the Cont Acq&Graph Voltage-Ext Clk.vi i have Rate and Samples to read controls. Is that means that evry time my external clock rise (for example) the Acq is done by a sorce clock inside the daq card at the sample rate value is what Rat

  • Can I change the time/duration in a batch way instead of one by one?

    I am using Premiere Pro CS3 and I would like to have 7 seconds per photo and not the default of 5 seconds.  I know you can do each photo separately, by would love a batch performance.  Thanks,  Michele