Custom ABAP flatfile loading app with statuses

Hi all,
I inherited a rather large ABAP program that is used here to load flat file data that is emailed to me as CVS files.  One of the nice things about this program is that it "cleans" the data, presents the "to be uploaded data,"  triggers the load and then reports the Load status back.
Unfortunately everything seems to work OK except the load status which always returns the programs error message indicating that the load was not confirmed.
The code basically queries table RSMONICDP a few times and waits 20 seconds.  If the load is not finished by then it returns an error. This means that I have to manually confirm each load and that I can never give this job to a non-BW person to perform (as was the initial intention i think).
Can anyone tell me if there is a better or easier way to report the load statuses (via email or an ABAP function that can embed a customized monitor screen).
===========================
here is the current code:
===========================
  " Verify the success of the request:
  " The problem is, that for data uploads into the fact table,
  " the table RSMONICDP (Request Status MONitor InfoCube Data Package)
  " is the most detailed table to query, however, it does not contain
  " Requests that pertain to info objects.
  " Query table RSMONICDP
  " to check that upload was performed:
  " RSMONICDP-ICUBE = the target cube of a request.
  " RSMONICDP-REC_INSERT = no of records inserted.
  " RSMONICDP-TIMESTAMP = YYYYMMDDhhmmss (UTC)
  DATA:   bw_log_wa  LIKE RSMONICDP,
          no_records TYPE i,
          count      TYPE i.
  DESCRIBE TABLE sales_pack->clean_sales.
  no_records = sy-tfill.
  WHILE count < 8.
    " check if registered as uploaded
    count = count + 1.
    WAIT UP TO 3 SECONDS.            "give BW server time to load.
    SELECT SINGLE *
      FROM  RSMONICDP
      INTO  bw_log_wa
      WHERE ICUBE      = icube        AND
            TIMESTAMP >= time         AND
            REC_INSERT = no_records.
    If sy-subrc <> 0.
      If count >= 3.                 " loop 3 times, server may be slow
        w_tit    = 'ERROR'.
        w_msg1   = 'The upload was not confirmed by BW within 20 sec.!'.
        w_msg2   = 'Probably the Schedule does not respond to events'.
        w_msg3   = 'Or the Server is slow.'.
        CALL SELECTION-SCREEN 200 STARTING AT 10 10.
        MESSAGE 'Upload job failed !!!!!!!.'  TYPE 'S'.
        return = 'False'.
        RETURN.
      ENDIF.
    ELSE.
      IF bw_log_wa-STATUS <> '@08@' OR bw_log_wa-QMSTATUS <> ''.
        w_tit    = 'ERROR'.
        w_msg1   = 'The upload was performed by BW but failed !'.
        CONCATENATE  'Remove manually request '
                     bw_log_wa-RNR
                     INTO w_msg2.
        w_msg3   = 'See your administrator !'.
        CALL SELECTION-SCREEN 200 STARTING AT 10 10.
        MESSAGE 'Upload request marked red !!!.'  TYPE 'S'.
        return = 'False'.
      ENDIF.
      EXIT.    " get out of while loop.
    ENDIF.
   ENDWHILE.
   MESSAGE 'Data uploaded into BW !.'  TYPE 'S'.
   return = 'True'.
endform.

Hi,
can you try:
- select ViewProject
- choose Run --> Clear <project name>
- Make project
Frank

