CFL Conditions and Edit Text

Hi ,
in my addon SRF Form i have two Edit text box(item Group, Item)
with respect to item group(CFL) selection , i will change the CFL condition of  item selection CFL.  dyanmically.
first time its working fine. second time item CFL is Empty.
tihs is my sample code:
If pVal.EventType = SAPbouiCOM.BoEventTypes.et_CHOOSE_FROM_LIST Then
If pVal.ItemUID = "item edit txt" And pVal.FormUID.StartsWith("FormUid") Then
Dim val As String = oForm.Items.Item("GrpEditid").Specific.value
                        Dim RsGrp As SAPbobsCOM.Recordset = ocompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                        RsGrp.DoQuery("Select ItmsGrpCod From .[OITB]  ItmsGrpNam = '" & val & "'")
                        Dim oCFLs As SAPbouiCOM.ChooseFromListCollection = oForm.ChooseFromLists
                        oCFL = oCFLs.Item("CFL_3")
                        oCons = oForm.ChooseFromLists.Item("CFL_3").GetConditions
                        ' oCons = oCFL.GetConditions()
                        oCon = oCons.Add()
                        oCon.Alias = "ItmsGrpCod"
                        oCon.Operation = SAPbouiCOM.BoConditionOperation.co_EQUAL
                        oCon.CondVal = Integer.Parse(RsGrp.Fields.Item(0).Value)
                        oForm.ChooseFromLists.Item("CFL_3").SetConditions(oCons)
End if
am getting   oCon.CondVal  correctly every time..
But CFL is empty..
Any Suggestion??
regards,
Ganesh k

I can suggest you this:
- Use breackpoints to see oCon.CondVal.
- Try to set conditions to nothing.
If pVal.EventType = SAPbouiCOM.BoEventTypes.et_CHOOSE_FROM_LIST Then
  If pVal.ItemUID = "item edit txt" And pVal.FormUID.StartsWith("FormUid") Then
    Dim val As String = oForm.Items.Item("GrpEditid").Specific.value
    Dim RsGrp As SAPbobsCOM.Recordset = ocompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
    RsGrp.DoQuery("Select ItmsGrpCod From .OITB ItmsGrpNam = '" & val & "'")
    Dim oCFLs As SAPbouiCOM.ChooseFromListCollection = oForm.ChooseFromLists
    oCFL = oCFLs.Item("CFL_3")
    ' +++++++++++++++++++++++++++++++++++++++++++++
    oCFL.SetConditions(Nothing)
    ' +++++++++++++++++++++++++++++++++++++++++++++
    oCons = oForm.ChooseFromLists.Item("CFL_3").GetConditions
    ' oCons = oCFL.GetConditions()
    oCon = oCons.Add()
    oCon.Alias = "ItmsGrpCod"
    oCon.Operation = SAPbouiCOM.BoConditionOperation.co_EQUAL
    oCon.CondVal = Integer.Parse(RsGrp.Fields.Item(0).Value)
    oForm.ChooseFromLists.Item("CFL_3").SetConditions(oCons)
  End if
End if
An working example.
Here I update CFL conditions in base on combobox choise.
Private Sub CFL_UpdateConditions(ByRef oForm As SAPbouiCOM.Form)
  Dim oCFLs As SAPbouiCOM.ChooseFromListCollection
  Dim oCons As SAPbouiCOM.Conditions
  Dim oCon As SAPbouiCOM.Condition
  Dim oCombo As SAPbouiCOM.ComboBox
  Dim sType As String = ""
  Try
    oCombo = oForm.Items.Item("eType").Specific
    If Not oCombo.Selected.Value Is Nothing Then
      sType = oCombo.Selected.Value
    End If
  Catch ex As Exception
    ' log exception
  End Try
  Try
    oCFLs = oForm.ChooseFromLists
    For Each oCFL As SAPbouiCOM.ChooseFromList In oCFLs
      If oCFL.UniqueID.Equals("1") Or oCFL.UniqueID.Equals("0") Then
     ' +++++
     oCFL.SetConditions(Nothing)
     ' +++++
     ' Adding Conditions to CFL1
     oCons = oCFL.GetConditions()
     ' Condition 1: CardType = "C"
     oCon = oCons.Add()
     oCon.Alias = "CardType"
     oCon.Operation = SAPbouiCOM.BoConditionOperation.co_EQUAL
     oCon.CondVal = "S"
     ' ... AND ...
     oCon.Relationship = SAPbouiCOM.BoConditionRelationship.cr_AND
     ' Condition 2: U_Type IS NULL or EQUAL to sType
     oCon = oCons.Add
     oCon.Alias = "U_Type"
     'oCon.Operation = SAPbouiCOM.BoConditionOperation.co_IS_NULL
     oCon.Operation = SAPbouiCOM.BoConditionOperation.co_EQUAL
     oCon.CondVal = sType.Trim
     ' Set conditions for CFL
     oCFL.SetConditions(oCons)
      End If
    Next
  Catch ex As Exception
    ' log exception
  Finally
      oCon = Nothing
      oCons = Nothing
      oCFLs = Nothing
  End Try
