Whole file in one item

Hi
I am following the below mentioned  blog  for a requirement and I have two questions :
/people/jeyakumar.muthu2/blog/2005/11/29/file-content-conversion-for-unequal-number-of-columns
a) In the blog thats given below .. what are the arguments for the given UDF,....in the blog only  the code is given .. if i want to use that , how do I create the UDF .... (Queue or Context) and what arguments do i take as input .. is it used in the code somewhere.
b) Also i wanted to ask if I can modify the output (target structure ) to some other structure say :
Target structure should be like
<Header1>
           <Field1>Books</Field1>
           <Field2>CD</Field2>
           <Field3>Video</Field3>
           <Field4>Games</Field4>
</ Header1>
<LineItem>
           <Field5>CD</Field5>
           <Field6>Games</Field6>
           <Field7>DVD</Field7>
</LineItem>
Can someone help me with  the UDF to achieve that  ??
As of now  the output is
<ITEMSET>
           <ITEM>Books</ITEM>
           <ITEM>CD</ITEM>
           <ITEM>Video</ITEM>
           <ITEM>Games</ITEM>
</ITEMSET>
<ITEMSET>
           <ITEM>CD</ITEM>
           <ITEM>Games</ITEM>
           <ITEM>DVD</ITEM>
</ITEMSET>
thanks
Dev

Yes I knw thats the Input but i wanted to know the variable name used as an argument for the functions , is it arrayItemset ?
And can you please suggest something for the 2nd part of the post .. i need some help with the UDF ??

