Repair in BSP

am new to BSP development.
I got a requirement like
I need to enhance the table used in BSP.
I have corresponding classes into Z*
but getting the error, not compatablie type.
I have added them properly in attributes.
The code is :
<b>
*begin
DATA: lt_applications_cand TYPE ZRCF_T_LIST_MASS_PROC_ACT_X.
DATA: ls_hitlist           TYPE ZRCF_S_LIST_MASS_PROC_ACT_X.
*End of Comment
  CHECK me->start_selection EQ true.
  CHECK exist_exception( ) EQ false.
  DATA lo_ex TYPE REF TO cx_hrrcf.
  TRY.
    get info to the selected entries
      CALL METHOD me->ref_mass_proc_bl->get_mproc_cor_list_info
        EXPORTING
          mass_proc_cor_list  = me->sel_mass_proc_cor
        IMPORTING
          mass_proc_list_info = me->mass_proc_list_disp.
    CATCH cx_hrrcf INTO lo_ex.
      add_exception( lo_ex ).
  ENDTRY.
*Begin
loop at ZRCF_T_LIST_MASS_PROC_ACT_X  into ZRCF_s_LIST_MASS_PROC_ACT_X.
*here I want to capture the enhanced values...
endloop.</b>
The error is
<i>"ME->MASS_PROC_LIST_DISP" is not type-compatible with formal parameter          
"MASS_PROC_LIST_INFO".     </i>     
Please help me.
Thanks in adavance

Hi ,
Can you plz post the full code?,
I have used in the same way, but it is not getting instantiated.
the code is:
<b>
DATA: lt_list TYPE RCF_T_LIST_MASS_PROC_ACT_X.
CHECK me->start_selection EQ true.
  CHECK exist_exception( ) EQ false.
  DATA lo_ex TYPE REF TO cx_hrrcf.
  TRY.
      CALL METHOD me->ref_mass_proc_bl->get_mproc_cor_list_info
        EXPORTING
          mass_proc_cor_list  = me->sel_mass_proc_cor
        IMPORTING
          mass_proc_list_info = lt_list.
    CATCH cx_hrrcf INTO lo_ex.
      add_exception( lo_ex ).
  ENDTRY.</b>
plz  help me

