Error message display for me"invalid colmun " when i implement stored procedure

Hi guys
in this stored procedure below i have proplem in colmun in sex type i have two values Male and female
but when i search by this colmun from interface it give me invalid colmun why
this is my stored procedure
Create Procedure sp_Employee
    @EmployeeID       NVARCHAR(50),
    @EmployeeName     NVarchar(100),
    @SexType          Nvarchar(50)
AS
Declare @SQLQuery as nvarchar(2000)
SET @SQLQuery ='SELECT * from ViewEmpTEST Where (1=1)'
 If @EmployeeID <>''
         Set @SQLQuery = @SQLQuery + 'And (EmployeeID = '+ @EmployeeID+') '
If @EmplyeeName  <>''
         Set @SQLQuery = @SQLQuery + ' AND (EmplyeeName  LIKE
N''%'+@EmplyeeName +'%'') '
If @SexType <>''
          Set @SQLQuery = @SQLQuery + 'And (SexType = '+ @SexType+') '
Exec (@SQLQuery)
and this is my view ViewEmpTEST
SELECT     CONVERT(varchar, dbo.Employee.DriverID) AS EmployeeID, dbo.Employee.EmplyeeName, dbo.Employee.DriverName,
                      dbo.Nationality.NationalityName, dbo.Employee.ResidentNo, dbo.Country.CountryName, dbo.Branch.BranchName, dbo.Employee.ResignDate,
                      dbo.Employee.HealthCarNo, dbo.Jobs.JobName, dbo.Department.DepartmentName, dbo.Employee.PlaceIssue, dbo.Employee.Deduction,
                      dbo.Employee.ExpireDateMedical, dbo.Employee.PolicyNumber, dbo.Employee.ExpireDateResident, dbo.Miritial.MiritualStatus,
                      dbo.Status.StatusType, dbo.Sex.SexType, dbo.Employee.UnactiveReason, CONVERT(varchar, dbo.Employee.BirthDate, 103) AS BirthDate,
                      CONVERT(varchar, dbo.Employee.DateToday, 103) AS DateToday, dbo.Employee.UserID, dbo.Employee.PassportNo, dbo.Employee.Bonus,
                      dbo.Employee.AccountType, dbo.Employee.PlaceOfBirth, dbo.Employee.ExpireDateresidentHijri, CONVERT(varchar, dbo.Employee.PassportDateStart,
                      103) AS PassportDateStart, dbo.Employee.PassportDateExpire, dbo.Employee.EntryNo, dbo.Employee.PlacePassport, CONVERT(varchar,
                      dbo.Employee.Salary) AS Salary, dbo.Employee.AccountNo, dbo.Religon.ReligonName, dbo.Employee.Mobile, dbo.Employee.Email,
                      CONVERT(varchar, dbo.Employee.SexID, 103) AS SexID, CONVERT(VARCHAR, dbo.Employee.StatusID, 103) AS StatusID, dbo.Employee.JoinDate,
                      dbo.Employee.JobDetailes, dbo.BloodType.BloodType, dbo.Class.ClassName, dbo.Employee.OccupationID, dbo.Ocuppation.OcuppationName
FROM         dbo.Employee LEFT OUTER JOIN
                      dbo.Ocuppation ON dbo.Ocuppation.OccupationID = dbo.Employee.OccupationID LEFT OUTER JOIN
                      dbo.BloodType ON dbo.BloodType.BloodID = dbo.Employee.BloodID LEFT OUTER JOIN
                      dbo.Class ON dbo.Class.ClassID = dbo.Employee.ClassID LEFT OUTER JOIN
                      dbo.Department INNER JOIN
                      dbo.Jobs ON dbo.Department.DepartmentID = dbo.Jobs.DepartmentID ON dbo.Employee.JobID = dbo.Jobs.JobID LEFT OUTER JOIN
                      dbo.Miritial ON dbo.Miritial.MiritialID = dbo.Employee.MiritialID LEFT OUTER JOIN
                      dbo.Branch ON dbo.Branch.BranchID = dbo.Employee.BranchID LEFT OUTER JOIN
                      dbo.Status ON dbo.Status.StatusID = dbo.Employee.StatusID LEFT OUTER JOIN
                      dbo.Sex ON dbo.Sex.SexID = dbo.Employee.SexID LEFT OUTER JOIN
                      dbo.Religon ON dbo.Religon.ReligonID = dbo.Employee.ReligonID LEFT OUTER JOIN
                      dbo.Country ON dbo.Country.CountryID = dbo.Employee.CountryID LEFT OUTER JOIN
                      dbo.Nationality ON dbo.Nationality.NationalityID = dbo.Employee.NationalityID