End Sub

Similar Messages

  • Select and edit text Adobe Reader 8.1.2 & Mac OS10.5

    How does one select and edit text in a PDF Adobe Read document with Mac OS 10.5? Step by step directions would be appreciated.

    Wasn't sure since this isn't the Reader forum.
    No. Can't do that then.

  • Edited PDF in photoshop and edit text in acrobat

    I am trying to edit an existing PDF that has a blue backround and text on it. I think it was made in photoshop. I had to fix a logo on it to so I brought the pdf to photoshop and edited the logo. But now I can't edit the text in acrobat professional! I could before I changed the logo.
    Is there something I need to do in photoshop first before I make it a pdf? Or should I just create the text in acrobat professional?
    I need to know for work. Reply soon.
    Thanks

    Renee,
    Welcome to Apple Discussions.
    You have somehow found your way to a forum that is for feedback about Discussions and has nothing to do with technical issues.
    You might do better in OSX forum at http://discussions.apple.com/forum.jspa?forumID=745
    However as this appears to be an Adobe product issue you may do better on one of their boards at http://www.adobe.com/support/forums/main.html
    Michael
    G4 733 512 MB   Mac OS 9.2.x  

  • Read and Edit Text Files

    I wanted to find out if there is a way to read linux
    configuration files, edit parameters in them and save them using
    coldfusion. I know PHP has the capability to do this, but I don't
    know if CF does and how powerful it is.

    If it's plain text, just write it into a textarea and let
    your users edit it there. When they submit, use cffile to overwrite
    the text file.
    There are other ways to allow users to edit text in a web
    app, such as the "contenteditable" attribute in IE, but the basic
    idea remains the same.
    Or do you mean that the app will alter the files
    automatically? If that's the case, then regular expressions would
    likely be the way to go.

  • Which version shall I buy, if I need just reading, copying and editing texts?

    Hello, I would like to ask you about a right version which shall I buy in order to have readable version with possibility of copying but also editing texts?
    Is the right version Acrobat XI? Or is there another type? How much does cost the most basic version which also allows to edit texts inside the pdf document?
    Thank you.
    Barbora

    For reading, you only need Reader. The editing (and typically copying) require Acrobat. However, you should download the trial version and try it first. Editing and such in Acrobat is a last resort operation, not an every day activity. Editing is often very difficult to get things right and they is why it should only be used for minor edits. Generally you do not have the features of an editor with word-wrap and such -- it is not really the goal of Acrobat. You can sometimes copy from Reader, but I don't know too much about Reader since this is the Acrobat forum. Acrobat may not meet your expectations and that is why I suggest trying the trial version.

  • Is there MAC way (not PDF) to scan and edit text?

    ADOBE is a *****! Is there an apple way to scan in a typed page and then be able to edit it?
    I have a private typed out family geneology I need to update. Thanks.

    In order to edit text for a scanned document, the text needs to be converted from being an image to actual text after or during the scan process. This is known as OCR - Optical Character Recognition. There is no Apple application that has this. Both Image Capture and Preview only scan the document as an image. So you need an OCR application or an application like Acrobat Pro that has OCR facility. With your edited dislike of Adobe you could look at purchasing Abby Finereader which is very accurate. If you would prefer a free version, then you could try PDF OCR X, which is not as accurate as Finereader but saves you $110.
    Note also that some vendors include an OCR function with their scanning application. So depending on what scanner you have, you may have another free option.

  • CFL For the edit text using screen painter

    Dear All,
    I had created CFL for the Edit box to display CardCode
    if i press tab button the list for the specified object type is obtained
    but the selected value is not binded with the edit box,i have attached the code here,
    Private Sub SBO_Application_ItemEvent(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, ByRef BubbleEvent As Boolean) Handles SBO_Application.ItemEvent
            If pVal.EventType = SAPbouiCOM.BoEventTypes.et_CHOOSE_FROM_LIST Then
                Dim oCFLEvento As SAPbouiCOM.IChooseFromListEvent
                oCFLEvento = pVal
                Dim sCFL_ID As String
                sCFL_ID = oCFLEvento.ChooseFromListUID
                Dim oForm As SAPbouiCOM.Form
                oForm = SBO_Application.Forms.Item(FormUID)
                Dim oCFL As SAPbouiCOM.ChooseFromList
                oCFL = oForm.ChooseFromLists.Item(sCFL_ID)
                If oCFLEvento.BeforeAction = False Then
                    Dim oDataTable As SAPbouiCOM.DataTable
                    oDataTable = oCFLEvento.SelectedObjects
                    Dim val As String
                    Try
                        val = oDataTable.GetValue(1, 0)
                    Catch ex As Exception
                    End Try
                    If (pVal.ItemUID = "23") Then
                        oForm.DataSources.UserDataSources.Item("CardCode").ValueEx = val
                    End If
                End If
            End If
    Regards,
    Vijay

    Is the event generated ? What is the value of your "val" variable ?

  • Feature request: better tools for commenting and editing text

    We currently use a comments-enabled Acrobat workflow with InDesign to track changes to our large catalog project. Was hoping to move our team over to CS Live, but currently the commenting tools are sub-par, and not accurate enough for extensive text editing. My request would be to imitate the text editing functionality of Acrobat:
    In CS Live online:
    - allow users to be able to copy selected text. (This is useful when a reviewer wants to be able to modify a sentence or paragraph. It's a headache now to have to retype the sentence prior to making modifications)
    - Ability to highlight text and hit "delete" to mark text as deleted, or highlight and type over to indicate replaced text
    - Ability to click to insert text, and have the comment appear with the inserted text designation (little blue carat like in Acrobat)
    - ability to highlight a section of text
    In InDesign:
    - ability to copy the text in a comment and NOT copy all the other extraneous meta data. (Currently, if you click "copy text", it will copy the comment along with all the details about the comment. For example, "- Amy Stewart [10.06.11 at 12:56 PM]"
    - ability to see in InDesign the EXACT part of the text that needs to be modified. Right now, the red box outlines the general area. The CS Review panel shows a tiny thumbnail with black highlight over the area of text that needs to be changed, but unfortunately, there's no way to zoom in on it, so you're stuck having to toggle between InDesign and the online review, where it's possible to zoom. (This diminishes the utility of the CS Review panel.)
    If you were able to incoroprate all the commenting functionality of Acrobat, I think you'll have a winner. But right now, we're going to have to stick with Acrobat as it's the only way to easily modify text.

    Sorry if I might be stating the obvious (but at least I was such a *dummy* once that I needed this explicitely):
    In order to move the sequence of images per drag&drop in grid view you need to
    Put the sort order in the bottom toolbar to "user order" (toggle visibility with letter T if not displayed)
    Grab an image from within its thumbnail, not from its border-cell.
    When you move around you see a vertical black thick line wandering in between images where you would be able to drop it
    Put the images first into a collection in case they should be spread across multiple folders.
    This is the reason why most often from a filter result you cannot re-arrange.
    Still sometimes it does not work as I want, but can *be persuaded*, i.e. I repeat the same trial after first moving to another collection, then return back. I can't nail it down sufficiently to file a bug.
    For an automated sorting according to filename (chosse that setting finally in toolbar) you could rename the photos in place, without exporting & re-importing. Just select them and hit <F2> to bring up the renaming dialog like possible during import.
    +1 vote from me, as I am neither satisfied with the responsiveness of moving folders within LR e.g. from laptop hard disk to NAS.
    Apart from that I try not to build much on my folder structure, just break them into manageable quantities and have a quick "diary-overview" by using naming convention "YYYY-MM-DD description of event" (pictures of up to 4 cameras go inside, unique filenames for Canons achieved by renaming during import). For all the rest I prefer to build (smart) collections.

  • How to delete and edit particular line in a file and save it in same file ?

    Hi,
    I want to delete and edit text at particular line in a file.
    But edit and delete should reflect in same file.
    I have done googling for this but it results with using another file, that i dont want as i need to save changes in same file.
    How can i do this?
    Thanks in advance
    Edited by: vj_victor on May 24, 2010 3:33 PM

    I just want to make sure, this is the only way to do what i mentioned ? or it could be done another way !a) write the data to a new file
    b) delete the old file
    c) write the data to a newer file
    d) delete the new file
    e) rename the newer file to the old file name.
    For a hint about still more ways to do this, search for the complete lyrics of One man went to mow, Went to mow a meadow...
    db

  • Why won't Acrobat X Pro edit text?

    Hello Acrobat experts.  I recently upgraded from whatever version of Acrobat Pro was in CS2, to Acrobat X Pro, which is part of CS6.  In the CS2 version of Acrobat, there was a very functional and effective "touch up text" tool which I used often to change words here or there in scanned documents.  Usually I would get a little message saying an identical font was not available, and that a substitution would be made, and a few moments later, I was able to edit and replace text to my heart's content. 
    When I first played with Acrobat X Pro, I couldn't find the  touch up text tool, so I went to the help site, and watched a nice video by Jon Bessant showing how to edit text.  Wow, it looked really simple.  So I attempted to make simple one word text changes in a scanned document, and I got some rather odd black blockish shapes over the lettering I had selected, which looked like what I saw in the video.  That only happened a couple of times. Usually, it appeared as though the program wasn't responding.
    Sometimes, the funny blockish shapes started to show up in all manner of places on the page, not related to the single word I wanted to change. 
    So I found in the help documents that if tex is not recongized, that I need to go to Tools/Recognize Text/In this file.  I did that, and I got screen indications that my document was being scanned/processed, much as I had seen in my old CS2 Acrobat 2.  But when I went to try and edit text, still, nothing would happen.
    The help instructions say that "If you can't edit the text, see Replace custom fonts with local fonts.  Those directions tell me to usse the TouchUp Text tool, but trying to execute those directions, nothing happens. 
    The text I am needing to edit, is simple Times New Roman font, scanned in with my same scanner that I had used for PDF editing with my old CS2 version of Acrobat Pro. 
    Help, what do I do???????????????  Thank you, Chuck

    Thanks Steve,
    We are exporting PDF's as you indicate. I see the same thing. The boxes are all the size of the original InDesign document. The PDF art box should be predicated by the margins in InDesign. When we had CS3, this worked great. Now, it seems that there is a disconnect between the two Adobe products honoring the page box size. I have contacted the Adobe techs via chat, and they had no clue what I was referring to. I find it mystifying that Acrobat can not interpret the art box set in InDesign as margins.

  • 4S Touchscreen, Orientation and Speak Text problems?

    Hello my Fellow Nerds and/or iPhone lovers,
    I have been having a number of problems using my touch screen on the iPhone 4S and I'm not sure if it's directly a hardware problem or simply I don't know how to use it. It seems as though when I make an attempt to select a single word and make the desired edit that more or less text happens to get selected. Same problem with paragraphs or other amounts of text as well that I am not able to select what I wish.
    The main areas I've been using that feature is in Notes app, email messages and places just like here where I'm editing the text as I make my post. In The Notes App I don't know why but sometimes I'm getting a keyboard when I don't want it and sometimes I can't seem to correctly edit the text.
    Just checking to see if anyone out there has had similar problems as well. I think this has something to do with the iOS 7 upgrade or simply that I don't know how to use my iPhone. I have just recently started using it much more for editing text. Maybe it's simply that I need a refresher on the screen use and editing text so if you happen to know a good Apple webpage or another link just let me know about that if you could.
    My other issue that's ongoing that the screen orientation is flipping when I don't have the phone in that position. Again I think this is something to do with iOS 7 but perhaps not since is a new issue and I have never had problems with that in the past.
    Part of the editing/screen orientation is related also to do with speaking text. Once text is selected, I don't always get the speak text button or when I try to touch the button it barfs out on me going through the small menu that you navigate.

    Hello hrenshaw0128,
    Texting is one of the most common forms of communications in today’s society. I can certainly see the value in having text messages working at all times! Hopefully, you will reconsider canceling your parents' service as we can partner together and resolve your messaging issues. I have a few questions to ask you in order to get clarification on the issue. What software version do you have on your Droid Incredible? Are you getting any error message(s) when trying to send or receive a text? What city and state are you located in? Below are a few troubleshooting steps for you to try on the device.
    Check to ensure that you have the current software on your device.
    Remove any unused apps from the device to free up device memory.
    Delete your signature on your device if you have one.
    Remove any 3rd party messaging apps.
    Erase long threaded text messages from the text inbox.
    Perform a factory reset on the device. (See link below)
    http://support.verizonwireless.com/clc/devices/knowledge_base.html?id=30946
    If you decide to perform a factory reset then it is encouraged to back up your contacts and calendar entries. Backup Assistant is an excellent app to store your contacts and calendar entries can be saved on your Gmail account. Also, be sure to save all of your music, pictures, and videos on a memory card prior to the reset. Once the device has been reset to it's factory state, there is a brief tutorial on how to reactivate and setup the device. After the completion of this tutorial, please test all voice, data, and text services. If you have any additional questions or concerns then feel free to reply to this message.
    Thank you...
    ArnettH_VZW
    Follow us on Twitter @vzwsupport

  • What styles are lost when importing/converting PS text to editable text?

    In CS5.5, when I import a PSD file with one or more text layers (retaining layer styles and editable layer styles) some of the layer styles change upon import.
    In addition, after import, in the Comp panel, sometimes there are no visual differences between that display and the display in PS. But in individual style layers in the Timeline panel, things have changed. Most typically, strokes with gradients are changed either to a solid color (gray or red) or to a simple white-to-black gradient. How is it the display can show a gradient when the stroke layer shows a solid color?
    When the text layers are converted to editable text, those changed style properties kick in.
    I'm guessing some or all of this has to do with AE text not being able to have a gradient for the fill or stroke? That being the case, is there a work-around?
    If this goes beyond not being able to use a gradient for fill or stroke, what are the "rules"? What styles are lost/changed upon import and when converting to editable text?
    Jeff Sengstack

    > In addition, after import, in the Comp panel, sometimes there are no visual differences between that display and the display in PS. But in individual style layers in the Timeline panel, things have changed. Most typically, strokes with gradients are changed either to a solid color (gray or red) or to a simple white-to-black gradient. How is it the display can show a gradient when the stroke layer shows a solid color?
    After Effects includes the entire Photoshop rendering engine, so any PSD and its layer styles should render fine (i.e., just like in Photoshop). If it doesn't, please submit a bug report.
    But After Effects does not include the entire UI from Photoshop for creating and modifying layer styles.
    The layer styles feature in After Effects exists primarily to provide fidelity between what you see in Photoshop and what you see in After Effects---not so that you can add and modify layer styles in After Effects. The UI in the Timeline panel is therefore a barebones implementation that doesn't include many of the features of layer styles in Photoshop. As you observe, there are many cases in which the representation in the Timeline panel is much more simplistic than what is in the Composition panel.
    This separation between the UI and the ability to render with good fidelity is most apparent with pattern overlays. See this video for a good demonstration of how to use layer styles in After Effects by tapping into these features in Photoshop:
    http://library.creativecow.net/articles/harrington_richard/photoshop_layer_styles_with_ae. php
    > In CS5.5, when I import a PSD file with one or more text layers (retaining layer styles and editable layer styles) some of the layer styles change upon import.
    How, exactly, do they change? A screenshot would be useful.
    If it's what I'm suspecting, then the page that Mylenium points you to has the clue:
    "When a layer style is applied to a vector layer—such as a text layer, a shape layer, or a layer based on an Illustrator footage item—visual elements that apply to the edges of the contents of the layer apply to the outlines of the vector objects, such as text characters or shapes. When a layer style is applied to a layer based on a non-vector footage item, the layer style applies to the edges of the layer’s bounds or masks."
    When you convert between Photoshop text and editable text, you're changing the render order and also switching between raster images and vectors. This can affect appearance in many ways.

  • Missing Format Text, Insert, and Edit Source, etc Options on Some Pages

    I’m having trouble understanding why certain pages have more edit options than others. I’m new to Sharepoint Workspace 2010 and I’ve been reading/ researching for answers for 2 days now. I tried to HyperSnap in some pictures however it will not allow me
    to until my account is verified and it's not sending a verification email, sorry!
    Issue: 
    On some pages, I have the edit pencil with lots of great edit options such as Format Text, Insert and Edit Source. (This is good!)
    On some pages I have no edit pencil, but when I go to Page
    à Edit Page à I get few edit options, not including Format Text, Insert or Edit Source. (This is not good)
    After reading other somewhat similar posts, I noticed that on the pages where I get lots of edit options, they show SitePages in the URL. Where I get few edit options, SitePages is not in the URL.
    Is there a fix so that I can have the expanded edit options in all of my pages? Thank you for your help!

    Hi,
    In SharePoint we don’t have edit page options [ribbon toolbar page edit formatting options] for all types of page for application page we cannot edit application page like site pages
    again the missing edit button might be due to many causes:  
    Can you verify that it's not a permissions issue? Try navigating to the page in edit mode by appending to the url: your-site/Pages/YourPage.aspx?ControlMode=Edit&DisplayMode=Design
    Or you can try this
    your-site/Pages/YourPage.aspx? ?ToolPaneView=2
    1. You can check  that on some pages the ribbon is hidden by default. You need to make it visible by clicking on "Show Ribbon" on the "Site Actions" drop-down menu.
    2. You haven't been doing Visual Upgrade (which actually replaces your master page with the v4.master)
    3. If you have different master page and may be your master page is not 100% compatibile with SP2010, nor does it use the elements from v4.master (collaboration) or the example nightandday.master
    To add the button in your page you could use the <SharePoint:PageStateActionButton id="PageStateActionButton" runat="server" Visible="false" /> (if you've seen already that would generate the button on the left side of
    the ribbon)!
    Please can you ping the URL of the page and how you crated that page to further assist, we would be happy to help.
    Krishana Kumar http://www.mosstechnet-kk.com

  • How do I leave editable text and images in a PDF?

    I recently bought a flyer template and it came as an editable PDF.  Here is one of the templates http://www.wendygarratt.com/images/flyer.pdf
    Every field, both text and graphic object, is fully editable in the free Adobe reader.  I have Acrobat X and have tried all the methods of producing something like this but nothing has worked.  I wish to produce not just one page template PDFs that can be edited like the one above, but I also have a 20+ page magazine, which currently is distributed in PDF form and I wanted certain image and text fields within the magazine to be customisable too. 
    I design the magazine using InDesign and the exported pages are composed of 1 large background image with text fields laid over the top.  I have tried exporting it as an interactive PDF, ticking the layers option for Acrobat, but when I try to create an editable form (Tools>Forms>Create>Open file) it does not recognise any of the text fields at all.
    Can someone please help me before I slam my head repeatedly in a door?  I have been searching for a solution for so long and I'm getting rather frustrated.
    Thank you in advance
    Wendy-G

    Thanks for the replies I've had so far, but I really need some detailed help to sort this.
    I want to be able to create a PDF that has editable text and editable graphics over a background image, that can be edited in the free Adobe Reader, as per this item - http://www.wendygarratt.com/images/flyer.pdf
    I know this was designed in LiveCycle and I have LiveCycle and Adobe Acrobat Pro X, but LiveCycle is new to me.  I am a quick learner (I use Photoshop, InDesign, etc) and need help in getting started.
    I am willing to work with someone to help get this sorted but it is urgent that I get to grips with this.
    Thanks so much for helping
    Wendy-G

  • I have upgraded to Pages 5.0.1 and now I cannot print or pass along "comments" in the text of a document. I previously was able to convert the Pages document, with comments, to a "Word" document so that others could view the edited text. How do I do that?

    I have upgraded to Pages 5.0.1 and now I cannot print or pass along "comments" in the text of a document. I previously was able to convert the Pages document, with comments, to a "Word" document so that others could view the edited text. How do I do that?

    When you installed Pages v5, it automatically moved the older Pages ’09 v4.3 into /Applications/iWork '09 folder. If you want normal comment interoperability, you are advised to resume using the older version of Pages. Newer, is certainly not better with Pages v5.

