Pls give the way to  debug  for PI

Hi experts,
In IR, I've tested the mapping.It can work, pass.
In ID,  I finished all steps, but it failed in  "Test Configuration". How do find the error? who give me the full way to debug?
I'm a senior programmer, I can set breakpoints, step over in IDE software if exception.
pls give the way to  debug  for PI
Many thanks.

Hi Mikenl,
We cannot set break points in SAP PI.
In ID, I finished all steps, but it failed in "Test Configuration". How do find the error? who give me the full way to debug?*
Can you tell me how exactly are you testing your scenario? Is it through RWB --> Test Tab?? or is it an end to end test involving Sender and Receiver.
If you ever face any error in SAP PI during Test you can do the following:
1. Check SXI_MONITOR to see if your message has failed there, you can read the error in the trace level of the message.
2. For monitoring your message you can use Runtime Workbench where you can goto Message Monitoring and check at which level the message has failed (Adapter as well Integration Engine level). There is tab called "Detail" which when clicked after selecting your message will give you the details of the processing of your message.
3. Sometimes it may happen that everything is succesful at Integration Engine level but message has failed at adapter engine level. In this case check your Receiver communication channel which will be in error and will give you the details of the error.
Cheers
Dhwani

Similar Messages

  • Pls give the menu path for pricing schema for PO

    Pls give the menu path for pricing schema for PO
    Thanx
    Vikas Chhabra

    Hi,
    we assign account assignment category in PO.Here is the path
    IMG>Materials Management>Purchasing>Account Assignment>Maintain Account Assignment Categories OME9
    Based on account assignment category you use in PO, it will ask you cost object in PO
    E.g P (project) you need to enter G/L and WBS element
          N Network     G/L and Network
    Like in SD account determination,  OMWB is MM and FI integration.
    Regards,
    Chandra

  • When will Apple give the Battery Percentage option for the iPod?

    When will Apple give the Battery Percentage option for the iPod?

    It's hard to tell since Apple has never included it in all generations of the iPod and I assume you mean the iPod Touch.
    Apple could place it in the sixth generation iPod Touch but Apple has been pretty tight lipped on the possiblity of one coming. It's been since 2012 when the fifth generation arrived in the fall so the iPod lineup is due for an upgrade. Some reports say it won't come this year and others say different. But with the new iPhone expected to debut with larger screen it is still possible the new iPod will come with a larger screen alongside the new iPhone. It happened back in 2012.
    But no one really knows. Until then download an app to measure your battery percentage. I have battery doctor and it's really useful to determine how much battery my iPod has left and it also can clean up your memory and any junk files.

  • Pls send the JCA rar file for Websphere

    Hi All,
    Is there any JCA rar file for IBM Websphere server? I want to access BAPI from through my application in Websphere. I dont have JCo. I want to use JCA only.
    Where can I find the JCA rar file for Websphere server?
    If you have the rar file that need to be delpoyed in WEbsphere pls send to : [email protected]
    Thanks In advance
    George

    Hi,
    When you configure the Connection Factory for FTP Adapter in Admin Console,along with the hostname, username, password, port; we also need to give the path of remote location as where
    you want to write the file in remote Server. While configuring the Connection Factory, find the attribute called ftpAbsolutePathBegin. Please fill this
    attribute with the path like /soa/ftp/file (example path)
    Also , try to bounce the server and test the same...
    Please try this and let me know...
    Thanks,
    N

  • Could you pls give the details about the Unicode conversion during Upgrade

    Hi,
    Can anyone give details about the Unicode conversion during SAP Upgradation fro 4.6C to ECC6.
    Waiting for quick response
    Best Regards,
    Padhy

    Hi,
    These are the few points i gathered during my upgradation project.
    Before starting any upgradation project, it is necessary to take up the back-up of the existing systems. As we are going to upgrade the entire system, we will be changing so many things and if something happens, without back-up, we will be in a trouble.
    So it is advised to keep a back-up of the existing system.
    Say for example we have the existing system E4B which is of Version 4.6C. Now we want to upgrade it to Version 4.7. Let us see how we can do it.
    Version upgrades not only means that we need to run the new Version CD over the existing Version System but only involves some other thing.
    Version Upgrade involves the following Steps.
    Say we want to upgrade for Version 4.7 from Version 4.6, which is in the System E4B. Now we created one more system called as E1B in which the upgradation for Version 4.7 can be done.
    • First copy the entire E4B system into the E1B System which is created for Version 4.7.
    • Apply the Version 4.7 CD provided by SAP over the E1B System.
    • Now check whether all the functionalities that was in E4B system works fine with E1B system also.
    Thus the Version Upgrade involves two steps.
    1. SAP Upgradation with the help of the CD
    2. Manual Upgradation.
    1. SAP Upgradation with the help of the CD
    This is nothing but after taking the copy of the existing system into a new system, the upgradation CD from SAP is applied over the new system.
    2. Manual Upgradation.
    This Manual Upgradation involves
    2.1 Upgradation of Standard Objects
    2.1.1 SPAU Objects
    2.1.2 SPDD Objects
    2.2 Upgradation of Custom Objects.
    Upgradation of Custom Objects can be placed under the following three categories.
    Unicode Compliance
    Retrofit
    Upgrade
    Please Find below some of the common Unicode Errors and their solutions
    1. Error:
    In case of Translate Error; ‘Dangerous use of Translate in Multilingual system.’
    Correction:
    To correct the Error occurring on TRANSLATE statement – use this additional statement before the Translate statement.
    SET LOCALE LANGUAGE sy-langu.
    This statement defines the Text Environment of all the programs & internal sessions in the language specified in the LANGUAGE KEY, which in this case is “sy-langu”, i.e. the log on language of the user.
    2. Error:
    In case of Open Dataset Error; ‘Encoding Addition must be included.’
    Correction:
    This Error occurs only when the MODE is TEXT.
    To correct the Error occurring on OPEN DATASET statement – use this statement instead.
    OPEN DATASET dataset_name FOR access IN TEXT MODE ENCODING DEFAULT.
    Where: dataset_name – NAME OF THE DATASET.
    Access – INPUT or OUTPUT or APPENDING or UPDATE.
    DEFAULT - Corresponds to UTF-8 in UNICODE systems &
    NON_UNICODE in NON-UNICODE systems.
    3. Error:
    In case of the usage of the Obsolete FM UPLOAD/DOWNLOAD or WS_UPLOAD/DOWNLOAD; ‘Function module UPLOAD is flagged as obsolete.’
    Correction:
    The FM GUI_DOWNLOAD/UPLOAD is used.
    The variations to be made in the parameters of the FM:
    1. Filename – It must be of STRING type.
    2. Filetype – “DAT” is not used any longer, instead “ASC” is used.
    3. Field Separator – The default value “SPACE” is used, incase for a TAB separated file “X” can be used.
    4. Error:
    In case of CURRENCY/UNIT Addition Error; ‘Use addition CURRENCY/UNIT when outputting.’
    Correction:
    The CURRENCY addition specifies the currency-dependant decimal places for the output of the data objects of type i or p. To obtain the currency-key, the field CURRKEY of the table TCURX is used. The system determines the number of the decimal places from the field CURRDEC of the selected CURRKEY.
    To correct this error follow the following method:
    WRITE: /3 'TOTAL',' ', TOTAL.
    WRITE: /3 ‘TOTAL’,’ ‘, TOTAL CURRENCY ‘2’. --- Where ‘2’is the Currency Key for Getting 2 decimal places.
    5. Error:
    In case of TYPE X Error; ‘Variable must be of C, N, D, T or STRING type.’
    Correction:
    We need to change all the Type X (Hexadecimal) variables to Type C with their values unchanged.
    So the method to be followed is:-
    1. Load the definition of the class CL_ABAP_CONV_IN_CE or CL_ABAP_CHAR_UTILITIES.
    2. Declare the variable as Type C, and use the method UCCP(‘XXXX’) of the class CL_ABAP_CONV_IN_CE where XXXX represents the 8-bit Hexadecimal value and incase the variable holds a Hex value for a Horizontal Tab , then the Attribute “HORIZONTAL_TAB” of the class CL_ABAP_CHAR_UTILITIES can be used directly instead of using the method UCCP.
    E.g.:
    i) *DATA: TAB TYPE X VALUE 09, “Tab character
    CLASS: CL_ABAP_CHAR_UTILITIES DEFINITION LOAD.
    DATA TAB TYPE C VALUE CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.
    ii) * DATA: CHAR TYPE X VALUE 160.
    CLASS: CL_ABAP_CONV_IN_CE DEFINITION LOAD.
    DATA CHAR TYPE C.
    CHAR = CL_ABAP_CONV_IN_CE=>UCCP(‘00AO’).
    (Here ‘00A0’ is the Hexadecimal equivalent of the decimal 160).
    3. Incase the TYPE X Variable has a length more than 1, then an internal table must be created for the variable.
    E.g.:
    CLASS: CL_ABAP_CONV_IN_CE DEFINITION LOAD.
    DATA : LF(2) TYPE X VALUE 'F5CD'.
    DATA : BEGIN OF LF,
    A1 TYPE C,
    A2 TYPE C,
    END OF LF.
    LF-A1 = CL_ABAP_CONV_IN_CE=>UCCP('00F5').
    LF-A2 = CL_ABAP_CONV_IN_CE=>UCCP('00CD').
    6. Error:
    In case of the Character “-“Error; ‘The Character “-“can’t appear in names in Unicode Programs.’
    Correction:
    The Character “-“(Hyphen) appearing in Variable names is replaced by the character “_” (Under Score) for Unicode/Upgrade Compliance.
    E.g.:
    *wk-belnr LIKE bkpf-belnr,
    *wk-xblnr LIKE bkpf-xblnr,
    *wk-date LIKE sy-datum,
    *wk-wrbtr LIKE bseg-wrbtr,
    *wk-name1 LIKE lfa1-name1,
    *wk-voucher(8) TYPE c.
    wk_belnr LIKE bkpf-belnr,
    wk_xblnr LIKE bkpf-xblnr,
    wk_date LIKE sy-datum,
    wk_wrbtr LIKE bseg-wrbtr,
    wk_name1 LIKE lfa1-name1,
    wk_voucher(8) TYPE c.
    7. Error:
    In case of The SUBMIT-TO-SAP-SPOOL Error; ‘you should not use the statement SUBMIT-TO-SAP-SPOOL without the WITHOUT SPOOL DYNPRO addition. ‘
    Correction:
    1. Declare variables of type PRI_PARAMS, ARC_PARAMS, and a variable of TYPE C which would be used as a VALID FLAG.
    2. Call the FM GET_PRINT_PARAMETERS:
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
    EXPORTING
    ARCHIVE_MODE = '3'
    DESTINATION = P_DEST
    IMMEDIATELY = 'X'
    IMPORTING
    OUT_ARCHIVE_PARAMETERS = archive_parameters
    OUT_PARAMETERS = print_parameters
    VALID = valid_flag
    EXCEPTIONS
    INVALID_PRINT_PARAMS = 2
    OTHERS = 4
    3. Use the SUBMIT-TO-SAP-SPOOL statement.
    E.g.:
    •     submit zrppt500
    •     using selection-set 'AUTO3'
    •     with res_no eq lo_rsnum
    •     with sreserv in preserv
    •     to sap-spool destination p_dest
    •     immediately 'X'. "print immediate
    DATA: print_parameters type pri_params,
    archive_parameters type arc_params,
    valid_flag(1) type c.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
    EXPORTING
    ARCHIVE_MODE = '3'
    DESTINATION = P_DEST
    IMMEDIATELY = 'X'
    IMPORTING
    OUT_ARCHIVE_PARAMETERS = archive_parameters
    OUT_PARAMETERS = print_parameters
    VALID = valid_flag
    EXCEPTIONS
    INVALID_PRINT_PARAMS = 2
    OTHERS = 4
    Submit zrppt500
    Using selection-set 'AUTO3'
    With res_no eq lo_rsnum
    with sreserv in preserv
    to sap-spool
    SPOOL PARAMETERS PRINT_PARAMETERS
    ARCHIVE PARAMETERS ARCHIVE_PARAMETERS
    WITHOUT SPOOL DYNPRO.
    8. Error:
    In case of Message Error; ‘Number of WITH fields and number of Place Holders are not same ‘.
    Correction:
    Split the statement after WITH into the same number as the place holder for that Message ID.
    E.g.:
    1. * MESSAGE E045.
    MESSAGE E045 WITH '' ''.
    2. in program ZIPI0801
    •     Start of change for ECC6
    •     message e398(00) with 'Could not find access sequence'
    •     'for condition type:'
    •     p_ptype.
    message e398(00) with 'Could not find '
    'access sequence'
    'for condition type:'
    p_ptype.
    •     End of change made for ECC6
    9. Error:
    In case of Move between 2 different Structures; ‘The structures are not mutually convertible in a Unicode program.’
    Correction:
    Make both the Data Types compatible and then assign the contents.
    E.g.:
    The statement –“move retainage_text to temp_text.” Gives an error, where RETAINAGE_TEXT is an internal table and TEMP_TEXT is a string of length 200.
    A Feasible solution for this is to specify from which position to which position of the string, the fields of RETAINAGE_TEXT should be assigned.
    TEMP_TEXT+0(1) = RETAINAGE_TEXT-DQ1.
    TEMP_TEXT+1(1) = RETAINAGE_TEXT-HEX.
    TEMP_TEXT+2(20) = RETAINAGE_TEXT-FILLER1.
    TEMP_TEXT+22(15) = RETAINAGE_TEXT-AMT_DUE.
    TEMP_TEXT+37(8) = RETAINAGE_TEXT-TEXT.
    TEMP_TEXT+45(10) = RETAINAGE_TEXT-DUE_DATE.
    TEMP_TEXT+55(1) = RETAINAGE_TEXT-DQ2.
    10. Error:
    In case of ‘no description found’; ‘add a GUI title’.
    Correction:
    In this type of error gui title is generally missing so add a GUI title to the module pool.
    11. Error:
    In case of ‘writing internal or transparent table’
    Correction:
    Write individual fields.
    E.g.:
    WRITE: / EXT. --> EXT should be a character type field
    WRITE: / EXT-ZZSTATE, EXT-LINE_NO, EXT-LINE_TXT, EXT-AMT, EXT-ZZSKUQTY.
    12. Error:
    In case of ‘combination reference table/field S541-UMMENGE does not exist’
    Correction:
    Was due to error in reference table S541. TABLE S541 has errors
    1)”Foreign key S541- ZZMARKET (ZZMARKET AND KATR2 point to different domains)”
    2)”Foreign key S541-ZZACQUIGRP (ZZACQUIGRP AND KATR8 point to different domains)”
    Changed the domain of ZZMARKET (from ZMKCODE to ATTR2)
    And that of ZMKCODE (from ZACCODE to ATTR8)
    13. Error:
    In case of ‘KEY does not exist’
    Correction:
    The reference table for field KBETR was KNOV earlier changed it to RV61A as KNOV was in turn referring to RV61A.
    14. Error:
    Incase of ‘WRITE’ statement, ‘Literals that take more than one line is not permitted in Unicode systems.’
    Correction: To correct this error, we need to align the spaces accordingly so that the statement doesn’t go beyond the line.
    15. Error:
    Incase of Data statement, ‘The data type ZWFHTML can be enhanced in any way. After a structure enhancement, this assignment or parameter might be syntactically incorrect………..’
    Correction: To correct this error, instead of “like” in the Data statement, use “type”.
    16. Error:
    Incase of DESCRIBE statement, ‘DESCRIBE can be used only with IN BYTE... Or IN CHARACTER mode in Unicode systems.’
    Correction: To correct this error, use additional text, IN BYTE MODE / IN CHARACTER MODE along with this statement.
    CHARACTER MODE is added when the data object is of flat/ character type.
    BYTE MODE is added when the data object is a deep structure.
    Syntax: DESCRIBE FIELD data_obj : LENGTH blen IN BYTE MODE,
    LENGTH clen IN CHARACTER MODE.
    Where blen and clen must be of type I.
    17. Error:
    Incase of DO-LOOP Error,’ In Do loop range addition needed‘
    Correction:
    An internal tables is declared and the two fields (VARYING field and NEXT field) were
    Included inside the internal table
    E.g.: In program SAPMZP02
    DO 11 TIMES
    •     VARYING STATION_STATE FROM STATION1 NEXT STATION2. “ECC6
    CASE SYST-INDEX.
    WHEN ‘1’
    STATION_STATE = STATION1.
    WHEN ‘2’
    STATION_STATE = STATION2.
    WHEN ‘3’
    STATION_STATE = STATION3.
    WHEN ‘4’
    STATION_STATE = STATION4.
    WHEN ‘5’
    STATION_STATE = STATION5.
    WHEN ‘6’
    STATION_STATE = STATION6.
    WHEN ‘7’
    STATION_STATE = STATION7.
    WHEN ‘8’
    STATION_STATE = STATION8.
    WHEN ‘9’
    STATION_STATE = STATION9.
    WHEN ‘10’
    STATION_STATE = STATION10.
    WHEN ‘11’
    STATION_STATE = STATION11.
    18. Error:
    Incase of the parameter QUEUE-ID Error,’ QUEUE-ID’ is neither a parameter nor a select option in program rsbdcbtc.’
    Correction:
    The parameter in program rsbdcbtc is QUEUE_ID and so is changed in this program
    E.g.: In program Z_CARRIER_EDI_INTERFACE
    •     submit rsbdcbtc with queue-id = apqi-qid and return. "ECC6
    •     The parameter name changed by replacing '-' with '_' as in program rsbdcbtc "ECC6
    Submit rsbdcbtc with queue_id = apqi-qid and return. "ECC6
    19. Error:
    Incase of EPC Error,’ Field symbol <TOT_FLD> is not assigned to a field ‘.
    Correction:
    This error couldn't be rectified as the error occurs in a Standard SAP include- LSVIMF29.
    The OS Note - 1036943 needs to be applied.
    Error:
    OPEN DATASET P_FILE FOR OUTPUT IN TEXT MODE.
    Correct:
    OPEN DATASET P_FILE FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    Error:
    Constants : c_tab type x value '09' .
    Correct:
    Constants : c_tab type abap_char1 value cl_abap_char_utilities=>horizontal_tab .
    Error:
    Data : begin of output_options occurs 0 . Include structure ssfcompop.
    Data : end of output_options .
    Correct:
    Data : output_options type standard table of ssfcompop with header line .
    Error:
    PARAMETERS : NAST TYPE NAST .
    Correct:
    PARAMETERS : NAST TYPE NAST NO-DISPLAY .
    Replace WS_DOWNLOAD and WS_UPLOAD by
    GUI_UPLOAD and GUI_DOWNLOAD and check the import and export parameter types , do the changes accordingly. Because FILENAME paramater type is different because of this it will give dump.
    For issue during Issue using SO_NEW_DOCUMENT_ATT_SEND_API1 Function module, the solution is After this FM we should put COMMIT WORK.
    Issue:
    Moving data from one structure to another structure if those two structures are not compatible
    Solution:
    we should use move-corresponding or field by filed we need to move it.
    If database structures are different in 4.6c and ECC6.0,
    Then we should go with append structure concept.
    While testing the report if it gives dump at Select query level or any database or view level,then just goto that table or view and goto the data base utility(se14) adjust the database. But make sure that selected radio button in se14 transaction should be activate and adjust database
    Also Check this link.
    http://help.sap.com/saphelp_nw04/helpdata/en/62/3f2cadb35311d5993800508b6b8b11/frameset.htm
    Reward points if helpful.
    Regards,
    Ramya

  • Is Ciniform still the way to go for editing HD on Premiere CS4?

    Hi all,
    I may have a opportunity to edit an inde film shot in on P2 HD 1080p.  However, i have a few questions....
    0. can Premiere CS4 read and edit MXF files?
    1. I'm not sure if my Premiere CS4 system will handle it natively without using an intermediate  codec like Ciniform. The files have already been transfered to an external drive which i will then transfer to my systems' video drive. The following is my current system configuration:
    . Premiere CS4
    . Windows 7 x64
    . 12gb of DDR3 ram
    . Intel 920 quad core processor
    . 1tb (2x500gb) video drive
    . 1tb (2x500gb) storage drive.
    2. The client is not sure the frame rate the video was shot in, either 24p or 59p. Is there a way to determine the correct frame rate so i can select the proper preset in premiere? I may be able to use VLC to view the codec information.

    nados wrote:
    Thanks, that's good to know.
    Now i just have to figure out how to get paid for editing this indie film.  They called asking me to edit it now and get paid later - yea right!
    Get paid before you deliver it. 

  • Are Exchange accounts no longer the way to go for email, contacts, calendar, etc. with ios

    I have been reading around and learning that Google is not supporting Exchange accounts for ios7 any longer. I believe they still work if you previously used them. But I've also had some trouble with syncing elements of this account to my iPad.
    Is it recommended to use Google accounts instead of Exchange with the iPad/iPhone?

    Thanks. I cannot get all the calendars to sync with Google Exchange. So I double up with Google and select the calendars that won't sync.
    The down side of Google is that you cannot change colors of calendars (and I have a few that are obscuring each other). That's the main reason I am syncing to both at once (or rather to the obstinate calendars).
    I'd love to find a way to get all cals to sync via exchange, but they won't, above all my main personal google calendar. They work fine on the iPhone, just not on the iPad since I deleted the account and reinstalled it.

  • Are Exchange accounts no longer the way to go for email, contacts, calendar, etc. with iOS 7?

    I have been reading around and learning that Google is not supporting Exchange accounts for ios7 any longer. I believe they still work if you previously used them. But I've also had some trouble with syncing elements of this account to my iPad.
    Is it recommended to use Google accounts instead of Exchange with the iPad/iPhone?
    One residual advantage of Exchange, when it works, is outlined in this thread.
    thanks in advance.

    Thanks. I cannot get all the calendars to sync with Google Exchange. So I double up with Google and select the calendars that won't sync.
    The down side of Google is that you cannot change colors of calendars (and I have a few that are obscuring each other). That's the main reason I am syncing to both at once (or rather to the obstinate calendars).
    I'd love to find a way to get all cals to sync via exchange, but they won't, above all my main personal google calendar. They work fine on the iPhone, just not on the iPad since I deleted the account and reinstalled it.

  • How the Requests are Transported  -Pls give the info in Detail

    Hi,
      Anybody pls let me know how the requests are transported from Development to
    Quality.I have a problem.My one request contains the Tasks of my other request.
    Pls let me know how to include mismatched task in the actual Request.I got assigned the task to transport tehse requests.Pls let me know

    Hi Sunny,
    you have to assign the neccessary objects need to be transported to Quality using Transport Connection in RSA1
    while assigning an object if you find it is already assigned to some other request then first release the existing request and then go ahead with new request.
    Always first release the Tasks and thn release the request in SE09/10
    To check whether if one object is assigned to multiple requests
    Go to Se03 >Objects in Requests> Search for Objects in Requests/Tasks --> Object selection --> select the respective object like cubes, ods,infoobjects > enter the technical name> and start searching
    Thanks ,
    Sudhakar.

  • What settings give the highest quality video for playback on an ipad?

    Hello there,
    I have had success exporting movies and playing them on my ipad by simply selecting the size that shows is compatible with ipad in the share/export format choosing chart.
    However, knowing that I have more control by exporting using quicktime, I'm wondering what the best video type and best settings are for ipad viewing?
    thanks in advance
    Marc

    If you Share to Media Browser you'll see the largest available iPad format for your media.

  • Error while activating the Master Data InfoSource for attributes

    Hai
    Im trying to load the attributes for master data characteristics .
    I created the InfoSource and when im trying to activate it .
      Then it gives the following error like below
    Diagnosis
    An error occurred in the program generation:
    Program / Template:   RSTMPL80
    Error code / Action: 6
    Row:        505
    Message:    The data object "P_S_COMM" has no component called
    Procedure
    If the problem occurred during the data load or transport, activate the transfer rule.
    If the problem persists, search in the SAP note system under 'RSAR 245'
    So please tell the what is the error and how to resolve this issue.
    And pls give the error 'RSAR 245' message from SAP note system.
    I will assign the points
    bye
    rizwan

    hi Rizwan,
    check if helps Note 602318 - RSAR 245 error analysis with RSTMPL80
    Summary
    Symptom
    The process of generating transfer rules or loading data terminates with error RSAR 245.
    The long text for error message RSAR 245 indicates the cause of the generation error.
    1. Error code: 6
    a) Message: The P_S_COMM data object has no component
    This is very likely to be due to an 'obsolete' communication structure.
    b) Message: <table name> is already declared.
    c) Other messages
    2. Error code: 7
    Other terms
    RSAR245, RSAR 245, activate transfer structure, monitor, request
    Solution
    1. Error code: 6
    a) 'Obsolete' communication structure:
                Due to an optimization algorithm, pressing the 'Generating button' does not have any affect on the communication structure. Therefore, use the following workaround:
    Select 'Communication structure' -> 'Change'.
    Add any InfoObject (for example, '0MATERIAL') to the communication structure -> 'ENTER'.
    Communication structure ---> 'Save'
    Selet the InfoObject you inserted and delete it.
    Communication structure ---> 'Save'
    Communication structure -> 'Generate'.
    a) Message: <table name> is already declared. Check whether the local part of your routines contains TABLE statements. TABLE statements always have global validity and should therefore be in the global part of the routine.
    b) If the error occurs when data is being loaded, the transfer rule should be generated using RSA1.
    In many cases, generating transfer rules using RSA1 results in a detailed error message.
    2. Error code:
               Program to be generated is locked by parallel process.
    This error can sporadically occur if parallel processes simultaneously try to generate the same program.
    Unfortunately, you cannot completely prevent the error from occurring since these types of lock situations can still crop up during data loading in parallel processes. We are currently working on improving system stability relating to lock situations during the load task.
    Reloading usually works without any problems.

  • Best Way to Debug an Inbound IDoc

    Hi
    As previous posts suggest I am having trouble with IDoc PORDCR101 message type pordcr   bapi_po_create
    i input
    comp code 3000
    doctype      NB
    vender        58121
    purchorg     3000
    purchgrp     000
    doc date     01112007
    item           0010
    material     scw1212
    qty            0001000.000
    currency    USD
    scheduleitem  0010
    deldate           01/18/2007
    qty                 0001000
    i put this exact info in se37 with bapi_po_create
    I can successfully create a new po
    now i try to do the same thing in we19 standard inbound
    using idoc pordcr101
    each time i try i get status 51 enter purchasing org
    what is the best way to debug this thing so that i can see what is going on
    i am entering the purchasing org and for some reason it does not see it
    what can i do in the way of debugging?????
    HELP!!!!!!

    Janice,
    conversion-exit routines are used when the contents of a screen field(SAP GUI) are converted from display format to SAP-internal format and vice versa.
    --Archana

  • How to Suppress the POP UP window for Print out Device

    Hi All,
    I have One ALV Grid report and in this report I want to SUBMIT another report which, when executes gives the POP UP window for Printer Device and sends the output to that device. if we give LOCL, sends output to Spool.
    So I want to Suppress that POP UP Window and by default that POP UP window should take 'LOCL' as Printer Device.
    Thanks in advance,
    Helpful answer get awareded.

    On the submit command is a spool parameters option.
    The addition WITHOUT SPOOL DYNPRO suppresses the print dialog box that is displayed as standard when you use the addition TO SAP-SPOOL.
    The addition SPOOL PARAMETERS is used to transfer the print parameters in a pri_params structure that belongs to the data type PRI_PARAMS from the ABAP Dictionary.
    PRI_PARAMS-PDEST specificies the output device.

  • How do you save your artwork in Photoshop CC 2014 as an PNG or JPEG file when it doesn't give the option?

    How do you save your artwork in Photoshop CC 2014 as an PNG or JPEG file when it doesn't give the option?
    Thanks for your time and help in advance.

    Thanks for replying. I actually got it to work. I had my work set to 32 Bits/Channel in stead of 16 or 8. Once I changed it to 16bit/Channel, it gave me the option to save as either file. Thanks again.

  • TS3694 I was updating my ipad because it prompted me to for OIS 7 and 2/3rd the way my Ipad jammed up and now it is asking me to connect to Itunes.  I tried to restore and is gives me Error 3194.  Whassup!!!! Now my Ipad will not work

    I was updating my Ipad because it prompted me to for IOS 7 and 2/3rd of the way my Ipad Jammed and told me to plug in to Itunes to restore.  Now I get an Error #3194 and my Ipad is unusable.  Help!!!!!

    What was the error number?  That would be very useful since the following gives actions for various errors.
    http://support.apple.com/kb/TS3694
    Try manually placing the iPod in recovery mode to see if that will make the iPod visible in iTunes.  See:
    http://support.apple.com/kb/HT1808

Maybe you are looking for