Reg entry of subfolders name in tables

Hi,
I have created subfolders and finally uploaded some pdf document in last folder.My path to the doc is like this:
/pls/portal30/docs/FOLDER/DEPARTMENTS/NORTH_SHORE_UNI_HOSP/NSUH_CLINICAL_SERVICES/NSUH_NURSING/NSUH_NURSING_POLICES/PATIENT_CARE_SERVICES_MANUAL/ACUITY.DOC
I have the entries of folder names
DEPARTMENTS and PATIENT_CARE_SERVICES_MANUAL in tables WWV_THINGS,WWV_CORNERS,WWSBR_SITES$.
In which table does the entries of following subfolders go:
NORTH_SHORE_UNI_HOSP
/NSUH_CLINICAL_SERVICES/
NSUH_NURSING/
NSUH_NURSING_POLICES.
Thanx
Vipul

Hi,
I have created subfolders and finally uploaded some pdf document in last folder.My path to the doc is like this:
/pls/portal30/docs/FOLDER/DEPARTMENTS/NORTH_SHORE_UNI_HOSP/NSUH_CLINICAL_SERVICES/NSUH_NURSING/NSUH_NURSING_POLICES/PATIENT_CARE_SERVICES_MANUAL/ACUITY.DOC
I have the entries of folder names
DEPARTMENTS and PATIENT_CARE_SERVICES_MANUAL in tables WWV_THINGS,WWV_CORNERS,WWSBR_SITES$.
In which table does the entries of following subfolders go:
NORTH_SHORE_UNI_HOSP
/NSUH_CLINICAL_SERVICES/
NSUH_NURSING/
NSUH_NURSING_POLICES.
Thanx
Vipul