Similar Messages

  • Unable to load app with rsl

    Please help!!
    My company project has 2 component libraries (swc) and 4-5 separate flex apps that use the 2 component libraries.  So far, the entire project has been build using "merge in code" and it is working fine.  However, some of the applications are getting so big that we need to reduce the overall size of all components and apps.  Using ant (flextask), I try to compile the components and the apps using the framework RSL and I was be able to get everything compiled and linked, but when I try to load one of the application at run time, nothing happens - I got no errors, just a blank, empty default screen.
    pic 1: ant script to compile bs_vo component:
         <!-- Compile component files -->
         <target name="compile" depends="init,doWindows,doUnix" description="Compiles the mxml/as source files">
              <!-- Create the deploy directory if it doesn't exist -->
              <mkdir dir="${deploy.dir}" />
              <mkdir dir="${deploy.dir}/lib" />
              <!-- Compile Flex mxm/as files -->
              <compc output="${swc.export}" locale="${DEFAULT.LOCAL}" debug="${FLEX_DEBUG}">
                   <!-- Define namespace to be referenced in other MXML source files -->
                   <namespace uri="http://bidshift.com/vo" manifest="${manifest.xml.file}" />
                   <include-namespaces uri="http://bidshift.com/vo" />
                   <!-- Load default compiler options -->
                <load-config filename="${FLEX_HOME}/frameworks/${flex.conf.filename}" />
                   <!-- List of path elements that form the roots of ActionScript
                   class hierarchies -->
                   <source-path path-element="${FLEX_HOME}/frameworks"/>
                   <!-- Path of mxml/as source files -->
                   <compiler.source-path path-element="${src.dir}" />
                   <!-- List of SWC files or directories that contain SWC files use to
                        build and include in the component -->
                   <compiler.include-libraries dir="${lib.dir}" append="true">
                        <include name="**/*.swc"/>
                   </compiler.include-libraries>
                   <!-- Do not merge the framework SWC files -->
                   <compiler.external-library-path dir="${FLEX_HOME}/frameworks" append="true">
                        <include name="libs/**/*.swc" />
                        <exclude name="libs/framework.swc" />
                        <exclude name="libs/rpc.swc" />
                   </compiler.external-library-path>
              </compc>
            <!--*****************************************************-->
            <!-- Prepare the RSL so that it can be found at run time -->
            <!--******************************************************-->
            <!-- Extract the SWF file from the SWC file -->
            <unzip src="${swc.export}" dest="${deploy.dir}/lib">
                <patternset>
                    <include name="library.swf" />
                </patternset>
            </unzip>
            <!-- Run the flex optimizer on the extracted SWF so that it does not
                 contain any debug code or unnecessary metadata.  Note that the
                 as3 metadata that's kept, it's required -->
            <exec executable="${flex.optimizer}" dir="." failonerror="true">
                <arg line="-input ${deploy.dir}/lib/library.swf -output ${deploy.dir}/${application.name}.swf" />
                <arg line="-keep-as3-metadata='Bindable,Managed,ChangeEvent,NonCommittingChangeEvent,Transient'" />
            </exec>
            <!-- Delete the unoptimized SWF, don't need it anymore -->
            <delete file="${deploy.dir}/lib/library.swf" />
            <!-- Restore the digest from catalog.xml -->
            <exec executable="${flex.digest}" dir="." failonerror="true">
                <arg line="-digest.rsl-file ${deploy.dir}/${application.name}.swf" />
                <arg line="-digest.swc-path ${swc.export}" />
            </exec>
         </target>
    pic 2:  ant script to compile bs_comp component which includes bs_vo as dependency
         <!-- Compile component files -->
         <target name="compile" depends="init,doWindows,doUnix" description="Compiles the mxml/as source files">
              <!-- Create the deploy directory if it doesn't exist -->
              <mkdir dir="${deploy.dir}" />
              <mkdir dir="${deploy.dir}/lib" />
              <!-- Compile Flex mxm/as files -->
              <compc output="${swc.export}" locale="${DEFAULT.LOCAL}" debug="${FLEX_DEBUG}">
                   <!-- Define namespace to be referenced in other MXML source files -->
                   <namespace uri="http://bidshift.com/component" manifest="${manifest.xml.file}" />
                   <include-namespaces uri="http://bidshift.com/component" />
                   <namespace uri="http://mikenimer.com/component" manifest="${nimer.manifest.xml.file}"/>
                   <include-namespaces uri="http://mikenimer.com/component"/>
                   <namespace uri="http://hevery.com/component" manifest="${hevery.manifest.xml.file}"/>
                   <include-namespaces uri="http://hevery.com/component"/>
                   <namespace uri="http://adobe_extra.com/component" manifest="${adobe.manifest.xml.file}"/>
                   <include-namespaces uri="http://adobe_extra.com/component"/>
                   <!-- Load default compiler options -->
                <load-config filename="${FLEX_HOME}/frameworks/${flex.conf.filename}" />
                   <!-- List of path elements that form the roots of ActionScript
                   class hierarchies -->
                   <source-path path-element="${FLEX_HOME}/frameworks"/>
                   <!-- Path of mxml/as source files -->
                   <compiler.source-path path-element="${src.dir}" />
                   <!-- List of SWC files or directories that contain SWC files use to
                        build and include in the component -->
                   <compiler.include-libraries dir="${lib.dir}" append="true">
                        <include name="**/*.swc" />
                   </compiler.include-libraries>
                   <!-- List of SWC files or directories to compile against but to omit
                     from linking -->
                            <compiler.external-library-path dir="${deploy.dir}/lib">
                                 <include name="bs_vo.swc" />
                            </compiler.external-library-path>
                   <!-- Do not merge the framework SWC files -->
                   <compiler.external-library-path dir="${FLEX_HOME}/frameworks/" append="true">
                        <include name="libs/**/*.swc" />
                        <exclude name="libs/framework.swc" />
                        <exclude name="libs/rpc.swc" />
                   </compiler.external-library-path>
              </compc>
            <!--*****************************************************-->
            <!-- Prepare the RSL so that it can be found at run time -->
            <!--******************************************************-->
            <!-- Extract the SWF file from the SWC file -->
            <unzip src="${swc.export}" dest="${deploy.dir}/lib">
                <patternset>
                    <include name="library.swf" />
                </patternset>
            </unzip>
            <!-- Run the flex optimizer on the extracted SWF so that it does not
                 contain any debug code or unnecessary metadata.  Note that the
                 as3 metadata that's kept, it's required -->
            <exec executable="${flex.optimizer}" dir="." failonerror="true">
                <arg line="-input ${deploy.dir}/lib/library.swf -output ${deploy.dir}/${application.name}.swf" />
                <arg line="-keep-as3-metadata='Bindable,Managed,ChangeEvent,NonCommittingChangeEvent,Transient'" />
            </exec>
            <!-- Delete the unoptimized SWF, don't need it anymore -->
            <delete file="${deploy.dir}/lib/library.swf" />
            <!-- Restore the digest from catalog.xml -->
            <exec executable="${flex.digest}" dir="." failonerror="true">
                <arg line="-digest.rsl-file ${deploy.dir}/${application.name}.swf" />
                <arg line="-digest.swc-path ${swc.export}" />
            </exec>
         </target>
    pic 3:  ant script to compile application
         <!-- Compile Main application -->
         <target name="compile" depends="init" description="Compiles the mxml/as source files">
              <!-- get the common styles css files -->
              <copy todir="${src.assets}" includeEmptyDirs="no">
                   <fileset dir="${assets.dir}">
                        <include name="**/*.css" />
                        <include name="**/*.gif" />
                        <include name="**/*.jpg" />
                        <include name="**/*.png" />
                        <include name="**/*.svg" />
                        <include name="**/*.swf" />
                        <include name="**/*.ttf" />
                   </fileset>
              </copy>
              <!-- Compile client flex mxm/as -->
              <mxmlc file="${main.class}"
                   output="${swf.export}"
                   services="${server.conf.dir}/flex/services-config.xml"
                   context-root="${WEBAPP_CONTEXT_ROOT}"
                   use-network="true"
                   actionscript-file-encoding="${ENCODING}"
                   keep-generated-actionscript="false"
                   incremental="false"
                  debug="${FLEX_DEBUG}"
                   static-link-runtime-shared-libraries="false"
                  link-report="${deploy.dir}/bs_employee_calendar_link-report.xml">
                   <!-- Load default compiler options -->
                <load-config filename="${FLEX_HOME}/frameworks/${flex.conf.filename}" />
                   <!-- List of path elements that form the roots of ActionScript class hierarchies -->
                   <source-path path-element="${FLEX_HOME}/frameworks"/>
                   <!-- Path of mxml/as source files -->
                   <compiler.source-path path-element="${src.dir}"/>
                   <!-- List of SWC files or directories that contain SWC files use to
                        build and include in the component -->
                   <compiler.include-libraries dir="${lib.dir}" append="true">
                        <include name="**/*.swc"/>
                        <exclude name="bs_vo.swc"/>
                        <exclude name="bs_comp.swc"/>
                   </compiler.include-libraries>
                   <!--******************************************************-->
                            <!-- Location and other information about an RSL that the -->
                            <!-- application will use                                 -->
                   <!--******************************************************-->
                <!-- Framework RSL linked libraries -->
                <runtime-shared-library-path path-element="${FRAMEWORKS}/libs/framework.swc">
                    <url rsl-url="framework_3.5.0.12683.swz"/>
                    <url rsl-url="framework_3.5.0.12683.swf"/>
                </runtime-shared-library-path>
                <!-- RPC RSL linked libraries -->
                <runtime-shared-library-path path-element="${FRAMEWORKS}/libs/rpc.swc">
                    <url rsl-url="rpc_3.5.0.12683.swz"/>
                    <url rsl-url="rpc_3.5.0.12683.swf"/>
                </runtime-shared-library-path>
                <!-- Third party RSL linked libraries -->
                <runtime-shared-library-path path-element="${flex.src.dir}/deploy/lib/bs_vo.swc">
                    <url rsl-url="bs_vo.swf"/>
                </runtime-shared-library-path>
                <runtime-shared-library-path path-element="${flex.src.dir}/deploy/lib/bs_comp.swc">
                    <url rsl-url="bs_comp.swf"/>
                </runtime-shared-library-path>
              </mxmlc>
         </target>
    Thanks in advance.

    If you are going to use RSLs in a multi-SWF project, it is recommended that
    the first app load the RSLs and the others don't.

  • Loading Error from CRM datasource  - Info Idoc recieved with status 8

    Hello All,
    NEED YOUR HELP
    We have a CRM datasource 0CRM_SALES_ACT_1 which works well from source in RSA3. The dataload is a full and fetches 19,000 records from CRM
    However when we load it from an infopackage from BW it gives us the following  "No data in source sysetm" Info Idoc with status 8. We have tried the following to eleminate some doubts
    1) Checked the connection in SM59 using aleremote .Connection and authorization successful. Also loaded data in the BW system  for other datasources from same CRM system it works well, so no authorization/ connections issues.
    2) In the source system CRM  tried transaction RSA3--> extract data get 19000 records
    3) In the source system CRM Triied transaction RSA3--> Import Request from BW --> successful.
    4) Checked the TRFC queue in SM58 the TRFC queue is empty
    5) When we check the logs in CRM for ALEREMOTE we get the following message
    synchronous transmission of info IDoc 2 in task 0001 (0 parallel tas
    DATASOURCE = 0CRM_SALES_ACT_1
             Current Values for Selected Profile Parameters
    abap/heap_area_nondia......... 0
    abap/heap_area_total.......... 9437184000
    abap/heaplimit................ 40000000
    zcsa/installed_languages...... ED
    zcsa/system_language.......... E
    ztta/max_memreq_MB............ 256
    ztta/roll_area................ 3000000
    ztta/roll_extension........... 2000000000
    Call customer enhancement EXIT_SAPLRSAP_001 (CMOD) with 0 records
    Result of customer enhancement: 0 records
    IDOC: Info IDoc 2, IDoc No. 266228, Duration 00:00:00
    IDoc: Start = 2008.10.22 14:18:38, End = 2008.10.22 14:18:38
    Synchronized transmission of info IDoc 3 (0 parallel tasks)
    IDOC: Info IDoc 3, IDoc No. 266229, Duration 00:00:00
    IDoc: Start = 2008.10.22 14:18:39, End = 2008.10.22 14:18:39
    Job finished
    *What is the issue ? Data is present and confirmed available in source system , yet we get 0 records in BW system ? WE NEED YOUR HELP *

    Hi
    May be you need to provide full authorizations to the user 'ALEREMOTE'.Ask your basis team to check the authorizations.
    Regards,
    Chandu.

  • Folio appear in app library with in-app purchase status is "Developer removed from sales"

    Please share your experience about Apple In-app purchase setup.
    Viewer Builder app: Multi-issue
    Folio published with public & retail
    Producct Id: input to iTunes In-App manage console
    In-App Status : Developer removed for sales
    After I launch the developer build customer app, I can see this issue available to purchase and download (in Sandbox environment).
    Does Custom Content Viewer app check the distribution server, when the folio is public & retail, check iTunes store, if it is ready to sale, show folio with selected price tier and make availbe to purchase.  If the record status is not "ready to sales", the folio should not appear in folio library, correct ?
    Problem In-App record highlight with red rectangle in screen capture.
    Please comment below action taken to resolve this situation.
    (1) Delete the folio using Folio Producer (unpublish);
    (2) Delete the record in iTunes In-App purchase;
    (3) Publish the folio with new productID;
    (4) add record in iTunes In-App with the new productID;
    Michael.

    Hey Bob. Yeah, I tried that. It just comes back. I even deleted the app entirely and reinstalled it. Same thing.
    I logged in through the Adobe Content Viewer and it even shows up there. I don’t understand where it’s coming from.
    I rebuilt the viewer and need to send the updated binary to Apple for approval but I’m afraid this phantom folio is going to cause them to reject it.

  • No Default Customer was found this messge is coming with status 51,

    Hi,
    No Default Customer was found this messge is coming with status 51, what to do how to debug
    Thanks in advance
    KK

    Hello Shiv,
    Answered a similar question below
    SSIS WCF Services
    Step 1 will not work as the SSIS
    Script component cannot find a reference to the app.Config file. You will have to pro-grammatically create the binding information and then bind the same to your client request.
    Regards, Dinesh

  • Loading Apps and PDFs to multiple iPads with different Apple IDs

    Hello,
    We are deploying 200+ iPads to our business and we are configuring each of the devices individually on-sight. We have received each employee's Apple ID and password for these corporate devices.
    We want to load 7 free apps to each iPad and a variety of PDFs to iBooks before we deploy the devices. We have experimented with Apple Configurator for the Apps and iTunes for the PDFs and run into a few problems.
    Apps:
    When we loaded these 7 free apps using Apple Configurator from a Macbook Pro to an iPad with a different Apple ID, we had no problem. The iPad user was able to download other apps using their own Apple ID without any issues. The problem came when we tried to update these originally loaded apps. When the user is prompted to update, the Macbook Pro user's Apple ID showed up with the update and there was no way to get around that even though the device was logged into the iPad owner's Apple ID in the settings.
    Is there a way to push multiple apps from one device to another without have two different Apple IDs sitting on the one device?
    PDFs:
    A similar problem happened with iTunes and iBooks. When we pushed PDFs from the Macbook owner's iTunes to the iPad, there was no problem. When the iPad user tried to upload some of her own PDFs from her Apple ID in iTunes, the originally loaded PDFs were wiped.
    Is there a way for both sets of PDFs to stay on the device in iBooks without either getting wiped?

    I don't really have any solutions other than uploading the files to cloud storage such as drop box, google, or skydrive and then sharing them to all the users.
    You can try these links however:
    Mobile Device Management
    Amtelnet MDM
    http://www.amtelnet.com/mdm/mobile-device-management.php
    Meraki MDM
    http://www.meraki.com/products/systems-manager/
    Here's information regarding rolling out iOS devices across an organization, business or educational establishment:
    http://www.apple.com/support/ipad/enterprise/
    And here's about bulk app purchasing:
    http://www.apple.com/business/vpp/

  • In tune show all summary activity during sync between nb and apple device. One of the summary is memory space status. Audio mayb3gb, photo 2gb, app with 3gb. What is other? Other consist of what type of file?

    In tune show all summary activity during sync between nb and apple device. One of the summary is memory space status. Audio mayb3gb, photo 2gb, app with 3gb. What is other? Other consist of what type of file? It show quite substantial storage capacity?? Anyone can answer what is in other??

    "Other" includes data such as contact information and photos assigned to contacts, calendar events, Safari bookmarks/cookies/history, notes created with the Notes application, SMS messages, email stored locally or cached, and 3rd party application data created and stored by the application.
    If "other" is more than say .75GB at the most, you had a corrupt sync. Try syncing again and if the problem persists, the recognized fix for this is to restore your iPad.

  • More than 50 MB sized applications are grayed out with status of "Waiting/Installing", when we update those apps from WiFi Connection?

    Hi,
    Few application updates are available in iOS App store. However, Those applications are grayed out with status of "Waiting/Installing", when we update those apps from WiFi Connection. It's happening only for more than 50 MB sized applications. Unable to install those application through WiFi, However, it's successfully installed through MacBook Pro iTunes application. Please suggest me, why this happening suddenly.
    Thanks in Advance,
    Suresh Balakrishnan.

    - If I make the deployment required, it will install right away regarless of maintenance windows.  However, i don't want to use this option because if the user logs in to other machine (e.g. boardroom computer), it will auto install this software. 
    Re-check your deployment, specially the user experience:
    If you've checked the box next to "Software installation", it will install after the deadline has passed and ignores maintenance windows. Change the deployment to required and uncheck that box and the software should be installed according to your
    maintenance windows.

  • HT5622 hi is there a problem with down loading apps for the i phone 4s

    having a problem tring to down load apps is any bady having the same problem

    Hello rooster1969,
    I found an article with steps you can take when you are not able to connect to the iTunes Store.  I recommend following the steps in the section titled "Troubleshooting on an iPhone, iPad, or iPod touch" in this article:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Loading BI Apps with demo (sample) data

    I would like to load the out of the box OBI apps with sample data from Oracle so that the clients see how Emoployee Expense reports would look like. does anyone know how to go about it . In simple terms , this is more like using BISAMPLE schema in OBIEE. Any help willl be greatly appreciated.

    Are you asking for sample data for the Fusion Applications similar to what EBS had with the "Vision" database, e.g. data populated in the Fusion Applications schema OOTB ? If so unfortunately such data is not available.
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • I jailbroken my ipod and when i try to restore it, its stuck on the loading screen with a skull on it but now i cant even look at the apps or lock it plz up i tried everything pretty much. i tried putting it in dfu and dfu pwn mod

    i jailbroken my ipod and when i try to restore it, its stuck on the loading screen with a skull on it but now i cant even look at the apps or lock it plz up i tried everything pretty much. i tried putting it in dfu and dfu pwn mod
    < Edited By Host >

    Jailbreaking has its consequences and voids the Apple warranry.  We can't discuss jailbreading on this Apple forum.

  • Auto-hostep app with custom master page does not allow custom workflows

    This has been troubling us all day. We have a sharepoint 2013 auto-hosted app. We wanted to simply change the site logo of the master page but it was easier said than done. Finally we had to create our own custom master page with our own site logo to overcome
    this issue.
    Now we are trying to add a custom workflow in our app. But the instalment of the app always fail with this message:
    3> CorrelationId: cec727fc-bbf9-4499-ae36-6a7d05f3ae8c
    3> ErrorDetail: There was an error during the operation.
    3> ErrorType: Configuration
    3> ErrorTypeName: Configuration
    3> ExceptionMessage: Operation is not valid due to the current state of the object.
    3> Source: Common
    3> SourceName: Common App Deployment
    After many hours of searching I came across this
    post that sums up the problem to this:
    Do not use the WebTemplate element in the app manifest to designate any of the built-in SharePoint site definition configurations as the app web's site type. We do not support using any of the built-in site definition configurations, other than APP#0, for app webs.
    Thus, if you would like to include your workflow to SharePoint-hosted app, you have to use APP#0 template.
    I am fairly new to the sharepoint 2013 app development and having so many problems just because we wanted to have a different site logo is making us focus out of the important stuff of our app. Isn't there a simple way for us to change the app's site logo
    and add a custom workflow? Has anyone come up with a solution?

    Have you configured SharePoint Workflow Manager in the farm? Not sure if you are familiar with but in SharePoint 2013, there's a new component called Workflow Manager that needs to be configured to use SharePoint 2013 workflow.
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com
    I am using SharePoint Online. I have enabled the following site feature:
    Workflows can use app permissions
    Allow workflows to read from and to write to all items in this site.
    just in case but it makes no difference. When I stop using my custom masterpage the app can install just fine and the workflow is working. When the custom masterpage is enabled the app won't install with the workflow. I am required to remove the workflow
    to install the app.

  • Uploading App with Application Loader Issue

    Hi guys,
    I wrote several apps while the restrictions were enforced for "fun" and we have now finished it for release. I am being thwarted by one particular issue, different from anything on the net so far (as far as 9 hours of searching goes).
    When I go to use application loader to submit, i choose the .zip, it accepts, unzips validates codesign etc, then comes up with a
    "this bundle is invalid. Apple is not current;y accepting appliactions built with this version of the SDK."
    I have tried renewing all codesigning certificates, provisioning profiles etc, and nothing helps. Ive even tried changing the info.plist in the actual compiled binary to show that it has been compiled and built with a 4.0, 4.1 sdk. No luck.
    This issue stands for all 3 applications I have written.
    Any fixes/suggestions/ HELP???
    Thanks
    Scott

    Hi
    I have the same problem, we built the first app for our client through WoodWing, now we want to update the app with the Adobe one. During the upload of the new app, created with the Adobe Viewer Builder we get this error code:
    This bundle is invalid. The key CFBundleShortVersionString in the Info.plist file must contain a higher version than that of the previously uploaded version.
    When we open the Info.plist we can see that the Adobe Viewer Builder creates 1.0.1 for the Bundle Version String short, while the older WoodWing app has 2.1.
    Marketing version in Viewer Builder = Bundle Version String Short or ?
    That means everybody who is changing from the WoodWing to the Adobe reader needs to go through Adobe?

  • Unable to deliver  iphone5  app with application loader

    i get an error itms 9000 when trying to deliver my app with application loader
    i understand that i miss icon 568h
    my air version is 3.8.0.440 and there is not possible way to download png file with size 568h
    please help

    Have you tried this against our latest AIR release?

  • Since up grading to new OS Lion  my iPhone iPod and iPad  all give me sync issues  they load apps , music , books , movies , but refuse photos  and the sync ends with an error 50 message most times  , yes  I have re booted  reinstalled new i Tunes  help !

    Since up grading to the  new OS Lion  basicly problem free except  my iPhone iPod and iPad  all give me sync issues  they load apps , music , books , movies , but refuse photos  and the sync ends with an error 50 message most times  , yes  I have re booted  reinstalled new i Tunes and all my others   help !   I have update every thing I can  re installed  , no other issues apart from Parallels  and windows  which  I have deleted and will reisnstall and up date when I get my discs back moving house so in storage boxes somewhere ? , but who needs  Windows ?  is any one else suffering , or have any solutions 

    Hi Ken,
    Wow, I've logged into adobe and never seen your response until now.
    I need to make the forums more of a daily stop I guess.
    Thank you for your response, When I go to the Archives, it states I have none. In addition, previously when I'd tried to move items to the archive, they just disappeared  
    Currently my desktop is not connecting at all, Everytime I connect, it's states "We have now logged you out" and requests I login again.
    I have of course rebooted,
    Gone into taskmanager, killed all the relevant threads,  tried again to login through the desktop, no luck, I'll have to uninstall it, make sure the threads are killed, then reboot it and then reinstall it, but I've not had the time to do that.
    On another note, and just as a point of reference, myself, personally, I hate these "cloud" file repositories (not to be confused with adobe cloud services which I love) but the file repositories themselves imho, are a blackhole of resource usage when one doesn't/isn't using them,
    Is there a way we can use it more of a "ftp" sort of thing, when I want to I can  put files there?  There is no way to "Download" the repository, no way to download the folders.. only individual files and then it takes I think three different steps before the download starts.. I find this very inhibiting.  Just an fyi. for what it's worth.
    Please, feel free to contact me,
    I'm on g+ chat [email protected]

Maybe you are looking for