Extended sytax check error for messages

Hi I am doing a Extend syntax check for a report and i am getting fowloing error for the messages displyed in report. in the report the stranded message class' MESSAGE ID 00' is used. i am getting this error in extended check:
No. of WITH fields of MESSAGE 398 for ID 00
  TEXT-001
No. of placeholders in this message: 4
Message: & & & &
Highest placeholder number in long text: 4
Long text:
&CAUSE&
Please suggest me how to correct the same. i tried taking the text element but too i am getting this messages.
plz help me
mahesh

Hi Mahesh,
The message number 398 of message class 00 has four place holder, which means its expecting you to pass 4 values in message statement. It seems you are pass just one parameter after TWITH .
You can either pass SPACE for rest of parameters as
MESSAGE s398(00) WITH 'TEST' space space space.
or you can hide the message with "#EC *
MESSAGE s398(00) WITH 'TEST' .                              "#EC *

Similar Messages

  • Extended program check error for cl_salv_table= factory

    hi all,
    when performing Extended Program check, I am getting some warning message
    code
        DATA: lc_msg TYPE REF TO cx_salv_msg.
    *. Create Instance for ALV
      TRY.
          CALL METHOD cl_salv_table=>factory
            IMPORTING
              r_salv_table = go_alv
            CHANGING
              t_table      = ts_z3rl_docket.
        CATCH cx_salv_msg INTO lc_msg .
      ENDTRY.
    Error message;
    No Exception Handling After the CATCH Statement  
    (The message can be hidden with "#EC NO_HANDLER) 
    how to handle this message?? how to recitfy this?
    kindly help

    Basically, this message appears because, you are trying to CATCH the exception in the exception object, but you are not accessing this exception object. If you do want to give the  message, if you catch some exception, you should do like this:
    *. Create Instance for ALV
    TRY.
      CALL METHOD cl_salv_table=>factory
        IMPORTING
           r_salv_table = go_alv
        CHANGING
          t_table = ts_z3rl_docket.
      CATCH cx_salv_msg INTO lc_msg .
         lv_string = lc_msg->get_text( ).   " <
         message lv_string type 'I'.  "<
    ENDTRY.
    Or, if you don't want to handle the exception, you can do like this:
    TRY.
      CALL METHOD cl_salv_table=>factory
         IMPORTING
           r_salv_table = go_alv
         CHANGING
           t_table = ts_z3rl_docket.
      CATCH cx_salv_msg.      "#EC NO_HANDLER
    ENDTRY.
    Regards,
    Naimesh Patel

  • Host agent check errors for host

    Dear All,
    We have recently installed PI 7.4 system. While configuring in SolMan 7.1. i am facing issue that "Host agent check errors for host "
    Managed System Configuration - >Assign Diagnostics Agents.
    Kindly help me out..
    Regards
    Jay

    Hi Jay,
    Please confirm ownership & permission for directory /usr/sap/hostctrl .For ref please follow SCN link Problem with connecting SAP Host Agent
    After that retry the phase.
    Regards,
    Gaurav

  • Extended sytax check read error message

    hi every one,
    i am working on extended syntax check for the report and in warning i am getting this message to a defiend itab or variable.:
    "No read access to table ITAB[] ",same messages for string variables too. please let me know how to remove this messages and why i am getting this message in extended syntax check.
    plz help.
    mahesh

    Hello Mahesh,
    This is quite relevant from the message itself. You are getting these messages b'coz you have just declared these tables & variables & have not used it in your code.
    Just comment the declarations & you are done )
    BR,
    Suhas

  • How to resolve Extended Systax check  Error..

    Hi All,
    In Syntax check i am not getting any errors,If  i have check Extended Syntax check I have got 2 error in SLIN ( Extended Syntax Check) Like
    ERRORS     :
    #Messages for MESSAGE(Error)
          Program:  ZMXXR600A  Row:    416
    No. of WITH fields of MESSAGE 021 for ID Z1: 1
    No. of placeholders in this message: 0
    Message: Non Statistical posting not allowed for Account 52979100
    No long text exists for this message
    (The message can be hidden with "#EC *)
          Program:  ZMXXR600A  Row:    418
    No. of WITH fields of MESSAGE 022 for ID Z1: 1
    No. of placeholders in this message: 0
    Message: Please use the same IO to credit and debit
    No long text exists for this message
    (The message can be hidden with "#EC *)
    The Code i write for this Eroors
    CASE SY-SUBRC.
              WHEN 0.
                MESSAGE S021 WITH P_FILE.     line :416
              WHEN 1.
                MESSAGE W022 WITH P_FILE.    line :418
              WHEN OTHERS.
            ENDCASE.
    P_FILE is declraed as;
    PARAMETERS: P_FILE   LIKE RLGRAP-FILENAME DEFAULT C_FILE.
    Can you give  some inputs to resolve the Errors ASAP.
    Thanks,
    Sridhar

    MESSAGE S021 WITH P_FILE. line :416
    WHEN 1.
    MESSAGE W022 WITH P_FILE. line :418
    in both messages & needed
    check 021 and 022 in both messages there is no <b>&</b> where you can place your actual value.
    for Ex: message 021
    Ex 1) hi print
    Ex 2) hi print <b>&</b>
    so now you can call this with
    1)MESSAGE S021 .
    2)MESSAGE S021 WITH P_FILE.
    as you not maintain & it is giving error for extended check so mention & where you want to print p_file
    or just call message with out passing P_file.
    Rewards if useful..........
            Minal Nampalliwar
    null

  • Extended program check error

    Hi ,
    I'm getting errors(Obsolete statements) when checking for extended program check for a report program.
    When I'm going for "UCCHECK" i'm not getting any errors & in code inspector also it is not showing the errors.
    Here what is the reason for this?why it showing error in one transaction & not showing the same in other transaction..
    Here I'm pasting the code..
    REPORT  ZHCM_OBSOLETE.
    infotypes : 0000.
    DATA: BEGIN OF itab1 OCCURS 0,
            col1 TYPE i,
            col2 TYPE i,
            col3 TYPE string,
          END OF itab1 VALID BETWEEN col1 AND col2.
    DATA: BEGIN OF itab2 OCCURS 0,
            col1 TYPE i,
            col2 TYPE i,
            col3 TYPE string,
          END OF itab2 VALID BETWEEN col1 AND col2.
    itab1-col1 = 1.
    itab1-col2 = 6.
    itab1-col3 = 'Itab1 Int1'.
    APPEND itab1 TO itab1.
    itab1-col1 = 9.
    itab1-col2 = 12.
    itab1-col3 = 'Itab1 Int2'.
    APPEND itab1 TO itab1.
    itab2-col1 = 4.
    itab2-col2 = 11.
    itab2-col3 = 'Itab2 Int1'.
    APPEND itab2 TO itab2.
    provide col3 FROM itab1
            col3 FROM itab2
                 BETWEEN 2 AND 14.
      WRITE: / itab1-col1.
    *  \, itab1-col2, itab1-col3, itab1_valid.
      WRITE: / itab2-col1.
    *  , itab2-col2, itab2-col3, itab2_valid.
      SKIP.
    ENDPROVIDE.
    Thanks in advance..
    Pradeepa
    Code Formatted by: Alvaro Tejada Galindo on Jan 7, 2009 2:22 PM

    Hi,
    You are probably getting obsolete statements on the declaration of internal tables. Avoid using begin of itab occurs 0, this statement is not used as it automatically creates a header line. Use types statement to define a type and then use it to create an internal table and workarea, this will remove the obsolete statements in extended program check.
    types : begin of t_itab,
                col1 type i,
                col2 type i,
                col3 type string,
              end of t_itab.
    data itab type table of t_itab
    data wa_type t_itab.
    Use these to populate your internal table.
    begin of itab occurs 0 was a statement which was used in prior versions (<4.0) and now are considered obsolete, but still functional due to backward compatibility.
    Hope this helps you.
    Regards,
    Sachin Dargan.
    Code Formatted by: Alvaro Tejada Galindo on Jan 7, 2009 2:22 PM

  • GWcheck errors for messages that failed to archive

    There are numerous errors in the GWCheck logs for messages failed to
    archive for one user. The cause is usually insufficient disk space in the
    archive path. I moved his archive folder to a place with more disk space
    sometime last year. It seems that the messages that were unable to archive
    at the time are lost in limbo. They are no longer in the user's inbox and
    are not in the archive. I spoke with the user and he stated that the
    messages are no longer important.
    The errors in gwcheck look like this:
    Error 83- Item failed to archive
    - Subject: Fwd: Dayton VA emergency renovation
    - From: John Hall
    - Date: Nov 6, 2009 - 1:47 pm
    - First archive attempt date: Jul 25, 2011
    - Number of archive attempts: 1
    - Error number on last Archive attempt: 0x8204
    9938 ITEM_RECORD check
    Error 83- Item failed to archive
    - Subject: Fwd: Building 700 Elevator and Building 701 Demoliton Facade/
    Canopy Work
    - From: John Hall
    - Date: Jan 6, 2010 - 1:29 pm
    - First archive attempt date: Jul 25, 2011
    - Number of archive attempts: 1
    - Error number on last Archive attempt: 0x8204
    10585 ITEM_RECORD check
    ....ETC...
    I found TID 7009495 that states the following:
    Resolution
    WARNING: THE FOLLOWING RESOLUTION WILL DELETE MAIL
    GroupWise POA code level minimum must be 7.0.4 or 8.0.2HP2.
    Run the following options on one or more users before running it against
    an entire post office.
    1) Run a standard expire reduce that covers the dates of these items and
    verify that they are not purged (because of the outstanding archive
    failure)
    2) Add the IGNOREARCHIVEFAILURE option on the MISC tab of GWCheck and run
    the same expire reduce again.
    3) The new option should allow the items to be purged.
    Additional Information
    The most common reasons that the GroupWise items failed to auto-archive is
    either because the archive disk filled up or there was a disruption in
    communication to a remote archive store.
    ....QUESTION...
    Will this only "delete" the failed to archive messages or will it affect
    any messages for that user during those dates? I don't want to
    accidentally delete any messages that need to be kept. I just want to
    clear the messages that have failed.
    Sorry for the long message. Thank you for your help.

    In article <MQfOs.2116$[email protected]>, RSharp wrote:
    > Error 83- Item failed to archive
    > - Subject: Fwd: Dayton VA emergency renovation
    > - From: John Hall
    > - Date: Nov 6, 2009 - 1:47 pm
    > - First archive attempt date: Jul 25, 2011
    > - Number of archive attempts: 1
    > - Error number on last Archive attempt: 0x8204
    > 9938 ITEM_RECORD check
    > Error 83- Item failed to archive
    > - Subject: Fwd: Building 700 Elevator and Building 701 Demoliton Facade/
    > Canopy Work
    > - From: John Hall
    > - Date: Jan 6, 2010 - 1:29 pm
    > - First archive attempt date: Jul 25, 2011
    > - Number of archive attempts: 1
    > - Error number on last Archive attempt: 0x8204
    > 10585 ITEM_RECORD check
    >
    That looks like they are from the GWCheck done July 25th, 2011. Are the
    same messages still showing up in current contents check?
    Do you run a regular purge only expire reduce? If not, run one soon, and
    check those logs for any instance of errors purging. An expire of old
    trashbin is also a worthwhile expire reduce job to run as part of this.
    I'm assuming by your concern that these users have messages and such from
    that time frame and earlier that they want to keep, hence making that TID
    sound very suspicious for your purpose. If that assumption is invalid,
    then that TID should be just fine for you, just be careful of your # of
    days you pick.
    GWAVA's Retain has hit similar issues and therefor has the tools built in,
    but then this is a tool that archives without removing mail from the
    primary storage. One client of mine still deletes mail over 999 days from
    GroupWise itself just to retain efficient operations, relying on Retain
    for anything older. That link supplied for next steps if my assumption
    was correct.
    http://support2.gwava.com/kb/?View=entry&EntryID=379
    Andy Konecny
    Knowledge Partner (voluntary SysOp)
    KonecnyConsulting.ca in Toronto
    Andy's Profile: http://forums.novell.com/member.php?userid=75037

  • BD87 idoc inbound error for message type HRMD_A

    Hello there,
    I am getting below error  while fetching Inbound idoc in tcode BD87, see log below from ST22
    Short text
        An SQL error occurred when executing Native SQL.
    What happened?
        The error "-10328" occurred in the current database connection "LCA".
    What can you do?
        Note down which actions and inputs caused the error.
        To process the problem further, contact you SAP system
        administrator.
        Using Transaction ST22 for ABAP Dump Analysis, you can look
        at and manage termination messages, and you can also
        keep them for a long time.
    How to correct the error
        Database error text........: "Mismatch of number of stream members for
         parameter (3) (application 6, database 9)."
        Database error code........: "-10328"
        Triggering SQL statement...: "EXECUTE PROCEDURE "SIM_SIMSESSION_CONTROL""
        Internal call code.........: "[DBDS/NEW DSQL]"
        Please check the entries in the system log (Transaction SM21).
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "DBIF_DSQL2_SQL_ERROR" "CX_SY_NATIVE_SQL_ERROR"
        "/SAPAPO/SAPLOM_CORE" or "/SAPAPO/LOM_COREU07"
        "SIMSCTRL_EXEC_COM"
        If you cannot solve the problem yourself and want to send an error
        notification to SAP, include the following information:
        1. The description of the current problem (short dump)
           To save the description, choose "System->List->Save->Local File
        (Unconverted)".
        2. Corresponding system log
       Display the system log by calling transaction SM21.
       Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
       In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    The exception must either be prevented, caught within proedure
    "SIMSCTRL_EXEC_COM" "(FORM)", or its possible occurrence must be declared in
    the
    Do we need SAP_APO in order to install LiveCache?
    We have below landsacpe
    - SAP ECC 6 EHP4 with SQL server 2005 S BACKEND
    -LCAPPS Component release 2005_700 with SP
    SAPKIBHD05.
    - We dont have SAP_APO component
    -SAP LiveCache system have MAXDB 7.7.04.29 as backend.
    - Live cache client is installed on same SAP ECC system where we have SAP ECC EHP4 system.
    any suggestion how to resolve it?
    Mani

    >
    Mani wrote:
    > I installed a standalone server and i need it only for SAP HR (specifically Idoc processing in SAP HR Human capital management module). But i am getting error while running ibound idoc process.
    > So Do i still need SAP_APO component?
    I never heard of this specific scenario for liveCache usage in the past 7 years working in SAP support on the liveCache component.
    Might be useful if you provide some more details (documentation, notes, links) that describe this usage scenario.
    In any case you will need to have a liveCache version that is compatible to your application ABAP coding.
    The error message you posted indicates that your liveCache version does not fit your application version (or vice versa).
    > I installed SAP MAxDB and LiveCache buid using Installation master DVD for SAP ERP. So i think i followed the right method as specified in installation guide.
    Be precise, please. Which installation guide? There are hundreds of them - not THE installation guide.
    > Secondly can you help me something specific to my problem in coding form?
    Already did.
    > i tried in LC10, using LCA monitoring i am not able to run SQLDBC trace under
    > LCA >> LiveCache Monitoring >> Tools
    > but i am not able to execute the same, is it a error or we need to configure something?
    Well, the liveCache needs to be integrated into the LC10. You'd do this in transaction SM59 - but as you've followed an installation guide, this would have been covered in it...
    > Operational status is active green light, below is file status.
    >
    >
    KNLMSG     KnlMsg     1.098.697     28.01.2011     06:59:55     Database Messages     ASCII
    > KNLMSGARC     KnlMsgArchive     8.192     28.01.2011     06:59:50     Database Errors     ASCII
    > KNLMSGOLD     KnlMsg.old     342.663     28.01.2011     06:59:50     Database Messages (OLD)     ASCII
    > KNLTRC     knltrace     6.209.536     28.01.2011     06:59:56     Database Trace (Raw/Binary)     BINARY
    > BACKHIST     dbm.knl     570     10.01.2011     06:18:41     Backup History     ASCII
    > DBMPRT     dbm.prt     133.843     29.01.2011     11:41:27     Database Manager Log File     ASCII
    > DBMPAHI     L00.pah     214.225     10.01.2011     06:18:16     Database Parameter History     ASCII
    > LCINIT     lcinit.log     15.299     28.01.2011     07:00:00     LiveCache Initialisation     ASCII
    > LCINITCMD     lcinit.bat     3.047     28.10.2008     14:45:51     LiveCache Initialisation Script     ASCII
    > LCINITHIS     lcinit.his     46.742     28.01.2011     07:00:00     LiveCache Initialisation History     ASCII
    > INSTPRT     dbm.ins     863.981     10.01.2011     06:18:47     Installation Log File     ASCII
    > DIAGDIR     File     0     10.01.2011     06:18:18     Diagnose History     DIRECTORY
    > ANALYZER     analyzer     0     29.01.2011     00:00:36     DB Analyzer File     DIRECTORY
    > LCTRC#init.his     lcinit.his     46.742     28.01.2011     07:00:00     LiveCache Trace (ASCII)     ASCII
    > LCTRC#init.log     lcinit.log     15.299     28.01.2011     07:00:00     LiveCache Trace (ASCII)     ASCII
    > LCTRC#_apo_version.txt     lc_apo_version.txt     164     28.01.2011     07:00:00     LiveCache Trace (ASCII)     ASCII
    >
    > any clue whats wrong?
    > Mani
    The only thing this tells us is: the liveCache instance itself apparently comes up and writes out the standard log files.
    That's it.
    As I already tried to explain, the problem seems to be the dependence between your application and the liveCache version.
    Usually I'd recommend to open a support message for this, but the colleagues would (hopefully) ask the same questions as I did.
    regards,
    Lars

  • Extended Booking Check Error

    Hi All,
    Greetings to every one.
    I am getting an error while creating a index dependent requirement.
    1- I am in window Edit Exetended Booking Checks.
    2- I have created a requirement for a module.
    3- When I select the requirement and trying to create a subrequirement I am getting the following error.
    For object PIQ_REQ , number range interval 02 does not exist
    Message no. NR751
    Diagnosis
    The database table NRIV has the delivery class 'C', i.e. the SAP default settings are only in client 000.
    System has already internal no range for subgroup $$$$ for all the objects.
    Where to maintain the no range for Object "PIQ_REQ"??
    OR... What I am missing...
    Please suggest...
    Thanks in Advance..
    Sudhir Gupta

    Hi Sudhir,
    Have you check that you have defined an internal 02 number range at IMG --> Student Lifecycle Management --> Student Lifecycl Management Procesess --> Audits --> Basic Settings --> Define Number Range Intervals for Rule Modules?
    Diego

  • Extended Program Check Errors

    I am running SLIN against some code.  I am getting 240 red error messages, like the one shown below.  The line number noted does not correspond to anything in my source code.  In fact, in a lot of cases, it corresponds to a line containing only a comment.
    How should I interpret these messages?  Could they be reporting on obsolete code in type group source modules, etc, that my code is referring to?
    For instance, no where in my source code do I use "OCCURS", yet that is being flagged.
    The current ABAP command is obsolete and problematic, especially so in ABAP
    Objects
    The addition OCCURS is no longer supported in the OO context. Use "TABLE OF ...
    INITIAL SIZE" instead.
    The message can be hidden with "#EC *)

    Hi,
    In abap OO context you can not create a table with header line.
    It seems you are usingtables with header line in Object Oriented context of your code, that is the reason its giving such error.
    You can avoid such error messages by declaring the tables with out header line or the message hidden by "#EC *
    Regards,
    Azaz.

  • Extended Program Check Warning For Syntax Check

    Warning:
    Syntax Check Warning
    This Warning only Displayed in SLIN
    WHERE lgtyp IN S_LGTYP.
      Messages :
      In "SELECT SINGLE...", the where condition for the key field "LGTYP" does not test  for equality .
      There fore the single record yuor searching may not be unique.
    IF NOT S_LGTYP[] IS INITIAL.
        SELECT SINGLE * FROM T301
         WHERE lgtyp IN S_LGTYP.----
    >IT SHOWING THIS LINE
        IF SY-SUBRC NE 0.
          MESSAGE E005(Z01).
        ENDIF.
    ENDIF.

    Hi Raghu,
    When you are using SELECT SINGLE, it is always better to use EQ in the condition than IN.
    Instead of using select-options S_LGTYP, declare a parameter: P_LGTYP and if possible re-write the select query as below:
    SELECT SINGLE * FROM T301 into lv_variable
    WHERE lgtyp EQ  P_LGTYP .
    Regards
    Deepa.

  • Using MEREQ001 u2013 Checking error for data in customer data tab.

    Hi Guys,
    I have implemented MEREQ001 enhancement to add custom field in CUSTOMER DATA tab at item level. I want to validate the custom fields for error and display RED dot in front of the line item number when user press SAVE button.
    I am using EXIT_SAPLMEREQ_005 for validating the custom field when user press SAVE button.
    Is this the correct exit for this requirement.
    Can somebody share to code to display the RED dot in front of the line item which has error in custom fields?
    Thanks in advance.

    I think it's right
    U need to tranfer the message to exporting parameter or raise an error message

  • Prerequisites check error for English language pack

    Hi All,
    We are installing Diagnostics Agent on Windows Server 2008 R2 Enterprise.
    While installing in prerequisites checker we are getting error about language pack.
    The error log from sapinst_dev is as follows:
    TRACE      2011-11-22 12:29:46.571
    tPRCResults.insertRow(), inserting
    We have already installed SAP Solution Manager 7.1 on that server. But now It is showing error.
    In Region And Language of OS it is showing English (United States)
    Please help us to solve this issue.
    Thanks & Regards,
    Ishan

    Hi,
    As per your question:
    message:Make sure that the English language pack is installed on your operating system so that your support requests can be handled quickly.
    I am sure your English Language Pack is already Installed in your Server,So you have to IGNORE the message and move forward
    with your Diagnostic Agent Installation.
    Thanks & Regards
    Ajitabh

  • SLIN - Extended Prog. check - Erorrs for VALUE, QUANTITY fields??

    Hi Experts,
    I need to get 0 in ERRORS column for the execution of SLIN to z_prog.
    So, in this prog. am displaying some VALUES, QUANTITIES in ALV report.
    So. When I run the SLIN for this z_prog. am getting the following ERROR texts
    Use addition CURRENCY when outputting WA_ALV-VALUE
    Use auxiliary field when outputting with MESSAGE
    (You can hide the message using "#EC UOM_IN_MES)
    Use addition UNIT when outputting WA_ALV-QUNTY
    Use auxiliary field when outputting with MESSAGE
    (You can hide the message using "#EC UOM_IN_MES)
    pls. note that, I shild not hide them, as suggested ´by SLIN.
    So,
    1) pls. let me know that How to fix them?
    2) Wht does it mean?
    thanq
    Edited by: Srinivas on Jun 11, 2008 12:58 AM

    Hi Aii,
    To avoid the error in EPC for Currency and Quantity u can use
    addition of CURRENCY with single quot system will take the default currency
    And for Quantity u can use NUIT with single quot
    EXAMPLE
    write:  wa_record-v_exbas currency '  '.
    write:  wa_record-lgmng unit '  '.
    We can use the decimal places also
    write:  wa_record-v_exbas currency '  ' decimals 2
    Regard
    Anees Ahmed

  • Bypass Prerequisits Check errors for packages

    Trying to install 11gR2 on a Desktop PC with Debian 'squeeze' (ver. 6) OS . Installed all required packages suggested. However, am now stopped at the Prerequisite Checks mainly because all the package versions listed as errors (29 packages) are more current than those require by the install. I was hoping not to go back, download and install older versions of the packages. Is there a way to bypass these errors?

    Hi;
    Trying to install 11gR2 on a Desktop PC with Debian 'squeeze' (ver. 6) OS . Installed all required packages suggested. However, am now stopped at the Prerequisite Checks mainly because all the package versions listed as errors (29 packages) are more current than those require by the install. I was hoping not to go back, download and install older versions of the packages. Is there a way to bypass these errors?Debian is not supported, its mean you could hit many error message during installation and also after installation, i suggest use OEL distro(free) instead of Debian
    Regard
    Helios

