Problem with at user command

Hi,
   In the output screen iam having one field itab-ucomm which is in edit mode,  based on which values for 10 other fields should change.
Note: I am doing this report in normal write statement.
For eg: 
I am having 5 fields in ouput.
Field1, Field2,Field3,Field4,Field5.
and itab-ucomm which is in edit mode, if the user enters the value 10 and press enter
values of all other fields should be: Field110, Field210.........Field5+10.
All this shud trigger in output screen
Please advice,
K.Karthikeyan.
Edited by: Karthikeyan Krishnan on Feb 28, 2009 11:41 AM

Hi Faisal,
     this my coding.
TABLES: EORD,EKPO,EKET,T015M,LFA1,SSCRFIELDS.
INCLUDE <ICON>.
SELECTION-SCREEN:BEGIN OF BLOCK B1 WITH FRAME.
SELECT-OPTIONS:LIFNR FOR EORD-LIFNR NO-EXTENSION NO INTERVALS.
SELECT-OPTIONS:EBELN FOR EORD-EBELN NO-EXTENSION NO INTERVALS.
PARAMETERS : X1 AS CHECKBOX." DEFAULT 'X'.
SELECTION-SCREEN:END OF BLOCK B1.
SELECTION-SCREEN:BEGIN OF BLOCK B2 WITH FRAME.
PARAMETERS:R1 RADIOBUTTON GROUP CLS.
PARAMETERS:R2 RADIOBUTTON GROUP CLS.
PARAMETERS:R3 RADIOBUTTON GROUP CLS.
PARAMETERS:R4 RADIOBUTTON GROUP CLS.
SELECTION-SCREEN:END OF BLOCK B2.
DATA: BEGIN OF ITAB OCCURS 0,
      LIFNR LIKE EORD-LIFNR,
      EBELN LIKE EORD-EBELN,
      EBELP LIKE EORD-EBELP,
      VRTYP LIKE EORD-VRTYP,
      EMATN LIKE EKPO-EMATN,
      TXZ01 LIKE EKPO-TXZ01,
      BSTYP LIKE EKPO-BSTYP,
      MENGE LIKE EKET-MENGE,
      QUAN LIKE EKET-MENGE,
      NAME1 LIKE LFA1-NAME1,
      DAY1 TYPE P DECIMALS 2,
      DAY2 TYPE P DECIMALS 2,
      DAY3 TYPE P DECIMALS 2,
      DAY4 TYPE P DECIMALS 2,
      DAY5 TYPE P DECIMALS 2,
      DAY6 TYPE P DECIMALS 2,
      DAY7 TYPE P DECIMALS 2,
      DAY8 TYPE P DECIMALS 2,
      DAY9 TYPE P DECIMALS 2,
      DAY10 TYPE P DECIMALS 2,
      DAY11 TYPE P DECIMALS 2,
      DAY12 TYPE P DECIMALS 2,
      DAY13 TYPE P DECIMALS 2,
      DAY14 TYPE P DECIMALS 2,
      DAY15 TYPE P DECIMALS 2,
      DAY16 TYPE P DECIMALS 2,
      DAY17 TYPE P DECIMALS 2,
      DAY18 TYPE P DECIMALS 2,
      DAY19 TYPE P DECIMALS 2,
      DAY20 TYPE P DECIMALS 2,
      DAY21 TYPE P DECIMALS 2,
      DAY22 TYPE P DECIMALS 2,
      DAY23 TYPE P DECIMALS 2,
      DAY24 TYPE P DECIMALS 2,
      DAY25 TYPE P DECIMALS 2,
      DAY26 TYPE P DECIMALS 2,
      DAY27 TYPE P DECIMALS 2,
      DAY28 TYPE P DECIMALS 2,
      DAY29 TYPE P DECIMALS 2,
      DAY30 TYPE P DECIMALS 2,
      DAY31 TYPE P DECIMALS 2,
      END OF ITAB.
START-OF-SELECTION.
SET PF-STATUS 'STANDARD'.
IF R1 EQ 'X'.
   PERFORM CREATE.
   PERFORM DISPLAY_DATA.
   PERFORM WRITE_DATA.
ELSEIF R2 EQ 'X'.
   PERFORM DISPLAY.
   PERFORM DISPLAY_DATA.
*ELSEIF R3 EQ 'X'.
   PERFORM CHANGE.
   PERFORM DISPLAY_DATA.
*ELSEIF R4 EQ 'X'.
   PERFORM PRINT.
   PERFORM DISPLAY_DATA.
ENDIF.
*&      Form  CREATE
      text
