What to do with a NoName Element

Hi,
When I convert from unstructured to stuctured, FM is automatically making the highest level element a NoName.  Is there a simple way to convert NoName into a Chapter element?  Chapter is my highest level...
My best solution so far is to wrap NoName with a Chapter element and then move everything out of NoName manually in the structured viewer.  There must be a better way.
Thanks,
JW

JW,
That NoName element occurs when the conversion table process is unable to wrap your content all the way to the top. Either your conversion table contains incomplete instructions, or the process bumped into something that was unexpected and this disrupted the wrapping process. You have several options:
- Deal with it and fix it manually, as you are doing now
- Enhance your conversion table to handle the unexpected situation(s) it encountered
- Remove or fix the unexpected situation in your document
- Use an RE: mapping row in your conversion table to set the root element (this will just retag, it won't fix whatever caused the original problem)
In those sample files I pointed you towards, you'll note that you can wrap all the way to the top, but everything must be in place. If you took one of those sample files and introduced some paragraph format that the conversion table does not account for, the process would break and you would get NoName at the top.
Here's another forum thread about this subject:
http://forums.adobe.com/message/2934696
Russ

Similar Messages

  • What's wrong with the Record element?

    The record element was used as a voice mail during the off work time.
    I set the start with beep=true,file type=wav,leave the file extension and path blank,set the FTP host=15.72.25.65,no firewall enabled in this server.FTP user=admin and password=111111.I have tried to leave the FTP path blank or used "/" or "\" mark,but all of them failed.
    I heard the man voice first,who told me error and then the woman voice.So it must be incorrect configuration in the record element.
    So,is there anybody can help me?
    Sent from Cisco Technical Support iPad App

    It all depends on how the FTP home directory is set up. If you have it set to (say) C:\Inetpub\wwwroot then the path you put in the element should be (something like) en-us/app/MyRecordedFiles.
    Try FTP from another box, type "cd en-us/app/MyRecordedFiles" and ensure that aligns.
    Regards,
    Geoff

  • Had a windows computer with my element 7.  Now just bought a Mac OSX   version 10.9.2 what would be the best photoshop elements for this machine.  I did download elements 12 from Apple store but kept getting incompatible message when trying to open a phot

    I thought elements were simple but maybe it is just me.  Having problems moving photos from iphoto to elements

    Duplicate post; see:
    had a windows computer with my element 7.  Now just bought a Mac OSX   version 10.9.2 what would be the best photoshop elements for this machine.  I did download elements 12 from Apple store but kept getting incompatible message when trying to open a phot

  • Hiding Table Columns with the Spry Element Selector

    I am trying to set up a toggle button that will show/hide
    rows >1 when clicked. I've used Adobe's
    "Hiding
    Table Columns with the Spry Element Selector" example and it
    worked fine with an HTML list, until I linked to actual XML data.
    Now it works in reverse. What gives?
    Here's the example:
    http://a44.awardspace.com/testing/toggleShowHideRows.htm

    That's what I started with. Same result:
    http://a44.awardspace.com/testing/toggleShowHideRows.htm

  • What's wrong with my XPath statement using dom4j?

    I'm pretty new to XML. However, I did pick up a book and I'm pretty much through it. I got a copy of dom4j and I created a sample XML file. I'm able to parse the data and find out the child elements of root but I'm having problems with using XPath no matter what I do. Here's my code:
    import org.dom4j.*;
    import org.dom4j.io.*;
    import java.util.*;
    import java.io.*;
    public class XMLACL {
      org.dom4j.Document doc;
      org.dom4j.Element root;
      XMLACL(String x) {
        String tempFile = System.getProperty("user.dir") + "/winsudo.xml";
        tempFile = tempFile.replace('\\', '/');
        SAXReader xmlReader = new SAXReader();
        try {
          doc = xmlReader.read(tempFile);
        catch (Exception e) {}
        root = doc.getRootElement();
        //treeWalk();
        //iterateRootChildren("grant");
        XPath xpathSelector = DocumentHelper.createXPath("/grant[@prompt='no']");  
        List results = xpathSelector.selectNodes(doc);
        for (Iterator iter = results.iterator(); iter.hasNext(); ) {
         Element element = (Element) iter.next();
          System.out.println(element.getName());
    }And here's my XML:
    <?xml version="1.0" encoding="UTF-8"?>
    <config>
         <alias name="admin">
              <user>geneanthony</user>
              <user>mike</user>
              <user>rob</user>
         </alias>
         <grant prompt="no" runas="root" service="no">
              <user>geneanthony</user>
              <command>!ALL</command>
         </grant>
         <grant>
              <user>geneanthony</user>
              <group>users</group>
              <command>C:/Program Files/Mozilla Firefox/firefox.exe</command>
         </grant>
         <grant>
              <alias>admin</alias>
              <command>!Panels</command>
         </grant>
    </config>I'm currently getting this error:
    C:\Borland\JBuilder2005\jdk1.4\bin\javaw -classpath "C:\code\java\WinSudo\classes;C:\Borland\JBuilder2005\jdk1.4\jre\javaws\javaws.jar;C:\Borland\JBuilder2005\jdk1.4\jre\lib\charsets.jar;C:\Borland\JBuilder2005\jdk1.4\jre\lib\ext\dnsns.jar;C:\Borland\JBuilder2005\jdk1.4\jre\lib\ext\ldapsec.jar;C:\Borland\JBuilder2005\jdk1.4\jre\lib\ext\localedata.jar;C:\Borland\JBuilder2005\jdk1.4\jre\lib\ext\sunjce_provider.jar;C:\Borland\JBuilder2005\jdk1.4\jre\lib\im\indicim.jar;C:\Borland\JBuilder2005\jdk1.4\jre\lib\im\thaiim.jar;C:\Borland\JBuilder2005\jdk1.4\jre\lib\jce.jar;C:\Borland\JBuilder2005\jdk1.4\jre\lib\jsse.jar;C:\Borland\JBuilder2005\jdk1.4\jre\lib\plugin.jar;C:\Borland\JBuilder2005\jdk1.4\jre\lib\rt.jar;C:\Borland\JBuilder2005\jdk1.4\jre\lib\sunrsasign.jar;C:\Borland\JBuilder2005\jdk1.4\lib\dt.jar;C:\Borland\JBuilder2005\jdk1.4\lib\htmlconverter.jar;C:\Borland\JBuilder2005\jdk1.4\lib\tools.jar;C:\Borland\JBuilder2005\jdk1.4\jre\lib\jRegistryKey.jar;C:\Borland\JBuilder2005\jdk1.4\lib\hsqldb.jar;C:\Borland\JBuilder2005\jdk1.4\jre\lib\dom4j-1.6.1.jar;C:\Borland\JBuilder2005\jdk1.4\jre\lib\syntax.jar;C:\Borland\JBuilder2005\jdk1.4\jre\lib\IzPack-install-3.7.2.jar" winsudo.Main
    java.lang.NoClassDefFoundError: org/jaxen/JaxenException
         at org.dom4j.DocumentFactory.createXPath(DocumentFactory.java:230)
         at org.dom4j.DocumentHelper.createXPath(DocumentHelper.java:121)
         at winsudo.XMLACL.<init>(XMLACL.java:26)
         at winsudo.Main.main(Main.java:15)
    Exception in thread "main"
    Can someone tell me what's wrong with my code. None of the samples I've seen came with the XML files so I don't know if I when I start the XPATH I need to use / for the root element, or // or a forward slash and the root name. Can I please get some help!

    Thank you! I didn't haven Jaxen I thought everything was in the package and I must have missed it in the tutorials. That resolved the dropouts and I think I'm good know. I couldn't think for the life of me what I was doing wrong!

  • What's wrong with this content type definition?

    Could someone tell me what's wrong with this content type definition? When I click "New Folder" in a custom list, it should bring two fields 1) Name 2) Custom Order. However in my case when I click new folder, I see 1) Member (which is totally
    weird) 2) custom order. Where is it getting that Member field from?
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <!-- Parent ContentType: Folder (0x0120) -->
    <ContentType ID="0x012000c0692689cafc4191b6283f72f2369cff"
    Name="Folder_OrderColumn"
    Group="Custom"
    Description="Folder with order column"
    Inherits="TRUE"
    Version="0">
    <FieldRefs>
    <FieldRef ID="{35788ED2-8569-48DC-B6DE-BA72A4F87B7A}" Name="Custom_x0020_Order" DisplayName="Custom Order" />
    </FieldRefs>
    </ContentType>
    </Elements>

    Hi,
    According to your post, my understanding is that you had an issue about the custom content type with custom column.
    I don’t think there is any issue in the content type definition, and it also worked well in my environment.
    Did you have the Member field in the project?
    I recommend you create a simple project only with one custom Order column and one custom Folder_OrderColumn, then you can add more fields one by one.
    By doing this, it will be easier to find out the root cause of this error.
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • What's wrong with this code (in recursion there may be a problem )

    // ELEMENTS OF TWO VECTORS ARE COMPARED HERE
    // CHECK WHAT IS WRONG WITH THIS PGM
    // there may be a problem in recursion
    import java.util.*;
    class Test
    Vector phy,db;
    public static void main(String adf[])
         Vector pp1=new Vector();
         Vector dp1=new Vector();
         //adding elements to the vector
         pp1.add("1");
         pp1.add("a");
         pp1.add("b");
         pp1.add("h");
         pp1.add("c");
         dp1.add("q");
         dp1.add("c");
         dp1.add("h");
         dp1.add("w");
         dp1.add("t");
         printVector(dp1);
         printVector(pp1);
         check2Vectors(pp1,dp1);
    public static void printVector(Vector v1)
         System.out.println("Vector size "+v1.size());
         for(int i=0;i<v1.size();i++)
              System.out.println(v1.get(i).toString());
    public static void check2Vectors(Vector p,Vector d)
         System.out.println("p.size() "+p.size()+" d.size() "+d.size());
         printVector(p);
         printVector(d);
         for(int i=0;i<p.size();i++)
                   for(int j=0;j<d.size();j++)
                        System.out.println(" i= "+i+" j= "+j);
                        Object s1=p.elementAt(i);
                        Object s2=d.elementAt(j);
              System.out.println("Checking "+s1+" and "+s2);
                        if(s1.equals(s2))
    System.out.println("Equal and Removing "+s1+" and "+s2);
                             p.remove(i);
                             d.remove(j);
                             printVector(p);
                             printVector(d);                    
                        check2Vectors(p,d);
                   }//inner for
              }//outer for     
    if(p.size()==0||d.size()==0)
    System.out.println("Vector checking finished and both match");
    else
    System.out.println("Vector checking finished and both do not match");
    }//method
    }

    hi,
    but the upper limit is changing everytime you call the function recursively
    so there should not be any problem(i suppose)
    my intension is to get the unmatched elements of the two vectors
    suggest me changes and thanks in advancce
    ashok
    The problems comes from the fact that you remove
    elements for a Vector while iterating in a loop where
    the upper limit as been set to the initial size of the
    Vector.
    You should use so while loops with flexible stop
    conditions that would work when the size of the Vector
    changes.
    Finally: why don't you use Vector.equals() ?

  • Remove Green Screen with Adobe Photoshop Elements

    Hi,
    I have setup a Green Screen in my home. I took some pictures of my wife with the Green Screen Background and want to remove the Green Screen and replace with a different background. I was able to do this via the Adobe Premiere Elements 7.0 but need help with the Photoshop Elements.
    Any help is appreciated.
    Sridhar

    FWIW, She is really easy to select on that green screen if you use a few tricks. The screen shots are in CS3 my preference but worked with Elements limitations to show you how easy she can be selected without any filters.
    My end product doesn't look as good as Mark's though. That's a tough act to follow. Thought I'd post this anyway just in case you couldn't get that filter to work in Photoshop Elements 7,
    First, make a copy of the image and desaturate it to make it black and white. I prefer using Hue/Saturation from the image menu (CTRL U) and moving desat slider down to -100. Next Invert it (CTRL I), then run levels from the image menu (CTRL L) to push the image towards pure white and black...well close. It should look something like this when these steps are done.
    Copy this image to a new layer. (Just in case something goes wrong so you don't have to repeat the last steps). Leave the copy in Normal blend mode. Grab your paint brush tool. Set the brush tool's mode to Overlay blend mode. You will use black and white paint to push dark gray to black and light gray to white. When done, it should look something like this:
    Not perfect...I did this really fast and was a bit sloppy and didn't get all of my light grays pushed to whites. Probably not a problem for the hair edges but would need to be fixed for face and body areas as this will be a mask to make the selection.
    Select mask that was just made and copy it into your clipboard. Select<All; Edit<Copy. Create and adustment layer mask that has a mask. I used the Solid Color Fill Adjustment layer. Alt click the mask of the adjustment layer you created. It will turn the document white. This is because the mask is now the focus. Now paste. Edit<Paste. This will paste the above mask into the adjustment layer mask. Now, either alt click the mask or click on another layer to remove the focus from the mask. You'll use this adjustment layer as a base to a clipping mask. See next paragraph.
    The Solid color fill layer (or whatever you picked) with your mask is going to be the base on which your selection will be built. Create a copy of your original image up above this base layer. Now, hold in the alt key and move your curser in the layers pallete to the line separating these two layers. Notice the cursor changes to an odd symbol...a solid ring and a hollow ring with an arrow. Click the palette on the line separating these two layers. (Release alt key when done.) She should now be covering the mask you created. Areas that are white in the adjustment layer mask will show the original image; areas in black in the adjustment layer mask will be transparent. (Areas that contain shades of gray would be semi-transparent...amount based on the gray's brightness value.)
    For the green cast on the edges, I removed that by using a Hue/Saturation adjustment layer to remove the green spill over. If you only wanted to effect the girl and not a new background add it to clipping mask. (Same way...alt click the line between her image and the Hue/Saturation layer.)
    Not perfect but this is what I came up with based on the above mask:

  • Problem with Adobe Premiere Elements 12 using Scary Halloween template

    I'm having a problem with Adobe Premiere Elements 12 using Scary Halloween template under Menu Theme.  My problem is the red line is default to Scenes.  I would like it to default to Play.  How can I do that? Is it a bug?
    Side Note:  Other template default to Play Movie
    Thanks

    jeffrey caban
    No bug. Just the way the .psd for the Scary Halloween template was put together.
    You are going to have to get into the .psd for the Scary Halloween template and rearrange the
    Layer Sets. Do you know how to do that? If not, I will give you very specific instructions on how to
    do that.
    You want the order of the Layer Sets to look like
    That is what worked for me just now to get the disc menu Preview to open to the main
    menu with the red highlight under Play.
    We will be watching for your reply.
    ATR

  • Problem reading GoPro Hero Black 4 files (1080p 120 fps) on my iMac with Adobe Premiere Elements

    Hello,
    I have a problem reading GoPro Hero Black 4 files (1080p 120 fps) on my iMac with Adobe Premiere Elements : the file is read but the quality is quite bad. When I watch it with other software like VLC or MPC, the quality is perfect but the video is sometimes slowed or there are some jumps in the reading.
    What is the issue with this ?
    thakns for your help !
    Olivier.

    This is easy. I do it all the time. FCPX ingests GoPro footage just fine. Optimize, and you're good to go.
    BTW: A common hiccup occurs when dealing with over-cranked footage. (60fps or 120fps.) Be sure to "conform speed" to actuate the slo-mo. 'Tis also important to designate your project / timeline at 24fps or 30fps to realize the speed difference.
    I've gotten burned in the past. I'll drag my over-cranked GoPro footage to the timeline. As it is the "first" clip layed into the timeline, the project assumes THAT speed as a default. (As per my preferences.) Thus, when I "conform speed," nothing seems to happen. That's because my project is displaying at the higher rate. A 60fps timeline showing footage shot at 60fps looks "normal speed."
    FYI. (And disregard if you know all this.)

  • Can't open raw with lumix gx1 elements 9

    Hi Group,
    Windows 7, Elements 9   Panasonic lumix gx1
    I tried acr 6.5 but it won't open the lumix raw files.  One site I found said that this camera needs 6.6 but that update failed.  I don't won't to update to elements 10 as I see no reason to do this.  Does anyone know what or if it's possible to get these files to open in Elements 9?
    Thanks,
    Michael

    I finally downloaded the coverter.  I refuse to buy Elements 10 when there is nothing new that I need.  Maybe 11 when I see what it does but I doubt it.  The coverter works just fine. Michael
    Date: Sat, 18 Aug 2012 23:08:17 -0600
    From: [email protected]
    To: [email protected]
    Subject: can't open raw with lumix gx1 elements 9
        Re: can't open raw with lumix gx1 elements 9
        created by sjpix in Photoshop Elements - View the full discussion
    Actually, the problem is that Adobe seems to be wanting to force their users into purchasing otherwise unnecessary upgrades.  I, too, use Elements 9, and it does everything I need...except read the RAW files from my new GX-1. Yes, I can download the DNG converter (and I have), but that adds an extra, and unnecessary, step to processing.  Adobe's reputation for not respecting their customers isn't unwarranted.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4631806#4631806
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4631806#4631806. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop Elements by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Help needed with titles in Elements 7.0 - urgent!

    Hey there,
    I believe I have quite a simple task, but I can simply not find it in my Premiere Elements 7.0 options.
    I want a title to pop in, character, by character.
    Not fade in, not fly in, not come from below, nor from above. Simply appear, as if I would use a typewriter. Tack, tack, tack.
    FadeInByCharacters in the Text Animation menu is the closest, but it's still a fade.
    I am looking for it since hours. There must be a way!
    Your help would be greatly greatly appreciated!!

    There are several ways to do what you want.
    First, there are several titler programs, that have 100's of animation Presets built into them. ProDAD's Heroglyph is one.
    However, you can do exactly what you want with Titler, albeit with several steps. The trick is to create the "title" as one Title for each letter. Place thes onto progressively higher Video Tracks, and space them to create the pacing that you need.
    If you have a very long Title, it might be worth investing in Heroglyph, or similar.
    Good luck,
    Hunt

  • I'm using a 1D Arrary with 27 different elements and would like to send those data over UDP Write and UDP Read functions.

    I'm using a 1D array with 27 different elements. I would like to transfer that data over a UDP connection, and read it back by using UDP connections.
    But I would like to read 3 elements at a time (On read side) and send those to 9 different ports.
    Note: the data will go to only one PC with one Network Address)
    * 1st elements (0,1,2) and send to port #XXX to see those 1st 3 elements.
    * continue until the elements reaches up to 27
    This is what I have done but I'm finding myself in pitfalls...
    Send side:
    I'm using a UDP Open connection on send side to send my data. So with selected a Source Port, I have created a UDP Op
    en connection. I�m using only one source port to send all the data across the channel. I would like to read 1st 3 elements and send those data across with an assigned Destination port. I would like to do that for 9 times b/c there are 27 elements in the array. So I�m using a For Loop and setting N count to 9. So I�m not getting any errors when I execute and no answer on the other side at all.
    Read side:
    I�m using a UDP Open connection to read in the data with port #. I�m using while loop to with Boolean inside by making a true all the time. Inside that While loop, I�m using For Loop to read the 3 elements data a time and send to a right port address. (As start out I was just trying to see if it works for only one port).
    Attachments:
    UDP_SEND_1.vi ‏40 KB
    UDP_READ_1.vi ‏31 KB

    You are not getting any errors because UDP is a connectionless protocol. It does not care if anyone receives it. Your example will work fine with the following considerations.
    (1) Don't use the generic broadcast address (255.255.255.255).
    (2) You are listening on port 30000. So why are you sending to port 1502, nobody will receive anything there.
    The destination port of the outgoing connection must match the server port of the listener. (The source port is irrelevant, set ot to zero and the system will use a free ephemeral port).
    (3) On the receiving side, you are not indexing on the received string, thus you only retain the last received element. Then you place the indicator outside the while loop where it never gets updated. :-(
    (4) Do yourself a favor and don't micromanage how the data is sent across. Just take the entire array, flatten it to string, send it across, receive it, unflatten back to array, and get on with the task.
    (You can do the same with any kind of data).
    I have modified your VI with some reasonable default values (destination IP = 127.0.0.1 (localhost)), thus you can run both on the same PC for testing "as is". Just run the "read" first, then every time you run "send", new data will be received.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    UDP_READ_1MOD.vi ‏29 KB
    UDP_SEND_1MOD.vi ‏27 KB

  • PrE 12.  How to deal with black screen "Created with Adobe Premiere Elements trial version"?

    I'm really considering purchasing PrE 12 and would like to try it out.  (I have another video editing software and would like to try this one.)
    When I add video, I get a black screen "Created with Adobe Premiere Elements trial version".  When I hit play, I can hear audio, but I don't get any video (just the black screen).  Is there a work around, a setting that I can change, or is the trial version supposed to show the black screen? 
    Thanks,

    To help with troubleshooting, some questions so people have more to work with
    More information needed for someone to help... please click below and provide the requested information
    -Premiere Elements FAQ http://forums.adobe.com/thread/1042180
    And, exactly what are you editing?
    Codec & Format information, with 2 links inside to read
    -read both links in reply #1 http://forums.adobe.com/thread/1270588
    Report back with the codec details of your file, use the programs below... A screen shot works well to SHOW people what you are doing
    http://forums.adobe.com/thread/592070?tstart=30
    For PC http://mediainfo.sourceforge.net/en or http://www.headbands.com/gspot/
    For Mac http://mediainspector.massanti.com/

  • Spry navbar position with other page elements.

    2 questions on positioning  a horizontal navbar with other page elements.
    1.) I replaced a standard horizontal navbar with a spry horizontal bar.
    Below the navbar is a simple image div- centering an image on the page.
    The image is placed with auto margins r/l to stay centered.
    After I replaced the standard navbar with the Spry navbar, the centered image now appears to the right.
    What I want is the original design-  the Spry navbar to be positioned above the image, drop down menu items can appear over the centered image.
    My edited Spry page is not live until it works correctly- the original page without the new menu bar is here- michael-davidson.com)
    2.) My plan is to keep the navbar on all my pages- so I'll set it up in a template.
    Many of my pages wil consist of simpleviewer galleries- like this; simpleviewer gallery- will it work to put a drop down above the gallery?
    Will there be a problem having the Spry navbar drop down over the simpleviewer gallery?
    thank you.
    btw- I did search for the answer to this positioning question, but could not find it. If there is a guide for positioning a Spry navbar, I'd love to read it!
    thank you

    I may have missed it, but I didn't see any style rule that positions your div#navbar. I may be wrong, but it seems to me that if you don't style the div, it will sit on the left of your page.
    When you put Spry Menubars above Flash elements, Flash will as a rule put itself in front of other elements.
    Try changing this:
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','632','height','238','src','home-flash','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','home-flash' ); //end AC code  
    To this:
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wmode','opaque','width','632','height','238','src','home-flash','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','home-flash' ); //end AC code 
    This is from another thread: http://forums.adobe.com/thread/419243
    Beth

Maybe you are looking for

  • How can i execute some code in a jsp page on the same page ? plz read.

    I have made a single JSP Page where in i want to delete users, create users, update table data. I have all the UI on the first page. Now i want to write my all JDBC coding on just this single page. I don't want to create 3 separate pages. Can it be d

  • Second hand aperture

    I bought an imac 27 from an individual.  He had "aperture" installed on the computer.  This was one of the selling points for me.  It is now asking me to update the app.  When I try to update it is asking me to log in under his itunes login name.  I

  • What is wrong with order by and arrange by? Ordering lists in Lion is an absolute nightmare.

    While studying storyboards: shots named 1 through 16 are in order in a folder. After putting them in iPhoto (uploading them to Photo Stream to put to my phone) and organizing them by title name, they are now ordered completely random. Macs are no lon

  • Date range in function module

    Hi guys,              i have a selection screen where i need to give range of date. say from 01.01.1998 to 01.02.2007. i need to pass this date range to 'Z' funtion module how can i do it. do i need to define it in tables declaration. if yes what wil

  • Alternative item in A/R sales

    Hi All, What is in an alternative item in A/R sales ? I would like to use it in our marketing department sales document but confusing about its definition and practical use. Tks Rgds,