WHERE     (dbo.Nationality.NationalityID IS NULL) OR
                      (dbo.Nationality.NationalityID IS NOT NULL) OR
                      (dbo.Country.CountryID IS NULL) OR
                      (dbo.Country.CountryID IS NOT NULL) OR
                      (dbo.Jobs.JobID IS NULL) OR
                      (dbo.Jobs.JobID IS NOT NULL) OR
                      (dbo.Miritial.MiritialID IS NULL) OR
                      (dbo.Miritial.MiritialID IS NOT NULL) OR
                      (dbo.Branch.BranchID IS NULL) OR
                      (dbo.Branch.BranchID IS NOT NULL) OR
                      (dbo.Status.StatusID IS NULL) OR
                      (dbo.Status.StatusID IS NOT NULL) OR
                      (dbo.Sex.SexID IS NULL) OR
                      (dbo.Sex.SexID IS NOT NULL) OR
                      (dbo.Class.ClassID IS NULL) OR
                      (dbo.Class.ClassID IS NOT NULL) OR
                      (dbo.Ocuppation.OccupationID IS NULL) OR
                      (dbo.Ocuppation.OccupationID IS NOT NULL) OR
                      (dbo.BloodType.BloodID IS NULL) OR
                      (dbo.BloodType.BloodID IS NOT NULL)
what is the proplem in statment sextype in stored procedure

Start over - completely.  The tsql for your view is poorly written. 
One does not have a sex, one has a GENDER. 
I can understand a conversion of datatype like "CONVERT(varchar, dbo.Employee.DateToday, 103) AS DateToday", but not "CONVERT(varchar, dbo.Employee.SexID, 103) " - style 103 is for datetime datatypes and the column name SexID does not
remotely imply that datatype. 
Similarly, stop being so lazy and specify the length of your converted varchar column rather than allowing it to default to some length.  And if you are going to convert to varchar, shouldn't you be converting to nvarchar given that your procedure
arguments are nvarchar?  Consistency will only help your code stability and correctness.
To continue with the datetime to varchar conversion, is this an attempt to simply strip the time component from a column that is datetime?  If so, simply convert it to date and avoid any possibility of error due to interpretation assumptions with the
converted string and its format.
Lastly, do you really need all of those outer joins?  I find it difficult to believe that an employee does not have a required relationship with a majority of those tables.
As for your problem, please post the complete and entire error message - exactly as displayed.  Presumably you have performed a basic test of your view and verified that it still works (i.e., nothing was changed about the tables involved in the view
after the view was created).  Something like "select top 1 * from dbo.ViewEmpTEST where SexType = 'x';" should execute successfully and return an empty resultset. 
And, of course, the SexType column is (presumably) nvarchar, so you will need to enclose the value you are searching for in your dynamic sql with single quotes.  If you intend to provide dynamic searching functionality, you will need to learn to code
it and debug it yourself.  The others have already indicated that this approach is a security-risk.  At the very least, you should capture the string that you are attempting to execute and visually examine it yourself when you discover that
it does not work.  It will then become obvious (assuming the code you currently have posted is what you are using) that the error is your inclusion of the SexType argument in the string:
select ... where ... And (SexType = male)

