Not able to see the output in sost when sending the image in email body

I am sending the image in email body and when m trying to see the output in SOST then it showing a page 'you are not connected to the internet'
I am able to see the output when m saving local objects but when m saving it in some package its showing me this page
Kindly help it
Regards
Pratham Kapoor

Hello Prakash,
Thanks for the reply
I am able to see the mail in SOST but when I click on the Display Document to see the content of the mail then I am getting this error of 'you are not connected to the internet'
My Program is to put the logo in my email body
I am sending you the attached image

Similar Messages

  • Not able to see list of Plan applications when click on Navigate- Applica

    Hi,
    Somehow I am not able to see list of Planning applications when clicking on on Navigate->Applications->Planning from Workspace within Planning 9.3.1. Is there an Internet settings that I would need to change in order to see the list of applications. It seems like there are something disabled within my internet options or within my preferences.
    Could someone please help?
    Thanks.

    Hi,
    Is it just yourself that is experiencing this issue.
    Are you using IE7, If so
    Tools -> Internet Options -> Security -> Custom Level -> Allow script-initiated windows without size or position constraints
    Otherwise it could be that you have not been given access.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Not able to see max, pref and timeout value in the debug output

    Hi,
    I have enable connection pooling for the ldapcontext. and have set init, pref and max pool size as 1,3,5 respectively.
    However when i am running this program i am getting following output...
    Also it is returning me busy connections some times?
    I am using auth type as 'none simple' and protocol as 'plain'. [i am using jdk 1.5.0_2].
    What can be the problem?
    =======
    ***** start *****
    idle timeout: 0
    maximum pool size: 0
    preferred pool size: 0
    initial pool size: 1
    protocol types: plain
    authentication types: none simple
    anonymous pools:===== Pool start ======================
    maximum pool size: 0
    preferred pool size: 0
    initial pool size: 1
    current pool size: 0
    ====== Pool end =====================
    simple auth pools:
    ===== Pool start ======================
    maximum pool size: 0
    preferred pool size: 0
    initial pool size: 1
    current pool size: 0
    ====== Pool end =====================
    ***** end *****
    LdapPoolManager: using authmech: none
    com.sun.jndi.ldap.pool.Pool@14693c7 {}.get(): ldap.openldap.org:389:plain:
    =======

    Hello Prakash,
    Thanks for the reply
    I am able to see the mail in SOST but when I click on the Display Document to see the content of the mail then I am getting this error of 'you are not connected to the internet'
    My Program is to put the logo in my email body
    I am sending you the attached image

  • Not able to see full output when run in backgroun

    This is a continuation of my question I previously asked:
    I was trying to write a simple list with lot of headings.
    For example:
    WRITE: /6 'TitleA', 29 'TitleB', 55 'TitleC', 80 'TitleD', 106 'TitleE',
    131 'TitleF', 157 'TitleG', 172 'TitleH', 198 'TitleI'.(it goes upto 400 characters)
    I could not see the list titles after a particular length. So, I adjusted the settings to more than 255 in the report title and yes I can see the full output now. But I can not see the full output (and not able to print full) when I run the report in background.
    So what can I do to see (and able to print) the full output even when I run in background or normal mode? I think there should be some solution for this.
    Thanks.

    Hi,
    Execute this report with spool number. this program will increase the width of the spool.it is SAP utility program.
    Laxman
    *& Report  Y_SPOOL_WIDTH_INCRESE                                       *
    REPORT  y_spool_width_increse     LINE-SIZE 80.              .
    This is a SAP utility report to allow display of
    spool request lists with more than 255 columns in
    releases 4.6B and 4.6C (4.6D kernel must be used)
    PARAMETERS: rqident LIKE tsp01-rqident,
                firstl TYPE i DEFAULT 0,
                lastl TYPE i DEFAULT 0.
    global data from LSPOXTOP
    DATA: rc(10) TYPE c,
    errmsg(100) TYPE c,
    status LIKE sy-subrc,
    dsn_type(8) TYPE c.
    DATA: BEGIN OF data_set_line,
    data_length(5),
    precol(1),
    DATA_LINE(1000),
    data_line(5000), "MODAB
    END OF data_set_line,
    data_set_length(5) TYPE c.
    TABLES: tsp01, tst05, tspoptions.
    DATA: temse_name LIKE tst01-dname,
    temse_client LIKE tst01-dclient,
    temse_handle LIKE rststype-handle,
    temse_part LIKE tst01-dpart,
    temse_objtyp LIKE tst01-dtype,
    temse_rectyp LIKE rststype-rectyp,
    temse_charco LIKE tst01-dcharcod.
    DATA: is_otf.
    global data from LSPOCTOP
    DATA: BEGIN OF spoc
    , escape
    , prtctrl
    , first_bytes(4) " collection of the first bytes of the
    " escape sequences, which I am searching for.
    , prtctrl_start_length TYPE i
    , prtctrl_total_length TYPE i
    , prtctrl_start(10)
    , symbol_low_start(10)
    , symbol_hgh_start(10)
    , symbol_start_length TYPE i
    , icon_start(10)
    , icon_start_length TYPE i
    , icon_sel TYPE i VALUE 1
    , frame_start(10)
    , frame_start_length TYPE i
    , END OF spoc.
    FIELD-SYMBOLS:  TYPE c
    copied from RSPO_DISPLAY_ABAP_SPOOLJOB
    DATA: buffer LIKE data_set_line OCCURS 1000.
    TABLES: tsp02l.
    SELECT SINGLE * FROM tsp01 WHERE rqident = rqident.
    IF sy-subrc <> 0.
      WRITE: / 'Spool request does not exist:'(001), rqident.
      EXIT.
    ENDIF.
    CALL FUNCTION 'RSPO_CHECK_JOB_PERMISSION'
      EXPORTING
        access        = 'DISP'
        spoolreq      = tsp01
      EXCEPTIONS
        no_permission = 1
        OTHERS        = 2.
    IF sy-subrc <> 0.
      WRITE: / 'No authorization to display'(002).
      EXIT.
    ENDIF.
    PERFORM read_data TABLES buffer
    USING tsp01 firstl lastl.
    IF sy-subrc <> 0.
      WRITE: / 'Error reading spoolo request'(003).
      EXIT.
    ENDIF.
    IF is_otf = 'X'.
      WRITE: / 'This spool request is not an ABAP list'(004).
      EXIT.
    ENDIF.
    PERFORM display_data TABLES buffer USING tsp01-rqpaper tsp01-rqident.
    FORM get_spool_line.
      DO.
        IF temse_rectyp+1(1) = 'Y'.
          CALL 'C_RSTS_READ'
          ID 'HANDLE' FIELD temse_handle
          ID 'BUFF' FIELD data_set_line
    ID 'BUFFLG' FIELD 1006
          ID 'BUFFLG' FIELD 5006 "MODAB
          ID 'ALLINE' FIELD 'X'
          ID 'BINARY' FIELD ' '
          ID 'SHOWLG' FIELD 'X'
          ID 'RC' FIELD rc
          ID 'ERRMSG' FIELD errmsg.
          status = sy-subrc.
        ELSE.
          CALL 'C_RSTS_READ'
          ID 'HANDLE' FIELD temse_handle
          ID 'BUFF' FIELD data_set_line+1
    ID 'BUFFLG' FIELD 1005
          ID 'BUFFLG' FIELD 5005 "MODAB
          ID 'ALLINE' FIELD 'X'
          ID 'BINARY' FIELD ' '
          ID 'SHOWLG' FIELD 'X'
          ID 'RC' FIELD rc
          ID 'ERRMSG' FIELD errmsg.
          status = sy-subrc.
          data_set_line(5) = data_set_line+1(5).
          data_set_line-precol = ' '.
          ADD 1 TO data_set_line-data_length.
        ENDIF.
        status = sy-subrc.
        IF status <> 6. " EOF, error condition, or got data
          EXIT.
        ENDIF.
    end of this part, try to open next part
        ADD 1 TO temse_part.
        CALL 'C_RSTS_CLOSE'
        ID 'HANDLE' FIELD temse_handle
        ID 'RC' FIELD rc
        ID 'ERRMSG' FIELD errmsg.
        status = sy-subrc.
        IF status = 0.
          CALL FUNCTION 'RSTS_GET_ATTRIBUTES'
          EXPORTING
          authority = 'SP01'
          client = temse_client "hjl
          name = temse_name
          part = temse_part
          IMPORTING
          charco = temse_charco
    CREATER =
    CREDATE =
    DELDATE =
    MAX_CREDATE =
    MAX_DELDATE =
    NON_UNIQ =
    NOOF_PARTS =
          rectyp = temse_rectyp
    SIZE =
    STOTYP =
    type =
          objtype = temse_objtyp
          EXCEPTIONS
          fb_error = 1
          fb_rsts_other = 2
          no_object = 3
          no_permission = 4
          OTHERS = 5.
          status = sy-subrc.
        ENDIF.
        IF status = 0.
          CALL 'C_RSTS_OPEN_READ'
          ID 'HANDLE' FIELD temse_handle
          ID 'CLIENT' FIELD temse_client "hjl
          ID 'NAME' FIELD temse_name
          ID 'PART' FIELD temse_part
          ID 'TYPE' FIELD temse_objtyp
          ID 'CONV' FIELD ' '
          ID 'ALLINE' FIELD 'X'
          ID 'BINARY' FIELD ' '
          ID 'RECTYP' FIELD temse_rectyp
          ID 'CHARCO' FIELD temse_charco
          ID 'PROM' FIELD 'I'
          ID 'RC' FIELD rc
          ID 'ERRMSG' FIELD errmsg.
          status = sy-subrc.
        ENDIF.
      ENDDO.
      IF status = 4.
        status = 12. "EOF
      ENDIF.
      IF status = 8.
        status = 40. "Line too long
      ENDIF.
      data_set_length = data_set_line-data_length.
    ENDFORM.                    "GET_SPOOL_LINE
    *&      Form  READ_DATA
          text
         -->BUFFER     text
         -->TSP01      text
         -->VALUE(FIRSTtext
         -->VALUE(LAST)text
    FORM read_data TABLES buffer
    USING tsp01 LIKE tsp01 value(first) TYPE i
    value(last) TYPE i.
      DATA: lines TYPE i.
      REFRESH buffer.
      CLEAR is_otf.
      temse_client = tsp01-rqclient.
      temse_name = tsp01-rqo1name.
      temse_part = 1.
      CALL FUNCTION 'RSTS_GET_ATTRIBUTES'
      EXPORTING
      authority = 'SP01'
      client = temse_client
      name = temse_name
      part = temse_part
      IMPORTING
      charco = temse_charco
    CREATER =
    CREDATE =
    DELDATE =
    MAX_CREDATE =
    MAX_DELDATE =
    NON_UNIQ =
    NOOF_PARTS =
      rectyp = temse_rectyp
    SIZE =
    STOTYP =
    type =
      objtype = temse_objtyp
      EXCEPTIONS
      fb_error = 1
      fb_rsts_other = 2
      no_object = 3
      no_permission = 4
      OTHERS = 5.
      IF sy-subrc = 0.
        IF temse_objtyp(3) = 'OTF'.
          is_otf = 'X'.
        ENDIF.
      ELSE.
        EXIT.
      ENDIF.
      CLEAR temse_handle.
      CALL 'C_RSTS_OPEN_READ'
      ID 'HANDLE' FIELD temse_handle
      ID 'CLIENT' FIELD temse_client "hjl
      ID 'NAME' FIELD temse_name
      ID 'PART' FIELD temse_part
      ID 'TYPE' FIELD temse_objtyp
      ID 'CONV' FIELD ' '
      ID 'ALLINE' FIELD 'X'
      ID 'BINARY' FIELD ' '
      ID 'RECTYP' FIELD temse_rectyp
      ID 'CHARCO' FIELD temse_charco
      ID 'PROM' FIELD 'I'
      ID 'RC' FIELD rc
      ID 'ERRMSG' FIELD errmsg.
      status = sy-subrc.
      IF status = 0.
        DO.
          PERFORM get_spool_line.
          IF status <> 0 AND status <> 40 AND status <> 12.
            PERFORM close_job.
            EXIT.
          ENDIF.
          IF status <> 12.                                      " 12 = End
            IF NOT ( data_set_length IS INITIAL ).
              data_set_line-data_length = data_set_length - 1.
            ENDIF.
            ADD 1 TO lines.
            IF lines >= first.
              APPEND data_set_line TO buffer.
            ENDIF.
            IF ( NOT last IS INITIAL ) AND ( lines >= last ).
              EXIT.
            ENDIF.
          ELSE.
            IF lines = 0.
              PERFORM close_job.
              EXIT.
            ENDIF.
            IF lines < first .
              PERFORM close_job.
              EXIT.
            ENDIF.
            EXIT.
          ENDIF.
        ENDDO.
        PERFORM close_job.
      ENDIF.
    ENDFORM.                    "READ_DATA
    FORM CLOSE_JOB *
    FORM close_job.
      IF status <> 0 AND status <> 12.
        CALL 'C_RSTS_CLOSE'
        ID 'HANDLE' FIELD temse_handle
        ID 'RC' FIELD rc
        ID 'ERRMSG' FIELD errmsg.
        MESSAGE e112(po) WITH status rc errmsg RAISING read_error.
      ENDIF.
      CALL 'C_RSTS_CLOSE'
      ID 'HANDLE' FIELD temse_handle
      ID 'RC' FIELD rc
      ID 'ERRMSG' FIELD errmsg.
      status = sy-subrc.
      IF status <> 0.
        MESSAGE e112(po) WITH status rc errmsg RAISING read_error.
      ENDIF.
    ENDFORM.                    "CLOSE_JOB
    *&      Form  DISPLAY_DATA
          text
         -->BUFFER     text
         -->RQPAPER    text
         -->RQID       text
    FORM display_data TABLES buffer USING rqpaper LIKE tsp01-rqpaper
    rqid LIKE tsp01-rqident.
      DATA: line_length TYPE i, gcol TYPE i, glines TYPE i,
      line_length2 LIKE rststype-linelength,
      v, v2.
    CALL FUNCTION 'RSPO_SPOOLDATA_WRITE_INIT'.
      PERFORM spooldata_write_init. "MODAB
    select single * from tspoptions where spoption = 'REALWIDTH'.
    if sy-subrc = 0.
      v = 'X'.
    endif.
    select single * from tspoptions where spoption = 'REALHEIGHT'.
    if sy-subrc = 0.
      v2 = 'X'.
    endif.
      IF NOT v IS INITIAL OR NOT v2 IS INITIAL.
        gcol = 0.
        glines = 0.
        SELECT SINGLE * FROM tsp02l WHERE pjident = rqid
        AND pjnummer = 0.
        IF sy-subrc = 0.
          gcol = tsp02l-columns.
          glines = tsp02l-lines.
        ELSE.
          CALL FUNCTION 'RSPO_GET_SIZE_OF_LAYOUT'
          EXPORTING
          layout = rqpaper
          IMPORTING
    ANSWER =
          columns = gcol
          lines = glines
    PFORMAT =
        ENDIF.
      ENDIF.
      IF gcol < 80 OR v IS INITIAL.
        gcol = 255.
      ENDIF.
      IF glines < 5 OR v2 IS INITIAL.
        glines = 0.
      ENDIF.
      IF gcol >= 1024. "MODAB
        gcol = 1023.
      ENDIF.
      NEW-PAGE NO-HEADING NO-TITLE LINE-SIZE gcol
      LINE-COUNT glines. " make a wide list
      SET BLANK LINES ON.
      LOOP AT buffer.
        data_set_line = buffer.
        IF data_set_line-precol = 'P'.
          IF data_set_line(1) = ' '. " Echter Vorschub ?"
            NEW-PAGE.
          ENDIF.
          CONTINUE.
        ENDIF.
    Zeilenlänge berechnen, falls unbekannt.
        IF data_set_line-data_length IS INITIAL.
          line_length = STRLEN( data_set_line-data_line ).
        ELSE.
          line_length = data_set_line-data_length.
        ENDIF.
        IF line_length > 0.
          line_length2 = line_length.
          PERFORM spooldata_write USING data_set_line-data_line "MODAB
          line_length2
          1.
        ELSE.
          " Leerzeile
          SKIP.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    "DISPLAY_DATA
    copied from RSPO_SPOOLDATA_WRITE
    FORM spooldata_write USING value(spool_data)
    value(data_length) LIKE rststype-linelength
    value(start_pos) LIKE sy-colno.
    function globals
      DATA: lpos LIKE sy-colno
            , rest_len TYPE i
            , area_len TYPE i
            , next_hot TYPE i " offset of next special character
            , cols TYPE i " columns used by special character
            , bytes TYPE i " bytes used by special character
            , hot2
            , hot3
            , hot4
            , hot5
            , hot6
            , hot7
            , BEGIN OF escape_trick
            , x1(1) TYPE x
            , END OF escape_trick
            , the_prtctrl(5) TYPE c
    Because of a problem within the ABAP listprocessing, I shall
    never output the same icon side by side with the same color
    and without a gap.
    As I don't know the data, I will use two different variables
    alternatively.
            , icon_id1 LIKE icons-l4
            , icon_id2 LIKE icons-l4.
      FIELD-SYMBOLS:
      IF start_pos < 2.
    write at / ' ' no-gap.
        NEW-LINE.
        lpos = 1.
      ELSE.
        lpos = start_pos.
      ENDIF.
      rest_len = STRLEN( spool_data ).
      DESCRIBE FIELD spool_data LENGTH area_len IN CHARACTER MODE.
      IF data_length = 0.
        " fine.
      ELSEIF data_length .
    MODAB
          PERFORM write_bigfield USING
          next_hot
          lpos.
    WRITE AT LPOS <PLAIN_TEXT> NO-GAP.
          ADD next_hot TO lpos.
          SUBTRACT next_hot FROM rest_len.
          ASSIGN +6(1).
              ELSE.
                hot7 = '?'.
              ENDIF.
            ELSE.
              hot6 = '?'.
            ENDIF.
          ELSE.
            hot5 = '?'.
          ENDIF.
          IF hot5 = space.
            IF hot6 = space.
              IF hot7 = space.
                IF spoc-icon_sel = 1.
                  WRITE AT lpos(4) icon_id1 AS ICON.
    write at lpos icon_id1 as icon no-gap.
                ELSE.
                  WRITE AT lpos(4) icon_id2 AS ICON.
    write at lpos icon_id2 as icon no-gap.
                ENDIF.
                cols = 4.
                bytes = 7.
              ELSE.
                IF spoc-icon_sel = 1.
                  WRITE AT lpos(3) icon_id1 AS ICON.
    write at lpos icon_id1 as icon no-gap.
                ELSE.
                  WRITE AT lpos(3) icon_id2 AS ICON.
    write at lpos icon_id2 as icon no-gap.
                ENDIF.
                cols = 3.
                bytes = 6.
              ENDIF.
            ELSE.
              IF spoc-icon_sel = 1.
                WRITE AT lpos(2) icon_id1 AS ICON.
    write at lpos icon_id1 as icon no-gap.
              ELSE.
                WRITE AT lpos(2) icon_id2 AS ICON.
    write at lpos icon_id2 as icon no-gap.
              ENDIF.
              cols = 2.
              bytes = 5.
            ENDIF.
          ELSE.
            "rite at lpos(1) icon_id as icon.
            WRITE AT lpos(1) '#' NO-GAP. " Not enough space for any icon.
            cols = 1.
            bytes = 4.
          ENDIF.
        ENDIF.
        IF .
        ELSE.
          EXIT.
        ENDIF.
      ENDWHILE.
    MODAB
      IF rest_len > 0.
        ASSIGN
        rest_len
        lpos.
      ENDIF.
    ENDFORM.                    "SPOOLDATA_WRITE
    *&      Form  WRITE_BIGFIELD
          text
         -->VALUE(FIELDtext
         -->VALUE(LEN) text
         -->VALUE(POS) text
    FORM write_bigfield USING value(field) TYPE c
    value(len)
    value(pos).
      FIELD-SYMBOLS
    DATA: chunk TYPE i.
    WHILE len > 0.
    IF len > 255.
    chunk = 255.
    ELSE.
    chunk = len.
    ENDIF.
    WRITE AT pos field(chunk) NO-GAP.
    ADD chunk TO pos.
    len = len - chunk.
    IF len >
    0.
          field = field+chunk.
        ENDIF.
      ENDWHILE.
    ENDFORM.                    "WRITE_BIGFIELD
    *&      Form  SPOOLDATA_WRITE_INIT
          text
    FORM spooldata_write_init.
      DATA: BEGIN OF escape_trick
      , x1(1) TYPE x
      , END OF escape_trick
      FIELD-SYMBOLS: .
      spoc-first_bytes+0(1) = spoc-prtctrl_start(1).
      spoc-first_bytes+1(1) = spoc-frame_start(1).
      spoc-first_bytes+2(1) = spoc-icon_start(1).
      spoc-first_bytes+3(1) = spoc-symbol_low_start(1).
    ENDFORM.                    "SPOOLDATA_WRITE_INIT

  • Not able to see PO text in prinout when printed after any change.

    When I make any change in PO (e.g. Quantity, price, delivery date), and take printout, I don't see text (item level). But when it was printed first time, I can see all texts in printout.
    Pls help.

    Go to SPRO-MM-Purchasing-Messages-Text for messages- Define Texts for Purchase Order  
    Here in the Text for document item should be set for operation 2 menas for change than it will print on the PO.
    In the heading also it needs to be setup for change

  • Not able to see other users change list in IR/ID

    Hi All,
    I  need to perform the CTS+ transports  in PI 7.1 and when ever i am going to change list tab apart from my user id i am not able to see any other user id to transfer the objects to my id
    Is some setting is missing or some role we need to assign.
    Appreciate your reponse on this.
    Thanks
    Ankur

    Hi Anku,
    Have a look on this doc [Limit Authorization PI Content objects.pdf|http://www.sdn.sap.com/irj/scn/events?rid=/library/uuid/a005629b-c063-2910-0fb8-f57dc68abaca], and/or contact your basis team who manages the user roles...
    The same in [e-learning|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/40457bb0-c663-2910-85ad-f5f42edb715a].
    just in case of... for ESR authorization, you have this one [How To Setup Profile Based Authorization In ESR Using PI 7.1 EHP1|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50a3efb4-57a1-2d10-a6b9-fed6d21799f8?QuickLink=index&overridelayout=true]
    Else... a stupid question:
    in "change list" tab, have you click on the "filter" button to be able to select "User = All" ?
    and then to do your transfer...
    Regards.
    Mickael
    Edited by: Mickael Huchet on Feb 14, 2012 9:24 AM

  • Not able to see the generated chart image

    I'm using Oracle 6i Reports and Oracle 9i dtabase to generate a report with graphs embedded. I'm able to view the tables populated with exact values but cannot see the graph. The chart image and html generated are placed correctly in the directory pointed to cahedir, but yet I'm not able to see the image. Can you tell me how to congifure the Html output from the server. The server is introducing a base tag pointing to a different location. Can I change the location.

    HI
    It is still not showing image. Messsage coming is "Right Click Here to Download Pictures. To help protect your privacy. Outlook prevented automatic download to this picture from the internet."
    Thanks & Regards,
    Ravi Grover

  • On RZ04 (I am not able to see my spool work process in the list...)

    Hi Friends,
    I am using ECC6. I have defined 7 (4 dialog, 2 background, 1 spool) work processes on dialog instance.
    Now I am trying to define operation mode using rz04. But when I define the number of dialog and background work porcess according to day time or night time. I am not able to see my spool work process in the list. It looks like:
    OP Mode______________Dia______BP______BPA______Spo______Upd______Up2______Enq______Sum
    B30_AS_Day____________4______3________________________________________________________7
    B30_AS_Night___________3______4________________________________________________________7
    Please ignore the underline ( It is just for formatting the output).
    Please tell me how can I resolve this issue.
    Thanks

    Hi Tiago,
    Yes, I have set the rdisp/wp_no_spo on the instance profile and restarted the instance after update.
    Now, I check the value of rdisp/wp_no_spo in RZ11.
    It shows like:
    Dift value______   0
    ProfileVal______    1
    Current value____   1
    So, Plesae tell me how to resolve this issue.
    Thanks & Regards
    Ajay Saini

  • Not able to see output

    Dear all,
    In the following procedure, i am not able to see output, if i done this by hardcoding values then working fine. while testing i got the error is :"no data found"
    could anyone help me to overcome this problem. iam using 11g.
    create or replace Procedure SP_GET
    p_CompanyCode IN VARCHAR2,
    p_PolicyNo IN VARCHAR2,
    p_resultset OUT TYPES.cursortype
    AS
    AgentNo VARCHAR2(9);
    Clientno VARCHAR2(10);
    Agentname CHAR(60);
    begin
    OPEN p_resultset FOR
    SELECT MWAGTN into AgentNo FROM ext_lsp_CASMWAGT WHERE MWCO = '''|||p_CompanyCode|||''' And
    MWPOLN = '''|||p_PolicyNo|||''' and
    Exists (SELECT MCCSTA FROM ext_LSP_CASCNTRM WHERE MCCO= '''|||p_CompanyCode|||''' And MCCNTR = '''|||p_PolicyNo|||''');
    IF AgentNo IS NOT NULL THEN
    SELECT CRCLTN into Clientno FROM ext_lsp_CMSUSREL
    WHERE CRCO= '''|||p_CompanyCode|||''' And CRALPH = 'AGT' And CRCTL1 = AgentNo;
    END IF;
    SELECT CMNAME into Agentname FROM ext_lsp_CMSCLNTM WHERE CMCLTN = Clientno ;
    dbms_output.put_line(AgentNo||Agentname||Clientno);
    end;

    Your procedure looks completely incorrect. It has lot of unnecessory code in it. Tell us what is your objective. What do you want SP_GET to do.
    OPEN p_resultset FOR
    SELECT MWAGTN into AgentNo FROM ext_lsp_CASMWAGT WHERE MWCO = '''|||p_CompanyCode|||''' And You are opening a cursor and at the same time you are selecting the value into a variable. That is wrong. And you don't have to enclose variables with single quotes in the where clause.
    All the SELECT statement in your procedure can be combined into a single statement like this
    select a.mwagtn as agentno
         , c.crcltn as clientno
         , d.cmname as agentname
      from ext_lsp_casmwagt a
      join ext_lsp_cascntrm b
        on a.mwco   = b.mcco
       and a.mwpoln = b.mccntr
      left
      join ext_lsp_cmsusrel c
        on c.crctl1 = a.mwagtn
       and c.crco   = a.mwco
       and c.cralph = 'AGT'
      join ext_lsp_cmsclntm d
        on d.cmcltn = c.crcltn
    where mwco   = p_companycode
       and mwpoln = p_policyno;

  • I am not able to see the new drive

    I have a Sun Blade 2500 with SUN 5.9 OS installed.I have on hard disk drive in it and now i attached another drive in this system but i am not able to see the new drive when i run the below command
    bash-2.05# echo | format
    Searching for disks...done
    AVAILABLE DISK SELECTIONS:
    0. c0t0d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1d,700000/scsi@4/sd@0,0
    Specify disk (enter its number): Specify disk (enter its number):
    ==============================================
    Although i can see two drives in the output of below command:
    bash-2.05# iostat -E |grep Size
    Size: 73.40GB <73400057856 bytes>
    Size: 73.40GB <73400057856 bytes>
    Size: 0.00GB <0 bytes>
    Edited by: 842294 on Apr 6, 2011 4:40 AM

    Resolved
    bash-2.05# cfgadm -c configure c0
    bash-2.05# echo | format
    Searching for disks...done
    AVAILABLE DISK SELECTIONS:
    0. c0t0d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1d,700000/scsi@4/sd@0,0
    1. c0t1d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1d,700000/scsi@4/sd@1,0
    Specify disk (enter its number): Specify disk (enter its number):

  • Not able to see the data in the report

    Hi All
          In my cube i am having data.But when i am running the report ,i am not able to see the data.
        The error its throwing is -No Applicable data found.
        what could be the problem,please provide me the idea to solve the problem.
    Thanks&regards
    syam prasad dasari

    HI,
    See that any restrictions are there in the report(Filters)....Give the same restrictions in Listcube and see if you are getting data or not.....
    Thanks

  • Not able to see data in the qualifier table of the main tbl , Data Manager

    Hi,
    I have an issue of not able to see the data of two qualified table after populating them.
    It is in mdm-5.5 ps4.
    When populating data first time ,it shows up in those two table slots in the right side of the Data Manager.
    However subsequently it does not show up in those slots , only by right click on the table and selecting "View/edit", the window pops up where those data shows up.
    However unlike other qualified tables the data does not showup automatically for these two tables.
    Appreciate any suggestion or feedback on this.
    regards,
    -reo

    You may have checked the Filter Check Box next to the Qualified Lookup cell in Data Manager, when the current table is the Main Table.
    You use the Filter Checkbox to limit the qualified table records by the current search selections.
    Secondly, you have see if there are any Qualified Links to the main table record you are viewing.
    If not, create the Qualified links in Data manager, for the main table record and the Qualified Table Record.
    Once this is done, you will see the Display fields of the Qualified table for which the links exists for the given main table record.
    Message was edited by:
            Adhappan Thiagarajan

  • Not able to see the tree on the jspx page after running

    Hi All,
    This is something strange.I am dragging the VO on the page fragment from the data control as adf tree. And I am using the panel collection as component for adf tree.
    After running the jspx when I am moving to the fragment I am not able to see the tree.
    However when I am running the AM it is working properly for the view objects and view link used to populate the tree.
    Can anybody put some thoughts on this.
    Thanx
    Kanika

    Thnx for your replies..
    I am dropping taskflow as region . I am not using the switcher component.
    On left side of the page the tree is visible now. but the taskflow is not refreshing on the click of the tree node based on the value of the node.
    Please advice how to accompolish this now??

  • Not able to see the request in ODS to activate

    Hi all,
    I have a content ODS, i scheduled a infopack and the data came in thru ok. But inorder to upload the data into the cube, i know i need to activate it before. But when i rightclick and go to activate data in the context menu .. there is a popup which shows all the request id's in the ODS. but i'm not able to see my request to activate it ... Is there some flag has to be set inorder to see the requests in the activation list? once its activated, I think all i need to do is "UPDATE ODS DATA TO DATAPROVIDER" as it is a standard content. Is there something else i need to do ..Pls guide.
    Now, I have a new problem, when i'm trying to see the transfer structure, it doesnt open and i get a msg
    Transfer method 'TRFC with PSA' is not supported by the source system
    Diagnosis
    The PSA transfer method is used to transfer data from source system CRM to transfer structure 0xxx_xx_xx_I_BB. Source system CRM does not support a PSA transfer.
    Procedure
    Define the PSA in the source system.
    Its actually a content one i installed and i didnt do any customizations to it... Shouldnt it work out of box? If no!! how can i define PSA in the source system.
    Any help is appreciated.
    Mav.

    Hi Mave,
    Kindly check the following:
    1.) Are you sure that the loading process finished successfully in the ODS? Kindly ensure it did.
    2.) Have you tried providing a longer <b>Date Range</b> in the <i>Request Display</i> (lower right).
    --Jkyle

  • Report exection problem for one user - not able to see the data.

    Hello Friends ,
    Need some help . I have got the one ticket from bussniess side about the report execution .
    Unfortunately , I am also not having authorisation of that report due to sensible data.
    Problem - User is executing the report but some how he is not ABLE TO see the data for one company code Hierachy .
    I executed the same report through RSSMQ via his user id , and I got the  below message.
    All value were selected . Hierachy Authorisation cannot be used.
    A displayed hierachy requier a hierachy authorisation .
    But when i checked his authorisation , I am able to see that he should have authorisation to all the hireachy .
    could you please let me know , how can I check more ?
    Regards,

    after accessing the report , u go to su53 tcode and check the authorization and u can see what is problem in authorization for the that user and u can send the details to secuity team to rectify the issue ,

Maybe you are looking for