FITV_POWL_TRIPS  hide buttons in this application

Hi friends,
  Here is a requirement to hide create new expense report button in this application. It is a powl component.how can i do this.
Is it possible through configurations / coding ? i am new to powl. pls give any suggestions .

Hi,
It is possible through coding through enhancement. I had this issue a few months.
Do the following:
1. Go to SE24, CL_FITV_POWL_FEEDER_TRIPS
2. Navigate into method IF_POWL_FEEDER~GET_ACTIONS
3. Make an Implicit Enhancement at the end of the method
There is a table which holds all the buttons which are dynamically created, you'll just have to delete the respective entry.
I deleted the "Create New Travel Plan" Button. Take my code as a reference.
Delete c_action_defs WHERE actionid = 'CREATE_TP'.
I guess Travel Expenses has the key CREATE_TE or something, check it out by debugging.
best regards, Lukas

Similar Messages

  • Need  Scrollbar In This Application

    Hi,
    I want to replace the BUTTONS in this application into
    SCROLLBARS.??
    Can anyone HELP?
    ************************** HERE IS THE CODE ***********************
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    public class TRescaleOp extends JFrame {
    DisplayPanel displayPanel;
    JButton brightenButton, darkenButton,
    contIncButton, contDecButton;
    public TRescaleOp() {
    super();
    Container container = getContentPane();
    displayPanel = new DisplayPanel();
    container.add(displayPanel);
    JPanel panel = new JPanel();
    panel.setLayout(new GridLayout(2, 2));
    panel.setBorder(new TitledBorder(
    "Click a Button to Perform the Associated Operation..."));
    brightenButton = new JButton("Brightness >>");
    brightenButton.addActionListener(new ButtonListener());
    darkenButton = new JButton("Brightness <<");
    darkenButton.addActionListener(new ButtonListener());
    contIncButton = new JButton("Contrast >>");
    contIncButton.addActionListener(new ButtonListener());
    contDecButton = new JButton("Contrast <<");
    contDecButton.addActionListener(new ButtonListener());
    panel.add(brightenButton);
    panel.add(darkenButton);
    panel.add(contIncButton);
    panel.add(contDecButton);
    container.add(BorderLayout.SOUTH, panel);
    addWindowListener(new WindowEventHandler());
    setSize(displayPanel.getWidth(), displayPanel.getHeight() + 10);
    show(); // Display the frame
    class WindowEventHandler extends WindowAdapter {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    public static void main(String arg[]) {
    new TRescaleOp();
    class ButtonListener implements ActionListener {
    public void actionPerformed(ActionEvent e) {
    JButton temp = (JButton) e.getSource();
    if (temp.equals(brightenButton)) {
    displayPanel.brighten = true;
    displayPanel.changeOffSet();
    System.out.println(displayPanel.offset + "=offset");
    displayPanel.rescale();
    displayPanel.repaint();
    else if (temp.equals(darkenButton)) {
    displayPanel.brighten = false;
    displayPanel.changeOffSet();
    System.out.println(displayPanel.offset + "=offset");
    displayPanel.rescale();
    displayPanel.repaint();
    else if (temp.equals(contIncButton)) {
    displayPanel.contrastInc = true;
    displayPanel.changeScaleFactor();
    System.out.println(displayPanel.scaleFactor + "=scaleF");
    displayPanel.rescale();
    displayPanel.repaint();
    else if (temp.equals(contDecButton)) {  displayPanel.contrastInc = false;
    displayPanel.changeScaleFactor();
    System.out.println(displayPanel.scaleFactor + "=scaleF");
    displayPanel.rescale();
    displayPanel.repaint();
    class DisplayPanel extends JPanel {
    Image displayImage;
    BufferedImage biSrc, biDest, bi;
    Graphics2D big;
    RescaleOp rescale;
    float scaleFactor = 1.0f;
    float offset = 10;
    boolean brighten, contrastInc;
    DisplayPanel() {
    setBackground(Color.black);
    loadImage();
    setSize(displayImage.getWidth(this),
    displayImage.getWidth(this));
    createBufferedImages();
    public void loadImage() {
    displayImage = Toolkit.getDefaultToolkit().getImage("j.jpg");
    MediaTracker mt = new MediaTracker(this);
    mt.addImage(displayImage, 1);
    try {
    mt.waitForAll();
    } catch (Exception e) {
    System.out.println("Exception while loading.");
    if (displayImage.getWidth(this) == -1) {
    System.out.println("No jpg file");
    System.exit(0);
    public void createBufferedImages() {
    biSrc = new BufferedImage(displayImage.getWidth(this),
    displayImage.getHeight(this),
    BufferedImage.TYPE_INT_RGB);
    big = biSrc.createGraphics();
    big.drawImage(displayImage, 0, 0, this);
    biDest = new BufferedImage(displayImage.getWidth(this),
    displayImage.getHeight(this),
    BufferedImage.TYPE_INT_RGB);
    bi = biSrc;
    public void changeOffSet() {
    if (brighten) {
    if (offset < 255)
    offset = offset+5.0f;
    else {
    if (offset > 0)
    offset = offset-5.0f;
    public void changeScaleFactor() {
    if (contrastInc) {
    if (scaleFactor < 2)
    scaleFactor = scaleFactor+0.1f;
    else {
    if (scaleFactor > 0)
    scaleFactor = scaleFactor-0.1f;
    public void rescale() {
    rescale = new RescaleOp(scaleFactor, offset, null);
    rescale.filter(biSrc, biDest);
    bi = biDest;
    public void update(Graphics g) {
    g.clearRect(0, 0, getWidth(), getHeight());
    paintComponent(g);
    public void paintComponent(Graphics g) {
    super.paintComponent(g);
    Graphics2D g2D = (Graphics2D) g;
    g2D.drawImage(bi, 0, 0, this);
    }

    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    public class TRescaleOp extends JFrame {
    DisplayPanel displayPanel;
    JButton brightenButton, darkenButton,
    contIncButton, contDecButton;
    public TRescaleOp() {
    super();
    Container container = getContentPane();
    displayPanel = new DisplayPanel();
    container.add(displayPanel);
    JPanel panel = new JPanel();
    panel.setLayout(new GridLayout(2, 2));
    panel.setBorder(new TitledBorder(
    "Click a Button to Perform the Associated Operation..."));
    brightenButton = new JButton("Brightness >>");
    brightenButton.addActionListener(new ButtonListener());
    darkenButton = new JButton("Brightness <<");
    darkenButton.addActionListener(new ButtonListener());
    contIncButton = new JButton("Contrast >>");
    contIncButton.addActionListener(new ButtonListener());
    contDecButton = new JButton("Contrast <<");
    contDecButton.addActionListener(new ButtonListener());
    panel.add(brightenButton);
    panel.add(darkenButton);
    panel.add(contIncButton);
    panel.add(contDecButton);
    container.add(BorderLayout.SOUTH, panel);
    addWindowListener(new WindowEventHandler());
    setSize(displayPanel.getWidth(), displayPanel.getHeight() + 10);
    show(); // Display the frame
    class WindowEventHandler extends WindowAdapter {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    public static void main(String arg[]) {
    new TRescaleOp();
    class ButtonListener implements ActionListener {
    public void actionPerformed(ActionEvent e) {
    JButton temp = (JButton) e.getSource();
    if (temp.equals(brightenButton)) {
    displayPanel.brighten = true;
    displayPanel.changeOffSet();
    System.out.println(displayPanel.offset + "=offset");
    displayPanel.rescale();
    displayPanel.repaint();
    else if (temp.equals(darkenButton)) {
    displayPanel.brighten = false;
    displayPanel.changeOffSet();
    System.out.println(displayPanel.offset + "=offset");
    displayPanel.rescale();
    displayPanel.repaint();
    else if (temp.equals(contIncButton)) {
    displayPanel.contrastInc = true;
    displayPanel.changeScaleFactor();
    System.out.println(displayPanel.scaleFactor + "=scaleF");
    displayPanel.rescale();
    displayPanel.repaint();
    else if (temp.equals(contDecButton)) { displayPanel.contrastInc = false;
    displayPanel.changeScaleFactor();
    System.out.println(displayPanel.scaleFactor + "=scaleF");
    displayPanel.rescale();
    displayPanel.repaint();
    class DisplayPanel extends JPanel {
    Image displayImage;
    BufferedImage biSrc, biDest, bi;
    Graphics2D big;
    RescaleOp rescale;
    float scaleFactor = 1.0f;
    float offset = 10;
    boolean brighten, contrastInc;
    DisplayPanel() {
    setBackground(Color.black);
    loadImage();
    setSize(displayImage.getWidth(this),
    displayImage.getWidth(this));
    createBufferedImages();
    public void loadImage() {
    displayImage = Toolkit.getDefaultToolkit().getImage("j.jpg");
    MediaTracker mt = new MediaTracker(this);
    mt.addImage(displayImage, 1);
    try {
    mt.waitForAll();
    } catch (Exception e) {
    System.out.println("Exception while loading.");
    if (displayImage.getWidth(this) == -1) {
    System.out.println("No jpg file");
    System.exit(0);
    public void createBufferedImages() {
    biSrc = new BufferedImage(displayImage.getWidth(this),
    displayImage.getHeight(this),
    BufferedImage.TYPE_INT_RGB);
    big = biSrc.createGraphics();
    big.drawImage(displayImage, 0, 0, this);
    biDest = new BufferedImage(displayImage.getWidth(this),
    displayImage.getHeight(this),
    BufferedImage.TYPE_INT_RGB);
    bi = biSrc;
    public void changeOffSet() {
    if (brighten) {
    if (offset < 255)
    offset = offset+5.0f;
    else {
    if (offset > 0)
    offset = offset-5.0f;
    public void changeScaleFactor() {
    if (contrastInc) {
    if (scaleFactor < 2)
    scaleFactor = scaleFactor+0.1f;
    else {
    if (scaleFactor > 0)
    scaleFactor = scaleFactor-0.1f;
    public void rescale() {
    rescale = new RescaleOp(scaleFactor, offset, null);
    rescale.filter(biSrc, biDest);
    bi = biDest;
    public void update(Graphics g) {
    g.clearRect(0, 0, getWidth(), getHeight());
    paintComponent(g);
    public void paintComponent(Graphics g) {
    super.paintComponent(g);
    Graphics2D g2D = (Graphics2D) g;
    g2D.drawImage(bi, 0, 0, this);
    }

  • Hide Button in Applications WD ABAP Standard

    Dear Experts.
    Please can someone help me with suggestions for the following issue that I have in this moment:
    I need hide the button "Entrada Nueva" for the component fitv_vc_advances
    [fitv_vc_advances|http://img842.imageshack.us/img842/2719/fitvvcadvances.png]
    I checked the following link.
    Illegal External link removed by moderator
    Thanks in advance,
    Regards
    Carmen G
    Edited by: Thomas Jung on Dec 14, 2010 9:39 AM

    Sumit Oberoi wrote:
    Hi Carmen,
    >
    > I assume your requirement is to hide the button on some condition.
    >
    > Please check whether there is any attribute in the component which is boud to the visiblity of this button.
    >
    > If yes you can hide the button setting the value of that attribute to None ( WDUI_VISIBILITY = 01 ).
    >
    > If there is no such attribute then i can suggest below option:
    >
    > Create a context node and attribute ATTR of type WDUI_VISIBILITY and bind the visible property of this button to this attribute.
    > Create a post-exit method for the WDDOINIT ( or any method suitable to the flow of this component) and set the value of ATTR to 01 on whichever condition you want.
    >
    >
    > If you can not get the access key to do above change the second option is to create a Z of above component and replace the standard but I do not support this option as it can impact at many places.
    >
    > Please revert in case of issues.
    >
    > Regards,
    > Sumit
    Hi Sumit,
    I dont think property of button in standard component can bind, even in enhancement mode, as its greyed out. I have tried without success. If you have done it with standard button, pls put out the steps. Also, deleting and creating the button with same ID does not work as it says the ID already exists.

  • Hide Button in Applications WD ABAP Travel Standard

    Dear Experts.
    Please Someone can help me with suggestions for the following issue that I have in this moment:
    I need hide the button "Entrada Nueva" "New Entry" for the component[ fitv_vc_advances|http://img842.imageshack.us/img842/2719/fitvvcadvances.png]
    I found that this is posible using the t.code FITVFELD_WEB that controls the input fields within the portal.
    But I am checking and I don't find this with this t.code for hide this button.
    Thanks in advance,
    Regards
    Carmen G

    Hi,
    are you using ESS in portal?
    you can hide button through iView
    choose iView form Content Management, then preview.
    press "Ctrl" button  (@ button you want to hide) combine with right click of your mouse, then you can set the button invisible.
    hope it helps

  • I am trying to surf the Net and every time I click the SAFARI button, a window pops up saying that this application was closed all of a sudden

    I am trying to surf the Net and every time I click the SAFARI button, a window pops up saying that this application was closed all of a sudden. What can I do to solve this problem?

    How are you connecting to this website?

  • On firefox clickable buttons are not clickable for me eg the + to open new tab ,the sign in . register and other applications buttons on this page wont click yet the 2 blue change buttons are fine

    Question
    on firefox clickable buttons are not clickable for me eg the + to open new tab ,the sign in . register and other applications buttons on this page wont click yet the 2 blue change buttons are fine

    Top of Firefox window non-responsive, toolbars non responsive -- also see [http://kb.mozillazine.org/Problematic_extensions Problematic extensions]
    *caused by Yahoo Toolbar -- https://support.mozilla.com/questions/890908
    *caused by Babylon Toolbar -- https://support.mozilla.com/questions/890670

  • How to add a PDF to the Help button of the Application? Do we need a Robohelp to generate this?

    How to add a PDF to the Help button of the Application? Do we need a Robohelp to generate this?

    Thank you for your reply, William.
    Well, we just want the PDF to open when we click on the “Help” link of the Application.
    Also, we have the PDF ready. 
    Is it a job of a UI Developer? Do we need to tell him to link this PDF to the Help button or link of the Application?

  • Hide buttons forTransactions in the portal.

    Dear Experts.
    I have the following doubt:
    I have a transaction that we published in the portal as Service IAC and this display the buttons that have the T.Code in the backend.
    [Service IAC|http://www.freeimagehosting.net/uploads/db6bafa6b2.jpg]
    I am using the parametrer ~WEBGUI_SIMPLE_TOOLBAR for hide butons in the portal and tested several values for this parameter.
    1.     turns on the title bar
    2.     turns on the button "Cancel" and "Help" (as in the EWT services)
    3.     turns on the tools buttons (e. g. "Back", "Print")
    4.     turns on the system menu
    5.     turns on the application button bar.
    I am cheking in the test that the system hide for example all the buttons Save as Variant, Back, Exit, Cancel, but the system can not hide a only buttons of this group. If I want hide the buttons Save as Variant, and have only the buttons Exit, the system can not do this.
    anyone know if the SAP works of this way?
    Thank in advance for your help.
    Regards

    Hi Bala.
    With the  parameter ~WEBGUI_SIMPLE_TOOLBAR  the system hide the group of buttons, but not give the option of hide an only button of this group of buttons.
    For example in the following image:
    [Buttons |http://www.freeimagehosting.net/uploads/2e712f4693.jpg]
    In the group 2 have 4 buttons: Save as Variant, Back, Exit, Cancel. If I want hide the buton Save as Variant the system hide all the buttons of the group 2 and not hide the only button Save as Variant.
    I tested with several value for the parameter ~WEBGUI_SIMPLE_TOOLBAR , but in the values that I tested the result is the same(hide all the buttons of the group).
    Regards

  • HIde button on events

    Hi,
    Can some body elaborate how to hide buttons on events.
    Regards
    Sameer

    Hi,
    You can use PPR.
    Step 1. create a VO which contains one transient attribute of type boolean
    Step 2. Base button rendered property using SPEL
    Step 3. Initialize your VO for PPR(inintialization includes insertion of one row and set the attribute as True)
    Step 4. In the event handler where you want to hide button just set it false.
    Sample code:
    //Code to hide button
    public void handlePoApproveChangeEvent()
    // Get the special, single-row application properties and make the first
    // (only) row current.
    OAViewObject vo = (OAViewObject)findViewObject("SampleBrowserPVO1");
    OARow row = (OARow)vo.first();
    // Get the value of the view object attribute with the PO Approval
    // status.
    OAViewObject poVO = (OAViewObject)findViewObject("PurchaseOrderHeadersVO1");
    OARow poRow = (OARow)poVO.getCurrentRow();
    String status = (String)poRow.getAttribute("StatusCode");
    // Set the application property values based on the PO Approval
    // status value.
    if ("APPROVED".equals(status))
    row.setAttribute("HideButton", Boolean.FLASE);
    //Code to initialize VO
    public void initializePPRExamplePage()
    // Create purchase order header
    OAViewObject appPropsVO =
    (OAViewObject)findViewObject("SampleBrowserPVO1");
    if (appPropsVO != null)
    // If the VO already has a row, skip its initialization. Note that
    // calling getFetchedRowCount() won't perform a DB hit on a VO with
    // no SELECT and only transient attributes.
    if (appPropsVO.getFetchedRowCount() == 0)
    // Setting the match fetch size to 0 for an in-memory VO
    // prevents it from trying to query rows.
    // Calling executeQuery() is a small workaround to a known
    // BC4J issue that ensures that modified rows in this
    // transient view object are not lost after commit. See
    // View Objects in Detail for additional information about
    // both of these calls.
    appPropsVO.setMaxFetchSize(0);
    appPropsVO.executeQuery();
    // You must create and insert a row in the VO before you can start
    // setting properties.
    Row row = appProposVO.createRow();
    appPropsVO.insertRow(row);
    // Set the primary key value for this single-row VO.
    row = (OARow)appPropsVO.first();
    row.setAttribute("RowKey", new Number(1));
    row.setAttribute("HideButton",Boolean.TRUE);
    // Initialize the application properties VO (and the UI) based on the
    // default PO approval value set on the underlying object.
    handlePoApproveChangeEvent();
    else
    // throw exception
    } // end initializePPRExamplePage()
    SPEL Parameter:
    ${oa.myVOName.HideButton}
    Hope this help, Please refer JDeveloper guide for Topic Dynamic User Interface.
    Regards,
    Reetesh Sharma

  • I was updating Firefox from version 6 to version 7, after updating I tried to open Firefox and the message I got is this: This application has failed to start because xul.dll was not found. How can I fix this?

    I was updating Firefox to the newest version 7.0.1 from version 6.0.2 I think it was, I clicked the restart Firefox button that always comes up after updating. It started updating and then Firefox never restarted like it was supposed to after it was done updating. I then tried to open Firefox and it told me "This application has failed to start because xul.dll was not found." I did have Firefox crash on maybe about 30 minutes or so earlier which bothered me because I have been using Firefox for years and never had it crash on me before but I didn't think much of it at the time it happened because I was able to go back onto Firefox and finish what I had been working on. A while later I checked for updates and updated. The first time I tried to update it didn't work though so I had to shutdown Firefox and reopen Firefox and start the update a second time. It was after the second time that when I tried to open Firefox I got that message about failing to start because xul.dll can't be found. I filed a crash report when my Firefox crashed. This would have been around 1am-2am in the morning that Firefox first crashed and then wouldn't allow me to open it after updating. I have a DELL laptop running the Windows XP operating system but the laptop is probably at least 6 or 7 years old. The laptop will no longer charge so I always have to have it plugged into an outlet. Both my laptop hard drive and my external hard drive give me messages that I am running out of disk space on my hard drive. I bought this laptop 6 or 7 years ago second hand so it could be even older. In short it's a piece of crap and it gives me all kinds of issues but I currently can't afford a new one, but I have never had any problems with Firefox and I use Firefox more than any other aspect of my laptop so it's really really bothering me. May you please help me fix it?

    Unfortunately I tried that and it didn't work. Thanks for the help though. I tried to uninstall and it said I couldn't because the file is corrupt or something, but I think I finally got it uninstalled and/or deleted or whatever, but now I try to reinstall/download it again from the beginning and I can't. No matter what I do I can not get Firefox working again. No matter how many times I try to redownload it. Any other suggestions?

  • HT4191 My Contacts Journal Professional CRM Journal crashes at the initial seconds of iCloud Migration. Has anybody with this application experience this situation. The developer has been contacted.

    Dear Contacts Journal Support Team,
    Each time i have been trying what you put up for me,i always delete The Application Completely,then go to iTune Apps Store to re-download it. I know the apps store will not give me an old version,that is why i do not use my Mac or iMac to replace the application however this has also been updated on my Macs.
    I reiterated in my message yesterday that,it is not that what you asked me to do is not working or i did not follow your instructions into details. I did follow every steps you stated.
    The end result is that, WHEN IT REACHES DATA MIGRATION,THE SCREEN WILL BE BLACK OR LIGHT BLUE BLACK,WITH A WHITE SCROLLING LINE THREAD ON THE DEVICE SCREEN,MEANING MIGRATION IS ABOUT TO TAKE PLACE. THIS WILL MOVE FOR ABOUT 2 or 3SECONDS,AND IT WILL CRASH.
    I have tried this several time,i do not mind starting all over again,i just want it to work with iCloud. We can give you feedback,and i praise your effort for not getting tired to respond. This is a good and real customer service assistance of which i really appreciate.
    My devices are up-to-date,and the application i download is the latest version.
    Please let's makes this application work,there is non like it on The Apps Store. So you should be proud of your work and your innovation which i see as very powerful as well as extremely useful. But when it becomes unworkable it render all my eulogies to your effort meaningless.
    Thanks for contacting me again and i hope you will make it work again. Please forget about my previous DATA,i want to start it NEW. But you can not turn ON &amp; OFF even the iCloud on Contacts Journal.
    Thanks a LOT.
    The Reverend Canon Dr. IBITOYE.
    Sent from my iPhone 5⃣ Highly reliable especially when you are on the GOOOOO!!!!! Grab one for your own use,you will never-REGRET HAVING ONE!!!!!
    On 13 Feb 2013, at 07:46, Contacts Journal Support <[email protected]> wrote:
    Thanks. Can you confirm this step:
    - make sure all devices are updated to iOS6.1, and running the latest version of the app (3.3) [you can check if you have the latest version of the app by going to the App Store on your device, then checking the Updates section to see if you see any update for CJournal]
    - Another way to check is when you open CJournal, go to More -> Contact Us -> About page -> it should show the current app version.
    This is very important. If you are running the previous version of the app (3.2.1), then this crash will definitely happen on iOS6.1. You need to upgrade the CJournal app to the latest. After updating the app, you will have to follow the same steps as before, including cleaning up the iCloud database.
    Regards.
    On Feb 12, 2013, at 7:13 PM, ADEBAYO ADETOYE ALABA IBITOYE <[email protected]> wrote:
    Dear Sir / Madame,
    Thanks for your lengthy information which is highly and diligently consummated and extremely digested.
    All what you indicated in your last mail,i have done it and all efforts is TO NO AVAIL.
    1. It does clean all the devices but at the start of MIGRATION,the application crashes away and off. This has happened at least more than 5 to 7 times on one device. I have got main 2 iPhone 5 main lines,the other lines are subsidiary to my European lines and Dublin. So,i do not on or try to set them at the same time.
    2. Please,kindly see it in this way,look at the year you have released this application,i have not made or bombard  you with this kind of problems.
    3. I am an old man,i love the progress of our younger ones in Technology. It is just a shame i was not born to the computer and application age,it pains me. Because i know i embrace and love Technology,even at this old age. So i can not do anything to destroy your work,i will rather support you for progress so my up spring will also progress in all their discipline. Also remember my vocation as a priest,my position is to encourage,correct and not to destroy another persons efforts and labour.
    Above all,i just finished trying it twice now,at the migration point,it crashes out in few seconds when it comes with that line of migration.
    The time in London now is 03:10 in the morning,this is what i suffer on this application: SLEEPLESS NIGHTS.
    If there is any other one like this out their that can take files,journals,documents,ToDo's like this one. Please let me know,i do not mind how much it will cost me. I just want it to work.
    Thanks and look forward to your response.
    Regards,
    The Reverend Canon Dr. IBITOYE.
    Sent from my iPhone 5⃣ Highly reliable especially when you are on the GOOOOO!!!!! Grab one for your own use,you will never-REGRET HAVING ONE!!!!!
    On 13 Feb 2013, at 01:00, Contacts Journal Support <[email protected]> wrote:
    Thanks. We just sent you an email an hour before you sent this one!! It had instructions on how to overcome this particular problem "Cannot sync since another device is syncing at the same time". It doesn't look like you followed those instructions at all.
    This is our detailed feedback, so please read and follow them closely::
    - you can only get this message when you are trying to sync to iCloud with CJournal. It means that something else got stuck while syncing with iCloud before, and it needs you to clean up the iCloud database for CJournal (as previously instructed, and repeated below)
    - there is no hope for us to recover your previous data. The best we can do is to get the app working again with iCloud, by cleaning up your iCloud data for CJournal
    - your old data was previously wiped out when you cleaned up the iCloud database without backing it up. There isn't any chance that we can recover that. Maybe the Apple iCloud engineers can restore that for you (though I doubt it). If they do, then let us know and we can figure something out.
    Meanwhile, follow these instructions for resetting your iCloud data:
    - make sure all devices are updated to iOS6.1, and running the latest version of the app (3.3) [you can check if you have the latest version of the app by going to the App Store on your device, then checking the Updates section to see if you see any update for CJournal]
    - make sure to turn off iCloud sync option in CJournal, on all devices
    - To clean out your iCloud database, you have to go to the Settings app -> iCloud -> Storage and Backup -> Manage Storage -> Documents and Data -> Show All -> look for Contacts Journal. (if you don’t see it, then look for “icloud” with a blank white icon). Here, press the Edit button, then the Delete All button. This will clean out your iCloud database. Note that it will take a few minutes for your data to be deleted from your other devices, and you shouldn’t try syncing any of your devices to iCloud in the meantime.
    - Now restart all your devices by powering them down, then power them back up again.
    - Now, wait 5-10 minutes for the delete to go through
    - On one of your devices, with the latest data, turn on iCloud. If it gives an initial message saying "iCloud data already exists", then press Cancel. It means it hasn't updated from iCloud that you deleted the data. You'll have to open the Settings app and go to the same Show All page again, just so the device tries to connect to iCloud again.  Wait a few minutes before trying to enable iCloud again.
    - After it's done transferring the information to iCloud, wait a few minutes, then connect your 2nd device to iCloud and let it connect with the existing iCloud data. If it gives a message saying "First Time iCloud Sync", then press Cancel.  It means it hasn't detected the data you just uploaded from iCloud yet. Try again in a minute.
    Please follow these instructions closely. Let me know any instruction isn't clear to you.
    Regards.
    On Feb 12, 2013, at 3:57 PM, ADEBAYO ADETOYE ALABA IBITOYE <[email protected]> wrote:
    Dear Contacts Journal Support,
    I am so disappointed as you have not deem it right to make a follow up enquiry about my problems of which you were aware about all my Troubles.
    I keep you inform of all my efforts with apple iCloud Department and what i was told.
    I did not delete any of my files from Contacts Journal from my iCloud Account as one of my iPhone 4S still contains a 75% of some of my data. This device has been switched off since. Any attempt i made to use iCloud  on contact journal always comes up with a message i have related to you in my former message that: Contacts Journal encounter a SYNC problems from iCloud and that 2 devices can not be Sync at the same time; while all other devices are actually switched off.
    I am sending this Note now as the time limit given to me by iCloud Team will expire tomorrow. As i have said,this application has beautiful features but to make it work and Sync with either iCloud or Dropbox is a problems.
    I mean,about 8 devices can not have these problems at a go while other applications link with either iCloud or Dropbox are working on all these Devices. I can list all these for you if require as apple iCloud Team do check this as well.
    The iCloud restoration you sent me does not work,but i think this has teach me a great lesson as not to rely fully on an application like this anymore. I count my loss,my time and STRESS,i can not but let you know how i feel and my pains,frustrations and disappointments on this application.
    I have been using this application since it has been introduced,i know all the ups and downs,but not like this.
    I hereby appeal to you to sort out this PROBLEMS: "PROBLEM WITH iCloud SYNC: can not sync since another device is syncing at the same time: please wait and try again."
    The iCloud button will not even switched on.
    I look forward to hear from you.
    Regards,
    The Reverend Canon Dr. IBITOYE.
    Sent from my iPhone 5⃣ Highly reliable especially when you are on the GOOOOO!!!!! Grab one for your own use,you will never-REGRET HAVING ONE!!!!!
    On 12 Feb 2013, at 22:00, Contacts Journal Support <[email protected]> wrote:
    You can also go through the iCloud reset process again. That should get everything back in order again with iCloud. But there is no way to restore your old data unfortunately, since the Delete All wiped it out.
    Instructions for resetting your iCloud data:
    - make sure all devices are updated to iOS6.1, and running the latest version of the app (3.3)
    - turn off iCloud sync option in CJournal is it is enabled on any device
    - To clean out your iCloud database, you have to go to the Settings app -> iCloud -> Storage and Backup -> Manage Storage -> Documents and Data -> Show All -> look for Contacts Journal. (if you don’t see it, then look for “icloud” with a blank white icon). Here, press the Edit button, then the Delete All button. This will clean out your iCloud database. Note that it will take a few minutes for your data to be deleted from your other devices, and you shouldn’t try syncing any of your devices to iCloud in the meantime.
    - Now restart all your devices by powering them down, then power them back up again.
    - On your device with the latest data, turn on iCloud. If it gives an initial message saying "iCloud data already exists", then press Cancel. It means it hasn't updated from iCloud that you deleted the data. You'll have to open the Settings app and go to the same Show All page again, just so the device tries to connect to iCloud again.  Wait a few minutes before trying to enable iCloud again.
    - After it's done transferring the information to iCloud, wait a few minutes, then connect your 2nd device to iCloud and let it connect with the existing iCloud data. If it gives a message saying "First Time iCloud Sync", then press Cancel.  It means it hasn't detected the data you just uploaded from iCloud yet. Try again in a minute.
    Hope this helps.
    Regards.
    On Feb 7, 2013, at 7:19 PM, Contacts Journal Support <[email protected]> wrote:
    Hi,
    Regardless of what Apple technicians say, the simple fact is this:
    - you went and did Delete All for your iCloud data ... now all your iCloud data is gone. There's no way to bring it back. We certainly don't have the power to bring it back; maybe Apple technicians do. Have you asked them about this?
    - your only hope is to restore your device using an iCloud backup, from before you did the Delete All. That might restore your data to a previous state. We sent you this link again: http://apple.stackexchange.com/a/75394/11236
    If the Apple technicians can help you through this process, that would be even better.
    There is honestly nothing we can do at this point. There's no bug to fix. The problem is you did a Delete All of your iCloud data, without making a backup first. If you had a backup of your data, we could be able to help you, but that data is nowhere right now.
    Regards.
    On Feb 6, 2013, at 10:23 AM, ADEBAYO ADETOYE ALABA IBITOYE <[email protected]> wrote:
    No, not at all,The apple Technicians did run series of Test on both my account and The Application. It was conclusive that the application is not communicating both with devices as well as iCloud Proactively,this is one of The Application i personally rated 5 Stars and both iPad and The iPhone ones i have never made any complaint.
    I gain nothing from spoiling another persons Job and effort. But when something needs to be repair,i think it need to. It crashes on my 4 iPads and all my iPhone series.
    Please apple has the conclusion,you are the one who can fix it. Apparently my screen was shared because they can see through all my efforts since last Night.
    I am very DISAPPOINTED... For now i am looking towards your end to get it fix. Apple policy still remains on Third Party's Application.
    Looking forward to hear from you.
    Many Thanks,
    Dr. IBITOYE.
    Sent from my iPhone 5⃣ Highly reliable especially when you are on the GOOOOO!!!!! Grab one for your own use,you will never-REGRET HAVING ONE!!!!!
    On 6 Feb 2013, at 15:58, Contacts Journal Support <[email protected]> wrote:
    Thanks for the update. We would love to fix the problem for you. Unfortunately, since you deleted all the iCloud data without creating a backup first, there's not much we can do from our end. I wish we had some control over this. The best option really is to look for your iCloud backups, and try to restore your data to your iCloud backup. Did you discuss this with the iCloud technicians from Apple? I'm sure nothing was wrong with their iCloud system per se, but did they focus on recovering your data (after you explained the problem to them in detail)?
    At the moment, the only hope we have is to restore one of your devices from an older iCloud backup. You probably want to do this in the next day or so, otherwise it might get lost. This might have been something that I was hoping an Apple technician would be able to walk you through.
    Hope this helps.
    Regards.
    On Feb 6, 2013, at 5:13 AM, ADEBAYO ADETOYE ALABA IBITOYE <[email protected]> wrote:
    Hello There,
    i have just finished or apple has just finished with me now,and i was opportune to be attended to by one of apple most senior iCloud Engineer or Technician. We were on this problems for couples of hours,apparently they could detect all my logins through out the night on this application. It was concluded that nothing is wrong with my iCloud account neither with iCloud in general as all my other applications is working fine.
    What this implies now is that they i.e. apple engineers refer me back to you as the developer of this application. The application is not communicating with device as well as to have a good Synchronisation with iCloud.
    They asked me to inform you that i have suffered as an elderly man through out the night and up till now nothing can be done from their end. They want you to look into the application and that    it will be monitor from their end for the next couples of Days as if i or others will get all their Documents stored in the iCloud.
    The Senior Technicians might get inn contact with you if there is NO remedy to this gruelling and gruesome situation that this application has put and expose me to since 17:00 Hour yesterday evening.
    I will hereby advocate for an improvement and utmost adjustment to this BEAUTIFUL APPLICATION. I know it can be made to work without any stress and PLEASE DO IT.
    MANY THANKS,
    The Reverend Canon Dr. IBITOYE.
    Sent from my iPad4⃣Highly reliable especially when you are on the GOOOOO!!!!! Grab one for your own use,you will never-REGRET HAVING ONE!!!!!
    On 6 Feb 2013, at 08:23, Contacts Journal Support <[email protected]> wrote:
    Hi,
    At this point, I don't think Time Machine backups would help. The only thing that might be possible is if you are backing up your iPhone or iPad to iCloud. You can check this in the Settings app -> iCloud -> Storage and Backup -> is iCloud Backup turned On? It will also show you the Last Backup under the "Backup Now" button.
    If this is on, you can try to restore one of your devices to this backup version. You can follow these instructions: http://apple.stackexchange.com/a/75394/11236
    You might also want to consult an Apple Genius bar if you have an Apple store close-by or if it's convenient for you to do this over the phone.
    Hope this helps. Really hope you can recover this data.
    Regards.
    On Feb 5, 2013, at 9:07 PM, ADEBAYO ADETOYE ALABA IBITOYE <[email protected]> wrote:
    Hello,
    Many Thanks,
    apparently i do use i cloud Sync on all my devices,but,i went to the FAQ where it says i should delete the cloud,this is the source of my Problems,apparently i would have contacted you earlier than this as it seems the latest update has been bugged,but i still manage to use it though. As soon as i delete the grey cloud,i lost everything on all my devices,all my 4 iPads,all my iPhones,my last result now is you,i can even taste any sleep as i need this file BADLY.. My last result is if you can put me through either on my Time Machine if that will still be intact. I have browse to see how i can get this work from any source. PLEASE KINDLY HELP...
    My Regards,
    The Reverend Canon Dr. IBITOYE.
    Sent from my iPad4⃣Highly reliable especially when you are on the GOOOOO!!!!! Grab one for your own use,you will never-REGRET HAVING ONE!!!!!
    On 6 Feb 2013, at 03:38, Contacts Journal Support <[email protected]> wrote:
    Hi,
    Thanks for your email. Were you using iCloud sync? When did you upload these missing documents? Do you use multiple devices ... if so, which device did you use to upload the documents? Did you use the "Transfer over WiFi" method, or did you use "Open In" from a different app?
    Let us know and we can see if there's any way we can help.
    Regards.
    On Feb 5, 2013, at 5:14 PM, ADEBAYO ADETOYE ALABA IBITOYE <[email protected]> wrote:
    Dear Contacts Journal Support Team,
    I am sending this mail to let you know that i have been encountering
    serious problems on my CONTACTS JOURNAL FILES for the past 6 to 7
    Hours.
    I have read all the procedure on The FAQ as well as deleting this
    application on all my devices also i tried to go to Manage my Data as
    well as resetting everything stated on the FAQ. But all my efforts is
    to NO AVAIL. I can get all my ToDo's and other Logs. But on my Files
    Section where i some important Documents and folders,it is just coming
    up as loading,and if click any of the files,it will either says ERROR
    or THIS FILE IS EMPTY.
    Contacts Journal is a very good tools for me,but,i must confess that
    as at this Time 01:05 London Time in England,i have been on this
    problems since 17:30 Tuesday the 5th of February 2013. I need to pull
    out a paper i have saved in This Journal to give a Lecture This
    Morning.
    Please i do not want to loose all my files as i have got vital and
    private documents stored and saved on this Application.
    I will be delighted if there is a way of retreating or getting this
    Documents back as they are very vital to me.
    Looking forward to hear from you in earnest.
    My Regards,
    The Reverend Canon Dr. ADEBAYO ADETOYE ALABA IBITOYE.
    St. Alfege Church,
    Church of England,
    Anglican Communion,
    Greater London,
    England,UK.

    adetoye50 wrote:
    Dear Contacts Journal Support Team,
    FYI, this is a user to user support forum.  You are NOT addressing Apple here.
    Honestly, I doubt anyone is really going to take the time to read the novel you have written.

  • How do I access "Firefox is NOT compatible with this application. For best performance, please use Internet Explorer 5.0 and above...." web sites; when I try to download any alternate browser, then a warning that alternate is "imcompatable with your opera

    How do I access websites that warn: "Firefox is NOT compatible with this application. For best performance, please use Internet Explorer 5.0 and above...."? When I try to download any alternate browser, all I get is another warning that the alternate is "not compatible with your operating system." Is Firefox preventing this? The site listed below is a job application site. I've had this same problem with other job application sites also.
    == URL of affected sites ==
    https://storefront.kenexa.com/lithia/cc/Home.ss

    There should be a User Agent Switcher menu item under Tools, which gives you the browser names you can impersonate.
    The menu item name changes to the browser UA you are presently using.
    There is also a User Agent Switcher button, you can add it using View -> Toolbars -> Customize, and dragging the button to your toolbar.
    See http://chrispederick.com/work/user-agent-switcher/features/ and http://chrispederick.com/work/user-agent-switcher/help/
    You can just start trying IE versions (or the versions it says on the site) until it lets you in.

  • I down loaded sygic on my iPhone 3s but the icon is missing even in the search but when I want to download it again ,it say this application is present, how can I make the icon to show up

    I down loaded sygic on my iPhone 3s but the icon is missing even in the search but when I want to download it again ,it say this application is present, how can I make the icon to show up

    - Have you tried a reset. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Try syncing  the iPod to your computer. Then delete from iTunes and sync. that should delete it from the iPod. Then redownload it.

  • This application is not compatible with your device and cannot be loaded

    Hi,
    I have been trying to load an application to my BB 9000 since a monday and getting this error "This application is not compatible with your device and cannot be loaded".
    As evident, I am new to BlackBerry development and got to port an existing J2ME project on BB 9000.
    To load application I am using  
    - BB Dektop software 5 (latest)
    - BB Device Software 4.6 is installed (which is the version of BB 9000 as well)
    I am able to load sample JDE 4.6 applications but I build my project through same JDE and through eclipse (JDE compoment 4.6.0.19) as well but couldn't load it,
    I even signed my app since I am using net.rim.device.api.servicebook api which requries signing.
    Can someone please explain me
    1) why this error occurs in first place 
    2) how to setup right envioroment to load an application on a given BB handset (BB 9000 vodafon India to be specific)
    3) How would manage this process on a single machine if I have 4-5 different BB handsets.
    I shall be thanful for any logical pointer to solution to these problems.  

    Hi,
    The main problem with your genrated ALX file. I think in your ALX file contains <fileset Java="1.49" _blackberryVersion="[5.0.0)"> TAG  and remove the  _blackberryVersion attribute. Then it will work.
    So your final ALX file contains
    <loader version="1.0">
        <application id="App">
            <name >
                App1
            </name>
            <description >
            </description>
            <version >
                1.0.0
            </version>
            <vendor >
                Vim
            </vendor>
            <copyright >
                Copyright (c) 2010
            </copyright>
            <fileset Java="1.49">
                <directory >
                    5.0.0
                </directory>
                <files >
                    App.cod
                </files>
            </fileset>
        </application>
    </loader>
    Even thought it is not installed then make sure that your application may not delete from your device. Select the application and click on delete button in Desktop manager.
    Still u didnt slove the problem  then insted of
     <directory >
                    5.0.0
        </directory>
    replace as
     <directory >
      </directory>
    Regards:
    Jitendra.B
    Vimukti technologies Pvt Ltd
    Project Manager

  • How can i disable a button in the application tool bar of a standard trans?

    Hi Experts,
       I want to disable the create button in the application tool bar of the standard transaction cv03n. Is there any method?

    Hi,
    In the include 'LCV110F19', the GUI is being called for the screen.
    This is the actual code being called.
    WHEN c_dms_create.
          SET PF-STATUS 'D100CREATE'.
          SET TITLEBAR  'D100CREATE'.
    You can try to code something like below.
    DATA: itab TYPE TABLE OF sy-ucomm.
    APPEND 'CREATE' TO itab.
    SET PF-STATUS 'D100CREATE' EXCLUDING itab.
    Kindly reward points by clikcing the star on the left of reply,if it helps.

Maybe you are looking for