*FORM CREATE.
*IF R1 = 'X'.
  SELECT * FROM EORD INTO CORRESPONDING FIELDS OF TABLE ITAB
                                          WHERE LIFNR IN  LIFNR
                                          AND EBELN IN EBELN
                                          AND VRTYP = 'L'.
  LOOP AT ITAB.
    SELECT SINGLE * FROM EKPO WHERE EBELN = ITAB-EBELN
                                AND EBELP = ITAB-EBELP
                                AND BSTYP = 'L'.
    ITAB-EMATN = EKPO-EMATN.
    ITAB-TXZ01 = EKPO-TXZ01.
    SELECT SINGLE * FROM EKET  WHERE EBELN = ITAB-EBELN
                                  AND EBELP = ITAB-EBELP.
    ITAB-MENGE = EKPO-MENGE.
    ITAB-QUAN = EKPO-MENGE.
    SELECT SINGLE NAME1 FROM LFA1 INTO ITAB-NAME1 WHERE LIFNR = ITAB-LIFNR.
    MODIFY ITAB.
  ENDLOOP.
  LOOP AT ITAB.
    ITAB-DAY1 = ITAB-MENGE / 26.
    ITAB-DAY2 = ITAB-MENGE / 26.
    ITAB-DAY3 = ITAB-MENGE / 26.
    ITAB-DAY4 = ITAB-MENGE / 26.
    ITAB-DAY5 = ITAB-MENGE / 26.
    ITAB-DAY6 = ITAB-MENGE / 26.
    ITAB-DAY7 = ITAB-MENGE / 26.
    ITAB-DAY8 = ITAB-MENGE / 26.
    ITAB-DAY9 = ITAB-MENGE / 26.
    ITAB-DAY10 = ITAB-MENGE / 26.
    ITAB-DAY11 = ITAB-MENGE / 26.
    ITAB-DAY12 = ITAB-MENGE / 26.
    ITAB-DAY13 = ITAB-MENGE / 26.
    ITAB-DAY14 = ITAB-MENGE / 26.
    ITAB-DAY15 = ITAB-MENGE / 26.
    ITAB-DAY16 = ITAB-MENGE / 26.
    ITAB-DAY17 = ITAB-MENGE / 26.
    ITAB-DAY18 = ITAB-MENGE / 26.
    ITAB-DAY19 = ITAB-MENGE / 26.
    ITAB-DAY20 = ITAB-MENGE / 26.
    ITAB-DAY21 = ITAB-MENGE / 26.
    ITAB-DAY22 = ITAB-MENGE / 26.
    ITAB-DAY23 = ITAB-MENGE / 26.
    ITAB-DAY24 = ITAB-MENGE / 26.
    ITAB-DAY25 = ITAB-MENGE / 26.
    ITAB-DAY26 = ITAB-MENGE / 26.
    ITAB-DAY27 = ITAB-MENGE / 26.
    ITAB-DAY28 = ITAB-MENGE / 26.
    ITAB-DAY29 = ITAB-MENGE / 26.
    ITAB-DAY30 = ITAB-MENGE / 26.
    ITAB-DAY31 = ITAB-MENGE / 26.
    MODIFY ITAB.
  ENDLOOP.
*ENDFORM.                    "CREATE
*&      Form  DISPLAY_DATA
      text
*FORM DISPLAY_DATA.
  WRITE: /50 'RAJSRIYA AUTOMOTIVE INDUSTRIES PVT LTD'.
  WRITE: /55 'SCHEDULE FOR THE MONTH OF'.
  SKIP 2.
  WRITE: /10 'TO'.
  WRITE: /15 ITAB-NAME1.
  LOOP AT ITAB.
    SKIP 2.
    WRITE: /87 'Delivery DAY SAP' ,
            110 ITAB-MENGE.
    WRITE: /87 'Delivery DAY Manual' ,
            110 ITAB-QUAN INPUT ON.
   HIDE: ITAB-QUAN.
    SKIP 2.
    WRITE: /10 'Material No',
            25 'Material Name',
            50 '1',
            58 '2',
            66 '3',
            74 '4',
            82 '5',
            90 '6',
            98 '7',
            106 '8',
            114 '9',
            122 '10'.
    SKIP 1.
    WRITE: /10 ITAB-EMATN,
            25 ITAB-TXZ01,
            50 ITAB-DAY1 LEFT-JUSTIFIED INPUT ON,
            58 ITAB-DAY2 LEFT-JUSTIFIED INPUT ON,
            66 ITAB-DAY3 LEFT-JUSTIFIED INPUT ON,
            74 ITAB-DAY4 LEFT-JUSTIFIED INPUT ON,
            82 ITAB-DAY5 LEFT-JUSTIFIED INPUT ON,
            90 ITAB-DAY6 LEFT-JUSTIFIED INPUT ON,
            98 ITAB-DAY7 LEFT-JUSTIFIED INPUT ON,
           106 ITAB-DAY8 LEFT-JUSTIFIED INPUT ON,
           114 ITAB-DAY9 LEFT-JUSTIFIED INPUT ON,
           122 ITAB-DAY10 LEFT-JUSTIFIED INPUT ON.
    SKIP 1.
    ULINE 50(77).
    WRITE:/50 '11',
            58 '12',
            66 '13',
            74 '14',
            82 '15',
            90 '16',
            98 '17',
            106 '18',
            114 '19',
            122 '20'.
    SKIP 1.
    WRITE:/50 ITAB-DAY11 LEFT-JUSTIFIED INPUT ON,
            58 ITAB-DAY12 LEFT-JUSTIFIED INPUT ON,
            66 ITAB-DAY13 LEFT-JUSTIFIED INPUT ON,
            74 ITAB-DAY14 LEFT-JUSTIFIED INPUT ON,
            82 ITAB-DAY15 LEFT-JUSTIFIED INPUT ON,
            90 ITAB-DAY16 LEFT-JUSTIFIED INPUT ON,
            98 ITAB-DAY17 LEFT-JUSTIFIED INPUT ON,
            106 ITAB-DAY18 LEFT-JUSTIFIED INPUT ON,
            114 ITAB-DAY19 LEFT-JUSTIFIED INPUT ON,
            122 ITAB-DAY20 LEFT-JUSTIFIED INPUT ON.
    SKIP 1.
    ULINE 50(77).
    WRITE:/50 '21',
            58 '22',
            66 '23',
            74 '24',
            82 '25',
            90 '26',
            98 '27',
            106 '28',
            114 '29',
            122 '30'.
    SKIP 1.
    WRITE:/50 ITAB-DAY21 LEFT-JUSTIFIED INPUT ON,
            58 ITAB-DAY22 LEFT-JUSTIFIED INPUT ON,
            66 ITAB-DAY23 LEFT-JUSTIFIED INPUT ON,
            74 ITAB-DAY24 LEFT-JUSTIFIED INPUT ON,
            82 ITAB-DAY25 LEFT-JUSTIFIED INPUT ON,
            90 ITAB-DAY26 LEFT-JUSTIFIED INPUT ON,
            98 ITAB-DAY27 LEFT-JUSTIFIED INPUT ON,
            106 ITAB-DAY28 LEFT-JUSTIFIED INPUT ON,
            114 ITAB-DAY29 LEFT-JUSTIFIED INPUT ON,
            122 ITAB-DAY30 LEFT-JUSTIFIED INPUT ON.
    SKIP 1.
    ULINE 50(77).
    WRITE:/50 '31'.
    SKIP 1.
    WRITE:/50 ITAB-DAY31 LEFT-JUSTIFIED INPUT ON.
  ENDLOOP.
  SKIP 5.
  WRITE:/10 'NOTE', 75 'For rajsriya automotive industries (p) ltd'.
  WRITE:/10 'Strictly adhere to the schedule Qty'.
  SKIP 2.
  WRITE:/80 'authorised signatory'.
