[SOLVED] Update problem for k3b

Yesterday I gave the usual pacman -Syu command to update my system, and I saw that an upgrade for k3b, named k3b-1.65.0alpha1-1, was available. But the update process stops giving this error message (I translate it from Italian):
error: impossible to complete the requested operation (files in conflict)
k3b: /usr/bin/k3b is already present in the filesystem
Does anyone has the same issue?
Last edited by snack (2009-05-20 08:11:58)

Allan wrote:What package owns k3b?  (pacman -Qo /usr/bin/k3b)
It says: error: no package contains /usr/bin/k3b
Last edited by snack (2009-05-20 07:22:16)

Similar Messages

  • Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Reboot the machine holding Command and r keys down, you'll boot into Lion Recovery Partition
    In there will be Disk Utility, use that to select your Lion OS X Partition and Repair Permissions.
    After that is done reboot the machine and see if you can log in.
    If not repeat the above steps to get into Lion Recovery, get online and reinstall Lion again, it will overwrite the installed version and hopefully after that it wil work.
    Reboot and try again.
    If not follow my steps to create a Snow Leopard Data Recovery drive, then option boot from it and grab a copy of your files off the machine.
    Then reinstall all your programs onto the external drive like setting up a new machine, then use Disk Utility to erase the entire internal boot drive (select the drive media on the far left, not the partiton slightly indented) format Option: GUID , 1 partition OS X Extended and then use Carbon Copy Cloner to clone the external to the newly formatted internal drive. Once that is finished reboot and disconnect the external drive.
    Once you go that, boot into Snow Leopard and update to 10.6.8, use the AppStore and option click on Purchases and download Lion again and install.
    Lots of work, but there is no Lion disks.
    https://discussions.apple.com/message/16276201#16276201

  • Please solve this problem for me.

    I can not get it up in the game's "Your Purchase Could Not Be Completed. For assistance, contact iTunes Support at www.apple.com / support / itunes / ww. Please solve this problem for me.

    Maybe you should try following the directions in the message... http://www.apple.com/support/itunes/ww

  • TS1599 did this solve the problem for anyone?

    did this solve the problem for anyone?

    Hi,
    I believe the problem is "Firefox can't establish a connection to the server at www.verizon.com." which is still not working for you.
    Have you tried another browser? or Firefox in safe mode http://www.wikihow.com/Start-Firefox-in-Safe-Mode

  • Need help to solve update querry for multiple records.

    Could any of you please provide update querry for the following scenario.
    Requiremnt:
    1. Update the UNIQUE_ID of record ( same Identifier and Identifier_code
    where END_Date is not null) with the UNIQUE_ID of the record (( same  Identifier and Identifier_code
    where END_Date  is null).
    2. If More than one NULL in END_date then update UNIQUE_ID with max(EFFective_Date) of UNIQUE_ID
    Source  data
    UNIQUE_ID
    Identifier
    Identifier_code
    EFFective_Date
    END_Date
    1
    777
    abc
    2/14/2014 11:15
    2/28/2014 9:00
    1
    777
    abc
    2/21/2014 9:00
    3/7/2014 9:02
    2
    777
    abc
    2/28/2014 9:00
    3/14/2014 9:02
    2
    777
    abc
    3/7/2014 9:02
    3/14/2014 9:02
    2
    777
    abc
    3/14/2014 9:02
    NULL
    5
    888
    xyz
    2/14/2014 11:15
    2/28/2014 9:00
    5
    888
    xyz
    2/21/2014 9:00
    3/7/2014 9:02
    5
    888
    xyz
    2/28/2014 9:00
    3/14/2014 9:02
    6
    888
    xyz
    3/7/2014 9:02
    NULL
    7
    888
    xyz
    3/14/2014 9:02
    NULL
    OutPUT .
    UNIQUE_ID
    Identifier
    Identifier_code
    EFFective_Date
    END_Date
    2
    777
    abc
    2/14/2014 11:15
    2/28/2014 9:00
    2
    777
    abc
    2/21/2014 9:00
    3/7/2014 9:02
    2
    777
    abc
    2/28/2014 9:00
    3/14/2014 9:02
    2
    777
    abc
    3/7/2014 9:02
    3/14/2014 9:02
    2
    777
    abc
    3/14/2014 9:02
    NULL
    7
    888
    xyz
    2/14/2014 11:15
    2/28/2014 9:00
    7
    888
    xyz
    2/21/2014 9:00
    3/7/2014 9:02
    7
    888
    xyz
    2/28/2014 9:00
    3/14/2014 9:02
    7
    888
    xyz
    3/7/2014 9:02
    NULL
    7
    888
    xyz
    3/14/2014 9:02
    NULL
    Thanks in advance.

    Hi Vikash,
    This query will not produce results as per requirement:
    Try it with following data
    Insert into @TempTABLE values (1,777,'abc','2/14/2014 11:15','3/14/2014 9:02')
    Insert into @TempTABLE values (1,777,'abc','2/21/2014 9:00','3/14/2014 9:02')
    Insert into @TempTABLE values (2,777,'abc','2/28/2014 9:00','3/14/2014 9:02')
    Insert into @TempTABLE values (2,777,'abc','3/7/2014 9:02','3/14/2014 9:02')
    Insert into @TempTABLE values (2,777,'abc','3/14/2014 9:02',NULL)
    Insert into @TempTABLE values (5,888,'xyz','2/14/2014 11:15','3/14/2014 9:02')
    Insert into @TempTABLE values (5,888,'xyz','2/21/2014 9:00','3/14/2014 9:02')
    Insert into @TempTABLE values (5,888,'xyz','2/28/2014 9:00','3/14/2014 9:02')
    Insert into @TempTABLE values (7,888,'xyz','3/7/2014 9:02',NULL)
    Insert into @TempTABLE values (6,888,'xyz','3/14/2014 9:02',NULL)
    as per the problem statement, all records having 888,'xyz' should be updated with 6 not 7 as max effective date is associated with 6 not 7.
    Ashutosh
    Nope.
    can you check the original post first. It clearly states output as having 7 as id for all the records with 888,xyz
    also your above posted sample data is different from original sample data as you've dates jumpled up for the records with ids 6 and 7
    Please see the illustration for original sample data
    --sample table for illustration
    declare @t table
    (UNIQUE_ID int,Identifier int,Identifier_code varchar(100),EFFective_Date datetime ,END_Date datetime)
    --populate original sample data
    INSERT @t ([UNIQUE_ID], [Identifier], [Identifier_code], [EFFective_Date], [END_Date]) VALUES (1, 777, N'abc', CAST(0x0000A2D200B964F0 AS DateTime), CAST(0x0000A2E0009450C0 AS DateTime))
    INSERT @t ([UNIQUE_ID], [Identifier], [Identifier_code], [EFFective_Date], [END_Date]) VALUES (1, 777, N'abc', CAST(0x0000A2D9009450C0 AS DateTime), CAST(0x0000A2E70094DD60 AS DateTime))
    INSERT @t ([UNIQUE_ID], [Identifier], [Identifier_code], [EFFective_Date], [END_Date]) VALUES (2, 777, N'abc', CAST(0x0000A2E0009450C0 AS DateTime), CAST(0x0000A2EE0094DD60 AS DateTime))
    INSERT @t ([UNIQUE_ID], [Identifier], [Identifier_code], [EFFective_Date], [END_Date]) VALUES (2, 777, N'abc', CAST(0x0000A2E70094DD60 AS DateTime), CAST(0x0000A2EE0094DD60 AS DateTime))
    INSERT @t ([UNIQUE_ID], [Identifier], [Identifier_code], [EFFective_Date], [END_Date]) VALUES (2, 777, N'abc', CAST(0x0000A2EE0094DD60 AS DateTime), NULL)
    INSERT @t ([UNIQUE_ID], [Identifier], [Identifier_code], [EFFective_Date], [END_Date]) VALUES (5, 888, N'xyz', CAST(0x0000A2D200B964F0 AS DateTime), CAST(0x0000A2E0009450C0 AS DateTime))
    INSERT @t ([UNIQUE_ID], [Identifier], [Identifier_code], [EFFective_Date], [END_Date]) VALUES (5, 888, N'xyz', CAST(0x0000A2D9009450C0 AS DateTime), CAST(0x0000A2E70094DD60 AS DateTime))
    INSERT @t ([UNIQUE_ID], [Identifier], [Identifier_code], [EFFective_Date], [END_Date]) VALUES (5, 888, N'xyz', CAST(0x0000A2E0009450C0 AS DateTime), CAST(0x0000A2EE0094DD60 AS DateTime))
    INSERT @t ([UNIQUE_ID], [Identifier], [Identifier_code], [EFFective_Date], [END_Date]) VALUES (6, 888, N'xyz', CAST(0x0000A2E70094DD60 AS DateTime), NULL)
    INSERT @t ([UNIQUE_ID], [Identifier], [Identifier_code], [EFFective_Date], [END_Date]) VALUES (7, 888, N'xyz', CAST(0x0000A2EE0094DD60 AS DateTime), NULL)
    --do the update
    UPDATE t
    SET UNIQUE_ID = MaxID
    FROM
    SELECT MAX(CASE WHEN END_DATE IS NULL THEN UNIQUE_ID END) OVER (PARTITION BY Identifier,Identifier_code) AS MaxID,UNIQUE_ID
    FROM @t
    )t
    WHERE UNIQUE_ID <> MaxID
    AND MaxID IS NOT NULL
    --now check the output
    SELECT * FROM @t
    The output is as below
    UNIQUE_ID Identifier Identifier_code EFFective_Date END_Date
    2 777 abc 2014-02-14 11:15:00.000 2014-02-28 09:00:00.000
    2 777 abc 2014-02-21 09:00:00.000 2014-03-07 09:02:00.000
    2 777 abc 2014-02-28 09:00:00.000 2014-03-14 09:02:00.000
    2 777 abc 2014-03-07 09:02:00.000 2014-03-14 09:02:00.000
    2 777 abc 2014-03-14 09:02:00.000 NULL
    7 888 xyz 2014-02-14 11:15:00.000 2014-02-28 09:00:00.000
    7 888 xyz 2014-02-21 09:00:00.000 2014-03-07 09:02:00.000
    7 888 xyz 2014-02-28 09:00:00.000 2014-03-14 09:02:00.000
    7 888 xyz 2014-03-07 09:02:00.000 NULL
    7 888 xyz 2014-03-14 09:02:00.000 NULL
    Now compare it with original output and you'll find they're the same
    UNIQUE_ID Identifier Identifier_code EFFective_Date END_Date
    2 777 abc 2/14/2014 11:15 2/28/2014 9:00
    2 777 abc 2/21/2014 9:00 3/7/2014 9:02
    2 777 abc 2/28/2014 9:00 3/14/2014 9:02
    2 777 abc 3/7/2014 9:02 3/14/2014 9:02
    2 777 abc 3/14/2014 9:02 NULL
    7 888 xyz 2/14/2014 11:15 2/28/2014 9:00
    7 888 xyz 2/21/2014 9:00 3/7/2014 9:02
    7 888 xyz 2/28/2014 9:00 3/14/2014 9:02
    7 888 xyz 3/7/2014 9:02 NULL
    7 888 xyz 3/14/2014 9:02 NULL
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • How should i solve the problem for the exception.

    <b>Web is below:</b>
    Error when processing your request
    <b>What has happened?</b>
    The URL http://xxxxxxx.xxxxx:xxxxxx/sap/bc/bsp/sap/xxxxxxx/result.htm was not called due to an error.
    <b>Note</b>
    The following error text was processed in the system D50 : The current application triggered a termination with a short dump.
    The error occurred on the application server sapcidev01_D50_00 and in the work process 1 .
    The termination type was: RABAX_STATE The ABAP call stack was:
    Form: DIALOG_CHECK of program CL_IMC_MODE===================CP
    Form: PREPARE_MODE of program CL_IMC_MODE===================CP
    Form: GET_MODE_BY_NAME of program CL_IMC_MODE===================CP
    Form: SEND_COMMAND of program CL_DV_IMC_CLIENT==============CP
    Form: PROCESS_COMMAND of program CL_DV_SDV=====================CP
    Form: DISP_DOC of program CL_DV_SDV=====================CP
    Form: DISP_AO_DOC of program CL_DV_SDV_AO==================CP
    Form: DISP_AO_DOCS of program CL_DV_SDV_AO==================CP
    Function: ALINK_DISPLAY_IMC of program SAPLALINK_DISPLAY_DOCUMENT
    Function: ARCHIVOBJECT_DISPLAY of program SAPLOPTA
    <b>What can I do?</b>
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system D50 in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server sapcidev01_D50_00 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 1 in transaction ST11 on the application server sapcidev01_D50_00 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 151 -u: 117846 -l: E -s: D50 -i: sapcidev01_D50_00 -w: 1 -d: 20070320 -t: 062938 -v: RABAX_STATE -e: MESSAGE_TYPE_X
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    <b>Run ST22 and information is below:</b>
    Source Code Extract
    Line SourceCde
    1 METHOD DIALOG_CHECK.
    2 DATA: GUI_FLAG TYPE SY-BATCH.
    3
    4 * IMC NUR in Online-Modus ? (kein Batch und dunkle Batch-Input-Betrieb)
    5 IF GUI_IS_ON IS INITIAL.
    6 CALL FUNCTION 'RFC_IS_GUI_ON'
    7 EXPORTING
    8 LOGIN_CHECK = ' '
    9 IMPORTING
    10 ON = GUI_FLAG.
    11
    12 IF GUI_FLAG <> 'Y'.
    13 IF RABAX IS INITIAL.
    14 CLEAR EXISTS.
    15 ELSE.
    >>>>> MESSAGE X005(IMC).
    17 ENDIF.
    18 ELSE.
    19 GUI_IS_ON = 'Y'.
    20 EXISTS = 'X'.
    21 ENDIF.
    22 ELSE.
    23 EXISTS = 'X'.
    24 ENDIF.
    25
    26 ENDMETHOD.
    i can access the other bsp web.but this bsp application raises the exception. Who can help solve the problem?
    I appreciate your help.

    Is it SAP BSP application or custom?
    If its custom,check whether you are using any MESSAGE statements. Handle all the Exceptions from Class/Methods/Function module to avoid the Dump.
    Raja T

  • [Software Updates Problem for My Nokia 6131]

    Hi Everyone, My name is Wilson And I am from Singapore.I am here to ask about the software updates,which my country do not have support for it.That why i need help for my nokia 6131. Firstly, My nokia 6131 show some problems for E.g "when i type #0000#" it show an "Unknown APPLICATION"
    Secondly,I follow the software guide, to no avail. I found out that in my settings > phone > phone updates it show only 2 things --> "Current Software Details and Install Software update".But my handphone version is V03.70.Lastly, i would to request if anyone or staffs would send me the file directly or help me step by step. I will appreciate anything you have done and i would to say Thank You Very Much
    Good Bye =)

    I got another question for this ---> Secondly,I follow the software guide, to no avail. I found out that in my settings > phone > phone updates it show only 2 things --> "Current Software Details and Install Software update".
    My Nokia 6131 Version 3.70 but whenever i played a java games it will die out and when i turn on my phone and play the same game it also die out. But all my friends does not have this problems except me =( .Btw there is one game it ask me to "Press any key to continue" When i click any key im stuck there, it doesnt lead me to the welcome page it just hang there ---> "Press any key to continue"Message Edited by takashix on 19-Sep-2006
    11:42 PM

  • Updating problems for Adobe Reader

    Help please... why can't I update the Adobe Reader 8 to Adobe Reader 11 on my Windows XP? I haven't updated AR for a while. Is that the problem? It asks me to update, and then I run it, but it won't do anything else.
    Thanks so much. Any suggestions/ideas would be much appreciated.

    I suggest that you uninstall Reader 8, then download and install Reader XI from http://get.adobe.com/reader/enterprise/

  • LMS 4.0.1 - Device update problem for CiscoView

    Hello,
    I would like to update all CiscoView packages for my customer.
    When I do :
    Admin> System> Software Center> Device Update
    I have a list of several updates to do :
    Showing 1-15 of 15 records
    Package Name
    Type
    Product Name
    Installed Version
    Available Version
    Readme
    Posted Date
    size
    1.
    ASR1000
    DevicePackage
    CiscoView
    3.0
    4.0
    ASR1000.cv50.v4-0.readme
    NA
    NA
    2.
    Cat3560
    DevicePackage
    CiscoView
    9.0
    11.0
    Cat3560.cv50.v11-0.readme
    NA
    NA
    3.
    Cat3750
    DevicePackage
    CiscoView
    12.0
    13.0
    Cat3750.cv50.v13-0.readme
    NA
    NA
    4.
    Cat6000IOS
    DevicePackage
    CiscoView
    31.0
    31.2
    Cat6000IOS.cv50.v31-2.readme
    NA
    NA
    5.
    CVGenericPackage
    DevicePackage
    CiscoView
    1.4
    1.5
    CVGenericPackage.cv50.v1-5.readme
    NA
    NA
    6.
    Cisco3400ME
    DevicePackage
    CiscoView
    4.0
    5.0
    Cisco3400ME.cv50.v5-0.readme
    NA
    NA
    7.
    MetroEthernet
    DevicePackage
    CiscoView
    2.0
    MetroEthernet.cv50.v2-0.readme
    NA
    NA
    8.
    Nexus5000
    DevicePackage
    CiscoView
    1.0
    Nexus5000.cv50.v1-0.readme
    NA
    NA
    9.
    Nexus7000
    DevicePackage
    CiscoView
    2.0
    3.0
    Nexus7000.cv50.v3-0.readme
    NA
    NA
    10.
    Rtr3900
    DevicePackage
    CiscoView
    4.0
    5.0
    Rtr3900.cv50.v5-0.readme
    NA
    NA
    11.
    Rtr1900
    DevicePackage
    CiscoView
    2.0
    3.0
    Rtr1900.cv50.v3-0.readme
    NA
    NA
    12.
    Rtr1800
    DevicePackage
    CiscoView
    9.0
    10.0
    Rtr1800.cv50.v10-0.readme
    NA
    NA
    13.
    NGMARShare
    DevicePackage
    CiscoView
    1.15
    1.17
    NGMARShare.cv50.v1-17.readme
    NA
    NA
    14.
    Rtr800
    DevicePackage
    CiscoView
    16.0
    18.0
    Rtr800.cv50.v18-0.readme
    NA
    NA
    15.
    SwitchAddlets
    DevicePackage
    CiscoView
    1.28
    1.31
    NA
    NA
    But when I try to do these update, it always fails and I can see in the Event logs, this message :
    Number of Packages Selected for Install : 1
    For Product(s) : CiscoView
    Install Invoked by user : admin
    The Package(s) Selected for Install :
    CVGenericPackage
    WARNING :  CVGenericPackage(1.5):Consistency check failed for base package SwitchAddletsWhat can I do to update my CiscoWorks please ?
    No package(s) to install for : CiscoView
    Thank you.
    Regards,
    Stephane.

    And for each individual device package I'm trying to update, I receive this error message :
    Error
    The installation of device package(s) failed.
    Check Software Center > Activity Log > Event Log for details.
    And the Event log show me this (for example, for the Cat3560 package) :
    Number of Packages Selected for Install : 1
    For Product(s) : CiscoView
    Install Invoked by user : admin
    The Package(s) Selected for Install :
    Cat3560
    No package(s) to install for : CiscoView
    But when I do Device Update again (even if I Stop and Restart the Deamon Manager), I still see the same device packages list.
    This problem is very annoying.
    Do you want me to upload any other log ?

  • 10.5.4 update problem for Mac Mini-Desktop is "Crazy"

    Well I had this problem when I updated from 10.5.2 to 10.5.3, and had to revert to 10.5.2 by doing a full reinstall but stopped with the 10.5.2 update. Now I just updated 10.5.2 to 10.5.4 and have the same problem. I downloaded the combo file and ran it and when it rebooted, the screen is in black and white, large fonts, poor resolution and 2 desktops split by a vertical line. The Mini is connected to my Sony 32" using the computer monitor input port on the Sony. It works fine with 10.5.2. Anyone know what's going on?? Thanks. Stephen

    This may not solve anything, but I would open System Preferences and explore the settings in the Displays and Universal Access panels.

  • 10.6.6 update problems for MySQL

    I tried this in another area, but received no responses... trying again here.
    I just performed the 10.6.6 update and following restart, I can no longer get MySQL to start up. There was a similar problem with a previous update (I believe in Oct 2010). At that time, MySQL was starting up, but Apple had changed the location of "mysql.sock" (socket file) to a non-standard location (from "/var/mysql/" to "/tmp"). Unfortunately they forgot to tell users that they were doing this and it about a week before someone (a user) discovered the source of the problem and create a solution. As a full-time, large-scale web developer, that cost me a week's worth of income!
    Once again, MySQL will not start up, but apparently for totally different reasons (and again without any forewarning from Apple. MySQL will not start from the command line either, but gives no indication why it fails. I've now spoken with 3 Apple Support techs, including a "Senior Advisor". None of them even knew that MySQL was part of the standard OS-X installation!
    Has anyone else experienced this problem or could suggest possible solutions? I am desperate to get this figured out, as I'm supposed to fly out of Denver to New Orleans on Monday morning to do a major site installation and I can't even get to the data on my MacBook Pro to upgrade the MySQL installation on my web servers.
    HELP!!!

    After trying everything I could think of, I finally just gave up and did a clean reinstall of the MySQL application. At this point, I had MySQL loading again. At some point, it mysteriously quit working again, so I repeated the process. Unfortunately, since I reinstalled the same version as the previous, the NEW install overwrote the OLD install and wiped out over 100 databases (48 active, the rest backup and Dev versions) during the installation.
    No problem, right? I'll just recover from my Time Machine backup. First, however, since I've been traveling over the holidays, my most current Time Machine backup was Dec 17. Second, I couldn't figure out a way to get Time Machine to restore anything in the hidden directories (/etc/, /usr/local... ), without doing a full reinstall, which would have resulted in loss of considerable work performed in the past 3 weeks.
    Logging into Terminal as root, I was able to walk my way through the various backup folders in an attempt to find the most recent backups of each database. After 36 hours of continuous tinkering (counting a 7 hr span to create a fresh "clone" for safety), I finally have it working again. I know without a doubt, that I've lost a great deal of database work, which will mean doing a lot of duplicate effort. But at least I'm up and running again. And I realize that on a Windows box things could have been much worse. But who wants to do anything twice (unless you get paid for it both times)?
    In short, there was no quick and easy "solution". The lesson to be learned? Never, never, never do a simple OS upgrade, without first doing a full backup (even if it does take 7+ hours)! I hope this at least helps someone else avoid the same headache.
    Thanks for your feedback.
    Jack

  • Firmware update problem for Nokia 7373

    Just updated to firmware v5.0 for my Nokia 7373 and everything seem to work fine except when I go access my 'GOTO' menu. Then it crashes my phone ( well it's freezes my phone up).
    I go through the update as required with the Software update - even tried reinstalling it and still gets the same result.
    Can anyone help me out either revert back to the old firmware or fix the problem?
    Thanks
    (P.S. I would take it to a repair center except I bought the phone in China and I live in Canada and I don't think the phone is officially out yet in Canada)

    go to control panel.....add or remove programs....then on nokia connectivity calbe driver clik repair

  • HT1937 my headphone have some problems ,but your Customer service staff cant solve the problem for me ,my iphone5s in within warranty period

    apple inc:
                  how are you . i am a buyer from chengdu city of china ,i bought the iphone5s in February ,2014. i have used five months ,suddenly ,my iphone5s have some problems with the headphone.the main cause is the sound of the headphone is becoming smaller and smaller ,then i took it to apple Customer service center to check it ,at last ,they told me that some liquid get into the headphone of my iphone5s ,i am very angery to hear that ,i havenever got liquid into the headphone,and my iphone never touch any liquid.so that they canot mend the iphone for me .
                 this is the question what i meet now ,i hope you can give me a solution ,because the result is not made by me .i hope i can get your company reply as soon as possible.
                          thanks
                  zhaolong
              chengdu city,in sichuan province ,in china
                phone:13540823419
                email:[email protected]

    hi:
      friend,thanks for your reply ,can you tell me how to contact apple inc sercer?i am looking forward to your reply
    thanks

  • Updating problem for Photoshop 7.0

    For two weeks now, I have been unable to downoal routine updates. I get a window that says "Adobe online error" and "file could not be downloaded" and "An unknown internet error has occurred" And there is a long http://cgi... address. Please send me an Adobe tech support e-mail address to which I can mail the screen shot of the above and/or tell me what is happenning and how to fix it. Thanks!
    my e-mail: <Removed by Moderator>

    What error do you receive when you try to apply the updates directly?  You mentioned it was not able to locate your current installation.  Do you have Photoshop 7.0 installed or have you already applied the update?
    If you still have access to the installation media you may want to remove the current installation and reinstall.  You can find a list of the Windows updates for Photoshop 7 at http://www.adobe.com/support/downloads/product.jsp?product=39&platform=Windows.

  • Header text update problem for BAPI_CONTRACT_CREATE

    Hi,
    We are in the process of converting the BDC for Contract creation ME31 into BAPI.
    For the purpose we had identified the BAPI,
    BAPI_CONTRACT_CREATE.
    The bapi works fine , except it doest not update the Header Text.
    The parameters passed for header text are
    Text ID : K01.
    Text Form : *
    Text line : ( Header text content).
    We are working on ECC6.0.
    Pls advice me how to proceed.
    Regards
    harish

    Hi Harish,
      Can you please give me a brief idea on how you are using this BAPI?
    1) What would be the format of excel file?
    2) Does the BAPI work for both create and update ?
    3) Any know limitation ?
    4) Any documentation you have or you can point me to on the web regarding this BAPI?
    Thanks
    AK

