BROWSER BASED PI SHEET INPUT FIELDS NOT EDITABLE.

Hi Gurus,
I am working on browser based PI sheet. I am able to generate PI sheet but input fields for Browser based PI sheet are not editable. I can not post my entries in T. Code:CO60.
This is happening to all recipe Groups also.
Please give inputs. Thanks in advance.
Regards,
Pradeep

Hi Dhawal,
I am using process Instruction Type 0 (Universal Type) for Process Instruction Category.
I am using browser based PI sheet. It is getting generated but I am unable to Put information in Input
fields to post data.
When I see error logs I get following Error:
Data transfer to the server: data contains error.
I am not using PI category 7 in master Recipe.
Same settings I am using in another client and it is executing. But for this server I am facing Problem.
Can I have your contact no. so we can discuss in detail.
Pradeep
9820969465
Edited by: PRADEEP on Mar 20, 2009 4:54 PM
Edited by: PRADEEP on Mar 20, 2009 4:56 PM

Similar Messages

  • By-product handling in Browser based PI sheet.

    Hi PP Gurus,
    Could anybody please explain how to handle By-product scenario in Browser based PI sheet? I know PI_CONS and PI_PROD are the two standard Process message categories for GI and GR respectively. But I'm not getting, where exactly By-product will be covered?
    Thanks & Regards,
    Abu Arbab

    Hi Ratan/Brahmaji,
    I'm sorry if I misinterpreted issue. The actual thing is say Process order 1000 is there which is having one component RM-1. In process order 1000, I've not mention any by-product. Now control recipe generated at the time of Process order release. I could see PI Browser based PI sheet in CO60 transaction code. From configuration, PI_CONS is the process message category that I assigned to Process instruction category. Now when I'm filling PI sheet in Edit mode and trying to post a by-product with -(negative) sign after quantity in PI sheet and trying to complete the PI sheet, system is not accepting the entry for by-product. Moreover when I'm removing -(negative) sign after quantity for by-product, system is posting it as GI and in transaction code CO54 when I tried to post the message that time it's throwing an error of Deficit stock for by-product.
    So what's the way to come out of that? Please help.
    Thanks & Regards,
    Abu Arbab

  • Cor6 jump in browser based PI-sheet

    Dear SAP experts, I am using browser based PI-sheets and trying to call cor6 transaction from the PI sheets. I am using the characteristics in the order below which i think it is ok. the issue I have is that i get the PI sheet generated, i get the bottom displayed on the browser PI sheet but when clicking on the buttom it does not trigger me to the COR6 transaction. Do you know why
    1     PPPI_FUNCTION_NAME     COPF_ENTER_CONFIRMATION
    2     PPPI_BUTTON_TEXT     Enter Proc. Order confirmation
    3     PPPI_FUNCTION_DURING_DISPLAY     allowed
    4     PPPI_EXPORT_PARAMETER     PROCESS_ORDER
    5     PPPI_PROCESS_ORDER
    6     PPPI_EXPORT_PARAMETER     OPERATION
    7     PPPI_PHASE
    8     PPPI_EXPORT_PARAMETER     TCOD
    9     PPPI_TRANSACTION_CODE     COR6N

    Hi Ratan/Brahmaji,
    I'm sorry if I misinterpreted issue. The actual thing is say Process order 1000 is there which is having one component RM-1. In process order 1000, I've not mention any by-product. Now control recipe generated at the time of Process order release. I could see PI Browser based PI sheet in CO60 transaction code. From configuration, PI_CONS is the process message category that I assigned to Process instruction category. Now when I'm filling PI sheet in Edit mode and trying to post a by-product with -(negative) sign after quantity in PI sheet and trying to complete the PI sheet, system is not accepting the entry for by-product. Moreover when I'm removing -(negative) sign after quantity for by-product, system is posting it as GI and in transaction code CO54 when I tried to post the message that time it's throwing an error of Deficit stock for by-product.
    So what's the way to come out of that? Please help.
    Thanks & Regards,
    Abu Arbab

  • How to make fields not editable in screen

    Hi gurus,
    I have a table and i need to make some fields not editable depending on the values of other fields of the table .
    Example :
    my table have these fields : begin_date, name.
    If the begin_date < sy-datum  -->  then the field  ' name' should not be editable.
    Tankyou.

    Hi,
      OK. I did some code and was able to get the results as you want. Created a table YTESTHV with two fields YYDATE and NAME. Generated a two screen maintenence for the table. Screen 2 - Overview screen, screen 3 Detail screen.
    Overview screen.
    PBO.
    PROCESS BEFORE OUTPUT.
    MODULE LISTE_INITIALISIEREN.
    LOOP AT EXTRACT WITH CONTROL
      TCTRL_YTESTHV CURSOR NEXTLINE.
       MODULE LISTE_SHOW_LISTE.
       MODULE DISABLE_FIELDS.
    ENDLOOP.
    MODULE DISABLE_FIELDS
      move extract to YTESTHV.
    if YTESTHV-yydate > sy-datum.
       loop at screen.
        if screen-name = 'YTESTHV-NAME'.
         screen-input = '0'.
         modify screen.
         else.
         screen-input = 1.
         modify screen.
        endif.
        endloop.
    endif.
    Details screen PBO.
    PROCESS BEFORE OUTPUT.
    MODULE detail_init.
       module change_mode.
    module change_mode
    if YTESTHV-yydate > sy-datum.
       loop at screen.
         if screen-name = 'YTESTHV-NAME'.
           screen-input = 0.
           modify screen.
         endif.
       endloop.
    endif.
    When YYDATE is greater than sy-datum field NAME is display only.
    Regards,
    Himanshu

  • Browser-based PI sheet - Export parameters

    Hi All,
    I'm working on browser based PI sheet.
    I have a custom function module with characteristic PPPI_FUNCTION_NAME linked to a Process message.
    I'm not able to add a new export parameter and table parameters (for repeated data request).
    Only an export parameter at the moment has been defined:
    Characteristic                            Characteristic value
    PPPI_EXPORT_PARAMETER     PROCESS_ORDER
    PPPI_PROCESS_ORDER
    The new export parameter should be linked to another process message, defined as below:
    Characteristic                            Characteristic value
    PPPI_VARIABLE                     VAR_REQ_BATCH_DENSITY
    PPPI_REQUESTED_VALUE     ZPPPI_BATCH_DENSITY_BLEND
    Table parameters with Material data for repeated data request should be linked to a process message defined as below:
    Characteristic                            Characteristic value
    PPPI_INPUT_REQUEST     Material
    PPPI_REQUESTED_VALUE     PPPI_MATERIAL
    PPPI_INPUT_REQUEST     Actual use:
    PPPI_REQUESTED_VALUE     PPPI_MATERIAL_CONSUMED
    PPPI_INPUT_REQUEST     UoM:
    PPPI_REQUESTED_VALUE     PPPI_UNIT_OF_MEASURE
    PPPI_INPUT_REQUEST     Batch:
    PPPI_REQUESTED_VALUE     PPPI_BATCH
    PPPI_INPUT_REQUEST     Storage Loc:
    PPPI_REQUESTED_VALUE     PPPI_STORAGE_LOCATION
    Thanks in advance.
    Regards,
    Gabriele

    Hi,
    Use Characteristic PPPI_PHASE_SHORT_TEXT as a Out put characteristic in your PI category.
    Regards,
    Dhaval

  • Guide to create Browser-Based PI Sheet in ERP Release 5.0

    Hi everybody,
    I tried to change the type of control recipe destination without success. Who can help me to configure the system? I'm looking for a guide line for example. I already read Help on SAP (Setting up the browser for PI sheets and cockpits, Control recipe destination ...) But there are not so much informations
    Thanks a lot
    Johan

    Hi, if i change process recipe destination type to1 (abap pi sheet) in o10c, then there is no issues. control recipe is successfully created.  if i maintain the same to 4 (browser based pi sheet) in o10c trx, then i am getting the error message as "syntex error found for distination". please advise.

  • Transfer to browser-based PI sheet

    Hi,
    I am working with PP-PI industries, and I have create first time “Transfer to browser-based PI sheet “
    I want to know,
    How the values add in PI sheet via operator?(These sheets not allow adding any value)
    How can change the status of PI sheet?
    Pl helps me for finding the solution.
    Regards
    Rajesh

    Hi Rajesh,
    Your question "How the values add in PI sheet via operator" is not very clear... I cld understand you want to add certain values in the PI Sheets using some formulas or You are asking abt the value addition to the process because of PI Sheet usage.
    Secont, The status of PI Sheet...usuallu "Inprocess , Processed, new"will be the statuses...
    New - Newly created PI Sheet
    In Process - you have entered some values in the PI Sheet...But not completed the PI sheet by clicking the "Complete" button at the top of the PI Sheet..
    Processed - U have completed the PI Sheet,,by clicking the "complete" button in the PI sheet.
    Sometime you ll see yellow or red warnings in the status..This means the PI messages ( the data entered in the PI Sheet) is still pending ( not send to the Process message destinations) destination can be functional modules which will perform Normal Transactions .
    Warning will araise for locking conditions...ex. process order in change mode is active so system cld not perform the transaction.
    Red message indicates errors..
    You can see the ststus & the log in CO52 ( process message monitor) transaction.
    Please come back with your exact query
    Thanks & regards
    Mahesh babu
    Reward points if useful

  • Browser based PI sheet functionality

    hi all
    as far as i tried i was getting batch determination option in abap based pi sheet but same option i could not get in browser based pi sheet.  same in abap based pi sheet Immediately after saving the consumption option in one phase system is asking for a report of message and we can send that message to its destination while in Browser based pi sheet message is generating only after completing the full pi sheet but not immediatly after saving particular function.
    can any body suggest me the option of immediatly creation of message and batch determination in browser based pi sheet.
    thanks in advance

    Hi,
    PI Catogory is as below.
    INSTcat    Description                                               Type of process instruction
    CONS_I     Material consumption, all message char.     2
    Characteristics are as per below described.
    10     PPPI_DATA_REQUEST_TYPE     REPEATED
    20     PPPI_MESSAGE_CATEGORY     PI_CONS
    30     PPPI_PROCESS_ORDER
    40     PPPI_OPERATION
    50     PPPI_PHASE
    60     PPPI_MATERIAL
    61     PPPI_OUTPUT_CHARACTERISTIC     PPPI_MATERIAL
    70     PPPI_BATCH
    80     PPPI_STORAGE_LOCATION
    90     PPPI_FINAL_ISSUE
    100     PPPI_RESERVATION_ITEM
    110     PPPI_RESERVATION
    200     PPPI_AUTOMATIC_VALUE     PPPI_EVENT_DATE
    210     PPPI_AUTOMATIC_VALUE     PPPI_EVENT_TIME
    300     PPPI_INPUT_REQUEST     Material quantity consumed:
    301     PPPI_REQUESTED_VALUE     PPPI_MATERIAL_CONSUMED
    302     PPPI_UNIT_OF_MEASURE
    400     PPPI_MATERIAL_SHORT_TEXT
    401     PPPI_OUTPUT_CHARACTERISTIC     PPPI_MATERIAL_SHORT_TEXT
    402     PPPI_OUTPUT_TEXT     Planned Quantity:
    403     PPPI_OUTPUT_CHARACTERISTIC     PPPI_MATERIAL_QUANTITY
    404     PPPI_MATERIAL_QUANTITY
    405     PPPI_INPUT_REQUEST     Material Issue
    406     PPPI_VARIABLE     Y
    407     PPPI_REQUESTED_VALUE     ZPPPI_MATERAIL_ISSUE
    408     PPPI_COMMAND     CLOSE TABLE ROW
    409     PPPI_ACTION     EXECUTE
    410     PPPI_FORMULA     Y=1
    For process message PI_cons refer below details.
    PPPI_BATCH     Batch
    PPPI_EVENT_DATE     Date of Event
    PPPI_EVENT_TIME     Date/Time of Event
    PPPI_FINAL_ISSUE     Indicator: Final Issue
    PPPI_MATERIAL     Material Number
    PPPI_MATERIAL_CONSUMED     Quantity of Material Consumed
    PPPI_OPERATION     Operation Number
    PPPI_PHASE     Phase Number
    PPPI_PROCESS_ORDER     Process Order
    PPPI_RESERVATION     Reservation
    PPPI_RESERVATION_ITEM     Reservation Item Number
    PPPI_SPECIAL_STOCK     Special Stock Indicator
    PPPI_STOCK_TYPE     Stock Type
    PPPI_STORAGE_LOCATION     Storage Location
    PPPI_UNIT_OF_MEASURE     Unit of Measure
    PPPI_VENDOR     Vendor
    ZPPPI_MATERAIL_ISSUE     MATERIAL ISSUE
    Any other detiails required then tell me.

  • Browser based PI sheets

    Hi Gurus,
    Can anyone please explain me what are Browser based PI sheets and how to configure them. Thanks in advance and due points will be awarded.

    Step A
    1. You have to create the PI instruction category in customizing T code O12C
    2. Create characteristics CT04
    3. Assign the characteristics to PI instr category O12C
    4. While creating Master recipe, assign the PI instructions categories you want to use.
    Step B
    After creation & releasing process order create control recipe.
    then go for T code- CO 53 - send control recipe(control recipe monitor)
    http://help.sap.com/saphelp_46c/helpdata/en/f3/6ee4117aed11d2a5fe0060087d1a6b/content.htm
    CO60 - Operator will enter the values
    CO54 - send process messages
    http://help.sap.com/saphelp_46c/helpdata/en/ac/6a101268ce11d2a67600104b57eaa3/content.htm
    CO55- Check the report.
    Transaction CO57, to trigger manually a process message with message Category PI_CRST for the process order and Control reciepe combination.
    Then use Transaction CO54 to send the Message to the process order
    Reward points if it is useful
    PPR PP

  • Steps for Browser based PI sheet.

    Hi PP Gurus,
    I'm working on Browser based PI sheet first time. Can you please extend your help by providing the steps and configuration to be done to achieve the same in PP-PI-PI sheet scenarios?
    Thanks & Regards,
    Abu Arbab

    closed

  • Browser based PI sheet

    Hi Gurus, in o10c I maintained process recipe destination type as 4 (Browser based pi sheet). when i click on "crate control recipe" icon in cor2 (after release) getting the error message that "Syntax errors were found for control recipe destination 01". please advise whay need to be done. thanks.

    Hi, if i change process recipe destination type to1 (abap pi sheet) in o10c, then there is no issues. control recipe is successfully created.  if i maintain the same to 4 (browser based pi sheet) in o10c trx, then i am getting the error message as "syntex error found for distination". please advise.

  • Browser based PI sheet configuration

    We are currently using "transactional " based Pi sheets and would like to consider using Browser "Web" based Pi sheets. We are having a hard time finding information on the configuration changes necessary to implement this changes. Can any one outline what needs to be configured/implemented in order to use this functionality?

    Hi John,
    The difference between ABAP based pi sheets & web based pi sheets are captured in SAP through <u><b>control recipe destination type.</b></u>
    1. Define the control recipe destination, use the following menu path
    Process Management by choosing Control Recipes/PI Sheets -> Define and Set Up Control Recipe Destinations.
    2. In the above activity set the <b>destination type</b> as " 4" - transfer to browser based PI sheet, This control recipe destination is an operating group for the R/3 PI sheet that is displayed in HTML layout on the screen.
    There are few prerequisite for settin up browser based PI sheets with regards to internet explorer settings,
    1.In the Internet Explorer menu, choose Tools -> Internet Options.
    2.Choose the Security tab page.
    3.Choose the Web content zone Internet.
    4.Choose Custom Level ...
    5.Make the following settings in the Security Settings dialog box.
    Function                                                                Settings
    Download signed ActiveX controls               Enable or prompt
    Launching programs and files in an IFRAME               Enable
    Navigate sub-frames across different domains        Enable
    Hope this helps.
    Reward points if found successfull.
    Thanks!
    Regards
    Ramanathan G.

  • ABAP or Browser Based PI Sheet.

    Hi Experts,
    Kindly give me some knowledge,how to create a ABAP or Browser based PI Sheet related to ABAP point of View.
    Thanks & Regards,
    Prashant Sharma.

    Dear Viswanathan Srinivasan,
    Thanks for reply,but i need to know how to make our own layout(PPPI_layout) either in ABAP or Browser based PI Sheet.
    Thanks & Regards,
    Prashant Sharma.

  • Email id input field not appearing in MK02 while doing recording in SHDB

    Hello All,
    I am doing a BDC recording for MK02.It is not displaying  the email id input field present in the contact persons section.Please let me know a solution.We are on ECC 6.
    Thanks,
    Rakesh.

    Hi
    Please tick 'Not a batch input session'  in Recording Parameters while recording using SHDB.
    Regards
    Sathar
    Edited by: Sathar RA on Apr 3, 2009 11:25 AM

  • Adobe Interactive Form text field not editable

    Hello,
    I created an Adobe Form using transaction SFP and placed a textfield on the body page.
    I then created a Web Dynpro application using SE80, placed Interactive Form container on the view. I also checked the flag 'Enabled' and provided the templateSource as my Adobe Form name.
    When I test the WD application, the text field is not editable.
    Can you please advise what needs to be done?
    Thanks
    Sagar

    Hi...
    Place the following code in domodifyview
    data:
        lr_interactive_form type ref to cl_wd_interactive_form,
        lr_method_handler   type ref to if_wd_iactive_form_method_hndl.
      check first_time = abap_true.
      lr_interactive_form ?= view->get_element( 'INTERACTIVE_FORM' ).
      lr_method_handler ?= lr_interactive_form->_method_handler.
      lr_method_handler->set_legacy_editing_enabled( abap_true ).
    Thanks
    Gopal.