*ENDFORM.                    "DISPLAY_DATA
AT LINE-SELECTION.
HIDE:  ITAB-QUAN.
      LOOP AT ITAB.
        ITAB-DAY1 = ITAB-QUAN / 26.
        ITAB-DAY2 = ITAB-QUAN / 26.
        ITAB-DAY3 = ITAB-QUAN / 26.
        ITAB-DAY4 = ITAB-QUAN / 26.
        ITAB-DAY5 = ITAB-QUAN / 26.
        ITAB-DAY6 = ITAB-QUAN / 26.
        ITAB-DAY7 = ITAB-QUAN / 26.
        ITAB-DAY8 = ITAB-QUAN / 26.
        ITAB-DAY9 = ITAB-QUAN / 26.
        ITAB-DAY10 = ITAB-QUAN / 26.
        ITAB-DAY11 = ITAB-QUAN / 26.
        ITAB-DAY12 = ITAB-QUAN / 26.
        ITAB-DAY13 = ITAB-QUAN / 26.
        ITAB-DAY14 = ITAB-QUAN / 26.
        ITAB-DAY15 = ITAB-QUAN / 26.
        ITAB-DAY16 = ITAB-QUAN / 26.
        ITAB-DAY17 = ITAB-QUAN / 26.
        ITAB-DAY18 = ITAB-QUAN / 26.
        ITAB-DAY19 = ITAB-QUAN / 26.
        ITAB-DAY20 = ITAB-QUAN / 26.
        ITAB-DAY21 = ITAB-QUAN / 26.
        ITAB-DAY22 = ITAB-QUAN / 26.
        ITAB-DAY23 = ITAB-QUAN / 26.
        ITAB-DAY24 = ITAB-QUAN / 26.
        ITAB-DAY25 = ITAB-QUAN / 26.
        ITAB-DAY26 = ITAB-QUAN / 26.
        ITAB-DAY27 = ITAB-QUAN / 26.
        ITAB-DAY28 = ITAB-QUAN / 26.
        ITAB-DAY29 = ITAB-QUAN / 26.
        ITAB-DAY30 = ITAB-QUAN / 26.
        ITAB-DAY31 = ITAB-QUAN / 26.
        MODIFY ITAB.
      ENDLOOP.
      WRITE: /50 'RAJSRIYA AUTOMOTIVE INDUSTRIES PVT LTD'.
      WRITE: /55 'SCHEDULE FOR THE MONTH OF'.
      SKIP 2.
      WRITE: /10 'TO'.
      WRITE: /15 ITAB-NAME1.
      LOOP AT ITAB.
        SKIP 2.
        WRITE: /87 'Delivery DAY SAP' ,
                110 ITAB-MENGE.
        WRITE: /87 'Delivery DAY Manual' ,
                110 ITAB-QUAN INPUT ON.
       HIDE: ITAB-QUAN.
        SKIP 2.
        WRITE: /10 'Material No',
                25 'Material Name',
                50 '1',
                58 '2',
                66 '3',
                74 '4',
                82 '5',
                90 '6',
                98 '7',
                106 '8',
                114 '9',
                122 '10'.
        SKIP 1.
        WRITE: /10 ITAB-EMATN,
                25 ITAB-TXZ01,
                50 ITAB-DAY1 LEFT-JUSTIFIED, "INPUT ON,
                58 ITAB-DAY2 LEFT-JUSTIFIED ,"INPUT ON,
                66 ITAB-DAY3 LEFT-JUSTIFIED ,"INPUT ON,
                74 ITAB-DAY4 LEFT-JUSTIFIED ,"INPUT ON,
                82 ITAB-DAY5 LEFT-JUSTIFIED ,"INPUT ON,
                90 ITAB-DAY6 LEFT-JUSTIFIED ,"INPUT ON,
                98 ITAB-DAY7 LEFT-JUSTIFIED ,"INPUT ON,
               106 ITAB-DAY8 LEFT-JUSTIFIED ,"INPUT ON,
               114 ITAB-DAY9 LEFT-JUSTIFIED ,"INPUT ON,
               122 ITAB-DAY10 LEFT-JUSTIFIED ."INPUT ON.
        SKIP 1.
        ULINE 50(77).
        WRITE:/50 '11',
                58 '12',
                66 '13',
                74 '14',
                82 '15',
                90 '16',
                98 '17',
                106 '18',
                114 '19',
                122 '20'.
        SKIP 1.
        WRITE:/50 ITAB-DAY11 LEFT-JUSTIFIED ,"INPUT ON,
                58 ITAB-DAY12 LEFT-JUSTIFIED ,"INPUT ON,
                66 ITAB-DAY13 LEFT-JUSTIFIED ,"INPUT ON,
                74 ITAB-DAY14 LEFT-JUSTIFIED ,"INPUT ON,
                82 ITAB-DAY15 LEFT-JUSTIFIED ,"INPUT ON,
                90 ITAB-DAY16 LEFT-JUSTIFIED ,"INPUT ON,
                98 ITAB-DAY17 LEFT-JUSTIFIED ,"INPUT ON,
                106 ITAB-DAY18 LEFT-JUSTIFIED ,"INPUT ON,
                114 ITAB-DAY19 LEFT-JUSTIFIED ,"INPUT ON,
                122 ITAB-DAY20 LEFT-JUSTIFIED ."INPUT ON.
        SKIP 1.
        ULINE 50(77).
        WRITE:/50 '21',
                58 '22',
                66 '23',
                74 '24',
                82 '25',
                90 '26',
                98 '27',
                106 '28',
                114 '29',
                122 '30'.
        SKIP 1.
        WRITE:/50 ITAB-DAY21 LEFT-JUSTIFIED," INPUT ON,
                58 ITAB-DAY22 LEFT-JUSTIFIED ,"INPUT ON,
                66 ITAB-DAY23 LEFT-JUSTIFIED ,"INPUT ON,
                74 ITAB-DAY24 LEFT-JUSTIFIED ,"INPUT ON,
                82 ITAB-DAY25 LEFT-JUSTIFIED ,"INPUT ON,
                90 ITAB-DAY26 LEFT-JUSTIFIED," INPUT ON,
                98 ITAB-DAY27 LEFT-JUSTIFIED ,"INPUT ON,
                106 ITAB-DAY28 LEFT-JUSTIFIED ,"INPUT ON,
                114 ITAB-DAY29 LEFT-JUSTIFIED ,"INPUT ON,
                122 ITAB-DAY30 LEFT-JUSTIFIED ."INPUT ON.
        SKIP 1.
        ULINE 50(77).
        WRITE:/50 '31'.
        SKIP 1.
        WRITE:/50 ITAB-DAY31 LEFT-JUSTIFIED INPUT ON.
      ENDLOOP.
      SKIP 5.
      WRITE:/10 'NOTE', 75 'For rajsriya automotive industries (p) ltd'.
      WRITE:/10 'Strictly adhere to the schedule Qty'.
      SKIP 2.
      WRITE:/80 'authorised signatory'.
