Error while creating so "Text 0000001025 ID 0012 language EN not found

Dear Sirs,
I am creating sales order but when i enter the material i am getting an error message
"Text 0000001025 ID 0012 language EN not found
Message no. TD600
Diagnosis
You want to read a text which does not exist in the data base (or update memory).
System Response
Reading could not be carried out.
Procedure
You need to create this text:
1. Initialization (module INIT_TEXT)
2. Save (module SAVE_TEXT)"
Can any one please let me know what i am doing wrong?
Thank & regards,
Sameer

Hi,
I hope its an error related to ABAP developements,either smartforms or reports related so you consult your abaper to resolve it.
Here is an sample ABAP code using the READ_TEXT function module without Exceptions uncommented.
This sample ABAP code is taken from a SAP Smartform which is created for SAP invoice output document.
CALL FUNCTION 'READ_TEXT'
EXPORTING
CLIENT = SY-MANDT
  id = 'ZI01' " Billing Item Text
  language = 'I'
  name = lv_name " Invoice
  object = 'VBBP' " Billing
ARCHIVE_HANDLE = 0
LOCAL_CAT = ' '
*IMPORTING
HEADER =
tables
  lines = lt_lines
*EXCEPTIONS
ID = 1
LANGUAGE = 2
NAME = 3
NOT_FOUND = 4
OBJECT = 5
REFERENCE_CHECK = 6
WRONG_ACCESS_TO_ARCHIVE = 7
OTHERS = 8
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
Thank you

