Graphic frames in a document...

hi to all,
I need all and only graphic frames  of a document?
what is the right interface?
like InterfacePtr<IStoryList> for story of text frames...
thanks in advance!

Hi,
I think you can try this :
bool YourClass::IsGraphicFrame(const UIDRef& graphicFrameRef)
    InterfacePtr<IGraphicFrameData> graphicFrameData(graphicFrameRef, UseDefaultIID());
    // Test not nil
    return Utils<IPageItemTypeUtils>()->IsGraphicFrame(graphicFrameRef)
             || (graphicFrameData->IsGraphicFrame() && !graphicFrameData->HasContent());
Good luck

Similar Messages

  • How do I delete all empty graphics frames from a document?

    I have data merged a document and need to remove all the empty graphics frames as quick as possible.
    I have found solutions for deleting empty text frames but not graphics frames. Can somebody help with this as it will save soo much time and RSI!
    I found an applescript solution here:
    http://forums.adobe.com/thread/756281
    However, I am running Windows 7 and Id CC
    Cheers,
    Kris.

    Hi MToys
    I added a little to the script so that it will work on Ovals and Polygons also. [Not TextFrames]
    You just have to set the values for which of the frame types you want to delete.
    You can do this by setting the const values at the top of the script for DeleteRectangle, DeleteOvals, DeletePolygons
    There are a few uncertainties that I had:
    If an object is selected, should the script only delete that objects frame type.
    I.e., If you select an oval, should the script know to delete only ovals.
    At this point, I did not do that, rather it will just get the settings from the selected object, and delete all frame types with those settings
    I had to disable matching the transparency settings because they werent comparing correctly between different frame types
    Meaning, I made 3 frames, Oval, Rectangle and Polygon - no settings applied.
    I selected the oval and ran the script. It only deleted the oval even though set it to delete all.
    I found that the transparency settings werent matching... even though there werent any
    So, for now - its disabled.
    If someone can shed some light on this I would appreciate it.
    I tested the script on Mac Mountain Lion - ID CS6 and seems to work well
    Here is the script
    const Object_Style = false,
        Fill_Color = true,
        Fill_Tint = true,
        Fill_Transparency_Settings = true,
        Item_Layer = true,
        Stroke_Color = true,
        Stroke_Weight = true,
        Stroke_Type = true,
        Stroke_Transparency_Settings = true,
        Stroke_Tint = true,
        Stroke_Alignment = true;
    const DeleteRectangles = true,
        DeleteOvals = true,
        DeletePolygons = true;
    app.doScript(main, undefined , undefined, UndoModes.fastEntireScript, "INSERT_HERE_THE_SCRIPT_NAME")
    function main() {
        var myDoc = app.activeDocument;
        var mySel = app.selection;
        if (mySel.length > 0) {
            mySample = app.selection[0];
            if (mySample.constructor.name == "Rectangle" ||
                mySample.constructor.name == "Oval" ||
                mySample.constructor.name == "Polygon")
                var isSample = true;
                var objSty, fClr, fTint, fTrans, lay, sClr, sWeight, sType, sTrans, sTint, sAlign;
                GetProps(mySample);
        if (DeleteRectangles) {DeleteItems(myDoc.rectangles)}
        if (DeleteOvals) {DeleteItems(myDoc.ovals)}
        if (DeletePolygons) {DeleteItems(myDoc.polygons)}
        function DeleteItems(myGraphicFrames) {
            for (var i = myGraphicFrames.length-1; i >= 0; i--) {
                if (myGraphicFrames[i].graphics.length < 1) {
                    myGraphicFrames[i].select();
                    if (isSample) if (!checkProps(myGraphicFrames[i])) continue;
                    myGraphicFrames[i].remove();
        // ======================================
        function GetProps(mySample) {
            objSty = mySample.appliedObjectStyle;
            fClr = mySample.fillColor;
            fTint = mySample.fillTint;
            fTrans = mySample.fillTransparencySettings;
            lay = mySample.itemLayer.name;
            sClr = mySample.strokeColor;
            sWeight = mySample.strokeWeight;
            sType = mySample.strokeType;
            sTrans = mySample.strokeTransparencySettings;
            sTint = mySample.strokeTint;
            sAlign = mySample.strokeAlignment;   
        // ======================================
        function checkProps(myFrame) {
            var i=0;
            if (Object_Style) if (myFrame.appliedObjectStyle != objSty) return false;
            if (Fill_Color) if (myFrame.fillColor != fClr) return false;
            if (Fill_Tint) if (myFrame.fillTint != fTint) return false;
            if (Item_Layer) if (myFrame.itemLayer.name != lay) return false;
            if (Stroke_Color) if (myFrame.strokeColor != sClr) return false;
            if (Stroke_Weight) if (myFrame.strokeWeight != sWeight) return false;
            if (Stroke_Type) if (myFrame.strokeType != sType) return false;
            if (Stroke_Tint) if (myFrame.strokeTint != sTint) return false;
            if (Stroke_Alignment) if (myFrame.strokeAlignment != sAlign) return false;
            //if (Stroke_Transparency_Settings) if (myFrame.strokeTransparencySettings != sTrans) return false;
            //if (Fill_Transparency_Settings) if (myFrame.fillTransparencySettings != fTrans) return false;
            return true;

  • How to expand all frames in the document using a script?

    Hi,
    I have used the ImageCatalog script to place a 1000+ images of different dimensions in the document. On the ImageCatalog dialog box, I have unchecked the Proportional and Frame to Content option to place the images in 100%. I am looking for a way to expand all the graphic frames to reveal all the images it placed on the document. When you double-click the bottom-right handle, it would expand the frame to see the full content. (it would time consuming when you do this one by one)
    Let me know. Thank you very much.

    If I understand you correctly, you placed the images without using Fit Frame To Contents and now you are trying to rectify this? Do you get that making just the frames larger, at this point, may make them overlapping others? If that's going to be a problem, just run the script again but this time with the correct settings ...
    Anyhow. Typing on my iPad so I can't check; but something in the lines of
    g = app.activeDocument.allGraphics;
    for (i=0; i<g.length; i++)
      g[i].fit (FitOptions.FRAME_TO_CONTENT);
    See http://jongware.mit.edu/idcsjs5.5/pc_Graphic.html#fit

  • Make anchored graphics frames act as containers

    If I choose Object/Anchored Object/Insert and make the inserted frame a graphics frame (with above line positioning), it doesn't act as a container. That is, if I put a graphic into the frame or create one with the drawing tools -- say a line diagram -- and then make edits to surrounding text that causes the text to move up or down, the *frame* moves with the text it's anchored to, but the graphics inside it *don't* -- with enough editing, they could move right outside the frame, like ghosts passing thro' walls. Since almost every time I want to put a graphic onto the page it bears some specific relationship to the local text, this behavior is unhelpful, to say the least.
    I can't figure out what the point of graphics frames that don't hold their contents in place could be, so I wonder if this is a bug. If so, please fix it. But if ID is behaving as intended, please add the option to preserve the position of graphics inside the frame *relative to the frame boundaries* (as opposed to relative the page boundaries).
    Thanks.
    PS: I did try to group the frame with a line diagram inside it but that seems impossible. I also know you can paste graphics into body text directly -- I watched AMC's video at Adobe -- but when the graphic in question has different pieces that relate to specific words above or below it, you really can't build it off-site then paste it in -- especially if the result of doing that limits your options for adjustments.

    I believe we've covered this issue thoroughly. There's nothing wrong with your intention, but there is something missing about the containership behavior of ID's anchored frames that works fine in FM.
    I think it's a bug. Others may think it's a personal wish that isn't supported. My thinking is that ID's frame objects are already packed with smarts about content type and fitting abilities, that the developers simply overlooked providing the ability to add new objects freely into a frame that's already got content (like FM can.)
    Apparently designers don't encounter this need anywhere nearly as often as those who author annotated documents in Word, FM, or other similar tools that permit working in the isolated environment of a frame - adding, removing, resizing, rearranging text objects and graphic objects at will - as if it were a blank page environment. So, there have been few reports of problems in this area.
    The main reliable anchored-frame solution for this particular problem is to create and revise the content outside of any frame, then group, select, and copy the composite object and paste it at the cursor insertion point, or save it as a separate ID file and place it as an anchored object.
    Perhaps you've already explored using an unstroked table for this particular need. The baselines of text in your example seem to be aligned across the horizontal rows, and the divider lines also seem aligned on horizontal rows. The divider lines could be created by several means - underlines in cells, graphic lines in anchored frames in cells, or horizontal cell rulings.
    The whole arrangement requires painstaking attention no matter how it's constructed, so the fussiness of working with a table wouldn't seem to add something that might not be needed with a different method. Because tables can break across frames, you'd need to set all rows to keep together.
    Again, I strongly suggest formally reporting this quirk as a bug to be fixed and/or a feature request.
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • How can we place an image in already created inline graphic frame?

    Hi,
    AIM::
    To place an image in the inline graphic frame.
    OBSERVATION::
    As i have analysed the snippet Runner,i came to know that it allows to load the placegun with the file(in my case image). but in order to place it,we need to click on the document..and then the image is placed at (0,0) of the page(I suppose Indesign does it automatically).
    what is needed,is to place image in already created inline graphic frame. i have created a inline graphic frame at some position in the story,but now i required to place image in this created frame.

    I have the same problem. Can you give me a short code sample for that.
    I have an image and want to place it in the currently selected frame...

  • Master page graphic frame behavior

    I am new to InDesign. I have created a master page that has 4 graphic frames on it. If I create a page based on the master and I try to place an image in each frame, it only works for the first frame.  Each subsequent place just put the image into the page but not one of the defined frames setup in the master.
    Can someone tell me why this happens? And if this is what it is supposed to do, how do I accomplish creating a page based on a master that has 4 frames to accept graphics.
    Any help is appreciated.

    I do not see these files because the path does not exist and i do not see where to show hidden files in system preferences. Can you elaborate?
    InDesign Defaults:
    Windows XP: C:\Documents and Settings\<USER>\Application Data\Adobe\InDesign\<Version #>\<language>\  (Note: Prior to version 6 [CS4] the language folder is not used).
    Windows Vista or Windows 7: C:\Users\<USER>\AppData\Roaming\Adobe\InDesign\<Version #>\<Language>\ (Note: Prior to version 6 [CS4] the language folder is not used).
    Macintosh: Hard Drive/Users/<USER>/     _______________XXX no library folder XXX ____________  Library/Preferences/Adobe InDesign/<Version #>/<Language>/(Note: Prior to version 6 [CS4] the language folder is not used).

  • Graphic Frames Corrupted When Exporting to PDF

    I'm trying to figure out what is happening to random graphic frames in my InDesign document.  I'm working in a 68 page document.  I exported to PDF using the lo-res no bleed setting.  The PDF exported fine but when I went back to my InDesign doc, some of my graphic frames had changed to blank white frames.  The links still appeared on the links panel but it showed them as on the pasteboard.  When I clicked the PB link to view the object, it zoomed in to a tiny object in the gutter of the spread.  When I tried to enlarge the object, I got an error saying the object would leave the pasteboard.  I then looked in the control panel and all the coordinates and measuremends said NaN.  I'm working with InDesign CS 5.5 version 7.5.3 on OS X Lion version 10.7.3.  The frames contained either placed PSD files or placed PDF files.  It seems to have affected random frames on various pages.  I've spent 3 hours searching Google and these forums but haven't found a similar post.  This is a brand new system that has been in production for less than two weeks.  I would appreciate any help.
    Thanks
    Jack

    I stupidly started trying to figure out what was going on rather than immediately doing a save as and within about 3 minutes InDesign crashed. When I relaunched and reopened my document, not only were my graphic frames still messed up but all of the content on about 5 other pages were completely gone, frames and all. This is the weirdest thing that I've ever seen in InDesign. I understand the concept of NaN. I just mentioned it because it seemed like part of the problem. Thanks for your reply.  What makes this even more interesting is that this isn't the first time that I've seen this. About 6 months ago, I saw the same issue happen to another user on another machine. At that time we couldn't really track down any details because the document was last accessed at the end of the day on a Friday and we didn't figure it out until Monday morning. The only thing that the two workstations have in common is that the documents and resources were stored on the same server. Could it be an issue with using InDesign files stored remotely vs locally?

  • Indesign Script to import Library asset beneath all graphic frames

    Hi all,
    I wonder if anybody could help me with a problem? (I'm learning scripting but some things are still a bit tricky)
    I have managed a script to place a Library Asset onto a page.
    What I need however is a script to place multiple instances of this Library asset directly beneath every graphic frame that exists in my whole document. If it can be done, I preferably need the asset to snap to the bottom left of the frames, top of the asset touching the bottom of the graphic frame.
    This is from Library 'Library' and the asset is 'Test'
    Has anybody a script or something similar? Thank you.

    AFAIK, you’re wasting your time. If you want those options you’ll need to use file>place. It is worth noting that many of those options are sticky so if you need the same option all the time just place one file and choose the appropriate options.

  • Deleting Graphic Frames

    Hello everybody,
    I have this case...
    I'm working in a long project with IDCS5, creating a medical directory using a old version of the directory. The problem is... The old version is in PDF. So, I convert (in packages, the pdf file has, at least, 1400 pages) the PDF file in INDD file, but in packages of 50 pages per file. At the moment, all okay. But this is the big problem:
    The directory has a specie of features signals in front of names of the doctors or providers. And this signals get shuffled and randomized in the columns of each page.
    My procedure to follow is: 1. re-adjust the document / 2. create new paragraph styles and character styles / 3. Erase all the signals.
    The last step is the highest problem of this theme. Deleting one per one is very tricky.
    Does anyone know how to simplify this work? does exist an script that can delete the graphic frames with the pictures inside?
    My apologize for make this post longer... but I need to expose my case to make it easy to understand.
    Oh... and I'm sorry if my english writing is not the right... I'm doing my best. =)

    Oh, wait, you don't have graphics. Because you have empty frames without graphics.
    Do you just want to get rid of all rectangles?
    These are anchored frames, right? Then:
    app.activeDocument.stories.everyItem().rectangles.everyItem().remove();
    Otherwise:
    app.activeDocument.rectangles.everyItem().remove();

  • Link Symbol on Graphic Frame Disappeared -

    I’m running InDesign CS-6 on Windows 7. 
    Somehow I have managed to cause the link symbol on the top left of all graphic frames to disappear, all 250 of them in this particular document.  It’s as if I’ve converted all graphic frames to text frames, OR  inadvertently removed the link symbol .  Any new graphic I’ve placed does not have the link symbol so I suspect I have done something to set a new default.  The links table shows that all graphics are correctly linked – just no link symbol at the top left of the graphic frames. 
    Chris P.

    Bob,
    Thanks - you pointed me in the right direction:
    Ctl H then View>Extras> Show Link Badge.
    I appreciate the help.
    Chris P.

  • How to copy-paste frames from one document to other with there respective layers intact?

    Hi All,
         I am facing an issue while copy paste frames from one document to other. I have a 3 frames in first documents each one on different layer. First document has 3 layers. The second document too have 3 layers , I am copying frames from first document to scrapdata using 'ICopyCmdData ' and 'kCopyCmdBoss'. I have 'Paste Remembers Layers' menu 'Checked' on Layer panel. I am using following function to copy frames to scrapdata.
    bool16 copyStencilsFromTheTemplateDocumentIntoScrapData(PMString & templateFilePath)
         bool16 result = kFalse;
        do
            SDKLayoutHelper sdklhelp;
            PMString filePathItemsToBeCopiedFrom(templateFilePath);  //("c:\\test\\aa.indt");
            IDFile templateIDFile(filePathItemsToBeCopiedFrom);
            UIDRef templateDocUIDRef = sdklhelp.OpenDocument(templateIDFile);
            if(templateDocUIDRef == UIDRef ::gNull)                 
                break;
            ErrorCode err = sdklhelp.OpenLayoutWindow(templateDocUIDRef);
            if(err == kFailure)                 
                break;
            InterfacePtr<IDocument> templatedoc(templateDocUIDRef,UseDefaultIID());
            if(templatedoc == nil)               
                break;
            InterfacePtr<ISpreadList>templateSpreadUIDList(templatedoc,UseDefaultIID());
            if(templateSpreadUIDList == nil)                  
                break;
            IDataBase * templateDocDatabase = templateDocUIDRef.GetDataBase();
            if(templateDocDatabase == nil)                  
                break;
            UIDRef templateDocFirstSpreadUIDRef(templateDocDatabase, templateSpreadUIDList->GetNthSpreadUID(0));
            InterfacePtr<ISpread> templateSpread(templateDocFirstSpreadUIDRef, IID_ISPREAD);
            if(templateSpread == nil)                 
                break;
            UIDList templateFrameUIDList(templateDocDatabase);
            if(templateSpread->GetNthPageUID(0)== kInvalidUID)                  
                break;      
            templateSpread->GetItemsOnPage(0,&templateFrameUIDList,kFalse,kTrue);  
            InterfacePtr<ICommand> copyStencilsCMD(CmdUtils::CreateCommand(kCopyCmdBoss));
            if(copyStencilsCMD == nil)                
                break;
            InterfacePtr<ICopyCmdData> cmdData(copyStencilsCMD, IID_ICOPYCMDDATA);
            if(cmdData == nil)                 
                break;
            // Copy cmd will own this list
            UIDList* listCopy = new UIDList(templateFrameUIDList);
            InterfacePtr<IClipboardController> clipboardController(gSession,UseDefaultIID());
            if(clipboardController == nil)              
                break;
            ErrorCode status = clipboardController->PrepareForCopy();
            if(status == kFailure)                  
                break;
            InterfacePtr<IDataExchangeHandler> scrapHandler(clipboardController->QueryHandler(kPageItemFlavor));
            if(scrapHandler == nil)                 
                break;
            clipboardController->SetActiveScrapHandler(scrapHandler);
            InterfacePtr<IPageItemScrapData> scrapData(scrapHandler, UseDefaultIID());
            if(scrapData== nil)                
                break;
            UIDRef parent = scrapData->GetRootNode();
            cmdData->Set(copyStencilsCMD, listCopy, parent, scrapHandler);
            if(templateFrameUIDList.Length() == 0)       
                return kFalse;      
            else      
                status = CmdUtils::ProcessCommand(copyStencilsCMD);    
            if(status != kFailure)
              result = kTrue;
            sdklhelp.CloseDocument(templateDocUIDRef,kFalse,K2::kSuppressUI, kFalse);
        }while(kFalse);
        return result;
    After this I need to close first document. Now I am opening the second document from indt file which has same number of layers as first document. I am trying to paste frames from scrap data to second document using '' 'ICopyCmdData ' and 'kPasteCmdBoss' as shown in follwoing function
    bool16 pasteTheItemsFromScrapDataOntoOpenDocument(UIDRef &documentDocUIDRef )
        bool16 result = kFalse;
        do
               InterfacePtr<IClipboardController> clipboardController(gSession,UseDefaultIID());
                if(clipboardController == nil)
                    break;
               InterfacePtr<IDataExchangeHandler> scrapHandler(clipboardController->QueryHandler(kPageItemFlavor));
               if(scrapHandler == nil)               
                    break;
               InterfacePtr<IPageItemScrapData> scrapData(scrapHandler, UseDefaultIID());
                if(scrapData == nil)
                   break;
                     //This will give the list of items present on the scrap
                UIDList* scrapContents = scrapData->CreateUIDList();
                if (scrapContents->Length() >= 1)
                    InterfacePtr<IDocument> dataToBeSprayedDocument(documentDocUIDRef,UseDefaultIID());
                    if(dataToBeSprayedDocument == nil)
                       break;
                    InterfacePtr<ISpreadList>dataToBeSprayedDocumentSpreadList(dataToBeSprayedDocument,UseDef aultIID());
                    if(dataToBeSprayedDocumentSpreadList == nil)
                         break;
                    IDataBase * dataToBeSprayedDocDatabase = documentDocUIDRef.GetDataBase();
                    if(dataToBeSprayedDocDatabase == nil)
                         break;    
                    UIDRef spreadUIDRef(dataToBeSprayedDocDatabase, dataToBeSprayedDocumentSpreadList->GetNthSpreadUID(0));               
                    SDKLayoutHelper sdklhelp;
                    UIDRef parentLayerUIDRef = sdklhelp.GetSpreadLayerRef(spreadUIDRef);
                    InterfacePtr<IPageItemScrapData> localScrapData(scrapHandler, UseDefaultIID());
                    if(localScrapData == nil)
                        break;
                    if(parentLayerUIDRef.GetUID() == kInvalidUID)
                        break;
                    InterfacePtr<ICommand> pasteToClipBoardCMD (CmdUtils::CreateCommand(kPasteCmdBoss));
                    if(pasteToClipBoardCMD == nil)
                        break;
                    InterfacePtr<ICopyCmdData> cmdData(pasteToClipBoardCMD, UseDefaultIID());
                    if(cmdData == nil)
                        break;
                    if(scrapContents == nil)
                        break;               
                    PMPoint offset(0.0, 0.0);
                    cmdData->SetOffset(offset);
                    cmdData->Set(pasteToClipBoardCMD, scrapContents, parentLayerUIDRef );
                    ErrorCode status = CmdUtils::ProcessCommand(pasteToClipBoardCMD);
                    if(status == kSuccess)
                        CA("result = kTrue");
                        result = kTrue;
                }//end if (scrapContents->Length() >= 1)       
        }while(kFalse);
        return result;
         Here in above function its required to set Parent Layer UIDRef and because of this all frames are getting paste in one layer.
    Is there any way we can paste frame in there respective layers?
         Also I need to work this code with CS4 server and desktop indesign.
    Thanks in advance,
    Rahul Dalvi

    Try,
    // dstDoc must be FrontDocument
    InterfacePtr<ILayoutControlData> layoutData(Utils<ILayoutUIUtils>()->QueryFrontLayoutData());
    InterfacePtr<ICommand> createMasterFromMasterCmd(CmdUtils::CreateCommand(kCreateMasterFromMasterCmdBoss));
    createMasterFromMasterCmd->SetItemList(UIDList(srcMasterSpreadUIDRef));
    InterfacePtr<ILayoutCmdData> layoutCmdData(createMasterFromMasterCmd, UseDefaultIID());
    layoutCmdData->Set(::GetUIDRef(layoutData->GetDocument()), layoutData);
    CmdUtils::ProcessCommand(createMasterFromMasterCmd);

  • [AS IDCS3] copy frame from one document to  another doc

    Hi-
    I have a document with a text frame labeled "code". I want to copy that frame and paste it into another document.
    How do I do that?
    I am using applescript.
    Thanks, Karen

    I got the following information from Ray Robertson:
    As of CS3, you can now do this (directed at the application):
    duplicate text frame "code" of document 2 to page 1 of document 1
    Or use document names if you want. In CS2, you had to resort to using the ID
    commands for copy and paste.
    This worked great. Karen

  • How to select all the frames in a document?

    i did select only particular active session.is it possible to select all the frames in a document?

    Hi vinothvijay,
    You can use below interface to select all the frames in the document.
    ISelectionManager* selMgr = Utils<ISelectionUtils>()->GetActiveSelection();
    if(selMgr)
       selMgr->SelectAll(ac,nil);
    Regards,
    Santosh K.

  • How to Apply a Graphic Element's "href" Attribute Value on a Graphic Frame

    I have a graphic frame, which I wish to fill with a graphic image. The graphic frame appears as an element in the Structure, as it has a tag attached, and that element has a legitimate "href" as a full path to a graphic file. In UI mode, I have to drag that element onto the graphic frame in order for the graphic frame to be filled with the graphic file. How do I perform the same action in JavaScript?
    TIA
    mlavie

    I thought I should provide an explanation for what I meant:
    I am aware, of course, of how to use "Place". The issue here is that I have a Page that is a template, which includes a Graphic Frame. I want to open the page, and then update the Graphic Frame element's "href" tag with the path of a graphic file, and have that file then appear in the Graphics Frame. By default, InDesign does not redraw the Graphics Frame when you change the value for the "href" attribute - you need to drag the parent element onto the Graphics Frame.
    TIA
    mlavie

  • How to get the text wrap margin setting of graphic frames?

    Hello everyone,
    I am trying to get the margin setting of frames, and i tried IStandOff which does not work for graphic frames sometimes.
    And then, i found the Adobe recommends to use ITextWrapFacade to manipulate text wraps in programming guide.
    But now, again, ITextWrapFacade::GetMargins(const UIDRef &  textWrapItem,     PMReal &  topMargin,     PMReal &  leftMargin,     PMReal &  bottomMargin,     PMReal &  rightMargin,     bool8 &  singleDistance) cannot get the correct margin setting of a graphic frame.
    This situtation occurs when i select "wrap around object shape" for the frame.
    Any suggestion? Or is there any other way can get that setting?
    Thanks,
    Aidy

    I found another thread mentioned this issue as well, without known solution.
    http://forums.adobe.com/thread/444824

Maybe you are looking for

  • I have problem with connect me to the internet

    Hi, I have my apple TV and always I had problem to connect me to the internet I don't know why because I have my Mac, and Iphone that don't have any problem with internet and is the same server.

  • Help with idoc-file scenario

    Hello, I am doing IDOC - File scenario. (source is DEBMAS and reciever end, there is flat DT with no heirarchies as of now. ) The requirement is that  if the segment at the source side has multiple lines of " sold to party " values, then customer bil

  • KM Reports : Resource Bundle Not Found Exception!!

    Hello all, I am having some trouble in getting the sample reports working. I got the sources from this article : https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/c739e546-0701-0010-53a9-a370e39a5a20 It is a simple report. I am

  • Problem with FD32

    Hi All, I am using FD32 transaction recording for updating Customer Credit management. The problem is when running in the foreground its working fine, but when running in background i am getting the error - Account XXX is currently blocked by another

  • Conflict with Time Capsule/Machine & Applications

    I've had recent problems with Apps not loading properly or shutting down. Been on with Applecare and reinstalled the OS and various other things. After the recent telephone conversation with them and things all working fine I then hit the back up now