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

Similar Messages

  • 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

  • Not able to see Metadata fields when adding the fields to the rule in UCM

    Not able to see Metadata fields when adding the fields to the rule even after creating them in information fields of configuration manager.It is happening for few fields only.We are using 10.1.3 version of UCM.Kindly provide a solution if any.

    Dhilipan,
    I am trying to setup AES at the current Customer.
    You are right on LR_JP to be linked to customs code list instead of ACE and I do achieve that if I were to maintain the Custom code list by maintaining the assignment for EAR in a separate test.
    I was infact trying to follow the link: http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30c7015e-c191-2d10-71b9-95907dc8edd1?overridelayout=t…
    On this document, if you look at page# 14 thru 17, it has the steps I described in my original note with customs code still appearing in the drop down for 'EXCPT' for EAR.
    Nevertheless, I wanted to default Type = C50 when the license type for the line on the Customs declaration is 'EXCPT' but if you see the very last screen-shot below, even though the license type configuration has default value as 'C50' it did not get pulled into the line item Documents tab when I tried to pick the category as 'CUII'.
    Let me know your thoughts on defaulting the data into Customs declaration for AES filing.
    What I want to achieve is the following:
    When License type is 'EXCPT', system should default the type as 'C50'
    Should put the License type 'EXCPT' into the number field
    Should put the actual License# 'ENC' into the Supplement field
    Should put the ECCN # '5A002' into the Details field
    Thanks,
    Prashant.

  • I am not able to see the photograph when i am attaching my iphone with laptop. is it possible to see the photos without installing itune on the laptop.

    Hi is it possible to see the photos on laptop from iphone without installing itune software. I am connection my iphone with laptop but not able to see the phots pls guide me how to do that?

    You can import pics taken with the iphone to your computer withour itunes.  Itunes has nothing to do with importing pics taken with the iphone.

  • Not able to see the output

    Hi all
    when i run my request using XML Report Publisher .request completes without error.
    but when i see the output it shows me a message dialogue box saying
    File does not degin with '%PDF-'
    though my template is of rtf type.
    any idea
    pls help

    What is the Output type of the concurrent program ?
    check if that is PDF?

  • Complaint - Structured Product - Not able to see the componentitem details.

    Hi.
    <b>First Question:</b>
    I have a Structured Product (For eg. a Structured Producted is called Desktop Computer. It has two items say Monitor, Mouse.) In my complaint transaction, when I add this product, I dont see the components within it which are associated in the SAP GUI.
    Note: In the Item Category determination for the header product, I have chosen the option 'Single Level explosion of structured products'.
    But still I am not able to see the items when I add this Structured product to the complaint transaction. Can anybody throw any light as to what could be missing ?
    <b>Second Question:</b>
    Will the component items be visible in the ICSS. I am only seeing the product header  but not seeing the items within it. What could be mising here ?

    Hi,
    For marketing there is a standard Busines rolle MARKETINGPRO with
    PFCG Rolle  SAP_CRM_UIU_MKT_PROFESSIONAL. Please check whether it is also valid for
    Utilities.
    I dont see any Marketing workcenters and Links in the "SAP_CRM_UIU_UTIL_IC_LEAN_AGENT" Rolles.
    Regards,
    Usman

  • ITunes musical library located on a WD 2TB, ext. drv. Computer destroyed by virus; ED survived. Bought new laptop, connected ED. Not able to see library. ED shows as 'G:' 95% full. How can I reconnect my old library to new laptop?

    I had my iTunes musical library on an ext. drv. WD 2TB, ‘MY BOOK ESSENTIAL'. Three weeks ago, my computer was infected by a virus that fried it. It did not affect the external drive. I bought a new computer: a laptop, Dell XPS, Intel Core i7-2630QM CPU, Windows 7 Home Premium. I have been able to connect the WD external drive; however, I am not able to see the musical library in my iTunes or Explorer. ‘My Computer’ shows the external drive as ‘G:’ 95% full. It reads, 32.1 GB free of 1.36 TB. When I click on the drive to see its contents, it shows nothing. The library in iTunes also shows nothing. Can anyone help, please? How can I reconnect my old musical library to my new laptop and iTunes? Many thanks.

    Hmm, viruses don't generally "fry" drives. They can make bootable operating systems not bootable, hide data, and corrupt executable files. Software can potentially wipe all the data from the drive but it shouldn't be able to physically damage the drive. Bah! What's done is done.
    As to unhiding your files assuming they are just hidden....
    Hit Start > Run, type in CMD and press enter. Type the following at the prompt and then press enter:
    attrib -h -s -r g:\*.* /d /s
    This tells windows to clear the hidden, read-only, and system flags from all files on the drive, assuming of course your profile has the power to "see" the files and change them.
    If that doesn't work then you may need to take ownership of the drive first. The drive may have security settings that make it "belong" to an account on your old system. Right-click on the drive in Windows Explorer and click Properties. Click the Security tab, the Advanced button, the Owner tab, then the Edit tab. Make yourself the owner, then you can make any other changes to the security settings you want to back on the Permissions tab. (If you can't change the owner log out and log back in as Administrator). For iTunes your account (or everyone) and SYSTEM need full access to all files. Any changes you make should be applied to "This folder, subfolders and files", should be inheritable and you should also replace the permissions on all child objects.
    tt2

  • 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??

  • I am not able to see toolbars, when I open a new window that window is not visible, if I open from bookmarks and there is music playing I hear it but canNOT SEE the websites.

    I am not able to see toolbars, when I open a new window that window is not visible, if I open from bookmarks and there is music playing I hear it but canNOT SEE the websites. I was able to get window open from the help "window" and open sites from there just not from new: window tab or bookmarks those stay invisible? I tried the help suggestions, safemode,etc.

    Hi CMorenoOT,
    This prompt is usually displayed when your Apple ID needs to be configured for the iTunes Store. You'll want to run through the additional steps to setup your country, and payment information.
    iTunes: How to set up an Apple ID within iTunes
    http://support.apple.com/kb/HT2731
    Tip: If you are trying to create an account using an existing Apple ID, like your iCloud email address, you will receive a prompt telling you that your email address is already an Apple ID. Simply tap Continue, and then tap Use Existing Account on the following screen.
    - Next, you'll be required to enter your billing information. To choose a different Credit Card type, tap one of the available options, and then tap Done. You will not be charged until you make a purchase.
    - Once you've filled out all of the fields for your billing information, tap Next.
    For more information:
    Using an existing Apple ID with the iTunes Store and Mac App Store
    http://support.apple.com/kb/HT2589
    Thanks,
    Matt M.

  • When I go to create a new project in imovie using the iPhone 5, I am not able to see any of my video clips or photos that are saved on the device.

    When I go to create a new project in imovie using the iPhone 5, I am not able to see any of my video clips or photos that are saved on the device.

    When you move or copy the compound clips with their events into an external drive all the events should be there. Not clear on why you want to move them into a single event. You can drag and drop from one event to another.
    Why are you using compound clips? You can simply copy the project from each machine with used media onto the external drive and that should do it.

  • Not able to see No of BP records in a profile when I click on Count button

    Hi All,
    We are working on CRM 5.0, BP segmentation.
    We have created a Attribute list which is the combination of Infoset and Attribute Set.
    Now we want to build the profile in Segment builder by using Attribute list.
    I created a profile ( using the filters of attribute set and Info set) I am not able to see the BP records when I click on count button by selecting the corresponding profile.
    But When I have created defferent profiles by using the filters of attribute set and info set  seperately I am able to see the no.of BP records when I click on Count button for the corresponding profile.
    Can anybody advice me what is the reson for that?
    and I want to see the No.of BP records for the profile which is build with the combination of attribute set and Info set.
    Thanks in advance.
    -Madhu.

    Hi sachin,
    I am extremely sorry to keep this thread as open. This problem is already solved.
    I have used table views in infoset to get the data which is coming from multiple tables.
    Regards,
    Madhu.

  • 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/

  • I am not able to see "Edit Mode on" when i log into workspace...

    I am not able to see "Edit Mode on" when i log into workspace...through Weblogic user...Oracle BPM 11g

    If your trying to put pictures that are on your phone to your computer you import it see link below
    http://support.apple.com/kb/HT4083

  • I am not able to see the missed calls when my phone is locked.

    I am not able to see the missed calls when my iphone 3gs is locked.And how to set own ringtones in iphone 3gs

    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...

  • Help! I have an iPhone 4 and when I tap the "messages" thumbnail I'm not able to see a list of my text message threads.

    Help! I have an iPhone 4 and when I tap the "messages" thumbnail I'm not able to see a list of my text message threads.

    I contacted Verizon (my phone's carrier) and they told me to simultaneously press the on/off button and the menu button. That rebooting fixed the problem, but will I have to do this all the time? Wonderinf if I should take the phone back to the Apple store and get a new one. I've had the phone about two weeks.

Maybe you are looking for

  • Issue installing SQL Server 2012(with SP1) on windows 7 Error result: -2067529718

    When running the installation, it suddenly stops without any error popup. I ran the installation from the command prompt and this is what I get: An error occurred during the SQL Server 2012 Setup operation. Error result: -2067529718 Result facility c

  • How to write a PCR to calculate 10% of Tax on Gross Amount

    Hi Experts, I have a scenario, which came from my client that, tax(10%) had to be calculated on gross amount, need to be deducted from the gross and should shown in deductions part of remuneration statement. Do I need to write a PCR for this r not? i

  • Need help in html that use in java

    I want to know .. can I open new frame and use the whole frame for a HTML document (located on the client) .. and can anyone give me an example or tell me where can I find the example.. I will use it in the system that build use JDK 1.3 or JDK 1.2

  • Archlinux policy WRT /usr/share/vim/vim72 vs. /usr/share/vim/vimfiles

    Hi all, with the recent vim upgrade I have notified a couple of package maintainers that they would have to move some vim support files that are in their packages (e.g. syntax highlighting) out of /usr/share/vim/syntax and similar into subdirectories

  • Safari is not opening pdf's anymore with preview. Help!

    Hello, Can anyone help me to get safari to open pdf's using preview again? I installed adobe reader and it seems to have highjacked safari and now is the default pdf viewer for pdf's opened in safari while browsing on the web. Things I have tried so