Similar Messages

  • Long Text 0000000015120044ZOH ID ZOH language EN not found

    Hi Good day,
    i am trying to Create, Save and Read the long Text.
    for that i have done the following.
    1. SE75 Created the Object and Object ID  Ex :
    Now when i implement the logic in the Program,
    at the end when i execute ,
    1. it does the CALL FUNCTION 'INIT_TEXT' successfully , SAVE_TEXT Successfully but when i try to READ_TEXT it says
    Text 0000000015120044ZOH ID ZOH language EN not found
    this is my logic
    TABLES : ZEHS00_EXA_CARD.
    PARAMETERS SRV_NUM TYPE CHAR16.
    DATA:  textname         LIKE thead-tdname,
            func,
            co_co            LIKE sy-index.
    * Interne Tabellen
    DATA  t_tf02hz LIKE thead OCCURS 0 WITH HEADER LINE.
    DATA  t_tf02lz LIKE tline OCCURS 0 WITH HEADER LINE.
    DATA: ltxtflg             LIKE bapistdtyp-boolean.
    DATA : l_text_tab LIKE tline OCCURS 100 WITH HEADER LINE.
    DATA: ltxtflg1             LIKE bapistdtyp-boolean.
    DATA : l_text_tab1 LIKE tline OCCURS 100 WITH HEADER LINE.
    DATA : description(225).
    DATA : description1(225).
    DATA: line(132) TYPE c,
           text_tab LIKE STANDARD TABLE OF line,
           text_tab1 LIKE STANDARD TABLE OF line,
           WA_TAB LIKE STANDARD TABLE OF LINE,
           WA_TAB1 LIKE LINE OF text_tab1,
           field LIKE line.
    DATA: line1(132) TYPE c,
           field1 LIKE line.
    DATA: e_header  TYPE thead,
        i_header  TYPE  STANDARD  TABLE  OF thead,
        w_tline   TYPE tline,
        i_tline   TYPE  STANDARD  TABLE  OF tline  WITH  HEADER  LINE.
    e_header-tdobject =  'ZSYS_ACT1'.
    e_header-tdid =  'ZOH'.
    e_header-tdspras = sy-langu.
    e_header-tdlinesize =  072.
    CONCATENATE SRV_NUM e_header-tdid     INTO textname.
    CALL FUNCTION 'C14G_TEXT_INPUT_EDIT'
         EXPORTING
           i_windowtitle           = 'Systolic action Description'
           i_tablename             = 'CCIHT_IP'
           i_fieldname             = 'ACDESC'
           i_language              = sy-langu
           i_actype                = 'X'
         TABLES
           x_text_tab              = l_text_tab
         CHANGING
           x_text                  = description
           x_ltxtflg               = ltxtflg.
    CALL FUNCTION 'INIT_TEXT'
       EXPORTING
         id       = 'ZOH'
         language = sy-langu"'E'
         name     = textname
         object   = 'ZSYS_ACT1'
       IMPORTING
         header   = t_tf02hz
       TABLES
         lines    = t_tf02lz.
    LOOP AT l_text_tab.
       MOVE :l_text_tab-TDLINE TO LINE.
       APPEND line TO t_tf02lz.
    ENDLOOP.
    CONCATENATE SRV_NUM e_header-tdid     INTO e_header-tdname.
    **  APPEND 'DevComments for Obj 1' to  i_tline.
    CALL FUNCTION 'SAVE_TEXT'
       EXPORTING
         client          = sy-mandt
         header          = e_header
         savemode_direct = 'X'
       TABLES
         lines           = i_tline
       EXCEPTIONS
         id              = 1
         language        = 2
         name            = 3
         object          = 4
         OTHERS          = 5.
    CLEAR : l_text_tab[].
    CALL FUNCTION 'READ_TEXT'
                       EXPORTING
                        CLIENT                        = SY-MANDT
                         ID                            = 'ZOH'
                         LANGUAGE                      = 'E'
                         NAME                          = e_header-tdname"textname
                         OBJECT                        = 'ZSYS_ACT1'
                       TABLES
                         LINES                         = l_text_tab."t_tf02lz.
    IF SY-SUBRC <> 0.
    * Implement suitable error handling here
    ENDIF.
    IF     l_text_tab[] IS NOT INITIAL.
    ENDIF.
    thank you,
    J.

    Hi,
    Go to tcode SE11 check table STXH whether the text stored in it. If yes, then see the layout of field TDNAME.
    Thanks.
    Regards,
    Keng Haw

  • Error while creating folder: Path is invalid because folder does not exist

    Hi,
    I am having an issue while creating Folders in ID, when I create folder Structure like EDI -> VENDOR -> DELL I am getting the error as below:
    Path /EDI/VENDOR/DELL/ is invalid because folder VENDOR does not exist
    So first 2 levels of folder structure is fine and when I create third level (DELL) I get the above error. Any idea how to resolve this or is this the limitation?
    We have
    Service Pack:06
    Release:NW711_06_REL
    Thanks,
    Laxman

    Hi Laxman,
    Kindly try to refresh the SLD cache by going to Environment -> Clear SLD Data Cache. Make sure that the Cache Status are all in green.
    Hope this would help.
    Regards,
    Jenny

  • Getting error while creating a text file

    Hi,
    I have one macro which will write all the file names from a particular folder into a text file. However when I run it, I am getting the following error message and only last file of the identified folder is getting added in my text file.
    Run Time Error '55'
    File Already Open
    To reproduce the scenario please add one commandbutton in your excel shhet and add the following code:
    Private Sub CommandButton1_Click()
    Dim p As String, x As Variant
    p = "C:/*.docx"
    x = GetFileList(p)
    Select Case IsArray(x)
    Case True 'files found
    MsgBox UBound(x)
    For i = LBound(x) To UBound(x)
    Open "C:\temp.txt" For Output As 1
    Write #1, "File Name " & x(i)
    Next i
    Close #1
    Case False
    MsgBox "No matching files"
    End Select
    End Sub
    Function GetFileList(FileSpec As String) As Variant
    Dim FileArray() As Variant
    Dim FileCount As Integer
    Dim FileName As String
    On Error GoTo NoFilesFound
    FileCount = 0
    FileName = Dir(FileSpec)
    If FileName = "" Then GoTo NoFilesFound
    ' Loop until no more matching files are found
    Do While FileName <> ""
    FileCount = FileCount + 1
    ReDim Preserve FileArray(1 To FileCount)
    FileArray(FileCount) = FileName
    FileName = Dir()
    Loop
    GetFileList = FileArray
    Exit Function
    ' Error handler
    NoFilesFound:
    GetFileList = False
    End Function
    'End Function
    For example if I have 3 docx file(1,2,3-name of the files) in my C drive, the o/p that I want in my .txt file will be as follows.
    File Name 1.docx
    File Name 2.docx
    File Name 3.docx
    Thanks!!

    For i = LBound(x) To UBound(x)
    Open "C:\temp.txt" For Output As 1
    You call the Open method inside the FOR loop.
    BTW, a collection is much more easier.
    Andreas.
    Private Sub CommandButton1_Click()
    Dim Files As New Collection
    Dim File
    Dim ff As Integer
    File = Dir("C:\*.docx")
    Do While File <> ""
    Files.Add File
    File = Dir
    Loop
    If Files.Count = 0 Then
    MsgBox "No matching files"
    Exit Sub
    Else
    MsgBox Files.Count & " files"
    End If
    ff = FreeFile
    Open "C:\temp.txt" For Output As #ff
    For Each File In Files
    Print #ff, File
    Next
    Close #ff
    End Sub

  • Error while creating TO(transfer order) w.r.t delivery note.

    I am usiing HU mgmt(Handling Unit Mgmt) with standard WH mgmt.
    I hae taken recipt of process order in MB31 transsanction which at the end give Inbound delivry no.
    now when i am going to create TO(Transfer Order) w.r.t that delivery no is gives error given below:
    " No items or handling units to be placed in storage could be determined"
    details:
    The inbound delivery does not have any items or handling units for putaway.
    i have tried by creating HU(Handling Unit) w.r.t t delivery & then try to create TO the same error was came at that time.

    Hi,
    can you check whether Warehouse number exists and transfer order creation is required or not at Delivery document under Picking tab

  • Text 4030100048 ID F02 language EN not found error while running PO

    Hello friends,
                      If i add schema group in XK02 for that particular PO vendor ... i.e for Pricing procedure ... i'm getting this error .. i'm unable to see printpreview of PO .
    please help me out. i f i won't use  that schea group then its coming properly ...please its urgent ..
    Thanks& Regards
    Lavanya

    Hi!
    If you check the texts in the 4030100025 order with transaction ME23N, you'll see, it is not filled on the system, when the error occurs.
    Try it like this: open the ME23N, choose TEXTs tab on header part. Choose header text. Double click on the texts editor area. A larger editor will open. Here choose Goto-Header and you'll see the technical data of the text.
    In this case it is "F01", so the text below this one, will be  the "F02". And it is not filled in your case, that's why it occurs "error".
    Regards
    Tamá

  • Error While accessing JMS Queue on Weblogic***** ASSERTION FAILED *****[ Environment not found on thread ]

    Hi,
    I am trying to read response from JMS Queue hosted on Weblogic server and getting below exception. Any help on this will be appreciable.
    weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[ Environment not found on thread ]
          at weblogic.jndi.internal.NamingNodeReplicaHandler.<init>(NamingNodeReplicaHandler.java:148)
          at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
          at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
          at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
          at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
          at java.lang.Class.newInstance0(Class.java:308)
          at java.lang.Class.newInstance(Class.java:261)
          at weblogic.common.internal.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:90)
          at weblogic.common.internal.ChunkedObjectInputStream.readObjectWL(ChunkedObjectInputStream.java:159)
          at weblogic.common.internal.ChunkedObjectInputStream$NestedObjectInputStream.readObjectWL(ChunkedObjectInputStream.java:341)
          at weblogic.rmi.cluster.ReplicaAwareRemoteRef.readExternal(ReplicaAwareRemoteRef.java:356)
          at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1686)
          at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1644)
          at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
          at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1845)
          at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:452)
          at weblogic.rmi.internal.StubInfo.readObject(StubInfo.java:95)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:324)
          at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:838)
          at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1746)
          at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1646)
          at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
          at java.io.ObjectInputStream.readObject(ObjectInputStream.java:324)
          at weblogic.common.internal.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:111)
          at weblogic.common.internal.ChunkedObjectInputStream.readObjectWL(ChunkedObjectInputStream.java:159)
          at weblogic.common.internal.ChunkedObjectInputStream$NestedObjectInputStream.readObjectWL(ChunkedObjectInputStream.java:341)
          at weblogic.jndi.internal.WLContextImpl.readExternal(WLContextImpl.java:425)
          at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1686)
          at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1644)
          at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
          at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1845)
          at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1769)
          at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1646)
          at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
          at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1845)
          at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1769)
          at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1646)
          at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
          at java.io.ObjectInputStream.readObject(ObjectInputStream.java:324)
          at weblogic.common.internal.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:111)
          at weblogic.rjvm.ResponseImpl.getThrowable(ResponseImpl.java:117)
          at weblogic.rmi.internal.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:106)
          at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:127)
          at weblogic.jms.dispatcher.DispatcherImpl_1035_WLStub.dispatchSyncNoTranFuture(Unknown Source)
          at weblogic.jms.dispatcher.DispatcherWrapperState.dispatchSyncNoTran(DispatcherWrapperState.java:341)
          at weblogic.jms.client.JMSSession.createDestination(JMSSession.java:1735)
          at weblogic.jms.client.JMSSession.createQueue(JMSSession.java:1296)
    Thanks

    Hi,
    I am trying to read Queue standalone. Please find the code snippet below.  code highlighted in  where i am getting exception.
    public static void main(String[] args) {
    String jmsServerUrl = "t3://10.51.245.45:5858";
    String jmsUserName = "weblogic";
    String jmsPassword = "welcome123";
    String jndiFactory = "weblogic.jndi.WLInitialContextFactory";
    String jmsFactory = "jms/CBCMReplyConnectionFactory";
    String qName = "jms/CBCMOrderReplyQueue";
    QueueReceiver qReciever = null;
    JMSQueueReader.getQueueSession(jmsServerUrl,jmsUserName,jmsPassword,jndiFactory,jmsFactory);
    qReciever = JMSQueueReader.getQueueReceiver(qName);
    if (qReciever == null) {
    System.out.println("Unable to find JMS Queue Reciever for Queue Name: "
    + qName + " and JMS Server URL:"
    + jmsServerUrl);
    //isProcess = false;
    private static InitialContext getInitialContext(String url, String userName, String password,  String jndiFactory) throws NamingException {
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, jndiFactory);
    env.put(Context.PROVIDER_URL, url);
    env.put(Context.SECURITY_PRINCIPAL, userName);
    env.put(Context.SECURITY_CREDENTIALS, password);
    return new InitialContext(env);
    public static QueueReceiver getQueueReceiver(String qName) {
    try {
    if(qReceiver == null || !qName.equals(queueName))
    queueName = qName;
    if(qReceiver != null)
    qReceiver.close();
    qReceiver = null;
    javax.jms.Queue queue = qSession.createQueue(queueName);
    //qReceiver = qSession.createReceiver(queue);
    qReceiver = qSession.createReceiver(queue, "JMSCorrelationID LIKE '"+SOHConstant.CBCM_BSCS_CORRELATION_ID_PREFIX+"%'");
                } catch (Throwable e) {
    e.printStackTrace();
    return qReceiver;

  • Revenue Recognition - error while creating sales order

    Hi,
    one of my colleague is having a Problem. Its very urgent. could you guys help.
      I have used Revenue recog as"b" and Accrual start period as "a".
      We are getting the error while creating a sales order, G/L account no. not found.
      We have checked all the account assignment config but couldn't find anything.

    Hi guys,
    I have a question, we being SD consultants, do we deal with n e of the revenue issues, I am assuming we deal it to a really brief extent, but I am not familiar with the areas of doing it, so could someone please help me by letting me know the areas where we deal with those issues and how are they looked upon, any material would also be great.
    Just in case, my email is : [email protected]
    Look forward for a response
    Thanks..

  • Authorization Missing error while creating web dynpro Application

    Hi experts,
        I am new to web dynpro and trying to learn it by myself. I am getting an authorization error while creating a web dynpro application. I am not getting any errors while activating Views or Windows. But when I created a web dynpro application and tried to save it, it thew me a warning saying that " You are not authorized to use function  Netzwerkadministration " . Still I could be able to create the application, but not able to run it.
       What  settings should be done to have this authorizations ?
    Any suggestion would be helpful.
    Thanks,
    RVSS

    Hi,
    Get your BASIS person to give you authorization to Tcode SICF and also authorization to create and activate services in Tcode SICF.
    You need authorization to object S_ICF_ADM apart from authorization to tcode SICF
    Regards,
    Ajay
    Edited by: ajay matam on Sep 9, 2009 12:04 PM

  • Error while creating index

    hi all,
    i got this error while creating index in portal.
    <b>Index could not be created; creating index failed: Invalid entry in configuration: section nameserver, key address, value tcpip://<nameserverhost>:<nameserverport> is invalid (Errorcode 7213)</b>
    it a little urgent any will be appreciated.
    thanks in advance
    Ranga

    Hi Ranga,
    Please follow http://help.sap.com/saphelp_nw04s/helpdata/en/c7/e0d13f7fb44c21e10000000a1550b0/frameset.htm
    Hope it helps
    Detlev
    PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

  • Error while creating a Solaris Resource

    I got the following error while creating the following solaris resource:
    Test connection failed for resource(s):
    Solaris: Script failed waiting for "ASSWORD:" in response "_,)#+(:" ==> com.waveset.util.WavesetException: Script processor timed out with nothing to read and the following unprocessed text: "_,)#+(:".\n
    I have the sudo permissions for the following commands:
    (ALL) NOPASSWD: /usr/bin/auths, /usr/sbin/groupadd, /usr/sbin/groupdel, /usr/sbin/groupmod, /usr/bin/last, /usr/bin/listusers, /usr/bin/logins, /usr/bin/passwd, /usr/bin/profiles, /usr/bin/roles, /usr/sbin/useradd, /usr/sbin/userdel, /usr/sbin/usermod, /usr/bin/ypmatch, /usr/bin/ypcat, /usr/bin/ypasswd, /usr/bin/awk, /usr/bin/cat, /usr/bin/chmod, /usr/bin/chown, /usr/bin/cp, /usr/bin/cut, /usr/bin/diff, /usr/bin/echo, /usr/bin/grep, /usr/bin/ls, /usr/bin/mv, /usr/bin/rm, /usr/bin/sleep, /usr/bin/sort, /usr/bin/tail, /usr/bin/touch, /usr/bin/which
    Please let me know what could be the problem?

    This doesn't look like a Sun Directory Server issue. You may want to post this to another forum.
    Regards,
    Ludovic.

  • Error while creating installer

    Hi
           I am getting error while creating installer.. I tried all posible ways.. Re -installing Labview will give solution.
    Currently i am using LV8.0
    Thanks,
    Ganesh

    Hello.
    Could you tell us more about this error please? Could you attach a screen of it?
    Thanks.
    Regards.
    Romain D.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    NIDays 2010 : Conférence mondiale de l'instrumentation virtuelle
    >>Détails et Inscription<<

  • Error while creating SC: Internal Error - termination type TH_RES_FREE

    Hi I encountered this error while creating a SC. All attributes for this user are maintained and the "check user" transaction does not give any error.
    Amol Mate
    Error when processing your request
    What has happened?
    The URL http://punhjwsapsrm:8000/sap/bc/gui/sap/its/bbpsc02/! was not called due to an error.
    Note
    The following error text was processed in the system SSS : Internal Error
    The error occurred on the application server PUNHJWSAPSRM_SSS_00 and in the work process 1 .
    The termination type was: TH_RES_FREE
    The ABAP call stack was:
    Function: B40B_READ_TABLE of program SAPLBBP_BD_DRIVER_40B
    Function: META_READ_TABLE of program SAPLBBP_BD_META_BAPIS
    Form: LOCATIONS_READ of program SAPLBBP_ATTR_F4
    Function: BBP_ATTR_F4_SLOC_PPOMA of program SAPLBBP_ATTR_F4
    Form: STG_LOC_GET_FOR_LOCATION of program SAPLBBP_SC_APP
    Form: STG_LOC_GET of program SAPLBBP_SC_APP
    Form: LOCATION_STG_LOC_GET of program SAPLBBP_SC_APP
    Form: USER_ATTRIBUTES_GET of program SAPLBBP_SC_APP
    Form: SC_INIT of program SAPLBBP_SC_APP
    Function: BBP_SC_APP_EVENT_DISPATCHER of program SAPLBBP_SC_APP
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system SSS in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server PUNHJWSAPSRM_SSS_00 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 1 in transaction ST11 on the application server PUNHJWSAPSRM_SSS_00 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http-c:100-u:PTEST -l:E-s:SSS-i:PUNHJWSAPSRM_SSS_00 -w:1-d:20051121-t:171904-v: TH_RES_FREE-e:Internal Error
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team

    Hi Amol,
    First of all the sicf transaction is to be used only if you use the internal ITS.
    Now you have to put an external breakpoint in the source code of the ABAP Program or FM you want to debug , one of these in your case :
    Function: B40B_READ_TABLE of program SAPLBBP_BD_DRIVER_40B
    Function: META_READ_TABLE of program SAPLBBP_BD_META_BAPIS
    Form: LOCATIONS_READ of program SAPLBBP_ATTR_F4
    Function: BBP_ATTR_F4_SLOC_PPOMA of program SAPLBBP_ATTR_F4
    Form: STG_LOC_GET_FOR_LOCATION of program SAPLBBP_SC_APP
    Form: STG_LOC_GET of program SAPLBBP_SC_APP
    Form: LOCATION_STG_LOC_GET of program SAPLBBP_SC_APP
    Form: USER_ATTRIBUTES_GET of program SAPLBBP_SC_APP
    Then launch the transaction in IE, once the program reaches a breakpoint, you'll get the ABAP debuger in IE.
    Regards.
    PS: if it doesn't work, put the parameter ~generatedynpro in BBPGLOBAL service to have it applied to all BBP transactions
    Vadim

  • Error while creating new user in Oracle 11i EBS

    I am getting following error while creating new user. How solve this issue?
    “Unable to load java class % specified profile option SIGNON_PASSWORD_CUSTOM. Please verify that the class exists and that it implements the java interface oracle.apps.fnd.security.PasswordValidation”.

    Following is the text from Note for Custom Password Validation logic:
    Customers who wish to use their own password validation logic may do
      so by writing their own Java classes that implement the
      oracle.apps.fnd.security.PasswordValidation Java interface.  The
      interface requires 3 methods to be implemented:
      1) public boolean validate(String user, String password)
        - This method takes a username and password, and then returns true
      or false, indicating whether the user's password is valid or invalid,
      respectively.
      2) public String getErrorStackMessageName()
        - This method returns the name of the message to display when the
      user's password is deemed invalid (i.e., the validate() method returns
      false).
      3) public String getErrorStackApplicationName()
        - This method returns the application shortname for the
      aforementioned error message.
      After writing the Java class to perform customized password
      validation, the customer must then set the value of the profile option
      SIGNON_PASSWORD_CUSTOM to be the full name of the class.  If, for
      example, the name of the Java class is
      oracle.apps.fnd.security.AppsPasswordValidation, then the value of the
      SIGNON_PASSWORD_CUSTOM profile option must be
      oracle.apps.fnd.security.AppsPasswordValidation.  Note that AOL/J
      will attempt to load this class dynamically.  Hence it is necessary to
      make the class accessible by AOL/J.  This means that in Forms, the
      class must first be loaded into the database using the loadjava
      command.
    You will need to apply the following patches for 11.5.1:
       1344802
       1363919
       1472974
       1351004
       1377615
    You will need to apply the following patches for 11.5.2:
       1377615

  • Error while creating AW

    Hi
    I got following error while creating AW via Wizard.
    Preparing
    Creating analytic workspace...
    Processing cube REFCOST
    Processing Creating Dimension : REFPRODUCT
    Processing Creating Dimension : REFTIME
    Processing Defining Load for Dimension: REFPRODUCT
    Processing Refreshing Dimension : REFPRODUCT
    Processing Defining Load for Dimension: REFTIME
    Processing Refreshing Dimension : REFTIME
    Processing Creating Cube : REFCOST
    Processing Defining Load for Cube: REFCOST
    SqlException = ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 469
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 983
    ORA-06512: at "OLAPSYS.DBMS_AWM", line 428
    ORA-06512: at line 1
    Error Code = 6510
    Sql State = 65000
    All the cubes could not be added to the Analytic Workspace COST;
    The following cubes could not be added : COST
    java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 469
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 983
    ORA-06512: at "OLAPSYS.DBMS_AWM", line 428
    ORA-06512: at line 1
    Tidying Up
    Failed to create the analytic workspace
    Can anyone point out why this error is coming?
    Hrishi

    Did you change any of the text in the lob write statements ?
    I believe you get this error if you increase the number of characters without increasing the 1st argument which looks as though it represents the number of characters

Maybe you are looking for