Maybe you are looking for

  • My iPhone 4 will no longer back up in iTunes after my upgrade to Windows 7 64bit.

    I used to have Windows XP 32bit and everything worked fine. I upgraded to Windows 7 64bit and installed iTunes 64bit (I've also tried running the installer as administrator [in the compatibility properties]). iTunes will recognise it with no problems

  • How can i make sure all of the files in my music file are on my itunes??

    I copied all of my itunes music via usb drive (crappy process) onto my mac in my music folder.. but it too several times due to the small size of the usb drive.. anyways.. When you add music to your music folder.. it doesn't go onto your itunes playl

  • Corrected demand forecast(   ???)

    hi Out of 3 demand types I could see   Customer demand(coming from sales orders) ,forecast demand (coming from DP),then what is corrected demand forecast(   ???) how does it arrive??  Is it  a aggregated value of first 2 demand types. plz lend a hand

  • Issue when passing table parameter to perform...

    Hello, I have a table parameter (S_KOSTL) defined as RSRANGE in a function module. Now when I am passing the table to an perform staeement as follows: PERFORM get_cost_center_info USING s_kostl                                    CHANGING lt_output. I

  • Import a java file?

    Hi, I created a StockTablePanel.java file, and then compiled it fine. Then, I wrote in a new file, StockTableTabPanel.java, the followings: //top: import javax.swing.*; import javax.swing.event.*; import java.awt.*; import java.awt.event.*; // Import