Publication Issue

Hi Experts,
In Publication I am having Distribution channel and values are 10,11 and 16.
For some dynamic users I have to send report for 3 distribution channels, for some users 10 and 11 only, for some users only 10 or 11 or 16.
All this I want do in single publication and single refresh because the report is containing huge data.
for the users name, emails and Distribution channels i am maintaining separate report.
here how pass the multiple distribution channels for single user.
for this how to prepare the dynamic recipients list?
Thanks,
G Sampath Kumar

I set Home page and Dashboard page.But when i login USer1 and 2 i can see this pages.
I feel this 2 users dont have privileges for home page, that the reason failed while scheduling report (error like no device)
what option privileges need to check?.I tried my folder and storage option but still same problem.
Thanks for you reponse sir.

Similar Messages

  • SIngle Edition / publication issue regarding FOlio orientation

    from french
    An error happened during the publication
    One of your articles does not match match the folio's orientation.
    Articles orientations must match the folio's orientation
    thing is, all my articles (10) are horizontal (single pages except on article whiwh is two pages where i force the horizontal view)
    I really can't see what's wrong

    mmmm yes thanx ....
    as all my articles are landscape, maybe the problem is the folio itself, so i wanna make sure about
    Change folio properties
    After you create a folio, you can use the Folio Properties dialog box to specify a publication name, change the size, and choose cover preview images. Some folio properties such as orientation, image format, and folio size cannot be edited in the Folio Properties dialog box. If necessary, create a new folio with the appropriate settings.
    In the Folio Builder panel, select a folio.
    when i click on properties in inDesign, I DO NOT SEE this:
    I just have a "Properties" link, and the popup only gives ooportunity to change the name, and upload horizontal and vertical covers
    three days lost as i gotta leav for the week end now ...
    thanx all for help

  • Publication slow performance issue in BO 4.0 SP04 WebI

    Hi,
    Publication of a report is taking around 4 hours in BO 4.0 sp04 WEBI and failing some times.
    same publication is taking around 1 hour in BO 3.1.
    More  details about existing publication setup:
    publication with many dynamic recipients and the destination is shared file system,format excel sheets.
    Normal report refresh is taking around 5 to 10 minutes.
    Known issue:
    We were trying to upgrade to newer versions to BO 4.0 SP08 but there was a problem during upgradation
    Several errors such as could not open file: <install
    dir>\InstallData\InstallCache\<package name> were found in the setup
    logs.
    After trying to find this file, we discovered that the InstallCache
    directory only contained 1 subfolder and this issue throwing an errors while upgrading to later versions.
    Is there any way to fix publication issue in BO 4.0 Sp04 publication slow perforce with out up-gradation to SP08?
    For up-gradation BO 4.0 SP04 to SP08  how to handle above mentioned installation cache issue?

    To get a good performance, you need proper server sizing and configuration in CMC. Follow the guidelines available in sap documentation to ensure the sizing is appropriate.
    You can have a dedicated APS for publication and allocate enough memory to it and then test the same. For details: http://wiki.scn.sap.com/wiki/display/BOBJ/Business+Intelligence+4.x+APS+%28Adaptive+Processing+Server%29+Service+Distribution

  • Font Changes with Publication

    Hello! I am a first time iWeb user, and I'm really struggling with the font publication issues. I searched through past discussions and can't find one that fits my dilemma, so I wanted to seek some help here --
    This is my website: http://www.ischool.utexas.edu/~spapania/spapania/Welcome.html
    The problem is on the Resume page. I've tried a hundred different ways to get this to work, and it's a different problem each time -- the spacing is off, sometimes it's bold, sometimes it isn't, the size is wrong -- I've recreated the page, splintered off the text boxes, changed the font -- nothing seems to make this page cooperate. I originally wanted dates (next to each employer and university) but gave up as this was the most troublesome aspect.
    Can anyone help here?
    Thanks so much!
    Sarah

    Copying from Word could very well insert some invisible tag info.
    Try this:
    1. Create a NEW page from the iWeb templates that matches the problem page (This will eliminate any possibility of invisible tags corrupting your formating).
    2. Open TextEdit making sure the default text format is *Plain Text* (Menu>Format>Make Plain Text). This will strip any funky formating from the text in your site.
    3. Copy your text from your site from within iWeb and Paste the text into Text Edit.
    4. In Text Edit make sure the text format is still Plain Text
    5. Copy All the Plain Text in Text Edit
    6. Go to iWeb and DELETE all the text you want to replace.
    7. Click on the spot where you want your text
    8. From the iWeb menu, select *Paste and Match Style*. This will make sure the text is formated exactly as the template text you deleted
    9. Repeat for the other text sections
    Let us know how that works.
    Ta

  • Happens before and publication in Java

    I want to confirm if there is a happens before relationship / publication issue in TestMatrix class below ?
    Is there visibility issue in TestMatrix class when multiply methods are called?
    Is there a guarantee that the second multiply call that follows SEES the writes made to the matrix 'r' by first multiply?
    Is there happens-before issue between the writes into the matrix and the reads from it after the one multiply method has terminated?
    class TestMatrix{
      public static void main(String args){
       int[ ][ ] A,B,C,D,r,s,t;
       ComputeMatrixImpl u = new ComputeMatrixImpl();  
       \\ code to initialize A,B,C,D
       u.multiply(A,B,r);
       u.multiply(r,C,s);
       u.multiply(s,D,t);
    interface ComputeMatrix{
        void multiply(int[][] A, int[][]B, int[][]C);  // multiply A and B into C
        void add(int[][]A, int[][]B, int[][]C);        // add A and B into C
    class ComputeMatrixImpl implements ComputeMatrix{
      public void multiply(int[][] A, int[][] B, int[][] C) {
      ExecutorService pool = Executors.newFixedThreadPool(A.length*B[0].length);
      List<MultiplicationThread> thd = new ArrayList<MultiplicationThread>();
      int rows = A.length;
      int  columns = B[0].length;
      for(int row = 0; row < rows; row++){
      for(int column = 0; column < columns; column++){
      MultiplicationThread thread = new MultiplicationThread(A, B, C, row, column);
      thd.add(thread);
      pool.execute(thread);
      pool.shutdown();
      while (!pool.isTerminated()) {}
    public class MultiplicationThread implements Runnable {
      private final int [][] A, B;
      private volatile int [][] C;
      private final int row, column;
      public MultiplicationThread(final int[][] a, final int[][] b, final int[][] c, final int row, final int column) {
      this.A = a;
      this.B = b;
      this.C = c;
      this.row = row;
      this.column = column;
      public void run() {
      for(int k=0; k< A[row].length ; k++){
      C[row][column] += A[row][k]*B[k][column];

    Hibernate wrote:I can imagine that the ^C issue is not necessarily built in to Java; if so, there is no problem running C code or program using the same tty (like with stty).
    I’m no expert on Java and I don’t know if Java has an API for it directly, but it sounds like “stty -isig” is what you want. My understanding of how it works is: Control+C generates ASCII \x03 and Control+4 (normally Control+Backslash) generates ASCII \x1C characters into the terminal. Linux normally intercepts those control characters and sends interrupt and quit signals instead, to a process associated with the terminal (I’m not 100% clear on the details here). But that ISIG terminal flag prevents the interception. See stty and termios manual pages.
    Alternatively I think you should be able to enter those characters by prefixing them with Control+V.

  • How to handle the SQL Error: ORA-01704: string literal too long

    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta name="generator" content="HTML Tidy for Java (vers. 26 Sep 2004), see www.w3.org">
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <meta content="MSHTML 6.00.2900.2963" name="GENERATOR">
    </head>
    <body class="BodyContent">
    HI please chek the query getting error like string literal too long update PRVDR_ENRLMNT_AGREEMENT B set b.terms=q'#
    <div class="widget-title">
    <h5>Medical Assistance Provider Enrollment & Trading Partner Agreement - Conditions:</h5>
    <a href="# class="btn-minimize pull-right"></a></div>
    <div class="widget-content">
    <table width="100%" border="0">
    <tbody>
    <tr valign="center">
    <td class="Label" align="left" width="14%" colspan="2" height="32">In applying for enrollment as a provider or trading partner in the Medical Assistance Program (and programs for which the Michigan Department of Community Health (MDCH) is the fiscal intermediary), I represent and certify as follows:</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>1.</b></td>
    <td class="LabelValue" valign="top" align="left" height="32">The applicant, and the employer (if applicable), certify that the undersigned has/have the authority to execute this Agreement.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>2.</b></td>
    <td class="LabelValue" valign="top" align="left" height="32">Enrollment in the Medical Assistance Program does not guarantee participation in MDCH managed care programs nor does it replace or negate the contract process between a managed care entity and its providers or subcontractors.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>3.</b></td>
    <td class="LabelValue" valign="top" align="left" height="32">All information furnished on this Medical Assistance Provider Enrollment & Trading Partner Agreement form is true and complete.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>4.</b></td>
    <td class="LabelValue" valign="top" align="left" height="32">The providers and fiscal agents of ownership and control information agree to provide proper disclosure of provider's owners and other persons criminal related to Medicare, Medicaid or Title XX involvement. [42 CFR 455.100]</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>5.</b></td>
    <td class="LabelValue" align="left" height="32">The applicant and the employer agree to provide proper disclosure of any criminal convictions related to Medicare (Title XVIII), Medicaid (Title XIX), and other State Health Care Programs (Title V, Title XX, and Title XXI) involvement. [42 CFR 455.106 and 42 U.S.C. ? 1320a-7]</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>6.</b></td>
    <td class="LabelValue" align="left" height="32">I agree to read the Medicaid Provider Manual from the Michigan Department of Community Health (MDCH). I also agree to comply with 1) the terms and conditions of participation noted in the manual, and 2) MDCH's policies and procedures for the Medical Assistance Program contained in the manual, provider bulletins and other program notifications.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>7.</b></td>
    <td class="LabelValue" align="left" height="32">I agree to comply with the provisions of 42 CFR 455.104, 42 CFR 455.105, 42 CFR 431.107 and Act No. 280 of the Public Acts of 1939, as amended, which state the conditions and requirements under which participation in the Medical Assistance Program is allowed.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>8.</b></td>
    <td class="LabelValue" align="left" height="32">I agree to comply with the requirements of Section 6032 of the Deficit Reduction Act of 2005, codified at section 1902 (a)(68) of the Social Security Act which relates to the conditions and requirements of "Employee Education About False Claims Recovery."</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>9.</b></td>
    <td class="LabelValue" align="left" height="32">I agree that, upon request and at a reasonable time and place, I will allow authorized state or federal government agents to inspect, copy, and/or take any records I maintain pertaining to the delivery of goods and services to, or on behalf of, a Medical Assistance Program beneficiary. These records also include any service contract(s) I have with any billing agent/service or service bureau, billing consultant, or other healthcare provider.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>10.</b></td>
    <td class="LabelValue" align="left" height="32">I agree to include a clause in any contract I enter into which allows authorized state or federal government agents access to the subcontractor's accounting records and other documents needed to verify the nature and extent of costs and services furnished under the contract.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>11.</b></td>
    <td class="LabelValue" align="left" height="32">I understand that the incentive payment requested using my National Provider Identifier (NPI) number will be made directly to the Tax ID Number (TIN) that was indicated during the registration process.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>12.</b></td>
    <td class="LabelValue" align="left" height="32">I am not currently suspended, terminated, or excluded from the Medical Assistance Program by any state or by the U.S. Department of Health and Human Services.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>13.</b></td>
    <td class="LabelValue" align="left" height="32">I agree to comply with all policies and procedures of the Medical Assistance Program. I also agree that all disputes, including overpayments, may be adjudicated in administrative proceedings convened under Act No. 280 of the Public Acts of 1939, as amended, or in a court of competent jurisdiction. I further agree to reimburse the Medical Assistance Program for all overpayments, and I acknowledge that the Medicaid Audit System, which uses random sampling, is a reliable and acceptable method for determining such overpayments.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>14.</b></td>
    <td class="LabelValue" align="left" height="32">I agree to comply with the privacy and confidentiality provisions of any applicable laws governing the use and disclosure of protected health information, including the privacy regulations adopted by the U.S. Department of Health and Human Services under the Health Insurance Portability and Accountability Act of 1996 (HIPAA), and Public Acts 104-191 (45 CFR Parts 160 and 164, Subparts A and E). I also agree to comply with the HIPAA security regulations, as applicable, for electronic protected health information by the compliance date, which is currently April 21, 2005 (45 CFR Parts 160 and 164, Subparts A and C).</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>15.</b></td>
    <td class="LabelValue" align="left" height="32">This Agreement shall be governed by the laws of the State of Michigan and applicable federal law including, but not limited to, the Health Insurance Portability and Accountability Act of 1996 (HIPAA).</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>16.</b></td>
    <td class="LabelValue" align="left" height="32">The provisions of this Agreement are severable. If any provision is held or declared to be illegal, invalid or unenforceable, the remainder of the Agreement will continue in full force and effect as though the illegal, invalid or unenforceable provision had not been contained in this Agreement.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>17.</b></td>
    <td class="LabelValue" align="left" height="32">Failure or delay on the part of either party to exercise any right, power, privilege, or remedy in this Agreement will not constitute a waiver. No provision of this Agreement may be waived by either party except in writing and signed by an authorized representative of the party requesting the waiver.</td>
    </tr>
    <tr valign="center">
    <td class="Label" align="left" width="14%" colspan="2" height="32"></td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>18.</b></td>
    <td class="LabelValue" align="left" height="32">If the nursing facility named on the Medical Assistance Provider Enrollment & Trading Partner Agreement is sold, the seller will notify MDCH of the sale at least ninety (90) days prior to the expected sale date. Further, it is understood that the sale will not be recognized for reimbursement purposes under the Medical Assistance Program until ninety (90) days after such notification. Provisions of 42 CFR 413.135(f) will be retrospectively satisfied at that time. Any exception must be approved in writing by MDCH. The new owner/provider must receive Medicare certification for all Medicaid-only beds in the facility within one year from the date of purchase of an operating nursing facility or from the date of reopening a previously closed nursing facility.</td>
    </tr>
    <tr valign="center">
    <td class="Label" align="middle" width="14%" colspan="2" height="32">Medical Assistance Provider - Employer/Employee Conditions</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>19.</b></td>
    <td class="LabelValue" align="left" height="32">The applicant is employed by the business listed, now referred to as the "employer", to provide Medical Assistance Program services to eligible beneficiaries at the service address listed.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>20.</b></td>
    <td class="LabelValue" valign="top" align="left" height="32">The employer and the applicant shall advise MDCH within thirty (30) days after any change(s) in the employment relationship.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>21.</b></td>
    <td class="LabelValue" align="left" height="32">The employer and the applicant agree to be jointly and severally liable for any overpayments billed and paid under Act No. 280 of the Public Acts of 1939, as amended, for services provided by the applicant to eligible beneficiaries.</td>
    </tr>
    <tr valign="center">
    <td class="Label" align="middle" width="14%" colspan="2" height="32">Trading Partner Provisions</td>
    </tr>
    <tr valign="center">
    <td class="Label" align="left" width="14%" colspan="2" height="32">The MDCH and its Trading Partner desire to facilitate the exchange of healthcare transactions ("Transactions") by electronically transmitting and receiving data in agreed formats in substitution for conventional paper-based documents.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>1.</b></td>
    <td class="LabelValue" align="left" height="32">Companion Documents; Standards; Other Documentation. MDCH makes available certain inbound and outbound Electronic Data Interchange (EDI) transaction sets/formats and associated version. From time to time during the term of this Agreement, MDCH may modify supported transaction sets/formats. In submitting Transactions to MDCH, the Trading Partner agrees to conform to MDCH-issued provider publications and MDCH Companion Guides as amended from time to time. The MDCH Companion Guides, incorporated by reference herein, contain specific instructions for conducting each Transaction and as such supplement Implementation Guides issued under the Standards for Electronic Transactions mandated by the Health Insurance Portability and Accountability Act of 1996 (HIPAA) as amended. The MDCH Companion Guides are not intended to be complete billing instructions and do not alter or replace applicable physician guides or other healthcare provider billing publications issued by MDCH or by other third party payers. The Trading Partner agrees to comply with the requirements set forth in the applicable MDCH Companion Guides. The Trading Partner, or its vendor, or other authorized technical representative responsible for EDI software will document Trading Partner Information, data formats and related versions, trading partner identifiers, and other information MDCH requires to receive and transmit specific Transactions supported by MDCH.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>2.</b></td>
    <td class="LabelValue" align="left" height="32">Support.<br>
    As to software, equipment, and services associated with each party's performance under this Agreement, the parties agree to provide support services sufficient for Transactions to be exchanged. Each party will assist the other in establishing and/or maintaining support procedures, and will complete appropriate problem determination procedures prior to contacting the other with a support related matter. The parties agree to use all commercially reasonable efforts to avoid and resolve performance and unavailability issues. Each party will perform remedial action, as requested by the other, to assist in problem resolution. Each party, at its own expense, shall provide and maintain the equipment, software, services, and testing necessary to effectively and reliably transmit and receive transactions.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>3.</b></td>
    <td class="LabelValue" align="left" height="32">Data Retention.<br>
    MDCH will log all Transactions for the purpose of problem investigation, resolution, and servicing. The Trading Partner is responsible for maintaining and retaining its own records of data submitted to MDCH. Trading Partners who are healthcare providers will ensure that electronic healthcare claims submitted to MDCH can be readily associated and identified with the correct patient medical and business office records, and that these records are maintained in a manner that permits review, and for the time period as may be required by MDCH or other third party payer responsible for claim payment.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>4.</b></td>
    <td class="LabelValue" align="left" height="32">Proper Receipt and Verification for Transactions.<br>
    Upon proper receipt of any ANSI ASC X12N Standard Transaction, the receiving party shall promptly and properly transmit a functional acknowledgement in return, unless otherwise specified. The functional and interchange acknowledgements must be accepted and reviewed, when applicable, to confirm the receipt of a Transaction. The ability to send or receive functional acknowledgements is applicable only to ANSI ASC X12N Standard Transactions. Additionally, MDCH originated outbound Transactions must be accepted and reviewed, when appropriate, to obtain MDCH's response to specific inbound Transactions. The acknowledging party does not attest to the accuracy of the data contained in the transmission; rather, it only confirms receipt of the transmission.</td>
    </tr>
    <tr valign="center">
    <td class="Label" valign="top" nowrap align="right" width="1%" height="32"><b>5.</b></td>
    <td class="LabelValue" align="left" height="32">Liability.<br>
    MDCH shall not be responsible to the Trading Partner nor anyone else for any damages caused by loss, delay, rejection, or any misadventure affecting such electronic information. In addition, MDCH shall be excused from performing any EDI servi

    You cannot use string literal of more than 4000 characters in an Oracle SQL statement. I'm not going to count that string you so rudely posted but I presume it is longer than that figure. You'll need to use a variable instead.
    declare
        c clob := '<your vast XML doc here>';
    begin
        update PRVDR_ENRLMNT_AGREEMENT B set b.terms= c
        where ....
    {code}
    Cheers, APC                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • InDesign CC is crashing when I try to update assignment from inCopy CC.

    Workflow is: 
    I set up inDesign file, select text boxes and create assignments, then send to editor by email. 
    Editor works on file in inCopy and sends me back the assignment.
    When I try to update the text-- by double-clicking the returned assignment which opens the matching inDesign file-- inDesign crashes and says:  "Adobe InDesign is shutting down. A serious error was detected. Prease restart inDesign to recover work in any unsaved inDesign documents."
    Before changing to CC I worked with this scenario with editor for the last couple of years.  The last publication issue prior to now worked seamlessly.
    Help.  I am on deadline. 

    This sounds like it might have been a problem with the selected import options (for example, setting a crop option for a crop box that isn't actually defined in the PDF). These options are "sticky" until changed, so when you have a problem like this it's a good idea to try again and show the import options.

  • Gold Support?

    I am having a serious development issue and can not contact Gold Support. We are Professional Customers with Gold Support, yet the portal says we do not have it. As recently as December I had an active case with them which was covered by Gold Support. At one point, one of the frustratingly unhelpful representatives tried to say we didn't get Newsstand access because it was for Enterprise customers only. I had to show her links and documentation from Adobe's own site that said otherwise. Now, for some reason this terribly convoluted and poorly thought out tech support system is claiming we don't have access to the support we are paying for...and there's no way to reach someone to get the problem taken care of. I have sent e-mails to the address I previously received e-mails from for other issues and posted on help pages and here on the forums to no avail. We have a deadline sensitive issue that needs addressing and we can't get in touch with anyone until Monday morning to try and fix it. Is anyone else as dissatisfied with the quality of the tech support/customer service aspects of Adobe?

    Hi,
    I just looked through the content. The issue you are facing is that you have folio's with non-unique productIDs. Every folio should have a unique productID when you publish it.
    Documentation:
    http://help.adobe.com/en_US/digitalpubsuite/using/WS9293e1fb3b977c5c-45da217112a48b41a34-8 000.html
    Important: Use a different Product ID for each folio. For retail folios, do not set the status to Free and set it to Retail later. Doing so can prevent the folio from being available in the custom viewer. Publish retail folios as Public and Retail.
    For best results, use the com.publisher.publication.issue format (such as com.adobepress.dps_tips.july2011) to specify the Product ID. For best results, avoid uppercase letters in your Product ID. Uppercase letters may not work with Amazon in-app purchases.
    iPad Publishing Companion guide (found on the DPS dashboard, lower right corner) page 2, 5,6, 22
    I've sent you a email with the steps for you to follow to correct your issues.
    With kind regards,
    Klaasjan Tukker
    Adobe Systems

  • Multi-folio Next Steps?

    I've created a multi-folio viewer, with "sample" material, published the free app and submitted it to Apple. While I wait for Apple's approval, I'm wrapping-up the folios that will follow. but will be for purchase. These folios seem to be working just fine and appearing as a download in Adobe Viewer app on the iPad.
    For some reason, I can't wrap my head around what should be the next steps to publish the folios and submit to Apple. Do I create new certificates, does each new folio have a different bundle ID, what about product IDs? (I am using the same Adobe ID and using a Pro account.) How does everything connect?
    I would appreciate some help getting over this hump.
    Thanks!

    It's hard to tell what in particular is confusing you, so I'll give a quick overview.
    On the Adobe side, you use the Account Admin tool on the Dashboard to assign the application role to the Adobe ID that you use to create and publish your folios. In Viewer Builder, you specify this Adobe ID in the "Title ID" field. Any folio you publish when signed in using this Adobe ID appears in your app's library. It sounds like you understand that part. When you publish a folio, each separate issue should have its own Product ID. Use the format "com.publisher.publication.issue." (If you're creating folio renditions to make the same issue available on different platforms such as iPhone and iPad, use the same Product ID for the different renditions of that issue.)
    On the Apple side, you create one App ID for your app, along with the certificates and provisioning files. If you're selling retail content, you need to use iTunes Connect to create a Product ID for each issue. Again, use the "com.publisher.publication.issue" format. This Product ID should be identical the Product ID you specify on the Adobe side when publishing the folio as Public and Retail. In iTunes Connect, you submit these In App Purchases to Apple for approval. Apple opens the distribution app you submit and inspects the public folios you publish.
    If you have a subscription app, you also need to create a Product ID for each duration. Use the "com.publisher.publication.duration" format. You specify these Product IDs when setting up the subscription app in Viewer Builder.

  • Subscription Details

    Hi,
    Please someone could help me to understanding better about itunes subscription.
    When I publish one folio by Folio Producer I need use this kind Product ID - com.publisher.publication.monthyear, right? And the same one in-app-purchase
    When I create de app by Viewer Builder I use this kind one - com.publisher.publication.duration
    My doubt: Even I set subscription I will use Product ID as com.publisher.publication.monthyear. Now, This product ID - com.publisher.publication.duration is just to Viewer Builder.
    My ideas are right?
    Please, help me to fillout the viewer Builder panel - Subscription Detail. What kind the Product ID I put in subscriptions products?? see image attached
    Is possible I have the same Folio as retail and subscription? Can I offer both options to final reader?
    At least, how works optional URL sheme - in Viewer Details panel in Viewer Builder? It's important use it?
    Thanks a lot

    It sounds like you didn't use iTunes Connect to create your in-app purchases. For a subscription, you use iTunes Connect to create two kinds of in-app purchases -- non-consumable and auto-renewable subscription.
    The "non-consumable" in-app purchase is for the individual issues. You specify a Product ID using the "com.publisher.publication.issue" format (e.g. "com.condenast.thenewyorker.january2012").
    For the "auto-renewable subscription" in-app purchase, you set up one or more durations. For each duration, you specify a Product ID using the "com.publisher.publication.duration" format (e.g. "com.condenast.thenewyorker.6months").
    On the Adobe side, you specify the Product ID for retail folios when you use Folio Producer Organizer to publish the folio. You specify the Product ID for subscription folios in the Subscription Details panel of the Viewer Builder. In both cases, the Product IDs you specify on the Adobe side must match the Product IDs you specify on the Apple side.
    In the Viewer Builder, you cannot specify a Product ID for a folio instead of a subscription duration.
    The "Optional URL Scheme" lets you or other people link to your app to open it from another app or a web page. For example, if I create a URL Scheme called "com.bringhurst.dpstips," I could add a "com.bringhurst.dpstips://" link on my web page. When users click that link in mobile safari, it opens the DPS Tips app. (I'm looking into why this option is available only for subscription apps. It seems like it should be available for every app.)

  • Creating first iPad multi-folio viewer...need ID help

    I am creating a multi-folio viewer that will have monthly issues. I've completed a sample folio and the first two issues.
    I understand to  create a multi-folio viewer, I need one Adobe ID to create all of the folios, and not use the Adobe ID for any other folio production.
    I'm confused on how to name the App Id and Product ID. How are all the issues linked to the sample folio and become available as a purchase and download when each month's issue is ready?
    Thanks!

    You specify the App ID only on the Apple developer site. For best results, use the "reverse DNS" naming convention for the App ID, such as com.publisher.publication. You don't specify the App ID anywhere on the Adobe side.
    Product IDs are required for all published folios, but they're only significant if you're selling the folio. In that case, the Product ID you specify needs to match when you create it in iTunes Connect and publish the folio on the Adobe side. Again, use the reverse DNS approach: com.publisher.publication.issue. Each different folio should have a different Product ID, such as "com.dancer.danceoff.2012october" and "com.dancer.danceoff.2012november." However, folio renditions should share the same Product ID.

  • Professional version Single folio in-app Purchase+Push

    Hi everyone :
    I'm finishing my first app using Professional Edition - monthly suscription and I have a couple of question
    1- I'm creating a single Folio In-app Purchase version ( non consumable ), be default according with Apple it requires Push notification but according with Adobe documentation this option is only available to Enterprise so How does it work ?? Does the app have by default Push notification if it is single folio ( Pro ) in-app Purchase ??
    2- I read the document A Companion Guide as the Only guide to set up all the files, ID's etc but it is not clear when the option is Single folio In-app. I know that the ID for the folio is the same as the ID for the App ( AdobeID=AppleID ). The content Viewer creates the .ipa and .zip files with the unique folio embedded and then I have to test the Purchase with the Test user but if the Content Viewer only has one folio where will go the BUY button ??
    3- I tested the application without create the Test User ( Through iTunnes load the app in an approval Device ) and everything looks OK so how can I test the Purchase ??
    4- Uploading the app ( .zip ) using the Application Loader will be enough to have the Content Viewer app and the Inn-App Purchase ready ??
    Sorry but I can not find clear instructions for this scenario

    1. Push notification is not Enterprise only. If you're creating a subscription multi-folio app that will appear in Newsstand, push notifications are required. Only Enterprise customers can use third-party push servers, but that's a different issue.
    2. Use iTunes Connect to create an in-app purchase for each retail folio. As you do so, you'll create a Product ID that looks something like "com.publisher.publication.issue." When you publish the folio using Adobe tools, you should specify that same Product ID. For a subscription app, you'll also need to set up in-app purchases for each subscription duration (6 months, 1 year, 1 month, etc.). Each duration should have a separate Product ID in the "com.publisher.publication.duration" format. You'll specify these Product IDs when you use Viewer Builder to build the app. After you build the app and sideload the .ipa file to the iPad, Buy and Subscribe options should appear in your app's library.
    3. If you don't see Buy and Subscribe options, you didn't set up your folios properly.
    4. If your .ipa file works properly, yes. If not, don't bother downloading the .zip file until you get the .ipa file to work properly.

  • Has anyone come up with a solution on why the red circle with question mark inside appears.

    Has a solution been brought

    Could the problem be that you're trying to make a template that includes assignments and placeholder frames? Because that won't work ... sorry, would be nice if it could.
    You will get a missing assignment icon if you move the InDesign file, duplicate it, or rename it via a Save As. That's because assignments are actually attributes of the original file -- they are NOT linked -- and they don't stick with it when the original file is modified (other than normal "Save's"). The time to create assignments is when the live "final" file (even if it's filled with empty frames) has been created for that specific publication/issue, and it will not be moved or renamed during the production cycle.
    So if you're doing what I'm guessing ...  if you start w/an InDesign file, create assignments and assign empty text frames, and save that as a template  ... then you will always end up with "missing" assignments. That's because a template file, when double-clicked, creates an Untitled copy of itself.
    "I am getting the missing link for the assignments after they are finished."  If an assignment -- an ICMA file, not the linked stories, the ICML files -- shows the red "missing" icons in the assignments panel, the only solution is to recreate them. They are not linked to the layout so there is nothing to relink.
    The fix is to select each missign Assignment in the Assignments panel and choose Change Location. It's a bizarre name for the actual function which is  to "recreate the Assignment." Be careful of the linked ICML files that go along with that layout (and those assignments).
    You will also run into problems if you try to re-use the same linked ICML files for multiple issues. Best to start with a "normal" INDD file, then export Assignments/linked stories for that one issue.  When you're done, unlink all the stories and delete the Assignments, turning it back into a normal INDD file.  That normal file is safe to duplicate and use as a starting point for the next issue.
    AM

  • Corrupt Proj

    I received a pop-up msg that stated my project was corrupt
    & that I should delete the cpd & xpj files. I did this then
    tried opening the project through the hhp file. I received an
    Application Error ("the instruction at [0x00] referenced memory at
    [0x00]. The memory could not be read. The application then closes.
    How can I recover the project?
    I have other projects that I can access, however, I
    experiencing publication issues with those. I publish &
    everthing appears normal but when I check the output, the changes
    were not published.
    Any thoughts on what's going on with the publishing
    issue?

    Hi all
    Eva, it's possible that in your setup you are publishing to
    an intermediate location. Back when I worked in the corporate
    world, I published to what we called a "staging server". An
    automated process copied files from the staging server to the
    production server.
    I've also seen larger setups where there were multiple
    production servers. Sometimes it would take as long as half an hour
    before all production servers received updates. Because of load
    balancing, sometimes you would see updates because you were
    receiving files from one server. On the next click, the files would
    come from a different server that had not yet received updates.
    Cheers... Rick

  • Issue in publication of Crystal Report on BO CMC

    Hi,
    We have a Crystal Report which needs to be bursted in order to create multiple pdf files based on Account Number field used in report.
    For this, we have created a source report which contain all the fields required having Account Number.
    The report has multiple groups (including one on Account Number itself) and we have created another report (say dynamic) which contains the same logic used in source report but it displays only the Account Number field in report without having any groups.
    So, when we tried to create a publication on Business Objects Central Management Console (BO CMC) using these source and dynamic reports, everything goes well until Personalization where in we are suppose to configure the Filters using Source Report field and Dynamic Recipient Mapping.
    Here, we are not getting the Account Number field (which is available in both Source and Dynamic reports) to be selected for adding filter.
    Actually, we are not getting fields from a particular Command Object itself when we try to add filter from "Report Field" dropdown.
    We are not sure whether this is due to the groups used at Source report or something else.
    Could someone tell me whether anyone has undergone this kind of issue and found any solution.
    Environments details:
    Crystal Report version: CR XI R2
    Thanks in advance.
    -Raghavendra

    Hi,
    Couple of updates based on my trial and error method on this:
    1. I could see the Report Field dropdown with database fields from Command Object when I removed all groups, sub Reports (forgot to mention on this) and all parameters except Account Number parameter (I have about 5 other parameters including a date range).
    2. When I re-add date range parameter (keeping Account Number parameter as it is), the Report Fields dropdown under Personalization link isn't showing the fields from Command Object.
    3. When I add any other parameters except Data Range parameters, I can see the Report Fields dropdown with Command Object fields.
    So, I think there is something to do with date range parameters when we use the report for publication.
    Did anyone face this issue?
    Thanks,
    Raghavendra

Maybe you are looking for