Populate DB after moving item from right panel to left panel of shuttle

Refer to the following forum: Re: APEX 4.1 - Populate DB based on right panel of shuttle
Refer to the following apex app: http://apex.oracle.com/pls/apex/f?p=27554:51
Login: demo
PW: demo
APEX version: 4.1.1.00.23
Oracle 11g
What do I need to add to the page process that when shuttle items are moved from the right panel back to the left panel, 'null' is assigned to the 'Analyst' column of the DB table?
My current page process updates the DB table column 'DQ_ANALYST' with the name in the select list based on the items in the right panel of the shuttle. (Again see the previous thread: Re: APEX 4.1 - Populate DB based on right panel of shuttle
declare
    tab apex_application_global.vc_arr2;
    l_count number;
begin
    tab := apex_util.string_to_table (:P51_SHUTTLE);
    for i in 1..tab.count
    loop
    select count(*) into l_count from DQ_MANUAL_EDIT WHERE DQ_ATTRIBUTE = tab(i);
     if l_count > 0 then
       UPDATE DQ_MANUAL_EDIT
       SET DQ_ANALYST = :P51_DQ_ANALYST
       WHERE DQ_ATTRIBUTE = tab(i);
    end if;
    end loop;
end;DB table (before clicking button):
Field                          Analyst
Co-Borrower Credit Score       Analyst_1
Appraised Value               Analyst_1
Appraisal Identifier          Analyst_1When 'Appraised Value' and 'Appraisal Identifier' are moved from the right panel back to the left panel and the 'Apply Changes' button is clicked, I am wanting the 'Analyst' column to be updated with 'null'.
DB table (before clicking button):
Field                          Analyst
Co-Borrower Credit Score       Analyst_1
Appraised Value               (null)
Appraisal Identifier          (null)Here is my test code:
declare
    tab apex_application_global.vc_arr2;
    l_count number;
begin
    tab := apex_util.string_to_table (:P51_SHUTTLE);
    for i in 1..tab.count
    loop
    select count(*) into l_count from DQ_MANUAL_EDIT WHERE DQ_ATTRIBUTE = tab(i);
     if l_count > 0 then
       UPDATE DQ_MANUAL_EDIT
       SET DQ_ANALYST = :P51_DQ_ANALYST
       WHERE DQ_ATTRIBUTE = tab(i);
    end if;
--Doesn't work but here is an example of what I am trying to accomplish
     if l_count > 0 then
       UPDATE DQ_MANUAL_EDIT
       SET DQ_ANALYST = null
       WHERE DQ_ATTRIBUTE <> tab(i);
    end if;
    end loop;
end;

I used the following code. First, I run an update statement setting the DQ_ANALYST to null where the DQ_ANALYST is equal to the select list field (:P51_DQ_ANALYST). Then based on what is currently on the right panel, set the DQ_ANALYST to what is in the select list field (:P51_DQ_ANALYST).
declare
    tab apex_application_global.vc_arr2;
    l_count number;
begin
    UPDATE DQ_MANUAL_EDIT
    SET DQ_ANALYST = null
    WHERE DQ_ANALYST = :P51_DQ_ANALYST;
    tab := apex_util.string_to_table (:P51_SHUTTLE);
    for i in 1..tab.count
    loop
    select count(*) into l_count from DQ_MANUAL_EDIT WHERE DQ_ATTRIBUTE = tab(i);
     if l_count > 0 then
              UPDATE DQ_MANUAL_EDIT
              SET DQ_ANALYST = :P51_DQ_ANALYST
              WHERE DQ_ATTRIBUTE = tab(i);
    end if;
    end loop;
end;

Similar Messages

  • What is error 150:30, and why won't CS4 work after moving it from old mac to new?

    What is error 150:30, and why won't CS4 work after moving it from old mac to new?

    Reinstall the software properly
    Mylenium

  • Populate List of AutoSuggest Item from Database

    Hi,
    I am working in JDeveloper 11.1.2.1.0 IDE and developing an ADF Application.I just want to know how to populate the list of AutoSuggest Item from a database.
    Please reply.
    Thanks.

    hi user,
    nothing to do with you thread.
    why are you cross posting here also.
    duplicate:
    Populate List of AutoSuggest Item from Database

  • Unable to change Axis y location from right side to left

    Hi All,
    I am working with OBIEE 11.1.1.1.7.
    I am tring to change the location of AXIS Y (in chart) from right side to left.
    please help :-)

    Hi Tyson,
    I did exactly what you have mentioned and it worked fine.
    But when I am putting the same thing in my custom.css file as mentioned below, IT's NOT WORKING.
    uploaded custom.css at
    Application XXX>Shared Components>Cascading Style Sheets
    custom.css
    .TabHolder,.TabHolderC {text-align:left;}calling custom.css in the Page Template (one level tab)
    <head>
    <title>#TITLE#</title>
    <link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_16/theme_3_1.css" type="text/css" />
    <!--[if IE]><link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_16/ie.css" type="text/css" /><![endif]-->
    <!-- added custom css file -->
    <link rel="stylesheet" href="#WORKSPACE_IMAGES#custom.css" type="text/css"/>
    #HEAD#
    </head>Any idea why it is not picking up???...
    Thanks,
    Deepak

  • APEX 4.1 - Populate DB based on right panel of shuttle

    APEX version: 4.1.1.00.23
    Oracle 11g
    I have a shuttle on a page, and when I move item(s) to the right panel from the left, I want to update a table in the database with what is in a select list.
    In this case, when I select 'Analyst_1' from the drop down, it will populate the right side based on javascript.
    [Screen Shot 1|http://i.stack.imgur.com/WhB6h.jpg]
    DB table (before clicking button):
                 Field                          Analyst
    Co-Borrower Credit Score       Analyst_1
    Appraised Value               (null)
    Appraisal Identifier          (null)Then, after I move some items from the left panel to the right panel and click 'Apply Changes', I want 'Analyst_1' to be put in the analyst field on the DB for each of the field names on the right panel.
    [Screen shot 2|http://i.stack.imgur.com/nMSvU.jpg]
    DB table (after clicking button):
                Field                        Analyst
    Co-Borrower Credit Score    Analyst_1
    Appraised Value             Analyst_1
    Appraisal Identifier        Analyst_1Here is my code for when the button 'Apply Changes' is clicked.
    UPDATE data_table
       SET analyst_name = :P51_ANALYST
    WHERE field IN (SELECT a_field
                       FROM
                         xmltable('/root/e/text()' passing xmltype('<root><e>'
                         || REPLACE(:P51_SHUTTLE_RIGHT,':','</e><e>')
                         || '</e></root>') columns a_field VARCHAR2(50) path '/'));Edited by: Sid_244 on Nov 14, 2012 12:35 PM
    Edited by: Sid_244 on Nov 14, 2012 12:37 PM

    Rohit -
    I tried your example, but when I click the 'Apply Changes' button, the DB table removes all of the items that are associated with the analyst in the select list. So if there was anything in the right panel or items that I moved over to the right panel, the analyst is removed from their attribute.
    Here is an example of what I am trying to accomplish:
    http://apex.oracle.com/pls/apex/f?p=27554:51
    login: demo
    pw: demo
    Here is the code that I ran:
    DECLARE
    l_selected HTMLDB_APPLICATION_GLOBAL.VC_ARR2;
    BEGIN
      l_selected := HTMLDB_UTIL.STRING_TO_TABLE(:P51_SHUTTLE);
      FOR i IN 1..l_selected.count
      LOOP
            UPDATE DQ_MANUAL_EDIT
              SET DQ_ANALYST = :P51_ANALYST
              WHERE DQ_ATTRIBUTE in (l_selected(i));
      END LOOP;
    END;Other failed codes:
    declare 
    v_count number;
    begin
    -- First check if the
    select count(*) into v_count
    from DQ_MANUAL_EDIT
    where dq_attribute = :P51_SHUTTLE_RIGHT
    and :P51_SHUTTLE_RIGHT is not null;
    if v_count > 0 then
      -- If it exists then save it
      update DQ_MANUAL_EDIT
      set DQ_ANALYST = :P51_DQ_ANALYST
      where DQ_ATTRIBUTE = :P51_SHUTTLE_RIGHT;
    else
      -- Else insert a new record into the table
      insert into DQ_MANUAL_EDIT
      (DQ_ANALYST, DQ_ATTRIBUTE)
      values
      (:P51_DQ_ANALYST, :P51_SHUTTLE_RIGHT);
    end if;
    end;
    --Test #2
    declare
        tab apex_application_global.vc_arr2;
    begin
        tab := apex_util.string_to_table (:P51_SHUTTLE_RIGHT);
        for i in 1..tab.count loop
            UPDATE DQ_MANUAL_EDIT
              SET DQ_ANALYST = :51_ANALYST
              WHERE DQ_ATTRIBUTE = :P51_SHUTTLE_RIGHT;
        end loop;
    end;
    --Test #3
    declare
        tab apex_application_global.vc_arr2;
    begin
        tab := apex_util.string_to_table (:P51_SHUTTLE_RIGHT);
        for i in 1..tab.count
        loop
           UPDATE DQ_MANUAL_EDIT
           SET DQ_ANALYST = :51_ANALYST
           WHERE DQ_ATTRIBUTE = tab(i);
        end loop;
    end;
    --Test #4
    DECLARE
    var_test  VARCHAR2(2000):= NULL ;
    begin
    SELECT a_field into var_test
                       FROM
                         xmltable('/root/e/text()' passing xmltype('<root><e>'
                         || REPLACE(:P51_SHUTTLE_RIGHT,':','</e><e>')
                         || '</e></root>') columns a_field VARCHAR2(50) path '/');
    end;

  • Remove an item from right-click menu?

    How do I remove an item from a right-click menu? An application I installed but later removed placed an item on my right-click menu. I want to remove the right-click item it placed there. I've looked in .../user/library/contextual menu and /library/contextual menu but don't see anything there that suggests it might be related.
    Thanks.

    I suddenly realized this was a FireFox Add-on. Once I realized that it was easy to go to Add-on menu in Firefox and remove it.
    Problem solved.

  • Moving items from sub-folder to inbox are disappearing

    Hello everyone, 
    We have exchange 2010 and we are having issue when user move item from sub-folder to inbox then the item just disappears. I have tested this at-least 3 mailboxes. 
    If i do this in outlook then it disappears right away. if i do this in OWA then it disappears in 10 seconds.  Sometimes it shows up in deleted folder but most of the time it doesn't but it always shows up in "recover deleted item" in outlook.
    Please advise how to find what's going on. thanks 

    I don't think it is a Managed Folder Mailbox Policy which is doing this. We have almost ruled out that the issue is specific to Client but not Server. If you want to check the Managed Folder Mailbox Policy for a mailbox run the command below:
    Get-Mailbox -ResultSize Unlimited -Server ServerName |?{$_.ManagedFolderMailboxPolicy -ne $Null}
    The above command will help us get all the mailboxes where there is a ManagedFolderMailboxPolicy Applied
    To Get the ManagedFolderMailboxPolicy for a Specific Mailbox Run the command below:
    Get-Mailbox MailboxName | Fl Name,DisplayName,ManagedFolderMailboxPolicy
    If Deleting the outlook profile/ost fixed the issue, then it might have been most likely an issue with corrupted outlook rule. if you want to do it for all the mailboxes across org, i would suggest you force that via group policy using a PRF File.
    M.P.K ~ ( Exchange | 2003/2007/2010/E15(2013)) ~~ Please remember to click “Vote As Helpful" if it really helps and "Mark as Answer” if it answers your question, “Unmark as Answer” if a marked post does not actually answer your question. ~~ This
    Information is provided is "AS IS" and confers NO Rights!!

  • Updating Phone Directory after moving users from default "users" folder

    After moving any users from the default "users" folder in AD to a new OU the phone system no longer shows them in the Directory. How could I update the phone system after making changes to the AD structure?

    You need to re-run the AD plugin.
    And point User Search base to that new OU.
    http://www.cisco.com/en/US/products/sw/voicesw/ps556/products_tech_note09186a0080292f6e.shtml#topic2

  • Moved half of right screen to left

    hi
    i have macbook pro 17'  made  2011
    with vga 1 amd radeon core i 7 8gig ram hdd 750
    last night when i worked my screen  got half and the part of half right went to left .. my quarranty support is finished . and i need to repair this ..
    as i ask  this is for graphics chipset .and i dont know apple  repair  my laptop or not and how much is that ?
    i dont have access to go to apple store  easy to ask ..  please help me  about  this ..
    where can i go to repair ?.. how much i must pay ?

    Hey wolfpac2056,
    Remove any protective cases or films from the iPod, clean the screen and test with bare fingers.
    http://docs.info.apple.com/article.html?artnum=305689#faq5
    http://docs.info.apple.com/article.html?artnum=305705
    If the iPod touch still will not respond to touch and you have done a restore, it may need hardware repair.
    You can request repair online here: https://selfsolve.apple.com/GetWarranty.do
    Or make a reservation to visit a Mac Genius online here: http://www.apple.com/retail/
    Jason

  • How to get batch recognition of (!) on some tracks after moving library from external hard drive to new iMac (with terabyte hard drive)?

    I'm using Lion 10.7.2 and iTunes 10.5.2
    I have moved my iTunes music from an external hard drive onto my new iMac (with a terabyte hard drive) with music folder organized - when I try to play some tracks I get the iTunes can't locate warning and so I follow through and show iTunes the track - they are all in the music folder on my iMac hard drive - they all copied over and they all appear in the iTunes library list - so far as I can tell out of a 500 gigabyte music collection - but there are so many giving me the error - many other tracks function as they should too, some work others don't - So I'm looking for a way to get all the error tracks fixed in a batch correction way. Doing this individually with each track just isn't realistic.
    Can anyone suggest how I might fix this issue?
    Also, after I show iTunes the song location and it plays, I get a find files prompt that looks like it wants to find other files, but that just causes the process to jam and I have to force quit iTunes and then it doesn't remember what I last showed it next time I open iTunes.
    Also I'm trying to avoid the use of the consolidate function because that would copy a whole other set of music - not in iTunes - that is in the process of being edited (audio hijack pro and fission tools being used to put vinyl and tapes to mp3) But all that other music just means the consolodate function across my whole computer would be too much.

    Some details seem to be coming into focus - I have started scrolling through the main library list A to Z repairing tracks individually (there are thousands, but it's what works so far) - as I work through, it appears the problem occurred on tracks where album artist metadata was different than song artist metadata, predominantly. I'm not sure that is 100% the case in every instance, but that is what it's looking like. I don't why that happened, must be some technical glich I guess.
    Also, I tried running Doug's Scripts - the one titled, iTunes Track CPR v1.3 - it is supposed to fix exactly the kind of issue I'm having - I bet it would work for some people with a similar issue - but for my case it only identifies the 'de-linked' tracks and doesn't repair them - that is at least helpful as I scroll though to fix them - I can see exactly which tracks have the issue quickly after running that script - but iTunes doesn't remember that warning symbol after a log-out, so it's only worth running the script on a set of tracks I intend to review and fix in any given session at a time.
    If you are interested, Doug's free scripts can be found at
    http://dougscripts.com/itunes/scripts/ss.php?sp=itunestrackcpr
    there are other interesting and useful iTunes scripts there too...
    also, unrelated to the issue I'm having, I found a lot of really useful and time saving metadata fixing free scripts at - hubi's iTunes scripts - the page isn't English, but the script download is easy to find -
    hubi's scripts work for batch selections of tracks - so if you import an album and find the metadata screwed up somehow, you can select the whole set of screwed up tags at once (even across a series of albums), run the easy to use script, and watch it all be fixed automatically while you sit back and relax...
    http://hubionmac.com/wordpress/category/softwareschmiede/applescripting/itunes/
    just for reference, here is a sampling of what hubi's scripts can do...
    there are other useful scripts out there - the tough part can be finding the one that helps you...
    01-(un)capitalizes
    01-(un)capitalizes
    This script changes.... THIS TEXT into This Text... or this text
    01-Delete spaces
    Sometimes invisible blanks are behind an artist name or album name...this script deletes these blanks behind or infront of the strings
    01-Delete x first-last chars. of Title
    A Name like "01--Ray Of Light" will be changed to "Ray Of Light" and the01 will be entered in the tracks tracknumber id3 field =)
    01-fix combined Artist-Title
    Sometimes Tracknames look like:
    "Madonna---Ray of Light" and in the artist field you see something like"Ripped by Me"... this script puts Madonna back to the right field... all youhave to do is to enter the right delimiter ("---" in this case)
    01-switch Artist<->Title...
    Switch ID3 field a with ID3 field b (not only Artist with Title any more =)!
    01-z_filename ->Title
    Sets the ID3 field Title to the track's filename)
    01-z_trackNr-Filename->ID3
    When a track's filename look like "01-Madonna-Ray of Light.mp3" andyou don't have the track's tracknumber stored in the ID3 Tag... this Scriptcan do this for your =)

  • "Software Usage Metrics initialize failed" error when open Report Manager, after moving ReportServer from SSRS 2008 to SSRS 2012 (Native Mode)

    I've asked this question in SQL Server Upgrade forume, I'm asking here as well:
    Your help is highly appreciated!
    After migrating ReportServer db from 2008 to 2012, when access Report Manager throughhttp://myserver:80/Reports, I got the error below:
    ui!ReportManager_0-3!11d8!02/04/2013-15:19:12:: e ERROR: Software Usage Metrics initialize failed
    The process is below:
    •I successfully installed SQL Server 2012 (64-bit) Enterprise as a Native Mode on a server who runs Windows 7 Enterprise SP1 (64-bit).
    •I restored "ReportServer2008To2012" and "ReportServer2008To2012TempDB" in SSRS 2012 from the db files backed up in SQL 2008. In SSRS 2008, I have SSRS Model, ad-hoc reports based on model, and I also have canned reports built through BIDS
    report server project.
    •I reconfigured both databases' Compatibility level to SQL Server 2012(110) from SQL Server 2008(100).
    •I configured SSRS through Reporting Services Configuration Manager as below:
      > I chosen "Use built-in account:" as Service Account
    > In "Database" tab, I selected "Choose an existing report server database" and choose "ReportServer2008To2012" db, I used "Windows Authentication" (my login has the System Administrator priviledge). I got all 4 parts
    success: Verifying database sku = Success; Generating rights scripts = Success; Applying connection rights = Success; Setting DSN = Success.
    > I went to "Scale-out Deployment" to check if the initializing succeed, I found nothing there.
    Here are what I did from different approaches:
    A •I went to "Encryption Keys" and restored the key I backed up from SSRS 2008, after retoring, I got two initialized instances: One is on my current server (SSRS 2012), the other one is from the old server (SSRS 2008).
       I deleted the old one(SSRS 2008) through "Remove Server" action and kept the one on my current server(SSRS 2012).
       After I restart SSRS service, and tried to connect Report Manager, I got "An internal error occurred on the report server. See the error log for more details."
       I checked the log file, the error is actually "ERROR: Software Usage Metrics initialize failed"
    B •I also tried to "Delete Encrypted Content" and did see the SSRS was initialized through checking it on "Scale-out Deployment", however when I tried to open Report Manager, I got the same error.
    Anyone had the same issue? Any solution? Thanks in advance!

    Your help is highly appreciated!
    After migrating ReportServer db from 2008 to 2012, when access Report Manager through
    http://myserver:80/Reports, I got the error below:
    ui!ReportManager_0-3!11d8!02/04/2013-15:19:12:: e ERROR: Software Usage Metrics initialize failed
    The process is below:
    •I successfully installed SQL Server 2012 (64-bit) Enterprise as a Native Mode on a server who runs Windows 7 Enterprise SP1 (64-bit).
    •I restored "ReportServer2008To2012" and "ReportServer2008To2012TempDB" in SSRS 2012 from the db files backed up in SQL 2008. In SSRS 2008, I have SSRS Model, ad-hoc reports based on model, and I also have canned reports built through BIDS
    report server project.
    •I reconfigured both databases' Compatibility level to SQL Server 2012(110) from SQL Server 2008(100).
    •I configured SSRS through Reporting Services Configuration Manager as below:
     > I chosen "Use built-in account:" as Service Account
     > In "Database" tab, I selected "Choose an existing report server database" and choose "ReportServer2008To2012" db, I used "Windows Authentication" (my login has the System Administrator priviledge). I got all
    4 parts success: Verifying database sku = Success; Generating rights scripts = Success; Applying connection rights = Success; Setting DSN = Success.
     > I went to "Scale-out Deployment" to check if the initializing succeed, I found nothing there.
    Here are what I did from different approaches:
    A •I went to "Encryption Keys" and restored the key I backed up from SSRS 2008, after retoring, I got two initialized instances: One is on my current server (SSRS 2012), the other one is from the old server (SSRS 2008).
       I deleted the old one(SSRS 2008) through "Remove Server" action and kept the one on my current server(SSRS 2012).
       After I restart SSRS service, and tried to connect Report Manager, I got "An internal error occurred on the report server. See the error log for more details."
       I checked the log file, the error is actually "ERROR: Software Usage Metrics initialize failed"
    B •I also tried to "Delete Encrypted Content" and did see the SSRS was initialized through checking it on "Scale-out Deployment", however when I tried to open Report Manager, I got the same error.
    Anyone had the same issue? Any solution? Thanks in advance!

  • How to remove old items from right-click contextual menus?

    So, I've installed two versions of Photoshop. The older CS4 and then recently upgraded to CS5. I've uninstalled some items (Photoshop CS4, Illustrator CS4) from the system using the Adobe uninstaller. But for some strange reason, if I control-click or right-click on an item, say a PDF, Photoshop CS4 or Illustrator CS4 Still show up in the list ...
    I've searched the ~/Library/ folder and can't find a Contextual menus folder.
    In the /Library/Contextual menus folder only 1 item is listed even if I show all files.
    Any ideas? I'm very much lost and I would really like to have the applications that no longer exist on the drive removed from the list... Thanks in advance

    If you want to learn more about OS X and other Apple stuff there are a few sites you might want to look at:
    http://reviews.cnet.com/macfixit/
    http://mactips.info/
    http://osxdaily.com/
    http://www.macosxtips.co.uk/
    Thanks for the star

  • Problem with junkmail folders after moving gwia from netware to linux

    Recently moved our gwia that handles internet email from Netware to Sles
    11 GW8.0.3 hp3. Email is moving in and out ok, but I'm getting some
    really weird strangeness with Junkmail settings. Just like the old
    gwia, this gwia has it's own domain/mta. Postoffices are under
    different domains/mta's.
    1. Email flagged with "x-spam-flag: yes" is no longer automatically
    being moved to the junkmail folder. Yes the box is checked for this
    particular's gwia settings, and I've even uncommented it in the gwia.cfg
    file to to be sure it's enabled.
    2. With the "view" column enabled in the client I can see that normal
    email coming in gets set with the tag "internet" Email coming in with
    "x-spam-flag: yes" in the header gets set with the tag "IPM.Novell.ND"
    If I right click on one these to try to manually set it as junkmail, I
    get a message that the message is "Not Eligible for Junk Mail Handling"
    and when I click on that a window pops up saying "This is a POP message.
    Only internet mail sent to your Groupwise account is eligible for Junk
    Mail Handling"
    For whatever reason instead of moving the email to the junkmail folder
    when the x-spam-flag is set, it changes it to type IPM.Novell.ND and
    then the client thinks that it's some sort of POP message instead of an
    internet email. If I redirect incoming email back through the old
    Netware gwia instead, everything works fine.
    What could possibly be going on?

    Originally Posted by Mike
    Recently moved our gwia that handles internet email from Netware to Sles
    11 GW8.0.3 hp3. Email is moving in and out ok, but I'm getting some
    really weird strangeness with Junkmail settings. Just like the old
    gwia, this gwia has it's own domain/mta. Postoffices are under
    different domains/mta's.
    Did you create a new Gateway ( gwia ) object? Or recycle the old one ( which is usually a huge no-no. ) I suspect you created a new one, as you refer to the old NetWare GWIA. But you never know.
    Originally Posted by Mike
    1. Email flagged with "x-spam-flag: yes" is no longer automatically
    being moved to the junkmail folder. Yes the box is checked for this
    particular's gwia settings, and I've even uncommented it in the gwia.cfg
    file to to be sure it's enabled.
    Its only enabled if the run-time config says it is. ;-) Look at the settings listed in the HTTP console for the GWIA or the GWIA logs, which dumps the settings actually being used. You may find the setting is not really effective. Check for differences between the two GWIAs effective config.... something may stick out.
    In the message properties there is a junk mail handling section, can you give us an example of working / non-working versions?
    Note also:
    Support | Junk mail delivered to Inbox <-- buggy or unexpected behavior
    and
    Novell Doc: GroupWise 8 Administration Guide - Blocking Unwanted E-Mail from the Internet <-- xspam.cfg
    -- Bob

  • Contacts not visible after moving contacts from SI...

    I have express music 5310. i had moved my contacts from sim to phone memory. After which these contacts are not visible. These are not available on the sim anymore. They are not visible on contact lists too..
    Any help on retrieving these would be very helpful

    In contacts settings set the phone contacts to phone contacts only is it now set to both?
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • CS4 timeline gets distorted when moving items from bin to timeline

    Hello everyone.I'm using Premier pro cs4 with windows vista ultimate 32 bit. when trying to move files from the bin into the  timeline the display gets distorted and multiply the timelines. Any advice? 

    More information needed for someone to help
    http://forums.adobe.com/thread/416679
    Some specific information that is needed...
    Brand/Model Computer (or Brand/Model Motherboard if self-built)
    How much system memory you have installed, such as 2Gig or ???
    Operating System version, such as Win7 64bit Pro... or whatevevr
    -including your security settings, such as are YOU the Administrator
    -and have you tried to RIGHT click the program Icon and then select
    -the Run as Administrator option (for Windows, not sure about Mac)
    Your Firewall settings and brand of anti-virus are you running
    Brand/Model graphics card, sush as ATI "xxxx" or nVidia "xxxx"
    -or the brand/model graphics chip if on the motherboard
    -and the exact driver version for the above graphics card/chip
    -and how much video memory you have on your graphics card
    Brand/Model sound card, or sound "chip" name on Motherboard
    -and the exact driver version for the above sound card/chip
    Size(s) and configuration of your hard drive(s)... example below
    -and how much FREE space is available on each drive (in Windows
    -you RIGHT click the drive letter while using Windows Explorer
    -and then select the Properties option to see used/free space)
    Windows Indexing is BAD http://forums.adobe.com/thread/676303
    While in Properties, be sure you have drive indexing set OFF
    -for the drive, and for all directories, to improve performance
    Some/Much of the above are available by going to the Windows
    Control Panel and then the Hardware option (Win7 option name)
    OR Control Panel--System--Hardware Tab--Device Manager for WinXP
    And the EXACT type and size of file that is causing you problems
    -for pictures, that includes the camera used and the pixel dimensions
    Plus Video-Specific Information http://forums.adobe.com/thread/459220?tstart=0
    Read Bill Hunt on a file type as WRAPPER http://forums.adobe.com/thread/440037?tstart=0
    What is a CODEC... a Primer http://forums.adobe.com/thread/546811?tstart=0
    What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037?tstart=0
    Report back with the codec details of your file, use the programs below
    For PC http://www.headbands.com/gspot/ or http://mediainfo.sourceforge.net/en
    For Mac http://mediainfo.massanti.com/
    Once you know exactly what it is you are editing, report back with that information... and your project setting, and if there is a red line above the video in the timeline, which indicates a mismatch between video and project

Maybe you are looking for

  • Error while accessing CSadmin

    Dear Gurus, I have installed Content server 640 on SUSE Linux 10 SP2 without selecting the SAP DB option as i wanted to store all my files on FILE SYSTEM. My filesystem is as below =====================================================================

  • Problem in tilelist with dataprovider.

    I have a problem in tilelist. with the dataprovider a get the message error ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller. at flash.display::DisplayObjectContainer/removeChild() if i delete the images from the l

  • Copy control from Invoice to Credit Memo request

    Hii All We have a requirement where when we create an credit memo request with reference to the invoice we want that PO number in the invoice should be copied to the credit memo request. Can this be done through copy control or some user exit needs t

  • Creating a transformation for delivered datasource 0TCTPRCSVAR_TEXT

    Hi, I am trying to set up my delivered technical content for the BI Administrator cockpit  (all the 0TCT... objects).  Everything is working well except for 4 datasources: 0TCTBWOBJCT_ATTR 0TCTBWOBJCT_TEXT 0TCTPRCSVAR_ATTR 0TCTPRCSVAR_TEXT While all

  • URGENT: WS data control - Issue in Application server 10.1.3.3

    Hi All, I created a ADF web service data control and used that data control in an ADF JSPX page. When I tested the page in JDeveloper 10.1.3.3 (Embedded OC4J) it worked fine. But when I deployed the same in Application Server 10.1.3.3. it shows the f