Answer this objects

hi
i want the answer this question.
     Developed a report which gives the Bank details of employee. The out requirement is company code, Bank name, Address and *total amount for that employee must be taken from RT Table*.
wt. is the meaning of total amount for that employee must be taken from RT Table.
pl. send the answer
Thanks&Regards
Babasish

first read payroll directory using cu_read_rgdir function module to get the sequential NO.loop that cluster directory for active result.
then pass that sequential No,pernr and molga to function
PYXX_READ_PAYROLL_RESULT.
FOR cluster directory declare internal table like PC261.
for payroll result declare structure of type PIN_RESULT(FOR Payroll india)
to get data from rt table declare structure like PC207.
regards,
Raj.

Similar Messages

  • Microsoft Outlook 2010 The delegates settings were not saved correctly. Cannot activate Send-on-behalf-of list. You do not have sufficient permission to perform this operation on this object.

    I am trying to assign delegation to a user and I receive the following message.
    The delegates settings were not saved correctly.  Cannot activate Send-on-behalf-of list.  You do not have sufficient permission to perform this operation on this object.
    We are using 2010 for the server and client.  There are only specific mailboxes that this is happening for after being migrated from Lotus Notes.  The user can use their mailfile fine however it is just the delegation that appears corrupted somehow. 
    I'm not sure how to fix this.  I have checked the access through the security tab in ad and that looks fine.
    Any help would be appreciated.

    I did some more digging and I solved it.
    This would be the solution:
    In Active Directory Users and Computers
    -Click on VIEW
    -Click on ADVANCE FEATURES  (this is important otherwise you won't see
    the complete list in the next steps)
    -Click on the USERS container
    -Find the problem user's account
    -Right mouse the account and click on PROPERTIES
    -Click on the SECURITY tab
    -In the top box, click on the SELF account
    -In the bottom portion of the screen make sure the READ PERSONAL
    INFORMATION  & WRITE PERSONAL INFORMATION  should both be checked for
    ALLOW
    If you can compare the permissions for 'SELF' with another user you probably should set them accordingly to be safe. I noticed that for the user where setting delegates (SOB) did
    not work, more than those 2 permissions were missing.
    Good luck!
    David

  • Error this object is corrupt or is no longer available while trying to open a embedded files in word 2007 or 2013

    Hi All
    Word 2007 and 2013 always show this error
    This object is corrupt or is no longer available while clicking a embedded files( like pdf, doc and xls). I tried reinstall office 2007, and office 2013. But still have same problems.
    I surf internet, find out solution like turnning  off the add-on,  but not working for me, and I do not install Norton AntiVirus.
    Does anyone know what the solution of this issue is, I do not have any idea right now.
    Thanks in advance!!!!!

    I notice there is a cross post on Answer Forum:
    http://answers.microsoft.com/en-us/office/forum/office_2013_release-word/error-the-object-is-corrupt-or-is-no-longer/fde2160e-fc19-4f90-81db-4f569fac7b95
    Is Dinel's suggestion helpful?
    Tony Chen
    TechNet Community Support

  • When I try to open an embedded PDF file I get an error "The program used to create this object is AcroExch.exe.

    When I try to open an embedded PDF file (Word doc) I get an error "The program used to create this object is AcroExch.exe. That program is either not installed on your computer, or is corrupt..."  I've tried  about everything from unchecking
    protected mode at startup to removing & reinstalling Adobe.  Nothing seems to fix this issue.  Any other ideas?
    This is happening on Adobe reader 9, 10 & 11 with MS Word 2010 & 2013.  I've uninstalled, cleaned & reinstalled Reader 9, 10 & 11, as well as Acrobat 10 Pro & 11 Standard.  Removed "Protected mode at startup, and changed
    the default program for viewing from reader to Acrobat.  This will not go away.  It is affecting production at our company.

    " Help > Troubleshooting Information > Profile Directory: Open Containing Folder" . i can't find open containing folder in profile directory. it does give me the option to open the places.sqlite file using graphic converter. when i try that, graphic converter gives me a window saying that it can't be opened because it is corrupted or is not a file type supported by graphic converter.
    i appreciate your help with a workaround to get the old bookmarks. that works. however, the problem has morphed from that concern to why adobe reader [the default app.] won't open firefox .sqlite files. is the problem in adobe reader or firefox? also, how can i tell if the places.sqlite file is corrupt?
    i'm getting in over my head here and do appreciate your help.

  • SLG1 logging report : print error says 'This object is not documented'

    Hi,
    I run the logging report (SLG1) and selected one of the line items from the
    list, then I pressed F6 (button with the spectacles) to view the
    technical information. This was presented, but when I try to print this
    information I get the message 'This object is not documented'.
    Do anyone know wht this error is displayed? How do I correct it so that I can print the info required.
    Regards,
    Vijaya

    Hi,
    This is might be because of some user settings in the SAP with print parameters.
    As of now if you want to do the below operation, you can by pass the error message available in the function module and take the print out.
    In the function module DOCU_PRINT, error is avialable at line no. 318,
    message i775(sd) with text-310.
    Regards,
    Santhosh

  • Table creation Error "Ref Count for this object is higher than 0"

    Hi All
    I have a problem in creation of table using SDK on a button event.  I have a procedure to create tables and fields. If I call this procedure on a menu Event than it works fine but If I call this procedure on a button event than It gives error "Ref count for this object is higher than 0" . I know this error occur When an object does not release after creating a table. but this error occur at when first table is created. My code it given below. plz see and give me your valuable suggestions.
      Dim oUserTablesMD As SAPbobsCOM.UserTablesMD
                Try
                    oUserTablesMD = B1Connections.diCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserTables)
                    oUserTablesMD.TableName = "AM_OBIN"
                    oUserTablesMD.TableDescription = "PutAway Table"
                    oUserTablesMD.TableType = BoUTBTableType.bott_Document
                    lRetCode = oUserTablesMD.Add
                    '// check for errors in the process
                    If lRetCode <> 0 Then
                        B1Connections.diCompany.GetLastError(lRetCode, sErrMsg)
                        MsgBox(sErrMsg)
                    Else
                        B1Connections.theAppl.StatusBar.SetText("Table: " & oUserTablesMD.TableName & " was added successfully", BoMessageTime.bmt_Short, BoStatusBarMessageType.smt_Success)
                    End If
                    System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserTablesMD)
                    oUserTablesMD = Nothing
                    GC.Collect()
                    oUserTablesMD = B1Connections.diCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserTables)
                    oUserTablesMD.TableName = "AM_BIN1"
                    oUserTablesMD.TableDescription = "PutAway Upper Grid"
                    oUserTablesMD.TableType = BoUTBTableType.bott_DocumentLines
                    lRetCode = oUserTablesMD.Add
                    '// check for errors in the process
                    If lRetCode <> 0 Then
                        If lRetCode = -1 Then
                        Else
                            B1Connections.diCompany.GetLastError(lRetCode, sErrMsg)
                            MsgBox(sErrMsg)
                        End If
                    Else
                        B1Connections.theAppl.StatusBar.SetText("Table: " & oUserTablesMD.TableName & " was added successfully", BoMessageTime.bmt_Short, BoStatusBarMessageType.smt_Success)
                    End If
                    System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserTablesMD)
                    oUserTablesMD = Nothing
                    GC.Collect()
                Catch ex As Exception
                    MsgBox(ex.Message)
                End Try
    Thanks
    Regards
    Gorge

    Hi Gorge,
    The "Ref count error..." usually occurs in case of Meta Data objects not being properly cleared.  And yes, you have got the error in the right place, generally while creating tables / fields / UDOs.  For this, you just need to clear the Meta Data object (At times even DI objects like Record Set) once they are used.
    Eg: Release these objects in the below way in a Finally Block.
    System.Runtime.InteropServices.Marshal.ReleaseComObject(oRecordSet);
    Hope this helps.
    Regards,
    Satish

  • The loged on user does not have permission to use this object'

    A professional license user currently has Authorisation to all Customer BPs and Sales Documents.
    When creating a random Sales Order, the error message
    'Create POs(): The loged on user does not have permission to use this object'
    is occuring.  This is not occuring for all Sales Orders, this is occuring randomly.
    Note that the Purchase Orders Button in the Logsitics tab in the sales order is NOT selected.
    Cheers Lisa

    hi lisa
    there could be some changes in transaction notification from your side if there are any i would request you to please comment all the changes and then try saving the document it would definately go ahead as there has to be some change in the stored procedure ,
    Regards,
    Manish

  • 'The logged-on user does not have permission to use this object'

    Hello everyone,
    I am getting the message 'The logged-on user does not have permission to use this object' while saving the Sales Order. I am logging in as a CRM user. There is an addon also running on the server, that saves some data into a user defined table when the Sales Order is saved. Is there any authoisation for users to access user defined tables.
    Regards,
    William

    hi William,
    this is an Authorization issue. provide the user with authorization on your UDT. Definition of user authorization can be found in Administration -- >> System Initialization -->> Authorizations -->> Additional Authorization Creator.... if already defined from here you can fined the additional authorization from the General authorization window.
    regards,
    Fidel

  • Download Manager : "This object is no longer available"

    I try to download BOBJ Edge BI 3.1 Fix Pack 1.2 for Server Components.
    Added the item to the Download Basket.
    Open Download Manager and find the item in the basket.
    I choose download, but get the error : "This object is no longer available".
    Any suggestions ?

    Hello again Dhingra.
    I'm trying to install a TEST VERSION (free for 30 days or something) of Acrobate XI Pro. I like to do this BEFORE I decide to buy. It is when I try to istall this test version that I get the message: "Download of this program is no longer available". I wonder why?
    Is it because I've tried out Photoshop before I bought it? Maybe I'm only allowed to try 1 product for free?
    Grateful for help.
    TINE

  • Unable to update this object because the following attributes associated with this object have values that may already be associated with another object in your local directory services

    Getting this error from DirSync
    Unable to update this object because the following attributes associated with this object have values that may already be associated with another object in your local directory services: [UserPrincipalName
    [email protected];].  Correct or remove the duplicate values in your local directory.  Please refer to
    http://support.microsoft.com/kb/2647098 for more information on identifying objects with duplicate attribute values.
    Quick eyeball and couldn't see the cause in the user account so used the script here:
    http://gallery.technet.microsoft.com/office/Fix-Duplicate-User-d92215ef
    And got these outputs:
    PS C:\Windows\System32\WindowsPowerShell\v1.0> Export-OSCADUserPrincipalName -UserPrincipalName "[email protected]" -Path .\outputs.csv
    WARNING: Cannot find objects with specified duplicate user principal name
    [email protected]
    Found 0 user(s) with duplicate user principal name.
    Where to from here?
    Richard P

    Hi,
    Did you talk about the Microsoft Azure Active Directory Sync tool ?
    If yes, this issue occurs if one or more of the following conditions are true:
    An object in the on-premises Active Directory has an SMTP address that's the same as the SMTP address of the object that's reporting the problem.
    An object in the on-premises Active Directory has a mail attribute that's identical to the object that's reporting the problem.
    An object already exists in your organizational account and has the same SMTP address or mail attribute as the object in the on-premises Active Directory
    More detail information, please refer to:
    http://support.microsoft.com/kb/2520976/en-us
    [Troubleshooting] Unable to update this object because the following attributes associated with this object
    http://blogs.technet.com/b/aadsyncsupport/archive/2014/05/20/troubleshooting-unable-to-update-this-object-because-the-following-attributes-associated-with-this-object.aspx
    Regards.
    Vivian Wang

  • "changes to the distribution list membership cannot be saved. you do not have sufficient permission to perform this operation on this object"

    Running Exchange 2010/latest updates on Windows 2008 R2 servers.
    When I create a new DL that I want someone to manage, they received the following message when trying to add/remove from the DL:
    "changes to the distribution list membership cannot be saved.  you do not have sufficient permission to perform this operation on this object"
    I have followed everything in "http://msexchangeteam.com/archive/2009/11/18/453251.aspx" with no luck
    Any suggestions?

    Piggybacking off of the discussion above, with our deployment of Exchange 2007, we created a set of web-based tools that allowed people to create Exchange Resources including distribution lists.  To allow multiple people to manage the lists for a given
    department, we programmatically created a group, which is populated with one or more users from the "resource department".  We then set the following AD permissions to allow members of the group to manage membership of departmental distribution lists:
    Add-ADPermission -User DepartmentalGroup -AccessRights ReadProperty, WriteProperty -Properties 'Member' -DomainController dc.contoso.com
    Fast forward to Exchange 2010 and the landscape has changed with Exchange 2010's implementation of Role Based Access Control and I'm struggling to come up with a way to programmatically allow a group of users to manage distribution list membership for a
    subset of distribution lists - note that we have approximately 75 departments, with each having its own set of coordinators who should be able to manage distribution lists for their department but not lists created by other departments.  The specific
    error we receive in Outlook when attempting to modify group membership is the same as the title of this thread - "Changes to the distribution list membership cannot be saved.  You do not have sufficient permission to perform this operation on this object". 
    I implemented the settings referred to at
    http://sysadmin-talk.org/2010/06/omg-allowing-end-users-to-manage-distribution-group-membership-in-exchange-2010-2/ which details the process of creating a new management role and revoking the role's ability to create new distribution lists and remove distribution
    lists (which we want because we want those actions to be performed using our web tools). 
    All that to say that the ultimate problem we have is that the above relies on the "ManagedBy" field of a distribution list (viewable by Get-DistributionList Listname | fl *ManagedBy*) to determine group ownership.  When "ManagedBy" is set to a user,
    the user CAN edit a distribution list's membership from Outlook and OWA.  When "ManagedBy" is set to a group, members of the group are UNABLE to edit the membership of the distribution list via Outlook or Outlook Web Access/ECP.   Furthermore,
    Set-DistributionGroup does not allow you to specify a list of users to assign to the ManagedBy field.  However, if "ManagedBy" was set to a specific user and that user logs in to the Exchange Control Panel and adds additional "owners" of the distribution
    list, which I can then see from EMS - both the original owner and any additional owners added can in turn modify group membership for the list using Outlook or Outlook Web Access/ECP.
    My questions:
    1) Is it "expected" behavior that while I can assign a group to the "ManagedBy" property of distribution list, members of that group are still unable to edit the group membership?  ...or is there a fix for the behavior I'm seeing?
    2) Can multiple values be assigned to the "ManagedBy" property when using Set-DistributionList - ex: Set-DistributionList DLName -ManagedBy:user1,user2
    3) Any other suggestions?
    Thanks,
    -Lance

  • I need information on this Object

    Hi, can one help me in this object.
                    On a monthly basis, after all data has been fed into One Source and the monthly One Source calculations have been performed, an extract will be run from One Source , converted via XI and loaded to BW.  The current plants that will be extracted from One Source are:  6101, 6102, 6103, 6201, 6202, 6203, 6301, 6302, 6601, and 6602.  As additional plants get converted to SAP; they will automatically start appearing on this extract.    The One Source extract file will be pulled from a corporate server for processing. (One source is the Data Warehouse)

    Hi Rahul,
    what expecting you exctly, hot to aciheve your requiremnt in XI.
    Suppose oneSource is File System.
    you want to send data to BI. Use File to ABAP Proxy .
    LET ME KNOW YOUR REQUIREMENT EXACTLY.
    Regards,
    Raj

  • Could you please answer this questions ?

    could you please answer this questions ......
    2. What can you do with the DBMS_LOB package?
    A. Use the DBMS_LOB.WRITE procedure to write data to a BFILE.
    B. Use the DBMS_LOB.BFILENAME function to locate an external BFILE.
    C. Use the DBMS_LOB.FILEEXISTS function to find the location of a BFILE.
    D. Use the DBMS_LOB.FILECLOSE procedure to close the file being accessed.
    3. Which two statements about packages are true? (Choose two)
    A. Packages can be nested.
    B. You can pass parameters to packages.
    C. A package is loaded into memory each time it is invoked.
    D. The contents of packages can be shared by many applications.
    E. You can achieve information hiding by making package constructs private.
    4. Which three are true statements about dependent objects? (Choose three)
    A. Invalid objects cannot be described.
    B. An object with status of invalid cannot be a referenced object.
    C. The Oracle server automatically records dependencies among objects.
    D. All schema objects have a status that is recorded in the data dictionary.
    E. You can view whether an object is valid or invalid in the USER_STATUS data dictionary view.
    F. You can view whether an object is valid or invalid in the USER_OBJECTS data dictionary view.
    5. You need to create a stored procedure, which deletes rows from a table. The name of the table from which the rows are to be deleted is unknown until run time. Which method do you implement while creating such a procedure?
    A. Use SQL command delete in the procedure to delete the rows.
    B. Use DBMS_SQL packaged routines in the procedure to delete the rows.
    C. Use DBMS_DML packaged routines in the procedure to delete the rows.
    D. Use DBMSDELETE packaged routines in the procedure to delete the rows.
    E. You cannot have a delete statement without providing a table name before compile time.
    6. You need to drop a table from within a stored procedure. How do you implement this?
    A. You cannot drop a table from a stored procedure.
    B. Use the DROP command in the procedure to drop the table.
    C. Use the DBMS_DDL packaged routines in the procedure to drop the table.
    D. Use the DBMS_SQL packaged routines in the procedure to drop the table.
    E. Use the DBMS_DROP packaged routines in the procedure to drop the table.
    7. When using a packaged function in a query, what is true?
    A. The COMMIT and ROLLBACK commands are allowed in the packaged function.
    B. You cannot use packaged functions in a query statement.
    C. The packaged function cannot execute an INSERT, UPDATE, or DELETE statement against the table that is being queried.
    D. The packaged function can execute and INSERT, UPDATE, or DELETE statement against the table that is being queried if it is used in a subquery.
    E. The packaged function can execute an INSERT, UPDATEM or DELETE statement against the table that is being queried if the pragma RESTRICT REFERENCE is used.

    It should be good if you try yourself by training your brain to solve these questions and then share them with us to get more help or advice
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com

  • Ref count for this object is higher then 0

    Hi Friends,
    I am facing problem of "Ref count for this object is higher then 0" when creating User define table / fields and at the time ot registration of object also. In my addon there almost 4-5 customized screens for which I have to create object. So I use SDK to create object
    While creating object it creates 1st 4 fields then it shows error if I start it again then it create next 4 fields and show error in next 5th field.
    I am using this code after creating udf
    //For checking fields for already created and destroy the object by using this snippet
    If System.Runtime.InteropServices.Marshal.IsComObject(rsRecordset) Then
                    System.Runtime.InteropServices.Marshal.ReleaseComObject(rsRecordset)
                    rsRecordset = Nothing
                    GC.Collect()
                End If
    if not exist then I create it and release the object by using this snippet
       If Marshal.IsComObject(octfield) Then
                    System.Runtime.InteropServices.Marshal.ReleaseComObject(octfield)
                    octfield = Nothing
                    GC.Collect()
                End If
    //After creating fields I create registration and release object by using this snippet
        If Marshal.IsComObject(udr) Then
                    Marshal.ReleaseComObject(udr)
                    udr = Nothing
                    GC.Collect()
                End If
    Thanks In Advance

    Hello
    Solution is very easy, and safe by the following methods. If you search the threads, you may find similar answers.
    Step 1. Create each User Defined tables. When you have created one  table, you can reconnect the DI API!
    Step 2. Create UDFs-, and do not check whether is exists or not. You may check the Return value of add method, if you receive the field is already exists, you go to the next step
    Step 3. Register objects
    Here are examples
    Private Function AddUDT(ByVal tablename As String, ByVal description As String, ByVal tabletype As SAPbobsCOM.BoUTBTableType) As Boolean
            Dim oUDT As UserTablesMD
            oUDT = oCompany.GetBusinessObject(BoObjectTypes.oUserTables)
            Try
                If oUDT.GetByKey(tablename) Then
                    Return False
                End If
                oUDT.TableName = tablename
                oUDT.TableDescription = description
                oUDT.TableType = tabletype
                Dim lretcode As Integer = oUDT.Add()
                If (lretcode <> 0) Then
                    If (lretcode = -2035) Then
                        Return False
                    End If
                    SBO_Application.StatusBar.SetText(String.Format("{0}-{1}", oCompany.GetLastErrorCode(), oCompany.GetLastErrorDescription()), BoMessageTime.bmt_Short, BoStatusBarMessageType.smt_Error)
                    Return False
                End If
                oCompany.Disconnect()
                GC.Collect()
                Dim sCookie As String = oCompany.GetContextCookie
                Dim sConnectionContext As String
                sConnectionContext = SBO_Application.Company.GetConnectionContext(sCookie)
                oCompany.SetSboLoginContext(sConnectionContext)
                If oCompany.Connect() <> 0 Then
                    SBO_Application.StatusBar.SetText(String.Format("{Reconnecting error:{0}-{1}", oCompany.GetLastErrorCode, oCompany.GetLastErrorDescription))
                    End
                End If
                Return True
            Catch ex As Exception
                SBO_Application.StatusBar.SetText(String.Format("{0}-{1}", "AddUDT", ex.Message), BoMessageTime.bmt_Short, BoStatusBarMessageType.smt_Error)
                Return False
            Finally
                GC.Collect()
            End Try
        End Function
    Private Function AddUDF(ByVal tablename As String, ByVal fieldname As String, ByVal fielddesc As String, ByVal fieldtype As BoFieldTypes, ByVal fieldsize As Integer, ByVal fieldvalues As String, ByVal defaultvalue As String, Optional ByVal LinkedTable As String = "") As Boolean
            Dim oUDF As UserFieldsMD
            oUDF = oCompany.GetBusinessObject(BoObjectTypes.oUserFields)
            Try
                oUDF.Name = fieldname
                oUDF.Type = fieldtype
                'oUDF.SubType = BoFldSubTypes.st_Quantity
                oUDF.Size = fieldsize
                oUDF.Description = fielddesc
                oUDF.TableName = tablename
                oUDF.EditSize = fieldsize
                If (fieldvalues.Length > 0) Then
                    For Each s1 As String In fieldvalues.Split("|")
                        If (s1.Length > 0) Then
                            Dim s2 As Array = s1.Split("-")
                            oUDF.ValidValues.Description = s2(1)
                            oUDF.ValidValues.Value = s2(0)
                            oUDF.ValidValues.Add()
                        End If
                        oUDF.DefaultValue = defaultvalue
                    Next
                End If
                If LinkedTable <> "" Then
                    oUDF.LinkedTable = LinkedTable
                End If
                Dim lretcode As Integer = oUDF.Add()
                If (lretcode <> 0) Then
                    If (lretcode = -2035 Or lretcode = -1120) Then
                        Return False
                    End If
                    SBO_Application.StatusBar.SetText(String.Format("{0}-{1}", oCompany.GetLastErrorCode(), oCompany.GetLastErrorDescription()), BoMessageTime.bmt_Short, BoStatusBarMessageType.smt_Error)
                    Return False
                End If
                Return True
            Catch ex As Exception
                SBO_Application.StatusBar.SetText(String.Format("{0}-{1}", "AddUDF", ex.Message), BoMessageTime.bmt_Short, BoStatusBarMessageType.smt_Error)
                Return False
            Finally
                GC.Collect()
                oUDF = Nothing
            End Try
        End Function
    calling them
    bUserFieldAdded = AddUDT("IHBTRANSLATION", "Translation/Fordítás", BoUTBTableType.bott_Document)
    bUserFieldAdded = bUserFieldAdded Or AddUDF("IHBTRANSLATION", "IHBTEXT", "Text/Szöveg", BoFieldTypes.db_Alpha, 254, "", "")

  • The requested action is not supported for this object. [message 131-171]

    Hi,
    One user is having the below error message appear when she attempts to print remittances. This has only started happening since yesterday and all other documents are still printing.
    "The requested action is not supported for this object. [message 131-171]"
    Any ideas what could be the problem?
    Regards,
    Mohan

    Hi Johnson,
    I have not tried your suggestion till now as I am waiting for the database copy from my client.
    Just a quick question, As I already mentioned earlier and I also keep getting the issues from the users reporting that the user's get this error only if they print 'remittance advise reports' has multiple invoices.
    The report prints fine if it has single invoice even if it is a check payment.
    Will your suggestions address this as well?
    Regards,
    Mohan

Maybe you are looking for