Two files for the same version

Hi All,
After created a document and uploaded a version (the original version in the content server), I should want to upload another file (the "printable version" in pdf format) without loose the previous version (the original). Therefore I want to know if is possible to have contemporary 2 files for the same version of the document.
I saw in the CFF_PHIO table there is the class CFF_ADDFIL in the field "PH_CLASS": is useful for my goal?
Thanks for any reply.
Massimo

That is not possible.
Are you sure Inits were done for same selections ???

Similar Messages

  • How to check wwheter two files are the same?

    Hi,
    I need to check wheter two files are the same. Their names and paths may be different. How to do that? Do u have any links / examples?
    Important notice: Files used in the application will be big (ie 1, 2gb)

    Comparing a hash, if you have to calculate it each
    time, is bound to be slower than a byte by byte, or
    character by character compare.
    This kind of comparison is used mostly in things like
    content management systems, when a new file of data
    is checked to see if it's identical to a file already
    entered, hash values being stored for each file
    already in the system.
    And comparing the hashes can only prove the files are
    different, if the hashes are equal that doesn't
    absolutely guarantee that the files are the same.
    Normally you'd confirm a matching hash by actually
    comparing file content.Depends on how good your hash is..but in general...yes. I was only saying that it's faster if you're always maintaining a has of the file.

  • Use two indicators for the same variable in two different VIs

    hello, I want to use two indicators for the same variable in two different VIs running at the same time
    should I use global variables?? I want to avoid because I have lot of variables and it would takes too much memory,I tried with this code but the value of the second indicator is not updated 
    I tried to use the queue and it works but the problem is as i said previously that i have many variables shoud I use a queue for each one??
    what should I do?
    thank you in advance
    cordialy
    Attachments:
    projet.zip ‏13 KB

    CrisSTine01 wrote:
    hello, I want to use two indicators for the same variable in two different VIs running at the same time
    I'm a huge fan of User Events to send updates to GUIs from who knows where.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Can we create two POs for the same 3rd party Sales Order?

    Hi MM experts,
    Issue: Can we create two POs for the same 3rd party Sales Order
    In Third party purchase process, first sales order created with a spl. item category  and it creates the PR automatically with the Sales order material and Qty and this PR converted PO.
    They got a pur.req. for sale order on same item for same delevery date. They did not get any warning msg. saying that a PO was prviously placed against this sale order.
    How it is possible that we were able to place another PO? concern is that second PO was palced against SO which was already used & completed. they were able to place 2 POs for the same customer same delevery date. How it is possible?
    If anyone face the same issue, please let me know if you have any answer to this questions.
    Thanks in advance.
    Suresh.

    Suresh,
    It is hard for me to give you a definitive answer since you have created a customized solution.
    How it is possible that we were able to place another PO? concern is that second PO was palced against SO which was already used & completed. they were able to place 2 POs for the same customer same delevery date. How it is possible?
    Normally, the system will not do this.  A third party PR or PO will be 'account assigned' to the Sales order.  SAP standard 3rd party will not create additional purchase reqs unless there has been manual intervention.  Try searching for changes in the Sales order and changes in the original purchase order.  They may give you a clue.
    I believe the normal Item category for third party SO is TAS (I am working from memory here, I am not in front of a system).  I don't know what ZTAG does.  I confess I am not an SD expert.  You might also want to post your question in an SD forum.
    You mention two custom applications, ZMMPLAN and ZSTPMP.  These somehow have functionality that is used to help you convert your PRs to POs.  If I were in your position, I believe I would also look at these applications for clues to how they might be contributing to your problem.  And please don't send me details about these apps.  I will not comment on custom code in this forum.
    Sorry I can't be of more help.
    Rgds,
    DB49

  • How to put two files with the same name into the same folder?

    How can I put two files with the same name and the same extention into the same directory?
    Is this even possible?
    Thanks in advance. 

    Are you sure? I would be very surprised if that was the case.
    How does the computer/filing system differentiate the files, if not by their names?
    How do you tell the computer which one you want? (On the command line.)

  • Post a witholding tax in two countries for the same vendor

    Hi all,
    I would like to know if there is any way (standar not development) to post a witholding tax in two countries for the same vendor belonging to a company code. (extended witholding tax scene).
    System always display extended witholding indicators belonging to the country of the company code.
    Thanks in advance.
    Emilio Rozalén
    SAP FI Consultant.

    Hi B.Rama,
    I think so, but Do you know the meaning of country witholding field in vendor master?.
    Besides you can find this field in customizing, reports but I dont know its functionality.
    Thanks and regards
    Emilio Rozalé

  • Receiving upgrade prompt every day for the same version

    I am receiving a prompt in Creative Cloud to upgrade Photoshop CC. Every day. To the same version.
    What gives? Is it not upgrading properly? Is this a known bug?
    thanks,
    John

    … aaand the prompt returns again today. For the same version that (should be) installed.
    Not being facetious, really am curious: Does anyone at Adobe monitor these forums? Or is this a user-support / sharing form?
    thanks,
    John

  • I was charged two times for the same game

    I was charged two times for the same game...how can I get my money back?  I even was emailed a receipt for them both...no one noticed?  Please help me.

    How to report an issue with Your iTunes Store purchase

  • Why are there two prices for the same audiobook?

    Why are there two prices for the same audiobook in iTunes?

    May be one is abridged and one unabridged ? or they just may want to get the suckers that think the more expensive one is better ... haha.

  • Urgent: two authors for the same book

    I have a database with three tables: books, authors and aux.
    The books table stores the names of the books. The authors table stores the name of the authors. Table aux takes the id of the other two. I did this for the case of the same book has two or more authors
    The query I did was the following:
    SELECT authores.author, books.title
    FROM aux, authors, books
    WHERE aux.books_id = books.id AND aux.authors_id = authors.id
    ORDER BY books.title ASC
    How do I show the two authors for the same book?
    For now, I'm using a simple table:
    <table border="1" cellpadding="1" cellspacing="1">
      <tr>
        <td>author</td>
        <td>title</td>
      </tr>
      <?php do { ?>
        <tr>
          <td><?php echo $row_rsBooks['author']; ?></td>
          <td><?php echo $row_rsBooks['title']; ?></td>
        </tr>
        <?php } while ($row_rsBooks = mysql_fetch_assoc($rsBooks)); ?>
    </table>
    Thus, the table presents two results for the same book, instead of uniting the two authors of the same book.

    Thanks for the reply.
    In the meantime, got what I wanted. The expression looks like this:
    SELECT livros.titulo, GROUP_CONCAT(autores.autor SEPARATOR ',') AS Autores
    FROM livros INNER JOIN aux ON aux.livros_id = livros.id INNER JOIN autores ON aux.autores_id = autores.id
    GROUP BY livros.titulo

  • Two infopackages for the same DS-- IS combination initialised

    Hello Friends,
    Can we have two infopackages for the same DS-->IS combination initialised with the same selections conditions and init requests. I have seen this in my client system. How can this be achieved.
    Thanks for your help.
    ---Simmi

    That is not possible.
    Are you sure Inits were done for same selections ???

  • How can multiple files for the same genre be consolidated

    I organize my iTunes files in genre folders for easy access. ITunes creates multiple folders for some genres and allows a single (preferred) genre file for other much larger files. How can I consolidate multiple files with the same genre?

    Thanks. I've done what you selected. The problem is that despite all files being identified with the same genre, iTunes groups some genres in two separate folders. Thus, I have two "Country" folders, for example. More perplexing is that iTunes groups my largest genre folder, "Jazz", in a single folder.

  • Cann't open a *.fmb file (with the same version of Form Builder)

    Hello everybody,
    My Form Builder 6.0 cann't open a *.fmb file, created with the same version, even with the same Form Builder tool.
    I worked for long time ago at this module, I saved it many times, I compiled it and it worked very well. But last time it didn't want to work(open). I couldn't open it (FRM-10043: Cannot open file). But the corresponding *.fmx file is working.
    Here is some additional information:
    When I try to rename or replace this file an Windows "There has been a sharing violation. The source or destination file may be in use" error appear. But that file is not in use and it is not shared. Is this helpfull?
    Is there something which can be done?
    Thanks in advance,
    Euge

    Sure. I did that many times. I checked the volume for the errors. I interrupted any share connection. I tried to change the extension of the file and to change it again to *.fmb(I did this on a copy of that file).

  • Two Tracks for the same Runtime System?

    Hello,
    can you please tell me if it is allowed to connect two tracks to the same runtime systems?
    We have already a track connected to our systems. Now we have created a new track to deliver different content to those systems. We wanted to connect the new track to the same runtime systems. Our basis team told me that a where-used message came up that told them "The following runtime systems are already used elsewhere in the CMS domain".
    Can you tell us if we will get problems because of this?
    Thanks in advance,
    Br,
      Michael

    Hello again,
    ok now, thats something completely different CRM modification is always special.
    To be honest i cannot tell for sure what will happen. As far as i know the default deploy strategy of NWDI is "deploy any version" which means NWDI will order SDM to just deploy not regarding any SDM Version (you are on a 7.0x System right?)
    So it should be possible if everything else, excelt those 2 DCs is the same things should work. But if not the last deplyoed version of the shared DCS will be active. Which might lead to problems then.
    As far as you described, the setup is as the CRM modification guides mentioned.
    My first thought is that you are not forced to use CUSTCRMPRJ as SC name for the projects as far as I know. OS maybe the leanest thing would be to just use CUSTCRMPRJ_light (.o)) for the second track.
    Hmmm not sure if this is a good idea or thought to the end. I don't have the CRM modifications guide at hand at the moment. But I guess there was a part where something was mentioned similar to this.
    After all I have to say:Sorry. I can't give you solid, reliable tip/advice for this case. Maybe my thought will help you.
    Or maybe someone else knows better.
    Have a good time
    Jan

  • Is it possible to have two files with the same name on my Zen To

    Hia,
    Is it possible to have two mp3 files with the same name?; I.e if I'm ripping a Bach CD, there are several tracks that have the name preludium, and I hate to do the rename.
    Also, will I be able to sync my Zen so that It will only recieve new files that have been added since I last connected my Zen to my computer?
    regards,
    Fredrik

    I believe same filename is OK because the Zen Player does not really care about filename. As far as I know, the Zen database of the tracks in the player is based on the track information such as Title, Artist, Album and Genre. This means you cannot have two tracks of the same Title, Artist, Album and Genre in the Zen Player.