Similar Messages

  • Java script error  when click on the  Tableview  in the BSp screen

    Hi All,
              I am getting a javascript error saying
    Line : 7770
    Char :5
    Error : 'rows' is null  or not an object
    Code : 0
    URL : http://saperpdev01............
    I checked the source code on the BSP displayed page. It don't has that line 7770 specified in the error.
    My Layout code is :
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <htmlb:content design="design2003">
      <htmlb:page title = "Open Work Screen with Pre Approval and Rejected Invoices ">
        <htmlb:form id = "openwork" method = "post" >
    <%
      data: l_num_msgs  type i,
      l_condition type string,
      l_message   type string,
      l_severity  type i.
    %>
        <img align="left" src="hl_invoicing.gif"/>
          <BR>
          <p align="left">      </p>
          <p align="left">      Complete the form below to create and submit a vehicle repair invoice to Schwans Home Service.</p>
          <p align="left">      See
          <htmlb:link id            = "paymenttermslink"
                      text          = "Payment Terms"
                      onClientClick = "return parent.EPCM.doNavigate ('ROLES://portal_content/com.schwans.tsfc.The_Schwans_Food_Company/HS/iView_folder/External_Content/KM_iViews/Fleet_Payment_Terms', 1);"
                           />
          for payment details.</p>
          <%
              l_num_msgs = page->messages->num_messages( ).
              do l_num_msgs times.
              clear : l_message, l_condition, l_severity.
              call method page->messages->Get_message
              exporting index     = sy-index
              importing condition = l_condition
              message   = l_message
              severity  = l_severity.
              if l_condition eq 'error'.
          %>
          <h3 align="left"> <font size=2 color="Red"><b>      <%= l_message %></b></font></h3>
          <%
              elseif l_condition eq 'warning'.
          %>
          <h3 align="left"> <font size=2 color="orange"><b>      <%= l_message %></b></font></h3>
          <%
              endif.
              enddo.
          %>
          <htmlb:group id     = "groupone"
                       design = "sapcolor" >
         <htmlb:groupHeader>
            <table width="100%" border="0" cellpadding="5" cellspacing="1" >
                <tr>
                    <td align="left" width="100%">
                      <!--<b> Invoicing </b> -->
                      <htmlb:textView id      = "tv1"
                                      text    = "Select a  Work Order Number"
                                      design  = "HEADER1" / >
                    </td>
                </tr>
            </table>
        </htmlb:groupHeader>
        <htmlb:groupBody>
        <table width="100%" border="0" cellpadding="5" cellspacing="1" >
                <tr>
                    <td align="left" width="100%">
                      <!--<b> Invoicing </b> -->
                      <htmlb:textView id      = "tv2"
                                      text    = "Pre-approved work"
                                      design  = "HEADER2" / >
                    </td>
                </tr>
            </table>
        <table width = "100%">
          <tr>
          <td>
          <htmlb:tableView id               = "openwork"
                           table            = "<%= INVOICE->AT_OPENWORK %>"
                           design           = "STANDARD"
                           width            = "100%"
                           selectionMode    = "SINGLESELECT"
                           selectedRowIndex = "<%= INVOICE->A_OPENWORKSELECTION %>"
                           visibleRowCount  = "10"
                           footerVisible    = "TRUE"
                           emptyTableText   = "No Open Work Exists"
                           keyColumn        = "OPENWORKNO"
                           onRowSelection   = "openworktable" >
            <htmlb:tableViewColumns>
              <table width = "100%">
              <tr>
              <td >
              <htmlb:tableViewColumn columnName = "OPENWORKNO"
                                     title      = "Reference Number"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "DOC_TYPE_TEXT"
                                     title      = "Document Type"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "CREATEDDATE"
                                     title      = "Created On"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "FLEETNO"
                                     title      = "Fleet Number"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "VMRS_TEXT"
                                     title      = "VMRS Code"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              </tr>
              </table>
            </htmlb:tableViewColumns>
          </htmlb:tableView>
          </td>
          </tr>
          </table>
        </htmlb:groupBody>
        </htmlb:group>
        <htmlb:group id     = "grouptwo"
                       design = "sapcolor" >
         <htmlb:groupHeader>
         </htmlb:groupHeader>
        <htmlb:groupBody>
             <table width="100%" border="0" cellpadding="0" cellspacing="0" >
                <tr>
                    <td align="left" width="100%">
                      <!--<b> Invoicing </b> -->
                      <htmlb:textView id      = "tv3"
                                      text    = "Rejected Invoices"
                                      design  = "HEADER2" / >
                    </td>
                </tr>
            </table>
          <table width = "100%">
          <tr>
          <td>
          <htmlb:tableView id               = "rejectedinvoice"
                           table            = "<%= INVOICE->AT_REJECTED_INVOICES %>"
                           design           = "STANDARD"
                           width            = "100%"
                           selectionMode    = "SINGLESELECT"
                           selectedRowIndex = "<%= INVOICE->A_REJECTEDINVOICESELECTION %>"
                           visibleRowCount  = "10"
                           footerVisible    = "TRUE"
                           emptyTableText   = "No Rejected invoices Exists"
                           keyColumn        = "INVOICENO"
                           onRowSelection   = "rejectedinvoicetable" >
            <htmlb:tableViewColumns>
              <table width = "100%">
              <tr>
              <td >
              <htmlb:tableViewColumn columnName         = "VENDOR_INVOICE_NUMBER"
                                     title              = "Reference Number"
                                     width      = "30%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "CREATEDDATE"
                                     title      = "Invoice Date"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "FLEETNO"
                                     title      = "Fleet Number"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "REJECTION_REASON"
                                     title      = "Reason for Rejection"
                                     width      = "30%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              </tr>
              </table>
            </htmlb:tableViewColumns>
          </htmlb:tableView>
          </td>
          </tr>
          </table>
      </htmlb:groupBody>
    </htmlb:group>
    <htmlb:textView id     = "tv1"
                    text   = "Select a Reference Number from the table above and click the Select button - or - Click the Create New button to create a new invoice."
                    design = "LABEL" />
         <table width="100%" border="0" cellspacing="1"  align="center" >
           <tr>
           <td  align="center" nowrap="TRUE">          
             <htmlb:button    id            = "selectbtn"
                              text          = "SELECT"
                              onClick       = "btnselect" />
             <htmlb:button    id            = "createnewbtn"
                              text          = "Create New"
                              onClick       = "btncreatenew" />
             </td>
           </tr>
          </table>
        </htmlb:form>
        <%@include file="footer.htm" %>
      </htmlb:page>
    </htmlb:content>
    What may be wrong????
    If I click anywhere on the table view it's giving a javascript error. If I try to select a row from the table also it's giving error for one or two times and on the third time i am able to select the table content and can able to navigate to the next page.
    Thanks for your help in advance.
    Thanks,
    Greetson

    Hi Raja,
         please kindly recheck the code if mine i have two tables ..... one for heading and another one for Body.
    it looks correct to me.
    <table width = "100%">
    >     <tr>
    >     <td>
          <htmlb:tableView id               = "rejectedinvoice"
                           table            = "<%= INVOICE->AT_REJECTED_INVOICES %>"
                           design           = "STANDARD"
                           width            = "100%"
                           selectionMode    = "SINGLESELECT"
                           selectedRowIndex = "<%= INVOICE->A_REJECTEDINVOICESELECTION %>"
                           visibleRowCount  = "10"
                           footerVisible    = "TRUE"
                           emptyTableText   = "No Rejected invoices Exists"
                           keyColumn        = "INVOICENO"
                           onRowSelection   = "rejectedinvoicetable" >
            <htmlb:tableViewColumns>
              <table width = "100%">
              <tr>
              <td >
              <htmlb:tableViewColumn columnName         = "VENDOR_INVOICE_NUMBER"
                                     title              = "Reference Number"
                                     width      = "30%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "CREATEDDATE"
                                     title      = "Invoice Date"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "FLEETNO"
                                     title      = "Fleet Number"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "REJECTION_REASON"
                                     title      = "Reason for Rejection"
                                     width      = "30%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              </tr>
              </table>
            </htmlb:tableViewColumns>
          </htmlb:tableView>
    >     </td>
    >    </tr>
          </table>

  • Problem when trying to place a post wrt BSP

    Colleagues,
    for a few days i am encountering problems when trying to place a post regarding BSP issue. I am not sure if this is just an IE settings problem or sth on the SDN forum side.
    Another option is to check for customized corporate settings of the current project owner.
    Any cool ideas are warmly welcomed.
    Cheers, Harry
    OK, this has been working fine. So what is the problem on the BSP forum? SAP buddies, please assist!
    Many THX in advance!
    Edited by: Harald Schwenger on May 8, 2008 10:50 AM
    Edited by: Harald Schwenger on May 8, 2008 10:52 AM

    Your launch services database, which stores information about which applications should open certain documents, may need to be repaired. Open the Terminal application found in /Applications/Utilities and paste in this command (all one line):
    System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/La unchServices.framework/Versions/Current/Support/lsregister -kill -r -domain system -domain local -domain user
    Hit the return key, log out and log in.
    Hope this helps! bill
    1 GHz Powerbook G4   Mac OS X (10.4.7)  

  • CRM Questionnaire Results Edit In-House Repair Fields

    I am new to CRM and I want to make the results of a questionnaire automatically edit the fields of an in-house repair on the WebGUI in SAP CRM 7.0.  After looking into this issue I think I have to work with the BADI CRM_MKTCA_SVY_PAI and the IMG path Customer Relationship Management -> Transactions-> Settings for Activities -> Questionnaires -> Define Determination for Questionnaires: Business Activity to trigger a Workflow when the WebGUI questionnaire is saved, but I don't know the steps to trigger the workflow or set the workflow up. Also, in order to edit the fields of the in-house repair, I don't know what table I should be editing.

    I stopped the browser hang by suppressing the ProtectDoubleSubmit functionality using the onClientClick attribute of my Excel button definition and the following javascript code (borrowed from another SDN post on the BSP forum):
    function stop_wait()
    window.setTimeout('showProtectDoubleSubmitWindow(false)', 4000);
    window.setTimeout('showProtectActive = null', 4010);
    I am still using the CSV (vice XLS) format because of the added javascript problem.  According to one of our Microsoft developers, based on a registry setting, Excel normally looks at the first 8 rows to determine how to render the content.  Our setting here forces Excel to look at all rows, and the added javascript code is forcing all content into one cell for XLS.  Though I will eventually track down where the javascript text is being added to the response, I'm not too concerened about it at this point.  The users can ignore it or delete it.

  • E-Recruiting - How to replace a standard BSP app by a custom

    Hi sap gurus,
    In the candidate' profile, we would like to exclude some qualification objects shown in the competencies tabs. 
    We have copied the bsp application HRRCF_PROFILE to zHRRCF_PROFILE, and made the changes there, but now I wonder how to replace the standard profile application by mine ? Is there any configuration, to change the candidate profile's link ? Or do I have to make a repair somewhere to change it ?
    Thank you for all your help
    Regards
    Hadrien

    Hi,
    if you really want to exclude certain qualifications of HR core so they are not available in e-recruiting profile maintanence (and requisition maintanence) there is a customizing in IMG to define a view on the qualification catalogue. There you can specify which QK and Q objects shall be available in e-recruiting. In this case no development would be necessary.
    If you just want to hide some fields / attributes this should be able to do this by customizing the screens. Depending if you use WebDynpro or BSP this is done via WebDynpro configuration or via IMG for bsp. Again no development
    If there is really a need for developing a new tab for the profile, copy the application, throw out everything except the minimum stuff for a qualification tab and build it the way you like. Define a new container sequence item, define a context and set up the container sequence for the profile using your customer container sequence item instead of the standard one.
    You never change the SAP entries of T77RCF_LOG_APPL you would only add customer own applications if you add customer applications to startpages. Defining own screen modification posibilities is usually not necessary. If you do not need the field in your customer screen just delete it, why customize sth you develop anyway?
    Best Regards
    Roman Weise

  • Import from an EP5-BSP-Application into EP6 SP12

    Hello Community,
    after the import from an ep5-bsp-application into the ep6 sp12 installation, no text will be displayed by the checkboxes.
    For example, a <a href="http://img216.imageshack.us/img216/9051/ep5ep66xh.jpg">screenshot</a> for my problem.
      <hbj:checkbox
        id="CR02"
        text="Repair report"
        key="CR02"
        tooltip=""
        checked="FALSE"
      >
    How can I resolve this problem?
    Greetings
    Michael
    Message was edited by: Michael Nett

    Hi Tafkap,
    Once you have created the par file you have to first deploy it to your Server to store it to PCD.
    http://<server-name>:50000/irj/servlet/prt/portal
    <b>Note:</b> There will be input box where you have to give the path of your par file. It will be having the heading as:
    <b>Please specify a Portal Archive file (PAR) and press "upload" to store it into the PCD.</b>
    1) Login to the Portal.
    2) Go to Content Administration.
    3) Go to Portal Content. Right click it and you will find option (New from PAR).
    4) Create New from PAR -> iView.
    5) Now a list of PAR files deployed on PCD will appear and there you will find the PAR file which you have also deployed.
    6) click on it and press Next.
    7) Enter the Name and ID whatever you want.
    8) Finish.
    9) Now you can see the iView with the name you have mentioned. Right click it and preview it.
    10) Or just click the iView and then click on the preview option.
    Now you view the page in your default browser.
    Hope this help you.
    Regards
    Pravesh
    PS: Please consider Awarding Points if you have solved the problem
    Message was edited by: Pravesh Verma

  • I was given the wrong macbook when I gave mine in for repair.  I want to complain.  Also, they wiped ALL my data off the hard drive.  I want to complain to someone in authority.  How?

    I am extremely disappointed and angry with Apple service.  I am a writer and booked three weeks in Spain so that I could finish my book.  On the second day my laptop cut out on me asI was working on it, so I took it to Goldenmack in Cadiz.  Not only was I given someone else's macbook when I went back to collect it, but then when I returned to the UK, the Apple shop in Brighton managed to delete ALL my data from the hard drive because I was unlucky enough to get a trainee on her first day.  I have since learned she should not have deleted my data without even running a diagnostic.  She told me she was going to 'restore' the drive.  I took this to mean she was going to restore my work.  But no!  She erased the lot.
    I complained and eventually was put in touch with a supervisor, who I was told  had authority to resolve the issue. She said she would get the shop to phone me.  That was ten days ago and I'm still waiting. 
    Ok so there's nothing I can do now to get back the three chapters of my book that I have lost and didn't back up, but the  hard drive on this laptop is still faulty.  I try to back up my work every time I use the machine but as soon as I attach an external drive, the whole thing shuts down. I can't use it any more as I can't risk losing any more work.    This laptop is only just over a year old and this is just not acceptable, especially since I have really looked after it. 
    This is an appalling service I have encountered from Apple, and I am not going to ignore it.  I have contacted the young chap whose laptop I was erroneously given, and the repair of which I paid for! (although I did eventually get a refund),  to ask him if he had been given mine as well.  He said he had been completely unaware that his laptop had been given to me and he is furious as he had loads of "sensitive material" on it."  I have no idea in whose hands my laptop has been either, or indeed what damage it sustained while it was supposed to be in for repair.

    Contact Apple Support:
    http://www.apple.com/support/contact/
    Apple - How to Contact Us:
    http://www.apple.com/contact/
    Be sure to refer to the repair ticket number.
    Sounds like a terrible mixup.
    Good luck & happy computing!

  • Stuck: Need Disk repair but DVD drive dead and only have USB 1

    [1 Ghz flat-panel iMac with USB 1 ports (no USB 2) and also Firewire 400]
    I noticed a strange discrepancy (small but concerning) between the size of a folder on hard drive (folder of all mp3's with no subfolders) and the backup of the same folder on a mounted thumb drive.
    (The size difference was not due to any invisible .DS_Store files and both folders are displayed in List view format.)
    Disk Utility reports three things:
    1. Incorrect number of thread records
    2. Volume Bit Map needs minor repair
    3. Checking volume information.
              Volume free block count",0)   [I might have mangled this line]
    (It should be 13438611 instead of 13437937)
    Here is the GOOD (but these are useless as explained under the "Bad"):
    - I have a Tiger 10.4 boot DVD for a repair ==>but see below
    - I also have a Disk Warrior disk (never used)
    Here is the BAD:
    - My built-in optical drive [Pioneer DVD-RW DVR-105] is -- I now discover - defunct and DEAD - it does not run the Tiger Boot DVD (in pristine shape).
    - I bought an external SuperDrive (unopened) but I believe no boot from USB 1 is possible in PowerPC so a SuperDrive with USB 1 is useless.
    Questions:
    1.) Is there any way to boot from some external source (optical drive is DEAD) to run Disk Utility and/or Disk Warrior? -- I see none in this case! (gulp).
    2.) More importantly (and this is my fundamental concern): Do the three Disk Utility hard drive issues constitute any direct threat to the integrity of my files?
    I have almost everything backed up to duplicate thumb drives over these many months as standard practice.
    Are these Disk Utility errors fully isolated to hard drive directory-keeping...or do these directory damage errors pose the possibility of mangling or harming my files or their metadata (filesize, etc.).
    Put another way, when files are backed-up from a hard drive under the Disk Utility reports above, do they remain unharmed and undamaged by the situations reported by Disk Utility?
    Thanks,
    Bill

    Jeff and Michael,
    Thank you both for your generous and thoughtful input.
    Michael: As I slept on it overnight, the exact same idea occurred to me of trying a Target Mode to the iMac from my Lion MacbookPro (I have it but stupidly have yet to use it much!).
    I did buy a Firewire 800 (MBP) to Firewire 400 (iMac) adapter cable a few months ago!
    CONCERN: Would there be potential compatibility issues or risks in running Lion 10.7's Disk Utility against the hard drive of the old OSX 10.4 iMac in Target Disk Mode?
    ==> Assuming an "it's ok" answer to the Target Disk question, would the majority of users agree that the Target Disk Mode would be more prudent than running:
    fsck -fy   in Single User Mode
    I have never done fsck -fy before especially because I was under the impression there were issues with Journaled drived but from what I have read today...it looks ok to do)
    Jeff: Can't thank you enough for the reference to the OTW DVD drive. I might first invest $10 in one of those DVD lens cleaner disks that I've read about. It's probably not the issue or else why would the drive read commercial Music cds perfectly well!
    Thanks,
    Bilil

  • Help Needed Badly | BlackBerry INC000025111306 | BlackBerry PlayBook - Tablet button does not work, almost stuck, copper under screen, seventh repair

    I was really Humilitated my RIM on this Ticket whcih i rasied.
    1) I bought a new tablet in last november in 2 months i had a Charger issue 
    2) They said this charger issue we cannot replace with new tablet and gave me a refurbished Tablet to me .
    3) Which also had same charging issue and they exchanged 2 more tablets and the last tablet which was given to me by RIM have a safety concern
     - 1 Small mesh of wire is poping out from the Tablet 
     - Power Button is very hard and its not that easy to press,
    So i raised the above ticket and was esclated internally with RMA as well and i got an update from the esclation agents that we will reply back in 2 Days i waited almost 3 weeks and called 2 times in this 3 weeks for an Update asking for a new tablet so that atleast once in all i can jeep a good 1 Tablet.
    But they never bothered to call me and today i called them again and RIM gave me a call back mentioning we cannot give a new tablet we can again check this tablet repair it and give it back , If we cannot repir then give a replacement new/Old tablet,
    I was wondering how can a tablet from RIM can go out without such safety concern ? How a mesh of wire can comeout of tablet so what safety norms RIM is follwoing for customer.
    AM i not humilitated? since after taking all these struggle tto get a good tablet i have been considered as bad.
    What RIM have to say for this, I am planing to take this to Legal department to follow how i can get a justice for this.

    I would have deleted this but can't find a delete?
    At any rate. got the Blackberry going again but it reset it and lost all the info, pictures and so forth.. oh well. at least it is still working.
    Thanks.

  • Mid 2010 Macbook Pro +1000 Euro repair costs (no external marks)

    Hello together,
    I am looking out for some advise. My mid 2010 Macbook Pro 15inch with an anti glare display just got a new logic board. I paid more than 500 Euro at a Premium Reseller called mStore in Kiel (Germany) to replace it, because the display stayed black after booting. My Macbook didn't even have a single external mark or scratch on the housing. I accepted it and said to myself if it is working again, it is alright. But less than two month later a vertical line is drawing from the top frame to the bottom (see photo). The line is narrow, it is just one pixel, but it is really annoying because it is always in sight. I went to the same reseller and asked what to do, they recommend a second repair attempt for again 500 Euro. In less then two month I cannot afford +1000 Euro for a laptop with an actual value of about 1100 Euro.
    What is the best thing to do now?
    I am really disappointed by Apple's quality. I am 24 years old and everybody in my family is using Apple computers since I can think back. The first time I could call a Mac my own was when I was 13.
    When I graduated from school I was 19 and worked in a hospital to finance a new iBook G4. I had this one for about four years and it has been traveling with me through New Zealand and Asia for more than a year. I never had any issue with it, even when I dropped it from the top bank in a dormitory. It is still alive and working fine.
    When I started studying the time came to buy an Intel Mac (15'' Macbook Pro, anti glare) and again I was very happy with the quality. I have also been a huge advocate for Apple products and was confidently suggesting them to friends and family. But today I feel disappointed by the brand.
    Best
    Marco

    I had the same problem on a display MBP 15" in 2010, and it is a  display problem recognised by Apple.
    It was covered by the warranty.
    If you do nothing, the number of vertical pixel lines will increase over  time.
    Good that Apple helped you out of this problem.

  • How can I open a PDF stored in IXOS and then display it in a BSP

    Hello gurus,
    I have created a PDF icon and an onclick action to open a pdf, that displays on every row of an assignment block in the actions column, but I do not know the technical process to determine how to get a PDF from the IXOS system from the line selected. (even if I know it depends on an ID attribute of that assignment block) I want to to call a transaction launcher with the url for the pdf in the IXOS that has an ID that identifies which line in the assignment block the user has clicked the pdf icon for (does that make sense?)
    Therefore, I am assuming the PDF should correspond to the relance ID of the row in the assignment block, but I would like more information as per the business logic involved in able to achieve the desired results for this particular specification. I already confirmed that the XURL or any other attribute in the BOL object does not contain the URL to use for this. I have looked at the class I was told that it may contain the required business logic for determining which PDF in IXOS to fetch for a particular row, and I am currently trying to reverse engineer the logic through looking at other code and using the debugger, but so far I haven'T had much luck.
    Here are some questions I have now for the functional side in the meantime:
    1) Can we fetch the PDF in IXOS for each line of an assignment block?
    2) Which URL should I call with the transaction launcher? a URL link to the PDF on the IXOS system??
    3) Do we have to configure a transaction in the IMG to be launched?
    4) Do we have to create a logical link there that I will make dynamic to call the right PDF for each table line? 
    5) Are there any existing examples of this or a similar functionality/ logic that I could refer to, preferably in CRM 7 WebUI?
    6) Do you have any code to just display a PDF in a new window? Or prompt a download?
    One possible way I thought of would be for me to have a logical link defined in the IMG, that I could call passing it different attributes (eg. some object id, etc) and then return the PDF and display it in the UI in a new browser window by itself. Alternatively, we can just prompt a download. What do you think would be the optimal behaviour here?
    Please do not hesitate to propose any potential solution. Any partial answers/ links to wikis/ other threads, anything would be much appreciated.
    Thank you in advance.
    Best regards,
    Jonathan Laplante

    Hi,
    I partially answered your question in another posting but I feel that you´re in the wrong forum for your problem. This is for BSP development and you talk about CRM.

  • I am trying to open my iTunes on a Windows XP laptop and get the error message 42404 "iTunes application could not be opened.  Please repair or reinstall QuickTime".  I did that and it did not help.  Any ideas?

    I am trying to open my iTunes on a Windows XP laptop and get the error message 42404 "iTunes application could not be opened.  Please repair or reinstall QuickTime".  I did that and it did not help.  Any ideas?

    Let's see if a more rigorous uninstall/reinstall procedure gets us past that, nancy. See the following troubleshooting document:
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP

  • Any ideas on a nice BSP view pretty printer?

    Hi there,
    I am wondering whether somebody already tried to extend the SAP standard pretty printer by an own functionality which fits better for pages with mixed content, containing not only BSP-elements but also HTML-tags.
    The standard pretty printer considers everything as plain text which is not a BSP-element and leaves it unaltered. Only BSP-elements are arranged according to their tree structure.
    This produces ugly results for pages with mixed content.
    1.) Requirement
    A Pretty Printer for HTML-based BSP views should cover the following:
    (a) HTML-Tags and BSP-elements together form the chain. As in following example:
    <z:table table_id="testTab" binding="//test/gt_test" rows="5">
      <z:tableBody position="top">
        <colgroup>
          <col width="4%">
          <col width="96%">
        </colgroup>
      </z:tableBody>
      <z:column name="type" header="<%=zcl_bsp_util=>dtel_text_s('EDI_TTYP')%>"
                listPos="10"/>
      <z:column name="text" listPos="20"></z:column>
    </z:table>
    (b) Certain HTML formatting tags like I, B, etc. should not be added to the stack but be treated inline.
    (c) HTML-attribute names should be converted to lower case, the attribute values should be quoted.
    (d) Like for BSP-elements, there should be a threshold after which the attributes should appear in separate lines. Instead of a certain maximum "number of attributes", this could also be a maximum number of characters per line.
    (e) Scripting Tags (<% ... %>) should start at a new line, if the content contains new-lines.
    (f) Evaluation Scripting (<%= ... %>) should be inline, if they are contained within text nodes (and not within HTML oder BSP element nodes).
    (g) The Pretty Printer should be parametrizable (with parameters like indent-depth,... ).
    2.) Exits?
    Of course, one could always use an external HTML editor and write an add-on for that editor which produces the desired result. Or one could take the view content into the clipboard, paste it into a plain text editor like UltraEdit or TextPad which allows external commands, apply an external, self-written pretty printer to it and then paste the result back into the View. But it would be easier to use the "Pretty Printer" button directly to get the result. Therefore the question arises at which point the standard Pretty Printer Functionality could be modified or extended.
    I didn't find an exit. But the pretty-print itself is doubly-decoupled in the standard which minimizes the number of points where an extension has to be made:
    2.a) First decoupling point: The Fcode handler method pretty_printer_ext( ) in cl_o2_page is calling
    dynamically a method in cl_o2_co2_processor:
    * call pretty printer
      create object pp type ('CL_O2_CO2_PROCESSOR').
      appl_str = me->pagekey-applname.
      page_str = me->pagekey-pagekey.
      try.
          CALL METHOD pp->('PRETTY_PRINT')
            EXPORTING
              indent              = 2
              ATTRIBUTE_NORMALIZE = 'X'
              ATTRIBUTE_THRESHOLD = 2
              BSP_UNFORMATTED     = source
              appl                = appl_str
              page                = page_str
            IMPORTING
              test_ok             = test_ok
              BSP_FORMATTED       = pp_source.
        catch cx_o2_co2_exception into o2ex.
    2.b) Second decoupling point:
    The method pretty_print() of class cl_o2_co2_processor (fancy names, by the way. It seems that many former chemistry students had joined the BSP team ),
    there is a second delegation, to a local class, as follows:
      data pretty type ref to LCL_BSP_PRETTY_PRINT.
      pretty = LCL_BSP_PRETTY_PRINT=>getInstance( processor = me ).
    The real logic for doing the Pretty Print, finally, is performed in this local class.
    3.) Implementation.
    Since, up to my knowledge, there is no HTML parser in the ABAP world,
    the implementation could be based on existing HTML Parsers, like the Perl module Parser::HTML, or the Java package http://htmlparser.sourceforge.net/ . The pretty printer could then be called as external OS command.
    Are there any ideas out there? Or is there somebody who already worked in this direction?
    Regards,
    Rüdiger

    For those who are interested. I found out that the Dave Ragget's classic "HTML Tidy" (see <a href="http://tidy.sourceforge.net/">http://tidy.sourceforge.net/</a> )  is available in ABAP! There is a class CL_HTMLTIDY (at least here in my SAP_BASIS 700 system) which wraps calls of HTML Tidy by kernel modules.
    The class is undocumented, but there are 2 OSS notes of this year for it, so it might well be that it is alive.
    HTML Tidy can surely not directly be used for Pretty Printing BSP views, but for designing test cases or for doing things like HTML parsing, it might be a helpful tool.

  • How can I repair Vista system files with only a Toshiba recovery disc??

    I have pretty much come to the conclusion that the reason I can't install Vista service pack 2 is due to some corrupt vista files. I ran the program that checks that system files and it said some are corrupt. There are some things I can't do, like turn on the Windows firewall even from that special adminostrar screen, or if I schedule a check disc scan, when I reschedule it for start up, it doesn't do it at startup. I had a Red Screen about a year ago, and it did a bunch of stuff and at the end, it said you had a major event and contact your administartor. Well, I am the administartor, lol. Anyway, it worked fine and I attribute these problems to that event.
    Vista discs come with a repair option. All I have is the Toshiba disc that lets you reinstall the Toshiba and Vendor applications OR reformat the hard drive. I am not going to spend days trying to get my system back to where it is by tracking down everything I have installed especially when its working. Is there a work around? I will buy a Vista Home Premium disc if I have to before refortmatting. I have an x205-S9349 with Vista Home Premium. THANKS!

    Satellite X205-S9349 
    I ran the program that checks that system files and it said some are corrupt.
    Sounds like System File Checker.
       How to use the System File Checker tool to troubleshoot missing or corrupted system files on Windows...
    To follow up...
       How to analyze the log file entries that the Microsoft Windows Resource Checker (SFC.exe) program ge... 
    can't install Vista service pack 2
    Maybe this helps.
       How to troubleshoot Windows Vista and Windows Server 2008 service pack installation issues
    Notice that you can get free support from Microsoft.
       Free Unlimited Support Vista Service Pack 2 sp2
    -Jerry

  • Error in using PERFORM in eventhandler in a BSP Application.

    Hi All,
    Can we use Subroutines in BSP applications?
    If yes then please help me with syntax .
    Best Regards,
    Anubhav.
    Edited by: Anubhav Jain on Dec 20, 2007 10:52 PM

    You can call subroutine with below Synatx:
    DATA: progname(20) TYPE C VALUE 'YTESTINCLUDE' .
    PERFORM your_perform_name IN PROGRAM (progname) IF FOUND.
    "where your_perform_name is the form within the include program YTESTINCLUDE[/code]
    Raja T
    Edited by: Raja Thangamani on Dec 20, 2007 4:58 PM

