Disconnection document status at a certain date

Hello,
I need to know the status of a disconnection document at a certain date (actually, to check if the disconnection document had status '21' - disconnection carried out - during a certain period).
Is there a function or an easy way to find this out? If not, could you suggest me how to do this (check if the disconnection document had status '21' during a certain period)?
Thank you.

Hello,
The following may be of some help for you:
Transaction SE37:
Function Module ISU_O_DISCDOC_OPEN in function group ES34.
Transaction SWO1:
Object type  DISACTION  Diconnection document activity
Method --> DisconnactionAction.ExistenceCheck
Object type  DISCONNECT Disconnection
Method --> Disconnection.ExistenceCheck
Regards
Olivia

Similar Messages

  • Report to see parked documents as of a certain date

    Hi All,
    Is there any report to see list of Paked documents, as of a certain date.
    Say for example, document XYZ was parked as on 5th March, but now it is posted.
    So if I run the report giving the date as 5th March, it should show me that doc.
    Is there any such kind of report existing?
    I have checked fbv3, but it gives the parked documents as of todays date. So Please let
    me know, if there is any existing report like this, or the feasibility of creating such a report.

    Hi
    Please check the below mentioned link
    Parked document table
    VBKPF - Document Header for Document Parking
    VBSEG - Document Parking Document Segment - General Structure
    VBSEGS - Document Segment for Document Parking - G/L Account Database
    VBSEGK - Document Segment for Vendor Document Parking
    VBSEGD - Document Segment for Customer Document Parking
    VBSEGA - Document Segment for Document Parking - Asset Database
    hope it will help you
    Regards
    Praveen
    Edited by: Praveen Chirakkel on Mar 28, 2011 9:11 AM

  • How do we cancel or reverse    Disconnection Document

    Hi,
    I am new to ISU. 
    As per the requirement I am going for Re-connection when system receives payments from customer.
    I need to do certain validation and actions before actually going for Re-connections    such as
    if current status is  -    Disconnection Document open -No Service Order
          system status  -    1 (New, release unnecessary)
          Action              -    Cancel the Disconnection Documentmet
    My Query is  :   How do I cancel the Disconnection Document ?
                             Is these any function module / BAPI   for this.
    Could you provide me the Function module and its required parameters for the same.
    Thanks
    SKM

    Use this code to complete the disconnection document number. For disconnection document status 1, complete and cancel are the same thing.
    DATA: AUTO  TYPE ISU05_DISCDOC_AUTO.
    *     disconnection order-action
          AUTO-CONTR-USE-OKCODE    = 'X'.
          AUTO-CONTR-OKCODE = 'DARKCOMPL'.
      CALL FUNCTION 'ISU_S_DISCDOC_CHANGE'
           EXPORTING
                X_DISCNO       =  Disconnection Document No
                X_UPD_ONLINE   =  'X'
                X_NO_DIALOG    =  'X'
                X_AUTO         =  AUTO
    *           X_OBJ          =
    *           X_NO_OTHER     =
    *           X_DISCACT      =
    *      IMPORTING
    *           Y_DB_UPDATE    =
    *           Y_EXIT_TYPE    =
    *           Y_NEW_EDISCDOC =
    *           Y_INTERFACE    =
         EXCEPTIONS
              NOT_FOUND      = 1
              FOREIGN_LOCK   = 2
              NOT_AUTHORIZED = 3
              INPUT_ERROR    = 4
              GENERAL_FAULT  = 5
              OTHERS         = 6.
    Chaiphon

  • EC86 - Change Disconnection Document

    Hi,
    My requirement is to change a disconnection document from legacy data. The problem is when i click Generate Disconnection Order button , and try to change the Plan Disconnection activity date to a date less than sy-datum , it throws an error to input a future date.
    I tried debugging and find that this check is at the screen level.But since the legacy data can have a date < sy-datum , please let me know if there is any standard FMs or BAPIs to Change a disconnection document  ?
    Thanks,
    Asha

    Hi Asha, Please let me know how you have completed this.
    I have similar requirement and i need to change disconnect document status
    Please mail me @ [email protected]

  • BAPI_DOCUMENT_CHECKIN2-Status does not allow you to change certain data

    Hi Gurus,
    I am uploading the DIR attached files for the Documents in PLM. We have a custom program written to upload the attached files. When I tried to upload the file I am getting the BAPI Return error as "Status does not allow you to change certain data". The status of all the documents is "RL"
    File format is
    Doc type  Document No   Rev           File Name
    JPS          0021581PS,     X,       /in/PLM/JAPAN/Files/0021581PS.xls
    Please help me I need to upload the data.
    Thanks,
    Deepthi

    Check the status network for your doc type in config. You may find that the current status may not allow you to make changes. You may need to change the current status to another status before you can make the changes you would like.
    The config settings will tell you the status you may set in order to make your changes, if they are allowed.

  • Linking to a different document after a certain date

    I hope there is a way to do this.
    I have a PDF that I have added to a web page. It is a registration form to be filled out and sent in. The prices on the form reflects both early bird (until April 29) and regular prices.
    I have created a second registration form (not yet loaded) which only reflects the regular prices for use after the early bird date has passed. After the early bird time has lapsed, I was going to load the new PDF and change the link so that the second registration form is linked.
    I don't want to have them both available at the same time - less chance of someone coming back later and saying I didn't see the form with the early bird pricing.
    Is there a way I could set them both up on my site so that the first form is linked to until the end of April 29, and on April 30 the link will automatically bring people to the second form?
    THANKS
    deb

    The effort to do this by creating a dynamic page is just not worth it.
    Anyone saying it's too much effort is either lazy or they simply don't know how to build dynamic pages in a simple manner. Furthermore, it's not just about you and your issue; it's about anyone that maybe looking for a solution to the question you have asked: how to display a link based on if a date has passed or not. Not an alternative suggestion, a solution.
    It's very easy to create a dynamic link based off date. Of course bregent mentioned that it's not difficult, but there wasn't any mention of how easy it was (nor examples for that matter). Just lots of talk about whether it was worth it or not and an alternate, cumbersome suggestion. Bummer. Here's an example of the dynamic method with included explanation. You can decide whether it's worth the effort or not. I estimate it's less than 5 mins. of work, even for a beginner. Plus you might learn a thing or two about dynamic scripting in the process, which is exciting.
    Change the filename of register.html to register.php then use the following code to display link depending on date.
    <?php if (date("Y-m-d") < "2011-03-15") { ?>
    today is before March 15, 2011 put link to early bird pdf here.
    <?php } else { ?>
    today is on or after March 15, 2011 put link to regular rate pdf here.
    <?php } ?>
    You can use 301 redirect with .htaccess on apache server to redirect register.html to register.php if there's many links already established for register.html
    You'd need two different pdf files to accomplish your task: ealry_bird.pdf to use before your set date and regular_rate.pdf to use for after your set date.
    Then setup a function to remove the early_bird.pdf file from the server after a certain date. It's as easy as defining the variable and applying the function to the area that is congruent with the argument presented. In this case the argument is whether the date has passed or not. If it has then define the variable as the filename then apply the function that deletes the variable (filename) from the server as shown in the example below:
    <?php if (date("Y-m-d") < "2011-03-15") { ?>
    today is before March 15, 2011 <a href="/images/early_bird.pdf">link to early bird pdf here</a>.
    <?php } else {
    // declare variable for the early bird pdf file
    $pdffile = "/images/early_bird.pdf";
    // remove the early bird pdf file from the server
    // by using unlink function on the set variable
    unlink($pdffile); ?>
    today is on or after March 15, 2011 <a href="/images/regular_rate.pdf">link to regular rate pdf here</a>.
    <?php } ?>

  • BAPI to disconnect documents from material

    Hi,
    I have a JCo program to transfer material/document data from PLM system to SAP. I use "BAPI_DOCUMENT_CREATE2" to create new documents in SAP and connect the same to the material that's being created using "BAPI_MATERIAL_SAVEDATA".
    When i do updates on the materials currently i have no way of disconnecting the documents that have been already linked to this materia in SAP when they come off in PLM system. I have been searching for a BAPI that can disconnect all the documents that have been connected to a material.
    Is there any BAPI that i can use to simply disconnect documents from materials or do i have to write ZBAPI?
    Thanks in advance,
    Kris

    Hi Arif !!
    I think it works !
    I've used BAPI_EQMT_DETAIL to get Equipment number using the material and serial number. Then with the equipment number, I've used BAPI_EQUI_GETSTATUS to get the status.
    Does it sound right? I mean, the equipment number unique as material+serial number ??
    Thanks !
    Regards,
    Matias.

  • PR status on a particular date..

    Gentlemen,
    I have to develop this Report for Procurement for the buyer monthly Performance.
    In this one of my requirement is to get all the PR's which were open before 1st of may..(or which ever month they like to see)
    How can i get these PR's..?
    Please suggest some solution...appreciate ur help..
    thanks.

    Hi Srinivas,
    I did actually say in my post that performance would be an issue with this approach.  But it appears that in standard functionality there is not much more you can do.
    There are a lot of ways to be smart with the way you select your initial candidates, however.  You dont need to select all PRs with status p,A,K.  On the PR Eban table, you have ERDAT which is last changed date.  You can exclude all p,A,K records whose last changed date is before your report date as they have not changed after the report date and hence will not have changed status after the report date.  This is just one example, there will be many more you can choose (maybe a business rule is that PRs older than 2 months are not relevant, restrict by purchasing org, purchasing grp etc.).
    If you still don't like this solution then you will have to do some enhancement of the PR/PO transaction.  There are no standard change documents for PR status, so you can perhaps use a BADI/User exit to update a z table every time the PR status changes.  Just record the PR number, the old status, the new status, the date, and the time. 
    Then your report can use the z table in its processing.
    I thought your question was related to standard functionality.  If you are prepared to enhance the PR transaction then clearly you will get a solution which performs better.
    Cheers,
    Brad

  • ESET NOD 32 cannot scan past this point. I keep getting stuck at 56% at the following; C:\Documents and Settings\Owner\Application Data\ Mozilla\Firefox\Crash Reports\Pending. Is this a problem with NOD32 or with Firefox? Thank you.

    I ran into a glitch on my system that I tried to fix myself. My NOD32 was always showing the yellow warning circle as my protection status when I started my computer. I tried to fix this every way I new how.
    Then I started to get pop ups asking me to fix and then send system error reports to Windows. Some stating they were '''''critical.''''' So I sent NOD32 the e-mail below.
    '''Me:''' I cannot seem to run a complete system scan. I keep getting stuck at 56% at the following point. C:\Documents and Settings\Owner\Application Data\
    Mozilla\Firefox\Crash Reports\Pending
    I also keep getting messages to send error reports to Microsoft constantly. I also have this code C:\pagefile.sys-error opening
    Thank you for your assistance.
    '''Their solution:'''
    Based on the information you provided, we recommend that you upgrade to latest version of ESET NOD32 Antivirus and see if this makes a difference.
    Please click or copy/paste the following ESET Knowledgebase article into your web browser for step-by-step instructions:
    '''Me''' : I did as they requested and am fully upgraded and licensed with their new edition.
    Ran a new scan same problem.
    I sent them a new e-mail but now wonder if it is a Firefox issue as, C:\Documents and Settings\Owner\Application Data\
    ''Mozilla\Firefox\Crash Reports\Pending'' this is where the scan stalls.
    Any help would be appreciated.
    Thank you.

    Try delete the files in Pending folder and make the scan again, do not be afraid to delete the files see : https://support.mozilla.org/en-US/questions/679996
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • Update in disconnection document after reversal of demounted device by EG53

    Hi everybody,
    I have an issue reagardig diconnection document update. For instance if i make a device removal EG32 in a disconnected installation, the status of the disconnection document it is update with status 24 or 27.
    So far so good, but if i make the reversal of the demounted device with EG53, the status of the disconection document remains 24 or 27 (no update to 21).
    This is no good for the next steps in reconnection, because the device shows like iti is demounted, but in fact it is installed.
    Please, a solution,
    Thank you,

    Hi Olivia,
    Thank you for your reply, but this is not a solution, because the users uses EG53 for a year, and by the way EG50 doesn`t work - The status of the device doesn`t allow it.
    The scenario it is like this:
    1. He use EG32 to demount a meter - this will change the status of the disc, document to 27.
    2. He use EG53 to reverse the demounted meter - this it is not related to the disc doc to change it to 21.
    This is my problem because the disc document after EG53 remains in status 27.
    And if we look at the device this is installed.
    Thank you,
    KR

  • Updating a record on a certain date

    Hi,
    I have a little problem with updating a record on a certain
    date specified in the same table.
    OK so i have a table called 'users' and in that table i have
    the following fields:
    AdID
    Username
    AdStatus
    AdStartDate
    AdPeriod
    (and a few more but i've listed the important ones here)
    What i have done is, when a user places an AD, it inserts
    into the table the user's username, the ad status (e.g. Active,
    Suspended ect), the day on which the advert was placed, the period
    the ad has been placed for (e.g 6 months, 1 yr, 2yr ect).
    What i would like to do is to create an auntomatic function
    that checks the date in the table, and see if it is 6 months, 1yr,
    2yr old or whatever and if it is, update the status to suspended.
    Problem is, i dont know how :(
    I thought about adding a countdown script and when it reaches
    Zero, run a stored procedure but i dont know anything about them.
    Could somebody PLEASE help me this is driving me mad. I've
    been trying all kinds of ways but no luck. Anyone with the 'know
    how' that can point me in the right direction would be a BIG start.
    I am using ASP.VB and MYSQL 5.
    Thankyou in Advance,
    Adam

    muzicmistro wrote:
    > What i have done is, when a user places an AD, it
    inserts into the table the
    > user's username, the ad status (e.g. Active, Suspended
    ect), the day on which
    > the advert was placed, the period the ad has been placed
    for (e.g 6 months, 1
    > yr, 2yr ect).
    >
    > I am using ASP.VB and MYSQL 5.
    I can't help you with the ASP side of it, but since you're
    using MySQL,
    you could simplify your problem by adopting a different
    approach. Add an
    expiry_date column (DATETIME type) and use the MySQL
    DATE_ADD() function
    to insert the date on which the ad expires. If your minimum
    period is
    one month, you can simply use MONTH as the the period in
    DATE_ADD, and
    use a variable to change the number of months (e.g., 24 for 2
    years).
    INSERT INTO myTable (expiry_date, other_cols)
    VALUES(DATE_ADD(NOW(), INTERVAL x MONTH), other_vals)
    http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html
    Rather than have an active/expired column, just use the
    expiry_date and
    compare it with the current date. If it's greater, the ad is
    still
    active. If it's less, the ad has expired.
    David Powers
    Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    http://foundationphp.com/

  • Spotlight and finder cannot find files as of a certain date. What can be the problem and how to solve?

    Spotlight and search field in Outlook on MacBoon cannot find files as of a certain date. What can be the problem and how to solve?

    Reinstall on both.
    Reinstall Lion, Mountain Lion, or Mavericks without erasing drive
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported then click on the Repair Permissions button. When the process is completed, then quit DU and return to the main menu.
    Reinstall Mountain Lion or Mavericks
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it isthree times faster than wireless.
    Restore your iPhone to reinstall iOS. Be sure to do this while connected to your computer and iTunes.
         Tap Settings > General > Reset > Erase all content and settings.

  • Invalid data status error during the data extraction

    Hi,
    while extracting capacity data from the SNP Capacity view to BW. i get the "invalid data status error" and the data extraction fails.
    when debugged the bad requests of the ODS object, i found that for a certain product(which has both positive and negative input and out qtys) co-product manufacturing orders were created. but this product was not marked as the co-product and functionally its fine.
    how can i rectify the data extraction problem..can you advice.
    Thanks,
    Dhanush

    Sir,
    In my company for some production order status some are having "errors in cost calculation" ie "cser" .how to deal these kind of errors.

  • Email notification when Document status changes in Solution Manager

    Hi,
    Is there a way to send email notification to certain people if the document status changes in Solution Manager?
    For example: A notification email should be send to business user when development is complete.
    When development is complete, document is set with status 'Build complete'. As soon as this status is set, we want to notify business user to test the object. Similarly on other document statuses as well.
    Thanks in advance.

    Hi Vikky
    Check out doco 'How to: Automatic email notification' on service.sap.com.
    SAP Support Infrastructure > SAP Solution Manager > Information for VARs ASPs and AHPs > Setup Documents (SP15+)
    Thanks
    Daniel

  • Authorization control for document status

    Dear All,
    I want to control the status change of Documets created,
    How can i achieve this, so that a perticular user /ID can change the perticular status,
    I have ,
    01
    02,
    03,
    04, Rel.
    05,
    Do i need to put some trace anf find Objects to control...
    or there is any standard method to do this..
    Please guide me..
    Regards
    Raghu

    Hi Raghu,
    Here are DMS authorizatoins objects. For handle status it should be C_DRAW_STA
    C_DRAD_OBJ          Create/Change/Display/Delete Object Link                         
    C_DRAW_BGR          Authorization for authorization groups                         
    C_DRAW_DOK          Authorization for document access                         
    C_DRAW_MUP          Authorization for Markups                         
    C_DRAW_STA          Authorization for document status                         
    C_DRAW_TCD          Authorization for document activities                         
    C_DRAW_TCS          Status-Dependent Authorizations for Documents                         
    C_DRZA_TCD          Document Distribution: Authorization for Recipient Lists                         
    C_DRZI_TCD          Document Distribution: Authorization for Distribution Order                         
    S_ECL_CAT          ECL Viewer: Authorization Object for Stamp Categories                         
    S_ECL_STP          ECL Viewer: Authorization Object for Printing with Meta Data                         
    S_ECL_STP2          ECL Viewer: Authorization Object for Printing with Meta Data                         
    Hope that it will help you
    //Håkan

Maybe you are looking for

  • WRVS4400N Won't allow L2TP traffic to passthrough

    The latest in a series of issues with the WRVS4400N: As any Mac user knows, you cannot connect to this device with QuickVPN, as there is no Mac version of QuickVPN.  That leaves us with one of two options: 1)  Obtain iPSecuritas and configure an IPSe

  • How to downlaod vednor master data into excel sheet in SAP Application ser

    Hi friends I want to download SAP vendor master data into excel sheet and the file should be stored in SAP Application server Location with padding zeros. Please help me. Thanks

  • Remove vertical scroll bar from table control

    hi, i had used table control in my application. i want remove vertical scroll bar from table control. At initial time in table control there is no vertical scroll bar. In my table control lines are dependent on internal table which i was used to fill

  • Parameter default value different for clients...

    I have problem how to set that in client 010 the flag default 'X' will be automaticaly set, and for all other clients this parameter is without flag default ' '. Current situation: PARAMETERS: p_test TYPE xfeld AS CHECKBOX DEFAULT 'X' MODIF ID GVA. i

  • Last valid member redo log

    hi all, what does this line means from the certification book. If the member you want to drop is the last valid member of the group, you cannot drop the member.