Maybe you are looking for

  • SmartView 11.1.1.3 fails to connect to Provider Services

    Hi All, When I try this URL http://<ourservername>:13080/aps/smartview, I get the following: Hyperion Provider Services That's it! On a different server of ours, we see this additional information below the Hyperion Provider Services e.g. Hyperion Pr

  • HT1338 Why doesn't "Software Update" show me the new driver for the Epson 50C20D (Artisan 800) while It is on the list of available new driver?

    Since I upgraded to mountain lion, my Artisan printer stopped working. After talking to Epson and trying all kind of things, it was determined its definitely a driver problem. The PC ping the printer well but won;t print to it as it think its not con

  • Export - use 100% of the CPU

    I have a problem do export images and sounds with the captivate.... When i use the projetc, this is use 100% of de CPU, somebody have any idea how can I change this???? if it´s possible.... []'s

  • Missing Mouse Up Bug

    I have Labview 6.02. Sometimes when my VI is running, Labview misses 'mouse Button Up' events. So if I try to scroll, I can't let go of the bar. Or a button will get stuck down. It usually catches the 'mouse Button up' about 5-10 seconds later. This

  • Upgrade 46C to ECC 6 0 STEP BY STEP ---Developing

    Now the upgrade has reached the "POST Upgrade Steps" which means Its open to the SECURITY ( Authorizations ) to come in. 1. First I have doing the SU25. Question -->Do I need to run (1) on SU25 . Answer:NO this is only for IInstallation of PFCG. for