Maybe you are looking for

  • Bdc upload file data into internal table problem with gui_upload fm

    Hello experts, my coding is like this .. data : begin of itab occurs 0 . field1 like mara-matnr, field2...... etc, end of itab. data: file1 type string. parameter :file like rlgrap-filename. AT SELECTION-SCREEN ON VALUE-REQUEST FOR file. CALL FUNCTIO

  • Can't find a way to delete album Iphone4?!

    Hello, I tried everything. I go to Itunes while my iphone is connected. I click on my name and then on Photo's. I click sync from and then choose map. The first thing that comes up is the album that I want to keep it but I don't have anything else to

  • How to validate LOV data

    Hi, how to validate lov feild data ?? Requirement is my page have 2 lov feilds, It is a dependent lov. The feilds will not allow the invalid data in lov feilds when i click on 'save' button. Then i need to display a message "select valid values in lo

  • Recover Print parameters from the Background popup for 3.1 I

    How to recover the PRINT PARAMETERS (i.e. Printer name, new spool id) from the Background Popup window SAP version 3.1 I and I need use printer name in the program. Thanks in ADVANCE. you can contact me [email protected]

  • Downloaded CS5.5 to mac but can't install as "application is from an unidentified developer"

    I just downloaded photoshop CS5.5 from Adobe site to my mac successfully but it won't install and the error message is "application is from an unidentified developer".  Can anyone please help ?  Thank you