Maybe you are looking for

  • 2-Page display in Acrobat 9.1.2

    I have a document created in ID CS4, of multiple facing pages, and exported to PDF.  But when I open it in Acrobat 9.1.2, and switch to 2-Page view, it displays with page one (a right-hand page) moved to the left of the screen, and page 2 (a left-han

  • Z Tcode doesn't write the last part of program

    Hi experts, I have a program in a transaction code, and the last part, must be write: Send it to the world     lv_sent_to_all = lo_send_request->send( i_with_error_screen = 'X' ).     IF lv_sent_to_all = 'X'.       WRITE 'Email Sent Successfully'.   

  • Email attachments not showing as attachments

    Hi, i'm using the following code to attach a pdf blob to an email CREATE OR REPLACE PROCEDURE sendPDFBLOB (lv_server varchar2, lv_from varchar2, lv_rcpt varchar2, lv_cc varchar2,lv_bcc varchar2, lv_subject varchar2 ,  lv_message varchar2, i_blob blob

  • Photoshop thumbnails display improperly in Finder colum view

    I've just been noticing that Photoshop files with Channel masks do not display thumbnails properly in Finder colum view. The thumbnail is displayed with the mask blocking the image, rather than the composite view. This only occurs in Colum view; Icon

  • External swf path problem

    Hi there, I've just added some external swf.'s to my site which contain various slideshows and galleries which now don't work at all. I understand that all the paths in my external swf.'s containing _root will assume that the main timeline is now the