Similar Messages

  • I tried to delete one item from an email folder, and my computer deleted the whole file. I cant fint it anywhere.

    I tried to delete one item from an email folder, my computer deleted the whole file and I cant find it anywhere. Any ideas?

    lindafromgainesville wrote:
    ...is there a seperate trash for email?
    In Mail, yes -

  • Can I copy one item's metadata and paste it into another item?

    I don't think I can, but I thought I'd ask. I'm using Bridge in CS3.
    In the archive files of my workplace there are numerous duplicate images (one color, one b&w; one original scan, one edited version...) where one of the item in the pair has metadata (descriptions, mainly, but other things too) and the other is missing metadata. I want to be able to copy the whole chunk of metadata from one and plop it into the other item.
    Metadata templates, while useful, don't really make sense for this task, as I only want to remember each chunk of data once.
    What would be perfect is a right-click option of "Copy metadata" that turns into "Paste metadata" on another file. Oh man. That would be so nice.
    Is my only choice to copy and paste each metadata field individually? Or is there a better way?

    It would not be a good idea to copy the whole metadata from one file to another, there could be camera raw data, tiff data, colormode, resolution, orientation etc. that would really screw up your document! Selected Metadata yes but not all.
    I wrote a minimal script to copy and then paste the selected metadata to a single or multiple documents..
    http://ps-scripts.com/bb/viewtopic.php?f=19&t=3433&sid=7e889edb1942ac163296a90d56bd15dd
    The fields available: Keywords, Description, Title and Headline.
    Maybe you could modify it to add the fields you require?

  • Need programming help: Three Items selected, only one item displays.

    All the code is below.
    My client has a beach-wear website. It is VERY simple with three pages: Index, Order, and Invoice Page. If customers select the checkbox in front of three items, only one item is displayed on the invoice page. Why aren't all three displayed? I am new to programming:
    //INDEX PAGE:
    <title>Beachwear Title</title>
    <body bgcolor="#FFFFFF">
    <p> </p>
    <form name="form1" method="get" action="jserv/Search.jsp">
    <table width="52%" border="1">
    <tr>
    <td width="20%">Enter Color:</td>
    <td width="80%">
    <input type="text" name="txtColor" size="30" maxlength="20">
    </td>
    </tr>
    </table>
    <p>
    <input type="submit" name="Submit" value="Color">
    </p>
    </form>
    <p> </p>
    //SEARCH PAGE:
    <%@page language="java" import="java.sql.*"%>
    <%@ include file="../Connections/connBeachwear.jsp" %>
    <%
    String rsBeachwear__varColor = "%";
    if (request.getParameter ("txtColor") !=null) {rsBeachwear__varColor = (String)request.getParameter ("txtColor");}
    %>
    <%
    Driver DriverrsBeachwear = (Driver)Class.forName(MM_connBeachwear_DRIVER).newInstance();
    Connection ConnrsBeachwear = DriverManager.getConnection(MM_connBeachwear_STRING,MM_connBeachwear_USERNAME,MM_connBeachwear_PASSWORD);
    PreparedStatement StatementrsBeachwear = ConnrsBeachwear.prepareStatement("SELECT ID, Item, Color, Size FROM Beachwear WHERE Color LIKE '%" + rsBeachwear__varColor + "%';");
    ResultSet rsBeachwear = StatementrsBeachwear.executeQuery();
    boolean rsBeachwear_isEmpty = !rsBeachwear.next();
    boolean rsBeachwear_hasData = !rsBeachwear_isEmpty;
    Object rsBeachwear_data;
    int rsBeachwear_numRows = 0;
    %>
    <%
    int Repeat1__numRows = 10;
    int Repeat1__index = 0;
    rsBeachwear_numRows += Repeat1__numRows;
    %>
    <title>Beachwear Title</title>
    <body bgcolor="#FFFFFF">
    <p> </p>
    <p> 
    <form name="form2" method="post" action="Invoice.jsp">
    <table width="75%" border="1">
    <% while ((rsBeachwear_hasData)&&(Repeat1__numRows-- != 0)) { %>
    <tr>
    <td width="18%"><%=(((rsBeachwear_data = rsBeachwear.getObject("ID"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="20%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Item"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="21%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Color"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="5%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Size"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="16%">
    <input type="checkbox" name="valueCheckbox" value="<%=(((rsBeachwear_data = rsBeachwear.getObject("ID"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%>">
    </td>
    </tr>
    <%
    Repeat1__index++;
    rsBeachwear_hasData = rsBeachwear.next();
    %>
    </table>
    <p>
    <input type="submit" name="Submit" value="Submit">
    </p>
    </form>
    <%
    rsBeachwear.close();
    ConnrsBeachwear.close();
    %>
    //INVOICE PAGE:
    <%@page language="java" import="java.sql.*"%>
    <%@ include file="../Connections/connBeachwear.jsp" %>
    <%
    String rsBeachwear__varCheckbox = "1";
    if (request.getParameter ("valueCheckbox") !=null) {rsBeachwear__varCheckbox = (String)request.getParameter ("valueCheckbox")   ;}
    %>
    <%
    Driver DriverrsBeachwear = (Driver)Class.forName(MM_connBeachwear_DRIVER).newInstance();
    Connection ConnrsBeachwear = DriverManager.getConnection(MM_connBeachwear_STRING,MM_connBeachwear_USERNAME,MM_connBeachwear_PASSWORD);
    PreparedStatement StatementrsBeachwear = ConnrsBeachwear.prepareStatement("SELECT ID, Item, Color, Size FROM Beachwear WHERE ID IN (" + rsBeachwear__varCheckbox + ")");
    ResultSet rsBeachwear = StatementrsBeachwear.executeQuery();
    boolean rsBeachwear_isEmpty = !rsBeachwear.next();
    boolean rsBeachwear_hasData = !rsBeachwear_isEmpty;
    Object rsBeachwear_data;
    int rsBeachwear_numRows = 0;
    %>
    <%
    int Repeat1__numRows = 10;
    int Repeat1__index = 0;
    rsBeachwear_numRows += Repeat1__numRows;
    %>
    <title>Beachwear Title</title>
    <body bgcolor="#FFFFFF">
    <p> </p>
    <p> 
    <p><br>
    INVOICE<br>
    <br>
    </p>
    <table width="75%" border="1">
    <% while ((rsBeachwear_hasData)&&(Repeat1__numRows-- != 0)) { %>
    <tr>
    <td width="18%"><%=(((rsBeachwear_data = rsBeachwear.getObject("ID"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="20%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Item"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="21%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Color"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    <td width="5%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Size"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    <%
    Repeat1__index++;
    rsBeachwear_hasData = rsBeachwear.next();
    %>
    </table>
    <p>  </p>
    <%
    rsBeachwear.close();
    ConnrsBeachwear.close();
    %>

    Hi, Brad,
    I appreciate your help! I am a beginning Java student, so this code is more complex than what I can handle alone.
    A copy of the compilation error is at the very bottom of this message.
    I added " int chkValues[]; " to the beginning of your code, and then inserted the whole code snippet to the detail (Invoice) page as shown:
    <%@page language="java" import="java.sql.*"%>
    <%@ include file="../Connections/connBeachwear.jsp" %>
    <%
    String rsBeachwear__varCheckbox = "1";
    if (request.getParameter ("valueCheckbox") !=null) {rsBeachwear__varCheckbox = (String)request.getParameter ("valueCheckbox")   ;}
    %>
    <%
    Driver DriverrsBeachwear = (Driver)Class.forName(MM_connBeachwear_DRIVER).newInstance();
    Connection ConnrsBeachwear = DriverManager.getConnection(MM_connBeachwear_STRING,MM_connBeachwear_USERNAME,MM_connBeachwear_PASSWORD);
    int chkValues[];
    StringBuffer prepStr=new StringBuffer("SELECT ID, Item, Color, Size FROM Beachwear WHERE ID=");
    for(int x=0;x<chkValues.length;++x){
    prepStr.append( chkValues[x] );//using an x instead of an i
    if((x+1)<chkValues.length){//another iteration
    prepStr.append(" OR ID=");
    }//end if
    }//end for loop
    PreparedStatement StatementrsBeachwear = ConnrsBeachwear.preparedStatement(prepStr);
    ResultSet rsBeachwear = StatementrsBeachwear.executeQuery();
    boolean rsBeachwear_isEmpty = !rsBeachwear.next();
    boolean rsBeachwear_hasData = !rsBeachwear_isEmpty;
    Object rsBeachwear_data;
    int rsBeachwear_numRows = 0;
    %>
    <%
    int Repeat1__numRows = -1;
    int Repeat1__index = 0;
    rsBeachwear_numRows += Repeat1__numRows;
    %>
    <title>Beachwear Title</title>
    <body bgcolor="#FFFFFF">
    <p> </p>
    <p> 
    <form name="form1" method="post" action="">
    <p><br>
    INVOICE<br>
    <br>
    </p>
    <% while ((rsBeachwear_hasData)&&(Repeat1__numRows-- != 0)) { %>
    <table width="75%" border="1">
    <tr>
    <td width="13%">ID:</td>
    <td width="87%"><%=(((rsBeachwear_data = rsBeachwear.getObject("ID"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    <tr>
    <td width="13%">ITEM:</td>
    <td width="87%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Item"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    <tr>
    <td width="13%">COLOR:</td>
    <td width="87%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Color"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    <tr>
    <td width="13%">SIZE:</td>
    <td width="87%"><%=(((rsBeachwear_data = rsBeachwear.getObject("Size"))==null || rsBeachwear.wasNull())?"":rsBeachwear_data)%></td>
    </tr>
    </table>
    <%
    Repeat1__index++;
    rsBeachwear_hasData = rsBeachwear.next();
    %>
    <p>  </p>
    </form>
    <%
    rsBeachwear.close();
    ConnrsBeachwear.close();
    %>
    ERROR:
    500 Internal Server Error
    /jserv/Invoice.jsp:
    Compilation error occured:
    Found 1 errors in JSP file:
    C:\\Inetpub\\wwwroot\\Beachwear\\jserv\\Invoice.jsp:27: Error: No method named "preparedStatement" was found in type "java/sql/Connection".
    allaire.jrun.scripting.DefaultCFE:
    Errors reported by compiler:C:/Program Files/Allaire/JRun/servers/default/default-app/WEB-INF/jsp/jrun__jserv__Invoice2ejsp12.java:82:42:82:83: Error: No method named "preparedStatement" was found in type "java/sql/Connection".
         at allaire.jrun.scripting.JavaCompilerService.compile(../scripting/JavaCompilerService.java:96)

  • How do you select multiple files at one time

    How do you select multiple files at one time

    Select one, and then either command-click another, or in list/column view, Shift-click the item at the other end of the range you want to select. Alternatively, click on a spot in the screen and drag the cursor until all the files are selected.
    (114308)

  • Adding multiple artwork files to several items on iTunes 11

    Hi all.
    in previous versions of itunes one could add artwork in several ways one of which allowed for easily adding several artwork files to more than one item at once without replacing the existing artwork.
    I am talking about the little square that was on the left bottom corner of the screen and you could chose if you want to watch the artwork for the currently playing song or the selected song. you could paste into it or simply drag onto it. it would add the art work in appose to replace the existing one as happens when you do it from the info window.
    this little square disappeared from version 11 and now I am unable to add several files to several items at once.
    anyone solved this pickle?

    treyer11 wrote:
    IThe point is, I could drag and drop previously and have gone backwards in capability which is supposedly against what Apple platforms inherently stand for.
    The point is it has not gone backwards in capability. It works just fine. I can drag & drop to multiple selected items just fine.
    Something is wrong wtih your install.

  • How do i move files from one user to another user?

    i transferred files, etc. from an ibook G4 to my new macpro. i had 3 users on the older ibook. when i try to open files as one of the users from the ibook on my macpro, it says i do not have permission to open the files. i am the administrator on both computers. i would like to do away with all users and merge everything and re-organize into files.

    You can go to /Users - select the other user folder - do a Command+I (Get Info) on it. Toggle open Permissions. Click the lock to allow changes. Hit the + sign at the bottom and add yourself to the list. Change the permissions next to your name to read and write. Under the gear menu select apply to enclosed items.
    Close the Get Info window and repeat with all other user folders.
    Now you cou can copy all the data to your own User and get rid of the other User directories.
    Rick

  • How to collect to different files into one message

    Hi,
    I have the following scenario:
    Two (5Mb) Files with different file structures each ->
    XI (transform and generate a single structure record) ->
    Insert a record in a DB for each new record generated
    Let suppose file1 has order headers - one order per line -and file2 has the corresponding order items - one item per line, e.g;
    File 1
    OrderNr  Description
    1        A
    2        B
    3        C
    File 2
    OrderNr   ItemNr   MaterialCode ....
    1         1        111
    1         2        222
    1         3        555
    2         1        888
    2         2        777
    3         1        111
    Imagine I want to insert a record in the database for
    each order/item like this
    OrderNr  ItemNr Description MaterialCode .....
    1        1      A           111
    1        2      A           222
    1        3      A           555
    My real scenario is a little more complicated but never mind for now.
    I need to collect the two different files with two different file structures into the same message. Although I have read about the subject I am not sure about how to do it using BPM because there isn't any field I could use to correlate file1 with file2 - I can only correlate a record of file1 with several records of file2. I simply know that the two files will be available in a specific directory once a day at 06:00AM.
    First question is:
    How can I collect the two messages originating each from a different file into only one message with two different subtypes one for each file structure?
    Because my background is ABAP I could do it with a workaround for temporarily storing the info from each file into database tables in XI and then correlate the info from the two files to generate a single message.
    Like this
    File1 -> XI -> INSERT DATA XI ZDB1 (via ABAP Proxy or RFC)
    File2 -> XI -> INSERT DATA XI ZDB2 (via ABAP Proxy or RFC)
    Them I could use an event to check when the two tables have all the data from both files. I could then combine the data from the two tables and start another integration process like this
    XI SERVER (ABAP Proxy) -> XI Integration Server -> Third-party (JDBC)
    But this way I would have to code the hole data conversion which is not a good idea from the perspective of XI (EAI/Broker).
    Maybe I sould use BPM. But how?
    Futhermore:
    Is BPM performant enough (we are talking about files with thousand of records)?
    Thanks in advance
    Diz

    Hi,
    for N:1 Multimapping you have to use BPM.
    After going through this weblog you will be quite familiar with how to collect 2 messages into one message.
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm
    Steps:
    1. Create a abstract/ inbound / outbound interfaces. (in your case 3 /1/2).
    2. Perform 2:1 Multimapping.
    You can specify more than one message in either side.
    Just go to message tab in MM.
    3. Now follow the blog and you will get a output in the form of abstract interface.
    4. Define JDBC reciever Channel as usual.
    Your database will be updated.
    Just try this out.
    Regards
    Piyush

  • Move file from one library to another library via SharePoint 2010 Designer Workflow

    Can SharePoint 2010 designer be able to move a file from one library to another using workflow?  I tried to use the copy list item but it won't show my destination library.  I prefer not to use the 3rd part workflow like
    http://www.codeplex.com/SPDActivities
    Please advise.
    Brian
    Brian

    Hi Brain,
    From your narration, I undersatnd that you want to move document to another library across site or site collection. However,
    the copy list item action is used for coping list item to another library or list in the same site, so you can’t achieve it through ootb workflow action. So to move document to another library across site under the same site collection, then you can use site
    content and structure. If across site collection, then I suggest you use that the 3<sup>rd</sup> part workflow action.
    For more information about site content and structure,
    http://office.microsoft.com/en-us/sharepoint-server-help/work-with-site-content-and-structure-HA010131723.aspx
    Best Regards.
    Kelly Chen
    TechNet Community Support

  • Copying video files from one external drive to another

    Hello! I am very new to Apple and FCP, so please forgive my ignorance. I have looked through the other topics and have not found one that addresses my question, so please forgive me if this has been addressed in the past.
    I am working on a project and have all of my video clips saved to a G-Tech G-Raid 320 GB extenal hard drive. I captured much of my footage using "capture now" instead of logging individual clips for various reasons (i.e.: some tape sources did not have timecode), so if I ever have a problem, simply recapturing the footage does not appear to me to be a valid option.
    With this weighing heavily on my mind, I thought it would be best to copy the poject to a second G-RAID external hard drive.
    However, the G-RAID uses an 800 firewire and my G5 computer only has one such port.
    What would be the best way to copy from the one external drive to the other? Will I have to copy the files to my internal hard drive first? And if so, how do I do that? Thanks!!

    Crystal,
    Please reply to a specific post, not to your orignial one. This keeps the threaded discussion in order.
    To see the format for a drive. Open Disk Utility. It is located in your /Applications/Utilities folder.
    You should see all your connected drives on the left side of the window. Click on the icon of the drive you want information on. Select the Volume icon, not the Drive icon ( the volume icon is the one under and slightly indented to the right of the drive icon)
    Look at the bottom of the window. You'll see an item FORMAT: it should say Mac OS Extended. If it says MS-DOS, you'll need to ERASE the disk. When you do that, you'll have the option of changing the format.
    Do not right click and COPY. Simply drag the icon of the folder containing your media files from one disk to the other. It will copy by default.
    good luck.
    x

  • I restored my bookmarks from a resent .json file, but one folder is now empty and one is missing.

    Hi,
    Because of reasons my computer needed to be refreshed. My old firefox profile folder was saved though, and with that the bookmarkbackups. As the title says I restored my bookmarks from a resent .json file, but one folder (containing probably about a hundred bookmarks) is now empty and one other is missing completely.
    In some places I have a 5 levels deep folder structure for my bookmarks, but since the folders missing are from different levels I don't think this is the problem.
    The now empty folder contained six or seven other folders, that in turn contained a lot of bookmarks with titles including non-alphanumerical characters. †?|&*()<-/., to be precise. However, if I restore a very old .json (from september 2013) the folders are present and contain the mentioned bookmarks - albeit much fewer, since the file is old. A few other bookmarks still present also contain the mentioned characters, so this is probably not the problem either.
    The folder that is completely missing just contained a lot of bookmarks that were to be sorted.
    When opening the more recent .json files (I have a whole month of automatic backups to choose from) in the firefox scratchpad it would seem that the bookmarks are missing alltogether, so I suppose that there is not much to do about it (please correct me if I'm wrong), but I definitely want to report the bug.
    Is there anything at all to do about it?
    Thanks,
    Hanna

    If the bookmarks aren't present in the JSON backup then it is likely that you got a corrupted places.sqlite file at some time that caused the backup not working properly.
    Did you try all the backups?
    Note that the xxxx part of the bookmarks-####-##-##_xxxx.json file name shows the number of bookmarks in the file.

  • PDF Maker in Excel 2003 prompts to save multiple files for one report

    It seems each time i try to PDF multiple tabs I end up having to save more than one copy of the report in order to get all the sheets in PDF form.  I then have to merge all the PDF copies into one file and save it.  Does anyone know why it is generating multiple reports for the tabs in excel and how to get all the tabs to load as one PDF file from the get-go?

    Jeffrey and Karen ... I've used Preview for years but recently upgraded to OS Snow Leopard (I am reluctant to change software!). I used to freely drag and drop pages from the sidebar one pdf file open in Preview to the sidebar of another - as you recommend - without problem. Now if I do that, the caption in the bar at the top of the document says "2 documents, 5 (or whatever) open pages", and I can't save the whole thing as one document - Preview wants to save the tranferred pages as their own document. What has changed? What am I not understanding here?

  • I can't copy iTunes media files from one external hard drive to another.

    Hi, I am running the latest iTunes and Mavericks software on my MacBook Pro. My iTunes library is stored on an external Seagate 2tb hard drive and it is almost full. I want to transfer the files to a WD Elements 3tb external hard drive and have made that new volume the destination folder for my iTunes library. However, even though I have enabled read/write on both volumes and made the iTunes media folders on both shared folders, I can't copy all the files from the Seagate drive to the WD drive. It comes up with an error message that says "The operation can't be completed because an unexpected error occurred (error code -8058)". I can transfer files from my MacBook hard drive to the new volume, but can't copy files from the old Seagate volume to my MacBook hard drive; it makes the "boing" sound that indicates it is copying but nothing transfers. Files that won't copy include all music files, some video files and all podcast files. Some transferred with no problem. Any ideas out there?

    Hi Limnos, thanks very much for your reply.
    both external drives came preformatted for Windows but I erased each and reformatted them for Mac before using them.
    i made the destination folder on the new WD drive the new iTunes folder using Advanced preferences in iTunes.
    my original iTunes folder on the first drive contained all my iTunes files, as that, also, was the destination folder that was linked via Advanced preferences.
    If I download new content now with the new drive attached, iTunes has no trouble finding where to place the files.
    in Preferences I have both boxes checked (copy files" and "organize") that deal with copying iTunes files.
    When  I first attempted to copy all iTunes files from one media folder to the other on the external drives, I just did a drag and drop of the whole iTunes media folder from one to the other while both were mounted on my desktop. It started copying immediately with no problems, but as it progressed it started skipping files, each time displaying the error message I reported earlier. that included my entire Music folder. When I open, for example, a season folder that contains files that would not copy, eg, Modern Family Season 5, the episodes that won't copy are there and visible but any attempt to drag and drop them into the correct folder on the new drive results in the error message. There is no pattern to it; it will choose some episodes from some seasons but not others, and no music at all.
    when I look at the "missing" files in  iTunes they have the small exclamation mark that indicates the file is missing, but when I locate it through iTunes it doesn't copy the file on the old external drive to the new one. It just plays it having found the file on the old drive.
    originally I had to make the iTunes folder on the old drive into a shared folder using the Get info window after either a software upgrade or an OS upgrade (I can't remember which, it was several years ago). For some reason the upgrade changed the preferences of that folder to a Read Only folder and after researching the problem found the only way to keep using the drive was to make the folder a shared one. I can't remember why and I apologise for that but it was a long time ago.; I can tell you that at the time it was necessary.
    thanks again for your time; I have a good working knowledge of iTunes and Macs in general so I truly believe I have done everything according to how it should be done,, but clearly I've done something wrong!

  • Entering more than one item using bapi_salesorder_createfromdat1

    Hi,
    I am connecting a CRM system with SAP, I have got the xml file for Sales Order with all the data's and i want to create a sales order in sap system using bapi_salesorder_createfromdat1.
    My question is I am able to enter one item to the sap sales order. for inputing more than on items what should i do. Please help me.
    thanks

    Hi,
    Then there must be some problem with the appending of the data in the ITEM table.
    just see in the debugging.
    Regards,
    Atish

  • Bank Transfer file: generate two outgoing files for one pmt method?

    Hello Experts,
    Two files (header and item) are expected from the hungarian bank for each payement.
    It's possible to generate two outgoing files for one pmt method using DMEE tree? If yes, can you tell me how?
    If not, there is an other solution? Use a classic program (copy and adaptation) for example?
    Thank you in advance.
    Amal

    Are you sure you need separate files file header and items.
    Usually both header and items are placed in the same file. Please reconfirm or get the formats from the Bank.

Maybe you are looking for

  • Swatch Libraries Basic Graphics won't stay on.

    I have Illustrator CS5 and I want the Basic Graphics (Dots, Lines, Textures) menu under Patterns in Swatch Libraries to stay on the dock whenever I start Illustrator. I save a new workspace with the libraries attached to the dock on the right hand si

  • Cannot input Chinese using handwriting

    I cannot input Chinese characters when using handwriting. After I pressed "shift+control+space", handwritten and select the desired Chinese character, it cannot be shown in the input location. Anyone has same experience ? I found this problem after I

  • Need you help

    errors occurred using Hibernate to load a persistence object by identifier, but no errors occur using Hibernate to make a transient object persistent. Development environment: Tomcat+Hibernate Pool of connections is c3p0. Database is Mysql. error mes

  • Remove filter criteria from the table

    I have used af:table to display data and used filter to filter column data. After specifying any search criteria we need to remove it manually and press enter. I want to remove search criteria programmatically and display table data without any searc

  • If you had connection probelms this might help..

    I was having the 11333 erorr when i tried to connect to itunes store. So i contacted Microsoft for help since it was a network connection probelm.. and they fixed it within 24 hours.. First make sure you disable your pop-up blocker while your fixing