Podcast Producer Youtube workflow fails. Script produces runtime errors

A guide was written regarding creating a Podcast Producer workflow for YouTube. Unfortunately, the completed script (even with all of the relevant API bits installed properly) returns an exception when trying to upload the video (client ID, data API have been substituted into the script). The Java script compiles and runs. However, when it failed, I decided to toString() the exception which was called and found out that Google was returning "Bad Request," meaning something with the way the Script was trying to talk to Google was bad. The code is still the reference code with the CID/DevKey subbed in, but because of the Bad Request exception passed by Google, it fails to upload, and thus, fails entirely.
Is there a proper working YouTube workflow anywhere?

Apologies: I just found the Podcast Producer forum, so I'm going to mark this one as answered and repost the question in the Podcast Producer forum now that I know a specific forum for it exists.

Similar Messages

  • System recovery fails with C++ runtime error

    My Compaq CQ610-410US running Windows 7  is unusable. When using system recovery, either from CD's or Recovery drive, it fails with C++ runtime library program not found Contact HP Support. EIther way, Windows is loaded and system recovery screens appear. Once I respond to removing all accessories it then fails with the runtime error. Two questions, (1) is there a way around it? (2) will getting new recovery discs from HP even work?
    This question was solved.
    View Solution.

    All I can suggest is to order a set from HP and hope they work. This error is not a common one and the HP supplied recovery discs should work.

  • Workflow manager 1.0 : runtime error 400 running Add-WFHost "The api-version in the query string is not supported"

    Installing Workflow Manager 1.0 for SharePoint Server 2013 SP1 everything is fine until the last step of the configuration and last powershell command : 
    Add-WFHost -WFFarmDBConnectionString 'myconnectionstring' -RunAsPassword $WFRunAsPassword -EnableFirewallRules $true -SBClientConfiguration $SBClientConfiguration -CertificateAutoGenerationKey $WFCertAutoGenerationKey -Verbose;
    gives me the following error : 
    Add-WFHost : The remote server returned an error: (400) Bad Request. The api-version in the query string is not supported. Either remove it from the Uri or use one of '2012-03'..TrackingId:412684e3-3539-468e-91e6-17838c6eaa55_GS
    P,TimeStamp:04/04/2014 12:54:11
    At line:1 char:1
    Can't find anything about this subject except this
    thread which does not help me that much in SharePoint dev env ...
    Removing workflow manager 1.0 and service bus (leave the farm using wizzard, remove binaries and databases) does not help.
    Who already faces this issue and how can I try to resolve it ?
    Best regards !
    Alexandre DAVID

    The API version is hardcoded in Microsoft.ServiceBus.dll, which ships as part of the Service Bus. Each version of this lib has a different string.
    If you install workflow manager 1.0, here are the pre-requisites:
    .NET Framework 4 Platform Update 3 or .NET Framework 4.5
    Service Bus 1.0
    Workflow Client 1.0
    PowerShell 3.0
    The following are the pre-requisites to configure Workflow Manager 1.0
    Instance of SQL Server 2008 R2 SP1, SQL Server Express 2008 R2 SP1, or SQL Server 2012.
    TCP/IP connections or named pipes must be configured in SQL Server.
    Windows Firewall must be enabled. [Windows Firewall is Off on target server]
    Ports 12290 and 12291 must be available.
    Here are the reference for installing and configuring Workflow Manager 1.0:
    http://lennytech.wordpress.com/2013/06/02/installing-workflow-manager-1-0/
    http://lennytech.wordpress.com/2013/06/02/configuring-workflow-manager-1-0/
    http://social.technet.microsoft.com/Forums/en-US/c74507fb-ac2d-405f-b19c-2712b1055708/workflow-manager-10-configuration-service-bus-for-windows-server-the-api-version-is-not?forum=sharepointadmin

  • CTM Run failing with TSV_TNEW_PAGE_ALLOC_FAILED runtime error

    Hi,
    While doing the CTM run,system is giving the  memory dump with run time error TSV_TNEW_PAGE_ALLOC_FAILED.
    I understand this is because memory constraint and possible recommendation to either increase the Memory or reduce the master data selections for planning but would like to know if some master data discrepancy can cause the infinite run of CTM and hence memory dump like product at location being set as Inhouse production but no PPM maintained for it.
    Any suggestions on this willl reward points.
    Thanks,
    Manish
    Edited by: Manish Thukral on Jun 24, 2008 9:34 PM

    Marcelo,
    Thanks for you reponse.Can you please share some more information on what explanation profile is and where it is set so that can I check.
    Manish

  • Script component runtime error

    I have a  package to update and create contacts from a database to an application. So far it is working fine. But if one of the input columns has null value it throws this error:
    Condition for attribute 'new_lapinterpreter.new_interpreterlanguage': null is not a valid value for an attribute. Use 'Null' or 'NotNull' conditions instead.
    I've used lookup transformation to avoid duplicate insertions and mapped the columns accordingly.
    Here is my code:
    public override void ContactInput_ProcessInputRow(ContactInputBuffer Row)
    bool hasDulicate = false;
    FilterExpression codeFilter = new FilterExpression(LogicalOperator.And);
    codeFilter.AddCondition("new_interpretername", ConditionOperator.Equal, Row.fullname);
    codeFilter.AddCondition("new_interpreterlanguage", ConditionOperator.Equal, Row.newprimarylanguage);
    codeFilter.AddCondition("new_emailintlap", ConditionOperator.Equal, Row.emailaddress1);
    codeFilter.AddCondition("new_primaryphoneintlap", ConditionOperator.Equal, Row.mobilephone);
    QueryExpression query = new QueryExpression
    EntityName = "new_lapinterpreter",
    ColumnSet = new ColumnSet(true),
    Criteria = codeFilter
    EntityCollection records = _orgService.RetrieveMultiple(query);
    int totalrecords = records.Entities.Count;
    foreach (Entity record in records.Entities)
    if (record["new_interpretername"] != null)
    record["new_interpretername"] = Row.fullname;
    if (record["new_interpreterlanguage"] != null)
    record["new_interpreterlanguage"] = Row.newprimarylanguage;
    if (record["new_emailintlap"] != null)
    record["new_emailintlap"] = Row.emailaddress1;
    if (record["new_primaryphoneintlap"] != null)
    record["new_primaryphoneintlap"] = Row.mobilephone;
    _orgService.Update(record);
    hasDulicate = true;
    if (hasDulicate == false)
    var contact = new Entity("new_lapinterpreter");
    if (!Row.fullname_IsNull)
    contact["new_interpretername"] = Row.fullname;
    if (!Row.newprimarylanguage_IsNull)
    contact["new_interpreterlanguage"] = Row.newprimarylanguage;
    if (!Row.emailaddress1_IsNull)
    contact["new_emailintlap"] = Row.emailaddress1;
    if (!Row.mobilephone_IsNull)
    contact["new_primaryphoneintlap"] = Row.mobilephone;
    _orgService.Create(contact);
    Thanks

    Thanks guys.
    But the exception is thrown on this line.
    EntityCollection records = _orgService.RetrieveMultiple(query);
    If one of the columns value(Row.ColumnValue) in Filterexpression is null, the query is returning 0 columnset and throwing this exception.
    Condition for attribute 'new_lapinterpreter.(whateverColumn is null)': null is not a valid value for an attribute. Use 'Null' or 'NotNull' conditions instead.
    How do I check for Row null value in the filterexpression?
    Thanks

  • Why are my workflows failing?

    I have a workflow that should create or update a record in 1 list when the record in another list is updated.
    if a new record is created in List A and criteria is met, a record will be created in List B. When the record in List A is updated, the record in List B should also be updated.  However, often when the record is created in List A and the workflow kicks
    off, it doesn't create the associated record in List B. So when someone updates the record in List A, the workflow fails because it can't find the record in List B.  One of the steps in the workflow is to populate the record's ID# from List B back into
    the record in List A.  The record in List A will show the ID# from List B, but a record with that ID is not found in List B!
    When i test the workflow, it works fine.  When the workflow fails, I get the Error Occurred status so I manually stop the workflow and kick it off again, and it works fine.  So why is it failing in daily use? Could it be a timing issue? could the
    workflow take too long to run so it times out? if so, is there a way to speed it up or give it more time to run?
    I am not a programmer - I just create workflows using Sharepoint Designer 2010 - using Set Field Actions, or if then conditions and a couple of calculations.

    Put logs in the history list after the the code where you have created a record for List B.
    Follow this link which will guide you to log in the history list which will help you debug this issue.
    http://www.documentmanagementworkflowinfo.com/sample-sharepoint-workflows/use-log-to-history-list-sharepoint-designer-workflow-action-debug.htm

  • Load from ODS into InfoCube gives TIME-OUT runtime error after 10 minutes ?

    Hi all,
       We have a full load from ODS into InfoCube and it was working fine till the last week upto with 50,000 records. Now, we have around 70,000+ records and started failing with TIME_OUT runtime error.
       The following is from the Short Dump (ST22):
       The system profile "rdisp/max_wprun_time" contains the maximum runtime of a
    program. The current setting is 600 seconds. Once this time limit has been exceeded, the system tries to terminate any SQL statements that are currently being executed and tells the ABAP processor to terminate the current program.
      The following are from ROIDOCPRMS table:
       MAXSIZE (in KB) : 20,000
       Frequency       :  10
       Max Processes : 3
      When I check the Data Packages under 'Details' tab in Monitor, there are four Data Packages and the first three are with 24,450 records.  I will right click on each Data Package and select 'Manual Update' to load from PSA. When this Manual Update takes more than 10 minutes it is failing with TIME_OUT again.
      How could I fix this problem, PLEASE ??
    Thanks,
    Venkat.

    Hello A.H.P,
    The following is the Start Routine:
    PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line  -
    TABLES: /BIC/AZCPR_O0400, /BIC/AZCPR_O0100, /BIC/AZCPR_O0200.
    DATA: material(18), plant(4).
    DATA: role_assignment like /BIC/AZCPR_O0100-CPR_ROLE, resource like
    /BIC/AZCPR_O0200-CPR_BPARTN.
    $$ end of global - insert your declaration only before this line   -
    The follow definition is new in the BW3.x
    TYPES:
      BEGIN OF DATA_PACKAGE_STRUCTURE.
         INCLUDE STRUCTURE /BIC/CS8ZCPR_O03.
    TYPES:
         RECNO   LIKE sy-tabix,
      END OF DATA_PACKAGE_STRUCTURE.
    DATA:
      DATA_PACKAGE TYPE STANDARD TABLE OF DATA_PACKAGE_STRUCTURE
           WITH HEADER LINE
           WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    FORM startup
      TABLES   MONITOR STRUCTURE RSMONITOR "user defined monitoring
               MONITOR_RECNO STRUCTURE RSMONITORS " monitoring with record n
               DATA_PACKAGE STRUCTURE DATA_PACKAGE
      USING    RECORD_ALL LIKE SY-TABIX
               SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS
      CHANGING ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    $$ begin of routine - insert your code only below this line        -
    fill the internal tables "MONITOR" and/or "MONITOR_RECNO",
    to make monitor entries
       clear DATA_PACKAGE.
       loop at DATA_PACKAGE.
          select single /BIC/ZMATERIAL PLANT
             into (material, plant)
             from /BIC/AZCPR_O0400
             where CPR_EXT_ID = DATA_PACKAGE-CPR_EXT_ID
             and ( MATL_TYPE = 'ZKIT' OR MATL_TYPE = 'ZSVK' ).
           if sy-subrc = 0.
              DATA_PACKAGE-/BIC/ZMATERIAL = material.
              DATA_PACKAGE-plant = plant.
              modify DATA_PACKAGE.
              commit work.
           endif.
           select single CPR_ROLE into (role_assignment)
                         from /BIC/AZCPR_O0100
                         where CPR_GUID = DATA_PACKAGE-CPR_GUID.
            if sy-subrc = 0.
              select single CPR_BPARTN into (resource)
                         from /BIC/AZCPR_O0200
                         where CPR_ROLE = role_assignment
                         and CPR_EXT_ID = DATA_PACKAGE-CPR_EXT_ID.
                   if sy-subrc = 0.
                      DATA_PACKAGE-CPR_ROLE = role_assignment.
                      DATA_PACKAGE-/BIC/ZRESOURCE = resource.
                      modify DATA_PACKAGE.
                      commit work.
                   endif.
              endif.
           clear DATA_PACKAGE.
           endloop.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    $$ end of routine - insert your code only before this line         -
    Thanks,
    Venkat.

  • Runtime Error Using BAPI SALESORDER CHANGE

    Hi,
    I was trying to use the BAPI_SALESORDER_CHANGE to change 'Material Group 1' field. When executing the program, it kept on failing with this runtime error 'CALL_FUNCTION_CONFLICT_LENG'. Below is my codes and also the error analysis found in ST22.
    Kindly please let me know my program errors.
    Thanks much.
    CODES :-
    DATA: l_vbeln TYPE bapivbeln-vbeln,
    l_hx LIKE bapisdhead1x,
    l_r TYPE STANDARD TABLE OF bapiret2 WITH HEADER LINE,
    l_i TYPE STANDARD TABLE OF bapisditem WITH HEADER LINE,
    l_ix TYPE STANDARD TABLE OF bapisditemx WITH HEADER LINE,
    l_success(1) TYPE c VALUE 'Y'.
    l_vbeln = '0000707671'.
    l_hx-updateflag = 'U'.
    l_i-itm_number = '000010'.
    l_i-prc_group1 = 'Y'.
    APPEND l_i.
    l_ix-itm_number = '000010'.
    l_ix-updateflag = 'U'.
    l_ix-prc_group1 = 'X'.
    APPEND l_ix.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
    EXPORTING
    salesdocument = l_vbeln
    ORDER_HEADER_IN =
    order_header_inx = l_hx
    SIMULATION =
    BEHAVE_WHEN_ERROR = ' '
    INT_NUMBER_ASSIGNMENT = ' '
    LOGIC_SWITCH =
    NO_STATUS_BUF_INIT = ' '
    TABLES
    return = l_r
    order_item_in = l_i
    order_item_inx = l_ix
    PARTNERS =
    PARTNERCHANGES =
    PARTNERADDRESSES =
    ORDER_CFGS_REF =
    ORDER_CFGS_INST =
    ORDER_CFGS_PART_OF =
    ORDER_CFGS_VALUE =
    ORDER_CFGS_BLOB =
    ORDER_CFGS_VK =
    ORDER_CFGS_REFINST =
    SCHEDULE_LINES =
    SCHEDULE_LINESX =
    ORDER_TEXT =
    ORDER_KEYS =
    CONDITIONS_IN =
    CONDITIONS_INX =
    EXTENSIONIN =
    NFMETALLITMS =
    LOOP AT l_r.
    IF l_r-type <> 'S'.
    l_success = 'N'.
    EXIT.
    ENDIF.
    CLEAR l_r.
    ENDLOOP.
    IF l_success = 'Y'.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    WAIT =
    IMPORTING
    RETURN =
    WRITE: / 'Update successful'.
    ELSE.
    WRITE: / 'Update fail'.
    ENDIF.
    Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_TYPE', was
    not caught and
    therefore caused a runtime error.
    The reason for the exception is:
    The call to the function module "BAPI_SALESORDER_CHANGE" is incorrect:
    In the function module interface, you can specify only
    fields of a specific type and length under "ORDER_HEADER_INX".
    Although the currently specified field
    "L_HX" is the correct type, its length is incorrect.

    Thanks ALL. Here is the amended program that works fine :-
    DATA: l_vbeln TYPE bapivbeln-vbeln,
          l_hx TYPE bapisdh1x,
          l_r TYPE STANDARD TABLE OF bapiret2 WITH HEADER LINE,
          l_i TYPE STANDARD TABLE OF bapisditm WITH HEADER LINE,
          l_ix TYPE STANDARD TABLE OF bapisditmx WITH HEADER LINE,
          l_success(1) TYPE c VALUE 'Y'.
    l_vbeln = '0000707671'.
    l_hx-updateflag = 'U'.
    l_i-itm_number = '000010'.
    l_i-prc_group1 = 'Y'.
    APPEND l_i.
    l_ix-itm_number = '000010'.
    l_ix-updateflag = 'U'.
    l_ix-prc_group1 = 'X'.
    APPEND l_ix.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
      EXPORTING
        salesdocument               = l_vbeln
      ORDER_HEADER_IN             =
        order_header_inx            = l_hx
      SIMULATION                  =
      BEHAVE_WHEN_ERROR           = ' '
      INT_NUMBER_ASSIGNMENT       = ' '
      LOGIC_SWITCH                =
      NO_STATUS_BUF_INIT          = ' '
      TABLES
        return                      = l_r
        order_item_in               = l_i
        order_item_inx              = l_ix
      PARTNERS                    =
      PARTNERCHANGES              =
      PARTNERADDRESSES            =
      ORDER_CFGS_REF              =
      ORDER_CFGS_INST             =
      ORDER_CFGS_PART_OF          =
      ORDER_CFGS_VALUE            =
      ORDER_CFGS_BLOB             =
      ORDER_CFGS_VK               =
      ORDER_CFGS_REFINST          =
      SCHEDULE_LINES              =
      SCHEDULE_LINESX             =
      ORDER_TEXT                  =
      ORDER_KEYS                  =
      CONDITIONS_IN               =
      CONDITIONS_INX              =
      EXTENSIONIN                 =
      NFMETALLITMS                =
    LOOP AT l_r.
      IF l_r-type <> 'S'.
        l_success = 'N'.
        EXIT.
      ENDIF.
      CLEAR l_r.
    ENDLOOP.
    IF l_success = 'Y'.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING
        WAIT          =
      IMPORTING
        RETURN        =
      WRITE: / 'Update successful'.
    ELSE.
      WRITE: / 'Update fail'.
    ENDIF.

  • Lab Windows CVI call produces runtime error in VS 2012

    Making a call to CVI Lab Windows -- NI VISA Libary in Resource Template -- the  funtion viInstallHandler
    It complies/buids into a Visual Studio 2013 project.  But runiing the program on  a Windows 7 machine it produces a Runtime Error.
    Dose anyone have any answers or ideas???

    Hi jpike52,
    Actually this forum is to discuss the VS IDE, as you said that if it is related to the specific project, I'm afraid that it is not the correct forum for this issue.
    To help you find
    more appropriate
    forum, would you mind letting us know more information about it?
    For example, which language did you use in your project, C#, VB or others? Which kind of project did you create, web or WinForm or others?Please let me know more
    information, I will help you find a better development forum for it.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Burn failed: there was an error producing data for the burn

    Getting the following message after trying to bounce a project to CD:
    Burn Fail: There was an error producing data for the burn.
    Using Logic Pro 9. Burn has worked with all projects up til now. Not sure what is different about this one. Still works with old projects. ANy ideas? Thanks.

    Thanks very much for responding John, Minimum was to the CD. I have an Internal Superdrive. it does dvd and cd-rs. At this time, since my original post, I have burned four smallish rolls like 200 photos at 200+ MB's with success. And then I can try less say 100 photos @ 110MB and I get the error, and coaster that is unreadable. I have a partition area on another internal hard drive that I may try to transfer to so I can get these off my computer and maybe reinstall iPhoto. I will try to pop them into a folder and copy with Toast , which i use at times for other projects. I just like the idea of keeping all the rolls in order and not losing any of the data that is part of the originals. Any other ideas would be appreciated. The photos are sort of important.

  • Error: Bundler "Mac Application Image" (mac.app) failed to produce a bundle.

    I'm using Netbeans 8.02 with JDK 8 update 31 on Mac OSx Yosemite 10.10.2.  I'm getting the following error when trying to build an application image:
    Creating app bundle: /Users/scottselvia/Documents/JavaFXApplication4/dist/bundles/JavaFXApplication4.app
    java.io.IOException: Exec failed with code 1 command [[codesign, -f, -s, Developer ID Application: , -vvvv, /Users/scottselvia/Documents/JavaFXApplication4/dist/bundles/JavaFXApplication4.app/Contents/Java/JavaFXApplication4.jar] in unspecified directory
    /Users/scottselvia/Documents/JavaFXApplication4/nbproject/jfx-impl.xml:3415: The following error occurred while executing this line:
    /Users/scottselvia/Documents/JavaFXApplication4/nbproject/jfx-impl.xml:3438: The following error occurred while executing this line:
    /Users/scottselvia/Documents/JavaFXApplication4/nbproject/jfx-impl.xml:1465: The following error occurred while executing this line:
    /Users/scottselvia/Documents/JavaFXApplication4/nbproject/jfx-impl.xml:3093: The following error occurred while executing this line:
    /Users/scottselvia/Documents/JavaFXApplication4/nbproject/jfx-impl.xml:2055: Error: Bundler "Mac Application Image" (mac.app) failed to produce a bundle.
    BUILD FAILED (total time: 4 seconds)

    I'm using Netbeans 8.02 with JDK 8 update 31 on Mac OSx Yosemite 10.10.2.  I'm getting the following error when trying to build an application image:
    Creating app bundle: /Users/scottselvia/Documents/JavaFXApplication4/dist/bundles/JavaFXApplication4.app
    java.io.IOException: Exec failed with code 1 command [[codesign, -f, -s, Developer ID Application: , -vvvv, /Users/scottselvia/Documents/JavaFXApplication4/dist/bundles/JavaFXApplication4.app/Contents/Java/JavaFXApplication4.jar] in unspecified directory
    /Users/scottselvia/Documents/JavaFXApplication4/nbproject/jfx-impl.xml:3415: The following error occurred while executing this line:
    /Users/scottselvia/Documents/JavaFXApplication4/nbproject/jfx-impl.xml:3438: The following error occurred while executing this line:
    /Users/scottselvia/Documents/JavaFXApplication4/nbproject/jfx-impl.xml:1465: The following error occurred while executing this line:
    /Users/scottselvia/Documents/JavaFXApplication4/nbproject/jfx-impl.xml:3093: The following error occurred while executing this line:
    /Users/scottselvia/Documents/JavaFXApplication4/nbproject/jfx-impl.xml:2055: Error: Bundler "Mac Application Image" (mac.app) failed to produce a bundle.
    BUILD FAILED (total time: 4 seconds)

  • Search fails to produce results

    The search fails to produce results for a word which exists
    in almost all files of my project in RoboHelp7. Does it have
    something to do with the spelling? the word is "hypothèque"

    Hi Sofi. You may want to consider using ZoomSearch. Peter
    Grainge has an excellent
    article
    about how to use it.

  • Reader 9.3 produces Runtime error for all .pdf files on hard drive and email

    Does anyone have a resource that can show me how to eliminate a runtime error with Reader 9.3.1, Windows XP w/ SP3 and IE7. I have recently had all .pdf files located on my hard drive and in emails refuse to open because of this message:
    "Runtime Error!
    Program C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe
    This application has requested the Runtime to terminate it in an unusual way.  Please contact the application's support team for more information."
    So far, I have uninstalled and reinstalled Reader 9.3 from the website; added update 9.3.1 and tried to reopen files with no success.
    My organization sends a ton of .pdf files and it is not good when you can't open them for review and action.

    Hi All,
    Although I don't normally post in forums, I thought it prudent to lay this matther to rest.  I have tested the following solution:
    It appears that Adobe Reader likes to check access to each parent folder as well as the actual application data folder.  Apparantly there are other programs that also do similar things. As a result if you have your appdata redirected to \\server1\profiles\%username%\appdata adobe reader would first try directly access \\server1\profiles.  If the user does not have to Traverse folder permission, this fails. Typically you will need to change your permissions on you profile share from:
    -                   Users - Read Attributes (Apply to: This folder, subfolders and files)
    -                   Users - Read Extended Attributes (Apply to: This folder, subfolders and files)
    -                  Users - Create Folders/Append Data (Apply to: This folder, subfolders and files)
    -                   Users - Read Permissions (Apply to: This folder, subfolders and files)
    To the share permissions suggested by Microsoft in KB 274443:
    -                   Everyone - Create Folder/Append Data (Apply onto: This Folder Only)
    -                   Everyone - List Folder/Read Data (Apply onto: This Folder Only)
    -                   Everyone - Read Attributes (Apply onto: This Folder Only)
    -                   Everyone - Traverse Folder/Execute File (Apply onto: This Folder Only)
    Hopefully this helps everyone.

  • Display Infocube Content produces Runtime Errors = TIME_OUT

    Hi,
    Upon trying to display content of an InfoCube (200 records only), I received the following error:
    Runtime Errors         TIME_OUT                                                     
    Date and Time          13.12.2007 11:16:24                                                                               
    Short text                                                                               
    Time limit exceeded.                                                                               
    What happened?                                                                     
         The program "CL_SQL_RESULT_SET=============CP" has exceeded the maximum        
          permitted runtime without                                                     
         interruption and has therefore been terminated.                                                                               
    Error analysis                                                                     
         After a specific time, the program is terminated to make the work area         
         available to other users who may be waiting.                                   
         This is to prevent a work area being blocked unnecessarily long by, for        
         example:                                                                       
         - Endless loops (DO, WHILE, ...),                                              
         - Database accesses with a large result set                                    
         - Database accesses without a suitable index (full table scan)                                                                               
    The maximum runtime of a program is limited by the system profile              
         parameter "rdisp/max_wprun_time". The current setting is 600 seconds. If this  
          time limit is                                                                 
         exceeded, the system attempts to cancel any running SQL statement or           
         signals the ABAP processor to stop the running program. Then the system        
         waits another 60 seconds maximum. If the program is then still active,         
         the work process is restarted.                                                                               
    Trigger Location of Runtime Error                                             
        Program                                 CL_SQL_RESULT_SET=============CP  
        Include                                 CL_SQL_RESULT_SET=============CM006
        Row                                     32                                
        Module type                             (METHOD)                          
        Module Name                             NEXT_PACKAGE                                                                               
    Source Code Extract                                                                               
    Line  SourceCde                                                                               
    2 *                                                                       
        3 * Fetches the next bulk of rows into an internal table.                 
        4 *                                                                       
        5                                                                         
        6   DATA:                                                                 
        7     sql_code       TYPE i,                                              
        8     sql_msg        TYPE dbsqlmsg.                                       
        9                                                                         
       10   FIELD-SYMBOLS:                                                        
       11     <line> TYPE ANY,                                                    
       12     <outtab> TYPE STANDARD TABLE.                                       
       13                                                                         
       14                                                                         
       15   IF me->cursor = c_invalid_cursor.                                     
       16 *   result set has already been closed                                  
       17     RAISE EXCEPTION TYPE cx_sql_exception                               
       18       EXPORTING invalid_cursor = 'X'.                                   
       19   ENDIF.                                                                
       20                                                                         
       21 * check that a reference to the output table has been set by            
          22 * a preceeding call of SET_PARAM_TABLE; in this case the attribute  
       23 * LINE_REF contains a reference to a data structure of the          
       24 * table's line type                                                 
       25   IF me->itab_ref IS INITIAL.                                       
       26     RAISE EXCEPTION TYPE cx_parameter_invalid                       
       27           EXPORTING parameter = 'ITAB_REF'.                         
       28   ENDIF.                                                            
       29   ASSIGN me->itab_line_ref->* TO <line>.                            
       30   ASSIGN me->itab_ref->* TO <outtab>.                               
       31                                                                     
    >>>>>   CALL 'C_DB_FUNCTION' ID 'FUNCTION' FIELD 'DB_SQL'                 
       33                        ID 'FCODE'    FIELD c_fcode_next_package     
       34                        ID 'CONNAME'  FIELD me->con_ref->con_name    
       35                        ID 'CONDA'    FIELD me->con_ref->con_da      
       36                        ID 'CURSOR'   FIELD me->cursor               
       37                        ID 'BOUND'    FIELD me->outvals_bound        
       38                        ID 'OUTVALS'  FIELD me->parameters->param_tab
       39                        ID 'OUTTAB'   FIELD <outtab>                 
       40                        ID 'LINE'     FIELD <line>                   
       41                        ID 'UPTO'     FIELD upto                     
       42                        ID 'ROWCNT'   FIELD rows_ret                 
       43                        ID 'SQLCODE'  FIELD sql_code                 
       44                        ID 'SQLMSG'   FIELD sql_msg.                 
       45                                                                     
       46   IF sy-subrc = 0.                                                  
       47 *   some rows fetched                                               
       48     ADD rows_ret TO rows_fetched.                                   
       49                                                                     
       50 *   set the OUTVALS_BOUND flag; this avoids "reassignement" of the  
       51 *   output variables the next time this method is called, i.e. the                                             
    Can someone help me to solve this problem. Thanks!

    Hi,
    Chk the below line from the dump in line 3 - 'Fetches the next bulk of rows into an internal table'
    what that error means is the volume which u r trying to view is beyond the size of the internal table buffer and because of that it is leading to a dump.
    As the previous reply suggests try to increase the size of table buffer which will help you display much larger volumes.
    Selection of fewer columns would be much quicker and easier to analyse data quickly.
    Regards

  • HR_ECM_INSERT_INFOTYPE produces runtime error

    Hi All,
         Good Afternoon. I have been trying to us the FM HR_ECM_INSERT_INFOTYPE or the FM HR_INFOTYPE_OPERATION
    and I am receiving runtime errors such as
    CX_HRPA_VIOLATED_ASSERTION or
    CX_SY_REF_IS_INITIAL
    it seems that the message handler is not functioning as I have expected it to function. I have tried to enqueue the pernr prior to this code, but that doesn't help either.
      CALL FUNCTION 'HR_ECM_READ_INFOTYPE'
        EXPORTING
          pernr           = p_pernr
          infty           = '0002'
          message_handler = message_handler
        IMPORTING
          infotype_tab    = p0002_tab
          is_ok           = is_ok.
      CHECK is_ok EQ true.
      SORT p0002_tab DESCENDING.
      READ TABLE p0002_tab INTO w_p0002 INDEX 1.
      MOVE sy-datum TO w_p0002-aedtm.
      CALL FUNCTION 'HR_ECM_INSERT_INFOTYPE'
        EXPORTING
          pnnnn           = w_p0002
          message_handler = message_handler
        IMPORTING
          is_ok           = is_ok.
      CHECK is_ok EQ true.
    Please advise.
    Kind Regards,
    Daniel A. La Mendola

    The FM HR_INFOTYPE_OPERATION  bombs with either
    CX_HRPA_INVALID_PARAMETER or
    CX_HRPA_VIOLATED_ASSERTION or
    CX_SY_REF_IS_INITIAL
    I believe that I am not providing some pertinent information
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
       EXPORTING
         infty         = c_infotype_0008
         number        = p0759-pernr
         validityend   = w_rec_it0008-endda
         validitybegin = w_rec_it0008-begda
         record        = w_rec_it0008
         operation     = c_actio_ins
       IMPORTING
         return        = w_return
         key           = w_infty_key.
    and that is why it bombs.
    Kind Regards,
    Daniel A. La Mendola

Maybe you are looking for

  • Advice Needed

    After finally being disenchanted by PC's and being engrossed by my iPhone I am looking to buy a 13" macbook pro (restricted to the 13" for cash reasons). I occasionally use 3D modelling for my work (teacher), but nothing too advanced. The majority of

  • Multi Master Replication - Only works for some tables?

    I have a multi master replication between a 9i and an 816 database. All the tables are in the same tablespace and have the same owner. The replication user has full privs on all the tables. When setting up the replication some tables create properly,

  • Poor JPEG Quality in 6303i Classic

    Is there any way to change the JPEG quality ratio in 6303i Classic. The 3.2 MP camera's excellent details are totally lost due to lossy JPEG compression (the phone, by default, saves with 60% quality ratio) Or is there any other way to retain the qua

  • TS2530 iTunes keeps "updating" my songs information without my consent

    iTunes keeps modifying my songs information such as "year, track number, compositor" wich I usually have in blank, and don't want to have that information! Anyway to stop that?

  • Driver update for 8600 failed

    Using  HP product  CM 750 A  OfficeJet Pro 8600 Plus with  ethernet cable connected to  Mac  21.5", OSX 10.9.5 Maverick. Running HP version 9.4  (447.2), tried to up date to version  12.34 because of two problems: 1. Amost every time I  put the Mac t