Maybe you are looking for

  • Creation of individual object in crm

    Hi All, Can anyone help me how to create an Individual Object in CRM. I have created Equipment in R/3,replicated to CRM. Now when i am trying to create Installed Base i dont find any Individual Objects on the Individual Object tab in the Installed Ba

  • How to populate custom table field value into standard DFF

    Hi Gurus I am newbie to the OAF I have a requirement to populate the custom table field value into standard DFF. we enabled the DFF in ReqDistDFFOnAcct(po_req_distributions_all). On the requisition tab as soon as i click on the checkout button, the c

  • Changing a partition drive size

    I am using an iMac running OS X 10.8.5 with a 3TB memory disk drive. When initially settin gup the system with the help of the Apple support team, a partition drive was established for use by iPhoto (iPhoto Disk Image.dmg) to store all the photos dow

  • SUMCT result in query is incorrect!!!

    Hi, I am using the function SUMCT which is expected to give the sum of the values existing in the column in question... I had used this function to one of the CKFs and when i cross check it the values are not matching... sysntax was SUMCT 'CKF' as we

  • ZCM 11.2.3a to 11.2.4 Update stuck on "Update Assigned"

    We are updating from ZCM 11.2.3a to 11.2.4 and then hopefully to 11.2.4MU1 to fix some issues with imaging new machines. I downloaded both updates and imported them using the zman sui commands and then waited for replication to finish to all servers