Note  'Delivery DAY SAP'        10
           'Delivery DAY Manual'     10
both are same field.  this value 10 i am getting in itab-menge and second one itab-Quan from table Ekpo.
the second one is edit mode if the user change the 10 to 100.
  ITAB-DAY1 = ITAB-QUAN / 26 and so on value should be change.
if 10:  ITAB-DAY1 = ITAB-QUAN / 26 = 0.38
if 100  ITAB-DAY1 = ITAB-QUAN / 26 = 3.8.
can you help me.
Regards,
K.Karthikeyan.

Similar Messages

  • Error message in time machine: "There was a problem with the user name or the password of the network

    I have been unable to back up my macbook to my time capsule for some time now. I received the following error message (translated from Swedish) when trying to back up using time machine:
    "The network's volume could not be placed on the desktop. There was a problem with the user name or the password for the network.
    Open system preferences and go to Time Machine. Select the volume for security backup again and state the correct user name and password."
    I have confirmed the network password, and also tried with resetting the password. I have not idea what else to do. Any help is much appreciated.
    Best regards,
    John

    I have been unable to back up my macbook to my time capsule for some time now. I received the following error message (translated from Swedish) when trying to back up using time machine:
    "The network's volume could not be placed on the desktop. There was a problem with the user name or the password for the network.
    Open system preferences and go to Time Machine. Select the volume for security backup again and state the correct user name and password."
    I have confirmed the network password, and also tried with resetting the password. I have not idea what else to do. Any help is much appreciated.
    Best regards,
    John

  • Problem with 'Edit Locally' command -- Due to IISProxy?

    Hi,
    We have a problem with 'Edit Locally' command since we are using Windows Authentication. Our architecture is:
    SAP EP 6.0 SP2 Patch 28 (Solaris)
    IIS Proxy (Windows 2003)
    The situation is:
    If we access to SAP Portal using old url (directly to Solaris) using form-based authentication we do not have any problem with 'edit locally' command.
    However, if we access to SAP Portal using IISProxy and Windows Authentication we get an 'Operation failed' error message.
         Java plug-in console shows the following message:
    cargar: clase com/sapportals/wcm/app/docapplet/DocApplet.class no encontrada.
    java.lang.ClassNotFoundException: com.sapportals.wcm.app.docapplet.DocApplet.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    Where is the problem? Is due to authentication method? SAP Portal or IISProxy configuration?
    Thanks,

    Thanks for your comment,
    Now, we have tested with version 1.5.0_01 plugin version but the result is the same: 'Operation failed'
    This is a very important topic to solve before installing Windows Authentication in a productive environment.
    Has anybody any solution?
    Damiá

  • Problems with the vba command sendkeys in Access 2013.

    Hi, I have problems with the vba command sendkeys in Access 2013.
    I use a text field (no control) in a form. By means of the VBA command SendKeys "+ {DELETE}", 1  I get the text in memory from the text field, then place (paste) the text in a Word document. The command line sendkeys
    is followed by moving the focus to a particular control. In Access 2003, which went smoothly. Now the sendkeys command is executed only in Access 2013 in the control that then receives focus. If the procedure ends with the sendkeys command then it works well.
    The procedure with the sendkeys command is activated by a button on a form.
    Who can help me?
    private user

    Hi H.Plmp,
    Based on the description, you want to call the sendkeys from a button.
    >> use a text field (no control) in a form. By means of the VBA command SendKeys "+ {DELETE}", 1  I get the text in memory from the text field<<
    What did you mean that you no control? And how did you get the text in memory from the text field? Also I am not able to understand the exact reason that the command doesn't works in Access 2013.
    And based on the test, sendkeys "+ {Delete}" works well for me when I set a focus for the textbox control. Here is th test code:
    Me.Controls("txtField1").SetFocus
    SendKeys "+ {DELETE}", 1
    If I misunderstood, please feel free to let me know.
    Regards & Fei
    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.

  • Just installed Lion and the Magic TrackPad and I am having a problem with one click commands.  I have to hit the pad fairly hard with one finger to get it to accept the command.  Is this normal, is there another way that I am suppose to execute commands?

    Just installed Lion and the Magic TrackPad and I am having a problem with one click commands.  I have to hit the pad fairly hard with one finger to get it to accept the command.  Is this normal, is there another way that I am suppose to execute commands?

    No you just need to turn on Tap to Click. Go into System Preferences - Trackpad and click the Point to Click tab and select the first box which will say Tap to Click and you should be in business.

  • Charm: BP problem with the user

    Hi!
    I have problem with the user for the usage of ChaRM.
    When I try to set the the (urgent) correction in Development i get the following error.
    There is no valid business partner assigned to your user.
    Meanwhile the appropriate BP-entry for the user exists:
    External BP number: <SID> <CLNT> <user name>
    Identification number: <SID> <installation number> <user name>
    Furthermore I have the following error, when I try to approve the change request:
    Partner 141 (Change-Manager) is neither an employee nor an organizational unit
    I would be great to get some help here.
    Thank you
    regards
    Thom

    Hi Thomm,
    1. There is no valid business partner assigned to your user.
       In BP under identification tab,
       ID type    idenification number
      CRM001 <SID> <installation number><CLNT><username>
    2.Partner 141 (Change-Manager) is neither an employee nor an organizational unit
    Assign the BP role as "Employee" for Change Manager
    regards
    Naveen

  • Sql Devloper 4.0.0.13 - problems with displaying user data types

    Hi,
    I have installed new version of sqldeveloper and have discovered some problems with displaying user data types. The data that is described as VARCHAR2 are displayed with ‘???’.
    The problem persist in table view, script output and exported files.
    My type is described as follows:
    create or replace TYPE "DPTY_ADRESA" AS OBJECT
      ID_DPSF_OPCINE                                         NUMBER,
      ID_DPSF_MJESTA                                        NUMBER,
      OPCINA                                            VARCHAR2(100),
      MJESTO                                            VARCHAR2(100),
      ULICA                                 VARCHAR2(200),
      BROJ                                   VARCHAR2(20),
      SPRAT                VARCHAR2(20),
      OSTALO                             VARCHAR2(100),
      CONSTRUCTOR FUNCTION dpty_adresa RETURN SELF AS RESULT
    add MEMBER FUNCTION dajAdresu RETURN VARCHAR2 cascade;
    when make select column from table that contains this type I get next results:
    CASE 1:
    SQLDeveloper Version 3.2.20.09; Build MAIN-09.87; JDK 1.6.0_43; Windows 7 64 bit
    Select:
    select id, adresalokacija
    from dptr_saglasnosti
    where id = 1;
    Result:
            ID ADRESALOKACIJA
             1 COMP.DPTY_ADRESA(124,4913,'TRAIK','TURBE','BABANA','3452','0',NULL)
    END CASE 1;
    CASE 2:
    SQLDeveloper Version 4.0.0.13; Build MAIN-13.80; JDK 1.7.0_40; Windows 7 64 bit
    Select1:
    select id, adresalokacija
    from dptr_saglasnosti
    where id = 1;
    Result1:
    ID ADRESALOKACIJA
             1 COMP.DPTY_ADRESA(124,4913,'???','???','???','???','???',NULL)    
    But if I select one element it is displayed normal.
    Select2:
    select id, a.adresalokacija.opcina
    from dptr_saglasnosti a
    where id = 1;
    Result2:
    ID ADRESALOKACIJA.OPCINA
             1 TRAVNIK                  
    END CASE 2;
    I have tried this scenario on three different pc with same output.
    Pleas help me to get rid of the '???' in result.
    Best Regards,
    Omer

      I tried on SQLDeveloper Version 4.0.0.13; Build MAIN-13.80; JDK 1.7.0_45; Windows 7 64 bit; NLS setting is default
    all data can show,No ??? in result
    Test step as following:
    create or replace TYPE "DPTY_ADRESA" AS OBJECT
      ID_DPSF_OPCINE                                         NUMBER,
      ID_DPSF_MJESTA                                        NUMBER,
      OPCINA                                            VARCHAR2(100),
      MJESTO                                            VARCHAR2(100),
      ULICA                                 VARCHAR2(200),
      BROJ                                   VARCHAR2(20),
      SPRAT                VARCHAR2(20),
      OSTALO                             VARCHAR2(100),
      CONSTRUCTOR FUNCTION dpty_adresa RETURN SELF AS RESULT
    alter TYPE "DPTY_ADRESA" add MEMBER FUNCTION dajAdresu RETURN VARCHAR2 cascade;
    CREATE TABLE dptr_saglasnosti (
    adresalokacija        DPTY_ADRESA,
      id    number);
      INSERT INTO dptr_saglasnosti VALUES (
      DPTY_ADRESA (65,225,'Vrinda Mills', '1-800-555-4412','sss','aaaa','eeeee','attta'),1 );
    select id, adresalokacija from dptr_saglasnosti where id = 1;
    ID ADRESALOKACIJA
    1    HRCP.DPTY_ADRESA(65,225,'Vrinda Mills','1-800-555-4412','sss','aaaa','eeeee','attta')

  • Problem with"Evaluate User Policies"sch task after the upgrade OIM R1 to R2

    Problem with "Evaluate User Policies" scheduled task after the upgrade from OIMg R1 to OIM 11g R2
    After the upgrade process is completed we are having issue with Access policy not triggering if rule is set to custom attribute
    - We had a Rule with custom attribute (Policy='Full-Time') the value gets populated by event handler which triggers the access policy in OIM 11g R1.. which worked fine in OIM R1
    After the upgrade the value is getting populated but even after running "Evaluate User Policy" the Access Policy is not getting triggered.
    We tested creating a rule with other custom attribute,policy does not trigger even after running Evaluate User Policy schedule Task in this case too
    but if we try creating rule with OOTB attributes(Country='US') it works fine the access policy got triggered after running Evalute User Policy
    One more issue we observed is
    - Evaluate User Policy value usr_policy_update is not updated still set to '1' even after the Access policy got triggered (as it worked when rule is set to OOTB attribute)
    I believe after the evaluate user policy gets triggered for a user it should update the value from '1' to '0')
    Please let me know if you have any idea..Thanks!

    well, I overcame the issue by 'fooling' the installer: on second node, change the scan ip address to point to something else (ie, different ip address to the scan in the first node, cleanup then rerun root.sh, it went past the trouble stage, then I still have problem later at the time database creation. I think scan ip address has to be setup correctly (round robin thingy)
    This is how i did the cleanup before rerun root.sh
    /u01/app/11.2.0/grid/crs/install/rootcrs.pl -verbose -deconfig -force

  • Problem with FNDLOAD upload command for Concurrent Program

    Hi Apps Gurus,
    I am facing a peculiar problem with the FNDLOAD command.
    My customer has a concurrent program which is running fine in Prod, and now they have requeseted for a change in the program, the change requested was to modify the parameters and the name of the program. I have done the changes and when I try migrating this change from DEV instance to IAT using FNDLOAD commands it is not getting migrated. There does not seem to be any problem with the LDT file, There is no error message in the log as well.
    However I have noticed something very peculiar.* In the target instance (IAT) , when i run the FNDLOAD command directly the migration is unsuccessful but when i delete the existing parameters of the prog and rename the concurrent program and then run the FNDLOAD command the migration is sucessful and the changes are getting reflected!!. I dont understand why this is happening. This is happening in preprod as well , the migration is unsucessfull initially when i directly run the command, when i modify the name and parameters of the prog and then run the command the migration is sucessful. Now i do not have access to prod and this trick of changing prog name and parameters cannot be done in prod , so I need a proper solution for the migration.
    Any pointers to resolve this issue will be helpful.
    Thanks,
    Mahesh

    I am facing a peculiar problem with the FNDLOAD command.
    My customer has a concurrent program which is running fine in Prod, and now they have requeseted for a change in the program, the change requested was to modify the parameters and the name of the program. I have done the changes and when I try migrating this change from DEV instance to IAT using FNDLOAD commands it is not getting migrated. There does not seem to be any problem with the LDT file, There is no error message in the log as well.
    However I have noticed something very peculiar.* In the target instance (IAT) , when i run the FNDLOAD command directly the migration is unsuccessful but when i delete the existing parameters of the prog and rename the concurrent program and then run the FNDLOAD command the migration is sucessful and the changes are getting reflected!!. I dont understand why this is happening. This is happening in preprod as well , the migration is unsucessfull initially when i directly run the command, when i modify the name and parameters of the prog and then run the command the migration is sucessful. Now i do not have access to prod and this trick of changing prog name and parameters cannot be done in prod , so I need a proper solution for the migration.
    Any pointers to resolve this issue will be helpful.What are the commands you used for the download/upload?
    Do you get any errors in the log files?
    Please see (FNDLOAD Download / Upload Concurrent Programs Fails To Load Parameters [ID 1101946.1]).
    Thanks,
    Hussein

  • Problem with both user and cmos password

    I have problem with my user and cmos password, can formating clear the passward with remove the cmos battary.

    It depends on the model. Formatting will not touch the BIOS or power on passwords but will take away the Windows user password and allow you to have a different one, but will kill all the data on the machine. Removing the CMOS battery might clear the BIOS password and power on password, but on most current laptops even that will not help. The BIOS data is on a chip that holds its contents even when all power is removed.

  • Authorization problems with oranetb user

    We have set up Apex in an oracle database, that are installed on unix operative. We have problem with the authorization
    for the oranetb user. On the unix system we have one user that can call scripts with for example unix command like ls,
    cp, etc.
    Now we want this oranetb user to run unix commands in scripts, without change the user in unix environment. We have
    been told that we can use something in the script, with PATH’s and authorization for oranetb user. Have you ever done
    something like this? And can you help us with something that you think can help us?
    We also have the same problem to run workflow (Informatica) from a script in unix, when apex is calling the script.
    If you want more information, please send a mail to me.
    Email: [[email protected]]

    hunt3r,
    iTunes Store menu -> View my account... Once you've logged in, there's a button to deauthorize all your current machines and start you back at zero machines authorized. Try that.

  • 10.9.3 = major problem with fast user switching

    I've found a major problem with the 10.9.3 update with my 27" iMac, you probably won't see it if your on a laptop. I did all the updates in past few days i.e., 10.9.3 combo update, iTunes 11.2.1.
    Afterward I noticed a bug when Fast User Switching i.e. FUS. I have 5 accounts but the bug can be replicated with only 2.
    I login to userA  have some windows open but you can just open a Finder window. Now make the window at least half the with of the screen and move it to the right side of the screen. Then login in to userB and setup the windows the same way as userA. Now FUS to userA and then back to userB. You will notice that the Finder window has been moved to the upper left corner of the screen. This problem happened's to all user accounts you login to except the first account you logged into.
    Since I didn't know what update caused the problem I had to use Time Machine to revert to my last version of 10.9.2. I then double checked the for the bug and sure enough everything was working fine. I now was going to install one update at a time and to see which one was causing the bug. So I installed 10.9.3 first and found the bug immediately.
    I now know what's happening. When the switch occurs the screen is resized to about the equivalent of a 13" MBP. At this point the windows that fall some ware outside that size get moved to the upper left corner and resized. Then the screen resizes to normal but it's too late, all the window have moved and been resized to fit the 13" screen size.
    You can reproduce this effect by going to System Preferences and selecting Display and then select the Scaled radio button. No select the smallest size, say, 1280 x 720. Now select the Best for display radio button again. You will now see all the windows you have open that were too big no moved and resized to the upper left corner. I know why the Mac moves the windows, it's so you don't have any windows stuck off screen.
    Now when I say 13" it could be some other size but it's about that size give or take.

    Yes, it's when you user Fast User Switching.
    Here's snapshot before the screen resized. Ignore the window in the lower right, I moved it from the upper left before taking the screen shot.
    I hate to say it but I'm glad I'm not the only one with this bug.

  • Ethernet Problem with Multiple users on same Mac

    Hi, sorry i advance for my english. I am writing from italy.
    I have an imAc with 2 users profiles on it. one profile is administratoe, and the oter a standard user.
    I also have a time capsule configured to connect to my network with the ethernet cable. the cable is plugged in the wan pot, the configuration is "bridged" and i use as a router a linksys wifi router.
    well. suppsung that i am logging in with one of my users and access to time capsule wirelessly, it shows me the disk content.
    i then swith to the other user without logging off the first one and then access time capsule where i see the same folfder and i can access it. so everything works fine.
    in the case i connect my mac with ethernet (disabling airort) to my linksys router, ifuser 1mounts time capsule, user 2 can't access it if user 1 does not unmount.
    why so?
    i need to switch from user 1 to user 2 without logging off, and i don't understand why it works wirless and not with ethernet..
    thak you
    paolo

    In fact, all my page beans are in REQUEST scope...
    The only bean in Application scope is the standard applicationBean created by Creator itself.
    We use one Bean in session scope which contains another class.
    I will try to explain our common process:
    - when logging into the app, the session Bean stores user data (rights for using app,...);
    - when navigating in the app, the user can search data, modify them and create one (if he has the right to do it);
    - to define the screen, we use a lot the beforeRenderResponse();
    - when viewing a data, the user can choose to modify it, so depending on the action, the page is in "CONSULT" mode or "MODIFY" mode. In the second one, he can display new gridPanel (as a subform) to populate datatable.
    The problem is obvious while using this grid: my grid can disappear if someone else has validated his form before me and if my page goes trough the beforeRender of my page.
    It is not really clear. If needed, i can give access to our application to show the problem (and msn adress too to talk about it).
    Thank you

  • Urgent - problem with multiple users on same page

    Hi all,
    I have got an big problem with my app:
    when several users are using the same page, the action launched by USER_A affects the page displayed and used for USER_B.
    If there is only one user using the page, there is no problem at all.
    The webapp is deployed on Tomcat or JBoss and the problem remains the same on both.
    Thank you for your help.
    PS: I am not accurate because I don't know what to paste here.

    In fact, all my page beans are in REQUEST scope...
    The only bean in Application scope is the standard applicationBean created by Creator itself.
    We use one Bean in session scope which contains another class.
    I will try to explain our common process:
    - when logging into the app, the session Bean stores user data (rights for using app,...);
    - when navigating in the app, the user can search data, modify them and create one (if he has the right to do it);
    - to define the screen, we use a lot the beforeRenderResponse();
    - when viewing a data, the user can choose to modify it, so depending on the action, the page is in "CONSULT" mode or "MODIFY" mode. In the second one, he can display new gridPanel (as a subform) to populate datatable.
    The problem is obvious while using this grid: my grid can disappear if someone else has validated his form before me and if my page goes trough the beforeRender of my page.
    It is not really clear. If needed, i can give access to our application to show the problem (and msn adress too to talk about it).
    Thank you

  • Problem with transfered user sessions from a 10.4 system

    On my new MacBook pro with ML, I tranfered the user sessions of my previous mac (power book G4 working with OS 10.4).
    With these "old" users accounts,  part of the trackpad features (like scroling up and down with 2 fingers) does not work, whereas it is working with new users.
    Any idea on how to solve this?
    Thanks in advance

    That was a good idea, I tried to delete the com.apple.finder.plist and the com.apple.systempreferences.plist but that did not work.
    Eventually to solve the problem, I transferred all the files I needed to a session created with the new system. I'm waiting a week or two just to see if I have not forgotten something important and then I will delete the "old session".
    Thanks anyway for your help.

Maybe you are looking for

  • "Invalid Block Type" exception message

    I got "Invalid Block Type" exception message in my program. I'm not sure what this is. Could somebody please advice? Thanks GZIPInputStream gzip_in_stream = null; BufferedOutputStream destination_out_stream = new BufferedOutputStream(    new FileOutp

  • HT1451 How do I consolidate multiple episodes into a single folder?

    I have several episodes of a TV show that I've ripped and imported into iTunes. Unfortunately they all show up as an individual "movie" title. Is there a way to arrange or reorganize the iTunes folders so that they can be easier to view when I sync t

  • Oracle.apps.fnd.wf.bes.InvokerException: java.lang.ClassCastException

    Dear all expert, We are trying to use BES to invoke external webservice, and get the java class cast exception, anybody can help us please? steps: 1. we need to call a webserivce with following wsdl : <?xml version="1.0" encoding="UTF-8" ?> - <wsdl:d

  • CS3: CC Spotlight color choices

    Hi, I want to place a spotlight to an image. I chose Effects > Perspective > CC Spotlight. I did everything right, except there is no spotlight color choices. There is only white color available. When I try to change the color and clicked the color,

  • Error of "maximum number of windows open" when trying to open an Adobe document on my Mac

    Were you able to fix the error you mention? My Mac installed new Adobe updates today and it seems, as a result, that I now have the same issue where whenever I try to open any Adobe document on my computer, it tries to open ALL of my adobe documents.