Similar Messages

  • Error message display for PO creation with reference to internal orders

    Sir,
    While creating PO with Tcode ME21N (item category I) with reference to ' Internal Order with Funds provided (Tcode KO12), system displaying error message  when Budget is exceeded.
    But when Funds provision is not mentioned (Funds value is initial in KO12) , error message is not being given by the system during Po creation with ME21N.
    Where should I configure in img(Tcode SPRO) , so that system will throw error mesage while creating PO without Budget Provision (Funds not mentioned ) in Internal Orders.
    Regards,
    Srinivasa Murthy

    Hi Anupam,
    The error message display as follows. (when the PO Price exceeds the Planned Funds kept for internal order)
    This error comes during PO creation Process and PO can not be saved. This error message display is correct.
    Item 001 Order 600643 budget exceeded
    Message no. BP604
    Diagnosis
    In document item 001 Order 600643, budget  for fiscal year 2009 was exceeded by 99,960,000.00 INR.
    But  my question is 'when funds have not at all been mentioned for the internal order' then system has to throw the same error as mentioned above. But it is not happening. System is allowing the PO to save which is not correct.
    Regards,
    Srinivasa Murthy

  • Error message display for radiobuttongroup using report_attribute_error_msg

    Hi,
    We are displaying error message on the submit button of a form. We have different UI elements in the form
    which are mandatory to enter by the user. So we are using 'CALL METHOD lo_message_manager->report_attribute_error_message' method to display error.
    When  user click on the error message control will go the UI field which is caused for error.
    This works fine for INPUT,DROPDOWNBYKEY,TEXTEDIT,RADIOBUTTON UI elements. Where error link is not working for RADIOBUTTONGROUPBYKEY/RADIOBUTTONGROUPBYINDEX ui elements.
    Is this problem is with WEB DYNPRO ABAP or am i missing any property settings.
    Please help us to resolve the problem. Does SAP Web Dynpro ABAP provide this functionality for RADIOBUTTONGROUPBYKEY/RADIOBUTTONGROUPBYINDEX?
    Below attached written code for reference.
    CASE lo_action->name.
    WHEN 'SUBMIT'.
    IF lv_radio IS INITIAL.
       REPORT message
       call method lo_message_manager->report_attribute_error_message
         exporting
           message_text              = 'Please select something from radio button grp by key.'
           element                   =  lo_el_radio_node
           attribute_name            = `RADIO`
           params                    =
           msg_user_data             =
           is_permanent              = ABAP_FALSE
           scope_permanent_msg       = CO_MSG_SCOPE_CTXT_ELEMENT
           msg_index                 =
           cancel_navigation         =
           is_validation_independent = ABAP_FALSE
      ENDIF.
        IF lv_text IS INITIAL.
       REPORT message
       call method lo_message_manager->report_attribute_error_message
         exporting
           message_text              = 'Please KEY IN SOMETHING THE TEXTEDIT BOX......'
           element                   =  lo_el_text_edit
           attribute_name            = `TEXT`
           params                    =
           msg_user_data             =
           is_permanent              = ABAP_FALSE
           scope_permanent_msg       = CO_MSG_SCOPE_CTXT_ELEMENT
           msg_index                 =
           cancel_navigation         =
           is_validation_independent = ABAP_FALSE
      ENDIF.
        IF lv_radio_group  IS INITIAL.
       REPORT message
       call method lo_message_manager->report_attribute_error_message
         exporting
           message_text              = 'Please select something in second radio group.'
           element                   =  lo_el_radio
           attribute_name            = `RADIO_GROUP`
           params                    =
           msg_user_data             =
           is_permanent              = ABAP_FALSE
           scope_permanent_msg       = CO_MSG_SCOPE_CTXT_ELEMENT
           msg_index                 =
           cancel_navigation         =
           is_validation_independent = ABAP_FALSE
      ENDIF.
    Thanks
    Venkat

    Hi,
    Try to use the method ADD_MESSAGE
    lr_msg_srv = cl_bsp_wd_message_service=>get_instance( ).
      lr_msg_srv->ADD_MESSAGE( IV_MSG_TYPE = 'E'
                                         IV_MSG_ID = 'ZCRM'
                                         IV_MSG_NUMBER = '001'
                                         IV_MSG_V1 = 'Message' ).
    Best regards,
    Caíque Escaler

  • Error Message Displayed while executing FNDLOAD Command in windows machine

    Hi,
    I am getting the following error message while executing the FNDLOAD Command in Windows Machine. Can any one give some clarifications to solve this issue.
    FNDLOAD Command Used:*
    +./FNDLOAD apps/[email protected]:1521:OA10 0 Y DOWNLOAD D:\oracle\oa10appl\xdo\11.5.0/patch/115/import/xdotmpl.lct xdotmpl.ldt XDO_DS_DEFINITIONS APPLICATION_SHORT_NAME=PO
    Error message Displayed for above command:_
    APP-FND-01564: ORACLE error 6401 in AFPCOA
    Cause:  AFPCOA failed due to ORA-06401: NETCMN: invalid driver designator
    Let me know the solution this issue
    Regards
    Arif Mohammed

    Hi Hussein,
    Thanks for your response, Let me explain in detail that the error I am facing while running FNDLOAD Command.
    I have executed the below command in CYGWIN which results in error while calling FNDLOAD.
    *$ java oracle.apps.xdo.oa.util.XDOLoader DOWNLOAD -DB_USERNAME apps -DB_PASSWORD apps -JDBC_CONNECTION 16.89.26.52:1521:OA10 -LOB_TYPE TEMPLATE -APPS_SHORT_NAME PO -LCT_FILE $XDO_TOP/patch/115/import/xdotmpl.lct -LANGUAGE en -TERRITORY US -LOG_FILE SHW.log;*
    I got the below error message while executed the above command (Highlighted in BOLD):
    $ cat SHW.log
    XDOLoader started: Tue Nov 15 20:27:18 PST 2011
    Parameters passed to XDOLoader...
    [TERRITORY] [US]
    [DB_USERNAME] [apps]
    [LCT_FILE] [C:\oracle\vis10appl\xdo\11.5.0/patch/115/import/xdotmpl.lct]
    [DOWNLOAD] [DOWNLOAD]
    [JDBC_CONNECTION] [16.89.26.52:1521:OA10]
    [LANGUAGE] [en]
    [DB_PASSWORD] [apps]
    [LOB_TYPE] [TEMPLATE]
    [LOG_FILE] [SHW.log]
    [APPS_SHORT_NAME] [PO]
    Start downloading...
    Downloading files from XDO_LOBS: SELECT FILE_DATA, LOB_CODE, LOB_TYPE, APPLICATI
    ON_SHORT_NAME, FILE_NAME, LANGUAGE, TERRITORY, XDO_FILE_TYPE FROM XDO_LOBS WHERE
    APPLICATION_SHORT_NAME = :APPS_SHORT_NAME AND LOB_TYPE in (:TEMPLATE, :TEMPLAT
    E_SOURCE) AND LANGUAGE = :LANGUAGE AND TERRITORY = :TERRITORY
    Downloading files from XDO_LOBS: SELECT L.FILE_DATA FILE_DATA, B.TEMPLATE_CODE L
    OB_CODE, L.LOB_TYPE LOB_TYPE, L.FILE_NAME FILE_NAME, L.LANGUAGE LANGUAGE, L.TERR
    ITORY TERRITORY, L.XDO_FILE_TYPE XDO_FILE_TYPE, L.APPLICATION_SHORT_NAME APPLICA
    TION_SHORT_NAME FROM XDO_TEMPLATES_B B, XDO_LOBS L WHERE B.APPLICATION_SHORT_NAM
    E = :APPS_SHORT_NAME AND B.TEMPLATE_CODE = L.LOB_CODE
    Generating LDT file: xdotmpl.ldt
    Calling FNDLOAD: FNDLOAD apps/[email protected]:1521:OA10 0 Y DOWNLOAD C:\oracle\
    vis10appl\xdo\11.5.0/patch/115/import/xdotmpl.lct xdotmpl.ldt XDO_DS_DEFINITIONS
    APPLICATION_SHORT_NAME=PO
    APP-FND-01564: ORACLE error 6401 in AFPCOA
    Cause:  AFPCOA failed due to ORA-06401: NETCMN: invalid driver designator.
    The SQL statement being executed at the time of the error was: and was executed
    from the file .
    Generating DRVX file: xdotmpl.drvx
    XDOLoader done successfully: Tue Nov 15 20:27:30 PST 2011
    $
    So i decided to run the FNDLOAD Command alone in CYGWIN which is highlighted and still im facing the same issue but if i run the below command it works fine and getting download.
    *./FNDLOAD apps/[email protected]:1521:OA10 0 Y DOWNLOAD D:\oracle\oa10appl\xdo\11.5.0/patch/115/import/xdotmpl.lct xdotmpl.ldt XDO_DS_DEFINITIONS APPLICATION_SHORT_NAME=PO*
    Hope you understand the problem which im facing. Let me know some solutions from your side to solve this issue.
    Regards,
    Arif Mohammed

  • "Internal error: An unexpected exception has occurred" error message displayed when browsing a cube.

    “Internal error: An unexpected exception has occurred“ error message displayed when browsing a cube.
    The error behaviour is quite irregular and does not occur for specific condition.
    Will cumulative update 9 for SQL Server 2008 R2 (SP1) installation help to fix the issue which is provided on the below link:
    (http://support.microsoft.com/kb/2152148)
    The current version of SQL Server I am using is as below:
    Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (X64)   Jun 17 2011 00:54:03   Copyright (c) Microsoft Corporation  Enterprise Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1)
    Thanks in advance for the help!

    Hi Mon,
    The hotfix you said is for Microsoft SQL Server 2008. So it will not work on your scenario since you are using SQL Server 2008 R2.
    Based on the limited information, we cannot give you the exact reason that cause this issue. In order to narrow down this issue, you can apply the latest Service Pack and Cumulative Update as GregGalloway said. Besides, you can troubleshoot this issue by
    using the Windows Event logs and msmdsrv.log.
    You can access Windows Event logs via "Administrative Tools" --> "Event Viewer".  SSAS error messages will appear in the application log.
    The msmdsrv.log file for the SSAS instance that can be found in \log folder of the instance. (C:\Program Files\Microsoft SQL Server\MSAS10.MSSQLSERVER\OLAP\Log)
    Here is a blog about data collection for troubleshooting Analysis Services issues, please see:
    Data collection for troubleshooting Analysis Services issues
    Regards,
    Charlie Liao
    TechNet Community Support

  • Had to restore my iMac from Time Machine. After the restoration all programs are functioning except my Adobe Creative Suite 4 Design Premium. When I start any program in the suite the error message, "Licensing for this product has stopped working." I rest

    I had to restore my iMac from Time Machine. After the restoration all programs are functioning except my Adobe Creative Suite 4 Design Premium. When I start any program in the suite the error message, "Licensing for this product has stopped working." I restarted the computer and tried again to run Photoshop and the same error message appeared. The message was followed by a message that stated that I needed to contact Adobe technical support and mention Error: 150.30. I need Adobe technical support to provide me a solution for my problem so I can continue using my Adobe products installed on my computer.

    Unfortunately when Adobe products are restored from backup, especial CS4 and especially Mac, it breaks licensing.
    There is a python script included in the license recovery kit that should work if you are familiar with Terminal.
    If not, you must reinstall your CS4 suite.  You don't need to delete your preferences, so it should be the same as before.
    Error "Licensing has stopped working" | Mac OS
    Gene

  • I get a recurring error message "Cannot Sign in to Itunes" when trying to activate my New York Times for iPad APP account.

    I get a recurring error message "Cannot Sign in to Itunes" when trying to activate my New York Times for iPad APP account. What is the solution?

    Same problem here.  Apparently NYT has zero support capability.  I emailed the. Three times and ive not even gotten an auto responder.
    I deleted the app, re-downloaded it and reset it.
    I have litrally no idea what to do
    Anyone?

  • Error Message as START_FORM is invalid,OPEN_FORM is Missing

    HI Team,
    When i am trying to create a Standard Order using Transaction VA01 and sales document type as OR,when the order is complete and i try to save i get the message as "Error Message as START_FORM is invalid,OPEN_FORM is Missing",look like a SAP SCRIPT issue ,i checked NACE transaction and looks like a PDF form is mentioned there but when i debug the code i get a FORM which is different than one maintained in NACE ,also when i try to look the form in Se71(the one which i got during debugging) i get the message as the Form is not available in Lnaguage EN.
    Note sure why i get the message as " START_FORM is invalid,OPEN_FORM is Missing".
    Can someone help me on this.
    Regards
    LK

    Hi,
    1. If you attempt to use a form that does not exist, OPEN_FORM or START_FORM returns an exception(FORM). If the application does not react to this exception and continues with printing, it terminates with the above-mentioned error.
    2. The error can also occur if form printing is implicitly terminated. This happens if a page has no subsequent page and further data is to be printed.
    Solution
    1. Check in Customizing whether the required form is stored for printing, and whether it exists (transaction SE71, form maintenance).
    2. Check whether all pages of your form have a subsequent page. This is often not the case, and the above error occurs when further pages are to be printed.
    3. Either a form is not defined for a print list used or an output device assigned to a list does not exist into your system.
    Regards,
    Chandra Kavali

  • Inconsistent error message display

    Using jsf/adf 10.1.3.3. Steve, I'm experiencing what seems to be an inconsistency in the way that error messages are being displayed. The problem I'm experiencing is that the first time an attribute fails validation, the error message is displayed only at the top in the message box and not beneath the respective component. The next time validation fails on this field, I see the error message at the top and beneath the component. This inconsistency seems to appear only when an attribute has been marked as mandatory (not null) and that particlar validation fails. Put another way, if I have a method validation on an attribute and that validation fails, I don't see this inconsistency. The error message always displays both at the top and beneath the component. I've tested this on one of your samples, RequiredFieldsWithCustomRequiredMessageIncludingFieldLabel, and found it happening there also. I made one slight change to the code in that example so that I could recreate this problem. There's code behind the Save button of the CreateNewEmployee.jspx which sends the user back to the 'Home' page of this app if the commit is successful. I've rewired that by returning null instead of returning "back". This way I can recreate the problem. Here are the steps to recreate:
    1) Run CreateNewEmployee.jspx
    2) Without entering any values, click Save.
    3) Validation fails for each of the required attributes, the errors appear for each of these attributes, but only in the top message box.
    4) Enter in valid values for the required fields.
    5) Click Save. This should commit the record just fine.
    6) Null out the value just entered for Employee Name.
    7) Click Save. Validation fails for Employee Name and the error message displays both at the top and just beneath the Employee Name input.
    I see this behavior without using the customized PageLifecycle class too, so I don't think that it has anything to do with those framework extension classes. Any idea as to why when validation fails the first time for a required attribute the error message does not display beneath that component as well? Thanks.

    The only workaround mentioned in the bug report is to use required="#{...}" instead of showrequired="#{...}" That is, if the client side manages the enforcement of the requiredness, then the issue apparently does not occur. The bug is still open (i.e. hasn't yet been fixed in 11g).
    I'd recommend you file a Service Request on Metalink and ask for a fix to bug# 5918276 if it's a showstopper issue for you.

  • Error message "397819" for a Discoverer report

    Please assist me,When I am opening a particular Discoverer report I am getting a error message as "397819" .What can be the reason and how to resolve it?
    I am giving the system details:
    Oracle Database 11g Enterprise Edition release 11.2.0.1.0
    Oracle BI Discoverer Administrator version 11.1.1.3.0
    Oracle BI Discoverer Plus 10g(10.1.2.54.25)
    Oracle E-Business Suite version 12.1.2
    Windows Server 2008 R2 Standard Service Pack 1
    This error is displayed for only 1 report for all users from all browser .
    Edited by: 934255 on Jun 4, 2012 4:04 AM

    Only this error number is being shown and even when I am trying to view the sql from Tool-> Show SQL just that error no. is getting displayed.I am giving the system details:
    Oracle Database 11g Enterprise Edition release 11.2.0.1.0
    Oracle BI Discoverer Administrator version 11.1.1.3.0
    Oracle BI Discoverer Plus 10g(10.1.2.54.25)
    Oracle E-Business Suite version 12.1.2
    Windows Server 2008 R2 Standard Service Pack 1.
    Please resolve this problem.

  • ITunes has stopped working error message on my Dell Latitude E6520 when trying to sync photos to my iPhone 3GS.  Why?!

    For some reason, I keep getting the "iTunes has stopped working" error message on my Dell Latitude E6520 when trying to sync photos to my iPhone 3GS.  I am using Windows 7 on my 64-bit computer.  iTunes will begin to optimize the photos in the folder I have directed it to (I am trying to load almost 3000 photos and videos), and it will go through optimizing all of them singularly, then get to the step where it says "optimizing" again, but does so in bigger groups.  It will get to about 2000, and then the error message "iTunes has stopped working" will pop up, and say that "Windows must close the program and will search for a solution, and if it finds one, it will notify me".  Why can't I sync these photos, and what can I do?  Thanks so much for the help, I really appreciate it!

    Same problem here! Moreover, for some reason, the pictures in my iPhone 3GS somehow have been divided into 2 folders, Photos and Medialibrary. And when I open iPhone as a folder through the explorer I can see only the Photos folder, but cannot see the Medialibrary folder which stores the photos taken before updating/upgrading the iPhone and getting separated folders!!! What the hack with all of this?!!! When I connect iPhone to PC it automatically opens iTunes and starts syncronizing it, but at the process of OPTIMIZING the photos (and according to the number of photos it shows, I see that it tries to syncronize that invisible Medialibrary folder) the process suddenly stops and error message pops out Tried the sync test, tried the button DEBUG in that pop out message, but NOTHING HELPS!!! Also, when I open the Medialibrary in my iPhone, the screen get sblack all through scrolling it down, only the video clips are shown there... >.<
    So, could you, apple developers, please, explain WHAT THIS PROBLEM IS ABOUT?!!!!!! FIX IT! I am getting ****** of to spend hours at the computer and reading those lame advises which do not help at all! I have my own things to do except reading your support websites. And I payed for the product ready to use, but not a halfproduct which problems should further be solved somehow by users..

  • Huey Pro calibrator- error message  display measurement Error

    i am using this huey pro calibration.. it had been a year without problem... but now i am trying to calibrate my apple cinema display LCD 30 inch it keep saying error message- display measurement error.. and huey support never answer my e-mail. any idea? how can i fix it.. i did re install software many times but same thing happen.. so right now i can;t calibrate my monitor.. any help please

    >a nice NVidia card... Please help Adobe!
    1a - what is the model nVidia card, and what is your driver version?
    1b - for instance, I have a GTX 285 and driver 296.10
    2a - aside from the occassional Adobe employee, this is a user to user forum, not Adobe suport
    2b - how to contact Adobe...
    Adobe contact information
    http://www.adobe.com/support/contact
    In the US - Adobe General support 800-833-6687 M-F 5am-7pm Pacific
    In the US - Adobe Install Problems 800-642-3623
    In the US - Adobe Activation 866-772-3623 Open 24/7

  • ERROR MESSAGE : display of the query spec is not allowed

    Hi all,
    I have many queries built under a multiprovider. The problem is if i try to chane a query it is not allowing me to do it. Even for a query which i built it is not allowing. It is displaying an error message 'display of the query spec is not allowed'.
    Can anyone help me in understanding this issue?
    Thanks,
    Raj.

    Have you check your authorizaiton trace with ST01?
    You need authorization for this query in auth obj S_RS_COMP or S_RS_COMP1

  • Getting error message "Could not create work area" when I open Bridge CC.

    I am getting an error message "Could not create work area" when I open Bridge CC.
    I have reset my workspace. I have closed and opened Bridge CC. I have deleted the !!-$$$AdobeOutputModule.workspace file in /Library/Application Support/Adobe/Bridge CC/Workspaces folder.
    I am not an expert computer user, so please explain in detailed steps like I am 5 years old. Thanks in advance for any help.

    I am experiencing the same problem!
    My mac is OS X Yosemite (10.10.1), Photoshop CC 2014.2.1, Bridge CC 6.1.0.115 and Camera Raw 8.7.0.309

  • When I tried to update Itunes I got an error message telling me to reinstall.  When I try to reinstall I get a message "Apple Mobile Devide failed to start.  Verify you have sufficient privliges to start syem services"  Can anyone help here?

    When I tried to update Itunes I got an error message telling me to reinstall.  When I try to reinstall I get a message "Apple Mobile Devide failed to start.  Verify you have sufficient privliges to start syem services"  I'm not sure what this means, can anyone help here?  Thanks,

    I tried the temp fix you mentioned, it didn't work.  I could not delete all of the old itunes files, the uninstallers would crash half way through and if I tried to manually delete anything it also gave me an error, so reinstalling the older version would not work. 
    Frankly, this whole thing has got me ****** off.  judging by the amount of complaints here, there must be a lot of people having this problem, yet Apple has let it go on for almost 2 weeks.  What kind of inept coders are they employing if they can let an update that completely frags their software get through QA.
    Does anyone know of any programs that will play itunes music files?  I am just about done dealing with iTunes, but I've got a ton of music that I don't want to have to purchase all over again.

Maybe you are looking for

  • HT1766 Hi I have a reservation tomorrow and I need to backup my phone but it doesn't backup what shall I do

    Mu phone is not backing up

  • Counter reading reset-Ik11

    Hi, I want to put a check on Counter reading entry,since people are entering wrong data compare to last measuring reading. so every time counter is getting reset. so we need put a condition,only incremental value should allow in Counter reading field

  • Logic has record 2 x every note!!!!!

    Howdy. I didn't realise... the 'LAYER' button was turned on my keyboard and Logic has recorded 2 x every note!!! Is there anyway of deleting the notes in one fell swoop? I need import these as midi files into Sibelius for an orchestration.. sending m

  • Source Control hooks

    Hello, I've heard that there are some source control hooks or something like that are available for Forte development. Can anyone point me in the right direction, please ? THanx, FU To unsubscribe, email '[email protected]' with 'unsubscribe forte-us

  • Snapshot did not propagate changes to replicated table. kindly help

    Hi, Oracle 8.0.5 on windows server 2003. Objective:to replicate SALES table from Production DB to Backup DB. The steps I did are as follows: 1. create db links to and from Prod and backup DB. 2. create snapshot logs on SALES table on Prod DB 3. creat