Maybe you are looking for

  • XSU: Nested Collections?

    Does anyone know of a way to get around Oracle's limitation on nested collections? I have been using XSU to present XML to our Java application layer using objects and object views. Casting multisets works fine for repeating elements as long as the e

  • Set 'Use Job server default' for Unmanaged disk destination

    Hi, I am using BO XI R2 SDK to schedule reports. I want to set all my reports destinations to Unmanaged disk to a particular folder. I have set these in reportjobserver's destination configuration too. Now i want create schedules through code for all

  • How to link event with program?

    My program z_report_idoc is called in background job using event ‘OM20000013’ created in SM62. Code uses FM: CALL FUNCTION ‘BP_EVENT_RAISE’ But i dont know how it is linked to program. Can anyone have idea how to link program and where i can view thi

  • Align 3052a with windows 8.1

    printer 3052a j611 printer failed alignment.   It does not show the black printer in the middle of page.  I have cleaned print heads, wiped connections with dry "qtip", black cartridge is 85% full and I am using windows 8.1   help

  • Export PDF won't upload, says "unexpected problem" what gives?

    I just purchased the Export PDF and the document I want to upload is 22MB, so size shouldn't be the issues. It comes up as "Failed to Export" -- There was an Unexpected Problem" Please help as this is really pissing me off! Thanks. mm