Similar Messages

  • Error: "The entry 1111 is missing in table T043S"

    Hello All,
    While clearing a G\L account the below error was encountered:
    "The entry 1111 is missing in table T043S"
    1111 is company code,
    However when I look at the table T043S, 1111 is there.
    Could help me to figure out what might be the other cause of this error?
    Thanks in advance!
    Jhero

    Hello,
    In T043S and T043G (OBA3) you need to create two tolerance limits.
    one tolerance limit with some name
    second tolerance limit without any name (blank)
    If you do not create tolerance limit blank then your tolerance is not going to work.
    First create tolerance group blank for your company code, then copy that tolerance and give some name for your company code.
    Hope it should solve your issue.
    Regards,
    Ravi

  • Error massege m7000 "Entry 7030000144 00001 not in table XACCOUNTING_CR"

    Hi Experts,
    I created a service PO with one line item and i want to post service entry sheet with multiple account for same PO, when i am trying to post service entry sheet that time i am facing below error.
    Entry 7030000144 00001 not in table XACCOUNTING_CR (system error)
    Message no. M7000
    Diagnosis
    Internal error.
    Procedure
    Inform the person responsible for programming or your system administrator.
    pl. guide me how can i resolve this issue.
    Regards,
    AM

    Hi,
    Consult with your BASIS person make necessary changes as instructed in SAP note 1386249 "MAA: Entry is not in table XACCOUNTING (system error)"
    The reason is only seeing cannot be implemented is not enough so you need to ask your BASIS guy
    as the note clearly says
    Solution
    The corrections are delivered with the relevant Support Packages.
    If you require these corrections in advance,
    correct the source text in accordance with the correction instructions.
    In addition, you have to add missing entries to the table EKBE_MA using the attached
    correction report.
    Links to Support Packages
    Software Component .....Release........... Package Name
    SAP Application................. 604................ SAPKH60406

  • How to fix name of table have space in goldengate 11.1.1.1.2 on SQL Server

    Problem Description: How to fix problem with the name of table have space in sql server?
    If I want to used with oracle golden gate 11g(v 11.1.1.1.2)
    Thank you

    I use
    Source:SQL Server 2000
    Target : Oracle
    Config Source:
    table dbo."New Table";
    Config Target:
    map dbo."New Table" , target xxx."NEW_TABLE";
    when check in process extract
    I find No active extraction maps after insert data
    Thank you N K

  • Field NAme and Table Name

    Hi All,
    I got some output values from the legacy system with me but need to know whats the actual field name and table name to which i need to transfer these values. How can i do it, since which theres is not field name or despcription given for the data.
    Is there any way i can do it.
    Points will be rewarded for all useful answers.
    Regards
    AB

    if you know the transaction code you use to post the uploaded data in SAP, you just need to do BDC recording in using transation SM35. Record the whole process and create a program from the recording... and you wont even need to know the tables and field names-- almost everything will be done for you....
    All you need to do is replace record data with upload data.
    You can also try to look for a standard Function Module / BAPI which can do the processing for you and provide it with a table containing the upload data ...
    Reward points if useful

  • Physical table name - abstract table name mapping in CMP Bean

    Hello,
    I am using a EJB 2.x bean deployed on a SJSAS 9 server. EJB has problem associating the EJB to the actual table
    Details are as follows:
    EJB name: AccountCMP
    Actual tablename : account
    Error
    ejb store called
    IM: postInvokeentity3.AccountBean145996470_ConcreteImpl@d6be89
    EJB5071: Some remote or transactional roll back exception occurred
    com.sun.jdo.api.persistence.support.JDODataStoreException: JDO76400: Got a JDBC SQLException while executing the SQL statement:
    insert into "ACCOUNTCMP"("DESCRIPTION", "ACCOUNTNAME", "BALANCE", "ACCID") values ( ?, ?, ?, ?).
    Please examine the SQLException for more information.
    NestedException: java.sql.SQLException: ORA-00942: table or view does not exist
    FailedObjectArray: [entity3.AccountBean145996470_JDOState@5332ca]
    Please note that the insert statement has the ejb-name (I think so, as my CMP EJB is called ACCOUNTCMP) instead of the actual tablename (account).
    I do have the account.dbschema file and sun-cmp-mappings.xml in the NB 5.5 project, but the mappings.xml file is not included in the jar by NB. Is that expected, or an problem.
    sun-cmp-mappings.xml
    <sun-cmp-mappings>
      <sun-cmp-mapping>
        <schema>account</schema>   
        <entity-mapping>
          <ejb-name>AccountCMP</ejb-name>
          <table-name>account</table-name>
          <cmp-field-mapping>
    ejb-jar.xml
    <enterprise-beans>
            <entity>
                <ejb-name>AccountCMP</ejb-name>
                <local-home>entity3.AccountLocalHome</local-home>
                <local>entity3.AccountLocal</local>
                <ejb-class>entity3.AccountBean</ejb-class>           
                <persistence-type>Container</persistence-type>
                <prim-key-class>entity3.AccountPK</prim-key-class>
                <reentrant>false</reentrant>
                <cmp-version>2.x</cmp-version>           
                <abstract-schema-name>account</abstract-schema-name>  Thank you for your help.

    Hello,
    I found out the issue. sun-cmp-mappings.xml file is mandatory, and dont know why, netbeans excludes this file from the jar. I had to edit project.properties file to negate this exclusion.
    Another problem was that my table did not have a primary key (and hence by schema file did not have it also). CMP bean code generator did not like this.
    Once I fixed these two problems, my CMP started working fine.
    Thank you all

  • How to find out name of table for a structure.

    hello all,
                I want to find out name of table for a structure ADDR1_DATA. can anybody pls tell me how to find out it?
    Thanks,
    Ashu

    Hi Ashu,
    You write the structure name in se11
    after selecting the database table radio button
    click on the where used list button in the application tool bar.
    You will find the table name if it is used else where.
    Check out the website at:
    http://sap-idoc2edi-consulting.com/
    Read the blog at:
    http://blogs.ittoolbox.com/sap/ehadzipetros
    Regards,
    Jagadish

  • How to find out what is the name of table/view is being maintained in  IMG?

    Gurus,
    Any general trick to find out what is the name of table/view is being maintained
    by a given IMG item while configuring?
    Thanks,

    Hi,
    Click F1  on the table/ view you will get the table name and then go to transaction give this table name and click on Find Maintainance Dialog their you will get the views related to that table.
    Regards,
    IFF

  • Message 'Entry is not defined in table T706U'

    Hi folks.
    System gives this message when adding entry to trip:
    'Entry is not defined in table T706U'
    DUMP: Overflow during the arithmetical operation (type P) in program "RPRTEC00".
    1205 * split
    1206       ELSE.
    >>>>         UEB-ANZAL = UEB-DATB1 - UEB-DATV1.
    Program values:
    UEB-ANZAL 3
    UEB-DATB1     00010102 <---- Error
    UEB-DATV1     20110801
    Any tip ?
    thanks.
    Glauco
    Edited by: Glauco Kubrusly on Jun 27, 2011 12:27 PM
    Edited by: Glauco Kubrusly on Jun 28, 2011 1:51 PM

    Unflag meal option in SPRO and TRIP/PR05.

  • Name fo table whcih stores names of  all function modules

    I want to create list of all the Z function modules in the system present in an excel file...Can u tell me the name of table where all the names of fucntion modules are stored in SAP..I found that the names of funtion groups and Z programs are stored in table TADIR..but i did not find function modules name  there....

    Hi
      TFDIR is the table that contains all the FMs.
      TRDIR is the table that contains all the Reports.
    Regards,
    Sreeram

  • This Entry Already Exists in the Table (UDO1)

    Hello All,
    I have created a Document Type Form with one Document and one Document Rows Table .
    Their is no Manage Series option checked in the Registration as it is without any series.
    Now the entries were going smoothly untill the record no. 116 then after that the user tries to add the document no. 117
    system is showing an error message " This Entry Already Exists in the Table ( UDO1) " and the data is not getting added.
    I have checked the Header & Line Tables both tables conatins data upto 116 record.
    But still is not getting saved.
    Their is no Series feature in this form (No Manage Series ) the numbering the going as per SAP .
    Please suggest how to solve this problem  without hampering the already entered data.
    Thanks & Regards,
    Amit

    Hello Amit,
    Sometimes the restore document numbering function from help makes miracles....
    By the Way, please check your UDO tables and look for keys, docentries, etc,
    Regards
    János

  • FB70_The entry 001 is missing in table TAB_FSKB

    Hi,
        I create a company code, when I use FB70, enter company code&#12289;customer number&#12289;invoice and posting date, then click enter, a warning message will jump:
    The entry 001   is missing in table TAB_FSKB
    Message no. F5100
        If I change the company code to other one,everything is ok. So I think maybe something is wrong with the data related to company code.

    HI
    Plz go to OBY6 and check whether your company code is there are not. I dont think it is there. Even if it is there, see whether you have assigned the Chart of a/cs, fiscal year, document types, document no. ranges, field status grp.etc.
    Plz assign points, if its helpful.
    Regards
    Rajaram

  • Entry 001 is missing in table tab_fskb

    Hi , I get a problem when I use t-code:fb70,   the error message is "entry 001 is missing in table tab_fskb"    ,       is tab_fskb a table ?  I use se16 to view the table ,but there is no table named tab_fskb.      who can give me some solution?
      thanks a lot

    Dear Victor,
    Once you open a particular thread, after that why you don't follow it..?
    Forget about awarding points to a helpful suggestion or closing a thread,you don't even reply when anybody starts showing interest in your question.
    Yesterday you asked:
    What should I pay attention to do a successful client copy ?   
    I do the remote client copy successfully , I see the message"remote client copy complete" in SCC3. but the developers say they can not do the post.
    so , I want to have your advices about how to do a successful copy. what should I pay attention to.
    And when I asked for certain information:
    Please specify the following things to help us analyze your situation.
    1. Your system landscape
    2. Your source and target system while doing the remote client copy.
    3. Also why you did client copy and more details about the problem that your developer is facing.
    Then only we can guide you.
    You didnt replied and again opening a new thread today
    PS: What you expect from others..?..To share knowledge when you dont even follow your post and least bothered about answering certain doubt of various potential repliers.
    Regards,
    Ashutosh

  • Entry for host name is missing or empty (Secure Store key: admin/host/).

    Hi All,
    I am in the process of installing EP7 on SLES9 and MaxDB 7.6 on a clustered HA environment where the SCS, DB and JC components are installed under and referenced by their virtual hostname (eg. sapinst SAPINST_USE_HOSTNAME <virt name>).
    The SCS instance is installed, the Database Instance is installed and I'm currently in the process of Installing the JC and Deploying the EP packages. 
    During the installation, SDM is put into standalone mode and sapinst tries to deploy the package EPBC06_0.SCA where it fails and the sdm_server.err shows :
    "com.sap.sdm.serverext.servertype.inqmy.TargetEngineConfigurationException: Cannot retrieve Engine logon data from Secure Store: Entry for host name is missing or empty (Secure Store key: admin/host/).        at com.sap.sdm.serverext.servertype.inqmy.InQMyTargetSystemConfigurator.getLoginDataFromSecStoreInQMyTargetSystemConfigurator.java:286)        at com.sap.sdm.serverext.servertype.inqmy.InQMyTargetSystemConfigurator.getEngineLoginDataInQMyTargetSystemConfigurator.java:197)        at com.sap.sdm.serverext.servertype.inqmy.EngineStateServiceImpl.determineCurrentEngineStateEngineStateServiceImpl.java:53)        at com.sap.sdm.app.proc.deployment.states.State.determineJ2EEEngineState(State.java:97)        at com.sap.sdm.app.proc.deployment.states.StateBeforeFirstDeployment.getJ2EEEngineStateChangeDescriptionStateBeforeFirstDeployment.java:75)        at com.sap.sdm.app.view.proc.deployment.mapper.StateMapper.map(StateMapper.java:56)        at com.sap.sdm.app.view.proc.deployment.mapper.FlowMapper.map(FlowMapper.java:28)        at com.sap.sdm.app.view.session.AppViewUpdater.updateAppView(AppViewUpdater.java:22)        at com.sap.sdm.app.view.session.AppViewUpdater.sessionStateChanged(AppViewUpdater.java:18)        at com.sap.sdm.app.proc.deployment.impl.SessionStateObserversImpl.notifySessionStateChangedSessionStateObserversImpl.java:46)        at com.sap.sdm.app.proc.deployment.states.InstContext.processEventServerSide(InstContext.java:85)        at com.sap.sdm.app.proc.deployment.states.InstContext.processEvent(InstContext.java:59)        at com.sap.sdm.app.view.controllers.DeployEventProcessor.processEvent(DeployEventProcessor.java:11)        at com.sap.sdm.client_server.deployserver.DeployCmdProcessor.processEvent(DeployCmdProcessor.java:264)        at com.sap.sdm.client_server.deployserver.DeployCmdProcessor.process(DeployCmdProcessor.java:108)        at com.sap.sdm.gui.server.GuiAdminRoleCmdProcessor.processGuiAdminRoleCmdProcessor.java:72)        at com.sap.sdm.is.cs.session.server.SessionCmdProcessor.process(SessionCmdProcessor.java:67)        at com.sap.sdm.is.cs.cmd.server.CmdServer.execCommandCmdServer.java:76)        at com.sap.sdm.client_server.launch.ServerLauncher$ConnectionHandlerImpl.handle(ServerLauncher.java:286)        at com.sap.sdm.is.cs.ncserver.NetCommServer.serveNetCommServer.java:43)        at com.sap.sdm.is.cs.ncwrapper.impl.ServiceWrapper.serveServiceWrapper.java:39)        at com.sap.bc.cts.tp.net.Worker.run(Worker.java:50)       at java.lang.Thread.run(Thread.java:816)"
    The same problem occurs if I try to deploy this package or any other package using SDM in standalone or integrated mode. 
    configtool -> Secure Store -> admin/host/<SID> is the virtual hostname of the JC instance.
    I've tried the following to no avail:
    - Changed configtool -> Secure Store -> admin/host/<SID> to be the physical hostname of the box.
    - Changed configtool -> Server -> Dispatcher -> Service -> P4 -> bindhost (from 0.0.0.0 to JC virt IP).
    - Changed the <Host> entry in sdmrepository.sdc from <phys hostname> to <jc virt hostname>.
    The SAPLOCALHOST, SAPGLOBALHOST all seem to be set correctly in the SAP profiles.
    Has anyone had this issue?  If so, what do I need to check/change?  Any ideas?
    Notice the message does not reference the <SID> in "admin/host", could this be related to the issue?  If so, what can cause this?
    TIA
    Anthony

    Hi All,
    Just an update, I was able to get around my problems by patching the 2004s media from sp6 to sp8, uninstalling my scs, and database and re-installing from the patched media.

  • The TADIR entry for Program name is missing in ABAP report

    Hi,
    I created an  User group , Infoset  & ABAP query, generated a report with the help of ABAP Query.
    However when I did the extended syntax check for the same i got the fatal error.
    "The TADIR entry for <Program name> is missing
    (Message cannot be hidden using comment)"
    Could you please let me know why the above error is being given & how we can remove the same.
    Thanks
    Vinay Pasalkar

    Moved to ABAP General, thanks for pointing this out. In the future you can use the yellow triangle on the top right of each message to report such cases, they will be taken care of.
    Thomas

Maybe you are looking for